From 17c3c22c7ba1e48e854d32be946c91ddb2e5c13d Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Thu, 14 Jul 2022 13:50:57 -0700 Subject: [PATCH 1/8] Actually allow var negative power --- .../operations/operational_types/gen_var.py | 52 ++++++++++++------- 1 file changed, 34 insertions(+), 18 deletions(-) diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index 59b94822f..209c49751 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -104,7 +104,7 @@ def add_model_components(m, d, scenario_directory, subproblem, stage): +=========================================================================+ | | :code:`GenVar_Provide_Power_MW` | | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | - | | *Within*: :code:`NonNegativeReals` | + | | *Within*: :code:`Reals` | | | | Power provision in MW from this project in each timepoint in which the | | project is operational (capacity exists and the project is available). | @@ -150,12 +150,18 @@ def add_model_components(m, d, scenario_directory, subproblem, stage): | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | | | | Limits the power plus upward reserves in each timepoint based on the | - | :code:`gen_var_cap_factor` and the available capacity. | + | :code:`gen_var_cap_factor` and the available capacity. Note that this | + | operational type can only provide reserves when the capacity factor is | + | positive (no reserves when we consuming power, i.e. due to parasitic | + | losses, auxiliary consumption, etc.). | +-------------------------------------------------------------------------+ | | :code:`GenVar_Min_Power_Constraint` | | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | | | - | Power provision minus downward reserves should exceed zero. | + | Power provision minus downward reserves should exceed zero. Note that | + | this operational type can only provide reserves when the capacity | + | factor is positive (no reserves when we consuming power, i.e. due to | + | parasitic losses, auxiliary consumption, etc.). | +-------------------------------------------------------------------------+ """ @@ -185,7 +191,7 @@ def add_model_components(m, d, scenario_directory, subproblem, stage): # Variables ########################################################################### - m.GenVar_Provide_Power_MW = Var(m.GEN_VAR_OPR_TMPS, within=NonNegativeReals) + m.GenVar_Provide_Power_MW = Var(m.GEN_VAR_OPR_TMPS, within=Reals) # Expressions ########################################################################### @@ -313,15 +319,20 @@ def max_power_rule(mod, g, tmp): **Constraint Name**: GenVar_Max_Power_Constraint **Enforced Over**: GEN_VAR_OPR_TMPS - Power provision plus upward services cannot exceed available power, which - is equal to the available capacity multiplied by the capacity factor. + When available power is positive, power provision plus upward services cannot exceed + available power, which is equal to the available capacity multiplied by the + capacity factor. When available power is negative (e.g. parasitic losses), don't + allow upward reserves. """ - return ( - mod.GenVar_Provide_Power_MW[g, tmp] + mod.GenVar_Upwards_Reserves_MW[g, tmp] - <= mod.Capacity_MW[g, mod.period[tmp]] - * mod.Availability_Derate[g, tmp] - * mod.gen_var_cap_factor[g, tmp] - ) + if mod.gen_var_cap_factor[g, tmp] >= 0: + return ( + mod.GenVar_Provide_Power_MW[g, tmp] + mod.GenVar_Upwards_Reserves_MW[g, tmp] + <= mod.Capacity_MW[g, mod.period[tmp]] + * mod.Availability_Derate[g, tmp] + * mod.gen_var_cap_factor[g, tmp] + ) + else: + return mod.GenVar_Upwards_Reserves_MW[g, tmp] == 0 def min_power_rule(mod, g, tmp): @@ -329,13 +340,18 @@ def min_power_rule(mod, g, tmp): **Constraint Name**: GenVar_Min_Power_Constraint **Enforced Over**: GEN_VAR_OPR_TMPS - Power provision minus downward services cannot be less than zero. + Power provision minus downward services cannot be less than zero if power is + positive). If the capacity factor is negative (e.g. parasitic losses), don't allow + downward reserves. """ - return ( - mod.GenVar_Provide_Power_MW[g, tmp] - mod.GenVar_Downwards_Reserves_MW[g, tmp] - >= 0 - ) - + if mod.gen_var_cap_factor[g, tmp] >= 0: + return ( + mod.GenVar_Provide_Power_MW[g, tmp] + - mod.GenVar_Downwards_Reserves_MW[g, tmp] + >= 0 + ) + else: + return mod.GenVar_Upwards_Reserves_MW[g, tmp] == 0 # Operational Type Methods ############################################################################### From 67ae9ddf31ebbf32290efb25287df692c5191c88 Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Thu, 14 Jul 2022 13:53:39 -0700 Subject: [PATCH 2/8] lint --- gridpath/project/operations/operational_types/gen_var.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index 209c49751..c383f92c7 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -353,6 +353,7 @@ def min_power_rule(mod, g, tmp): else: return mod.GenVar_Upwards_Reserves_MW[g, tmp] == 0 + # Operational Type Methods ############################################################################### From 714abe75a8e4a995ad77c58491bdbe55722ddca2 Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Thu, 14 Jul 2022 14:10:05 -0700 Subject: [PATCH 3/8] fix --- gridpath/project/operations/operational_types/gen_var.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index c383f92c7..e395afaef 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -324,7 +324,7 @@ def max_power_rule(mod, g, tmp): capacity factor. When available power is negative (e.g. parasitic losses), don't allow upward reserves. """ - if mod.gen_var_cap_factor[g, tmp] >= 0: + if mod.gen_var_cap_factor[g, tmp] > 0: return ( mod.GenVar_Provide_Power_MW[g, tmp] + mod.GenVar_Upwards_Reserves_MW[g, tmp] <= mod.Capacity_MW[g, mod.period[tmp]] @@ -344,14 +344,14 @@ def min_power_rule(mod, g, tmp): positive). If the capacity factor is negative (e.g. parasitic losses), don't allow downward reserves. """ - if mod.gen_var_cap_factor[g, tmp] >= 0: + if mod.gen_var_cap_factor[g, tmp] > 0: return ( mod.GenVar_Provide_Power_MW[g, tmp] - mod.GenVar_Downwards_Reserves_MW[g, tmp] >= 0 ) else: - return mod.GenVar_Upwards_Reserves_MW[g, tmp] == 0 + return mod.GenVar_Downwards_Reserves_MW[g, tmp] == 0 # Operational Type Methods From 357daed8a0b91ecc93530ee992c1c4d61fabcbdf Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Fri, 23 Aug 2024 11:36:09 -0700 Subject: [PATCH 4/8] Reformulate gen_var optype This is in prep for allowing negative power. There are small changes to a few objective functions, but the summary results show only minor differences in actual results. --- .../weather/Gas-1-ra_toolkit.csv | 16872 ++++++++-------- .../results/objective_function_value.txt | 2 +- .../results/summary_results.txt | 2 +- .../results/objective_function_value.txt | 2 +- .../results/summary_results.txt | 2 +- .../results/objective_function_value.txt | 2 +- .../results/summary_results.txt | 2 +- .../results/objective_function_value.txt | 2 +- .../results/summary_results.txt | 2 +- .../results/objective_function_value.txt | 2 +- .../results/summary_results.txt | 2 +- .../results/objective_function_value.txt | 2 +- .../results/summary_results.txt | 2 +- .../operations/operational_types/gen_var.py | 55 +- ...est_scenario_objective_function_values.csv | 12 +- 15 files changed, 8479 insertions(+), 8484 deletions(-) diff --git a/db/csvs_test_examples/project/project_availability/weather/Gas-1-ra_toolkit.csv b/db/csvs_test_examples/project/project_availability/weather/Gas-1-ra_toolkit.csv index 194de3c3d..d3d36a3c8 100644 --- a/db/csvs_test_examples/project/project_availability/weather/Gas-1-ra_toolkit.csv +++ b/db/csvs_test_examples/project/project_availability/weather/Gas-1-ra_toolkit.csv @@ -7,7 +7,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6,0.8990000001999999 2010,1,7,0.8990000001999999 2010,1,8,0.8990000001999999 -2010,1,9,0.8979287454999999 +2010,1,9,0.8979287455 2010,1,10,0.8920200892 2010,1,11,0.8900505372999999 2010,1,12,0.8880809851 @@ -58,13 +58,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,57,0.8959591936 2010,1,58,0.8900505372999999 2010,1,59,0.8861114332 -2010,1,60,0.8821723288 -2010,1,61,0.8802027765999999 -2010,1,62,0.8802027765999999 -2010,1,63,0.8821723288 +2010,1,60,0.8821723288000001 +2010,1,61,0.8802027766 +2010,1,62,0.8802027766 +2010,1,63,0.8821723288000001 2010,1,64,0.8880809851 2010,1,65,0.8939896417000001 -2010,1,66,0.8979287454999999 +2010,1,66,0.8979287455 2010,1,67,0.8990000001999999 2010,1,68,0.8990000001999999 2010,1,69,0.8990000001999999 @@ -81,16 +81,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,80,0.8990000001999999 2010,1,81,0.8959591936 2010,1,82,0.8900505372999999 -2010,1,83,0.8841418812999998 -2010,1,84,0.8802027765999999 -2010,1,85,0.8782332246999999 -2010,1,86,0.8782332246999999 -2010,1,87,0.8802027765999999 +2010,1,83,0.8841418812999999 +2010,1,84,0.8802027766 +2010,1,85,0.8782332247 +2010,1,86,0.8782332247 +2010,1,87,0.8802027766 2010,1,88,0.8861114332 2010,1,89,0.8939896417000001 -2010,1,90,0.8979287454999999 -2010,1,91,0.8979287454999999 -2010,1,92,0.8979287454999999 +2010,1,90,0.8979287455 +2010,1,91,0.8979287455 +2010,1,92,0.8979287455 2010,1,93,0.8990000001999999 2010,1,94,0.8990000001999999 2010,1,95,0.8990000001999999 @@ -105,11 +105,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,104,0.8990000001999999 2010,1,105,0.8939896417000001 2010,1,106,0.8880809851 -2010,1,107,0.8821723288 -2010,1,108,0.8802027765999999 -2010,1,109,0.8802027765999999 -2010,1,110,0.8821723288 -2010,1,111,0.8841418812999998 +2010,1,107,0.8821723288000001 +2010,1,108,0.8802027766 +2010,1,109,0.8802027766 +2010,1,110,0.8821723288000001 +2010,1,111,0.8841418812999999 2010,1,112,0.8900505372999999 2010,1,113,0.8959591936 2010,1,114,0.8990000001999999 @@ -127,15 +127,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,126,0.8990000001999999 2010,1,127,0.8990000001999999 2010,1,128,0.8990000001999999 -2010,1,129,0.8979287454999999 +2010,1,129,0.8979287455 2010,1,130,0.8920200892 2010,1,131,0.8861114332 -2010,1,132,0.8821723288 -2010,1,133,0.8802027765999999 -2010,1,134,0.8821723288 -2010,1,135,0.8841418812999998 +2010,1,132,0.8821723288000001 +2010,1,133,0.8802027766 +2010,1,134,0.8821723288000001 +2010,1,135,0.8841418812999999 2010,1,136,0.8900505372999999 -2010,1,137,0.8979287454999999 +2010,1,137,0.8979287455 2010,1,138,0.8990000001999999 2010,1,139,0.8990000001999999 2010,1,140,0.8990000001999999 @@ -155,11 +155,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,154,0.8959591936 2010,1,155,0.8900505372999999 2010,1,156,0.8861114332 -2010,1,157,0.8841418812999998 -2010,1,158,0.8841418812999998 +2010,1,157,0.8841418812999999 +2010,1,158,0.8841418812999999 2010,1,159,0.8861114332 2010,1,160,0.8900505372999999 -2010,1,161,0.8979287454999999 +2010,1,161,0.8979287455 2010,1,162,0.8990000001999999 2010,1,163,0.8990000001999999 2010,1,164,0.8990000001999999 @@ -169,27 +169,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,168,0.8990000001999999 2010,1,169,0.8990000001999999 2010,1,170,0.8990000001999999 -2010,1,171,0.8979287454999999 -2010,1,172,0.8979287454999999 +2010,1,171,0.8979287455 +2010,1,172,0.8979287455 2010,1,173,0.8990000001999999 2010,1,174,0.8990000001999999 2010,1,175,0.8990000001999999 -2010,1,176,0.8979287454999999 +2010,1,176,0.8979287455 2010,1,177,0.8920200892 2010,1,178,0.8861114332 -2010,1,179,0.8802027765999999 -2010,1,180,0.8782332246999999 +2010,1,179,0.8802027766 +2010,1,180,0.8782332247 2010,1,181,0.8762636728 2010,1,182,0.8762636728 -2010,1,183,0.8782332246999999 -2010,1,184,0.8841418812999998 +2010,1,183,0.8782332247 +2010,1,184,0.8841418812999999 2010,1,185,0.8900505372999999 2010,1,186,0.8939896417000001 2010,1,187,0.8959591936 -2010,1,188,0.8979287454999999 -2010,1,189,0.8979287454999999 -2010,1,190,0.8979287454999999 -2010,1,191,0.8979287454999999 +2010,1,188,0.8979287455 +2010,1,189,0.8979287455 +2010,1,190,0.8979287455 +2010,1,191,0.8979287455 2010,1,192,0.8990000001999999 2010,1,193,0.8990000001999999 2010,1,194,0.8990000001999999 @@ -201,11 +201,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,200,0.8990000001999999 2010,1,201,0.8939896417000001 2010,1,202,0.8880809851 -2010,1,203,0.8821723288 -2010,1,204,0.8802027765999999 -2010,1,205,0.8782332246999999 -2010,1,206,0.8802027765999999 -2010,1,207,0.8821723288 +2010,1,203,0.8821723288000001 +2010,1,204,0.8802027766 +2010,1,205,0.8782332247 +2010,1,206,0.8802027766 +2010,1,207,0.8821723288000001 2010,1,208,0.8861114332 2010,1,209,0.8900505372999999 2010,1,210,0.8920200892 @@ -214,8 +214,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,213,0.8959591936 2010,1,214,0.8959591936 2010,1,215,0.8959591936 -2010,1,216,0.8979287454999999 -2010,1,217,0.8979287454999999 +2010,1,216,0.8979287455 +2010,1,217,0.8979287455 2010,1,218,0.8990000001999999 2010,1,219,0.8990000001999999 2010,1,220,0.8990000001999999 @@ -225,20 +225,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,224,0.8990000001999999 2010,1,225,0.8920200892 2010,1,226,0.8861114332 -2010,1,227,0.8821723288 -2010,1,228,0.8782332246999999 +2010,1,227,0.8821723288000001 +2010,1,228,0.8782332247 2010,1,229,0.8762636728 -2010,1,230,0.8782332246999999 -2010,1,231,0.8802027765999999 +2010,1,230,0.8782332247 +2010,1,231,0.8802027766 2010,1,232,0.8861114332 2010,1,233,0.8920200892 2010,1,234,0.8959591936 2010,1,235,0.8959591936 -2010,1,236,0.8979287454999999 -2010,1,237,0.8979287454999999 -2010,1,238,0.8979287454999999 -2010,1,239,0.8979287454999999 -2010,1,240,0.8979287454999999 +2010,1,236,0.8979287455 +2010,1,237,0.8979287455 +2010,1,238,0.8979287455 +2010,1,239,0.8979287455 +2010,1,240,0.8979287455 2010,1,241,0.8990000001999999 2010,1,242,0.8990000001999999 2010,1,243,0.8990000001999999 @@ -246,21 +246,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,245,0.8990000001999999 2010,1,246,0.8990000001999999 2010,1,247,0.8990000001999999 -2010,1,248,0.8979287454999999 +2010,1,248,0.8979287455 2010,1,249,0.8880809851 -2010,1,250,0.8821723288 +2010,1,250,0.8821723288000001 2010,1,251,0.8762636728 2010,1,252,0.8742941203 2010,1,253,0.8723245680999999 2010,1,254,0.8723245680999999 2010,1,255,0.8742941203 -2010,1,256,0.8821723288 +2010,1,256,0.8821723288000001 2010,1,257,0.8880809851 2010,1,258,0.8920200892 2010,1,259,0.8939896417000001 2010,1,260,0.8959591936 -2010,1,261,0.8979287454999999 -2010,1,262,0.8979287454999999 +2010,1,261,0.8979287455 +2010,1,262,0.8979287455 2010,1,263,0.8990000001999999 2010,1,264,0.8990000001999999 2010,1,265,0.8990000001999999 @@ -270,19 +270,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,269,0.8990000001999999 2010,1,270,0.8990000001999999 2010,1,271,0.8990000001999999 -2010,1,272,0.8979287454999999 +2010,1,272,0.8979287455 2010,1,273,0.8920200892 2010,1,274,0.8861114332 -2010,1,275,0.8802027765999999 -2010,1,276,0.8782332246999999 +2010,1,275,0.8802027766 +2010,1,276,0.8782332247 2010,1,277,0.8762636728 2010,1,278,0.8762636728 -2010,1,279,0.8782332246999999 +2010,1,279,0.8782332247 2010,1,280,0.8861114332 2010,1,281,0.8920200892 2010,1,282,0.8959591936 2010,1,283,0.8959591936 -2010,1,284,0.8979287454999999 +2010,1,284,0.8979287455 2010,1,285,0.8990000001999999 2010,1,286,0.8990000001999999 2010,1,287,0.8990000001999999 @@ -295,7 +295,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,294,0.8990000001999999 2010,1,295,0.8990000001999999 2010,1,296,0.8990000001999999 -2010,1,297,0.8979287454999999 +2010,1,297,0.8979287455 2010,1,298,0.8939896417000001 2010,1,299,0.8920200892 2010,1,300,0.8900505372999999 @@ -303,7 +303,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,302,0.8900505372999999 2010,1,303,0.8920200892 2010,1,304,0.8939896417000001 -2010,1,305,0.8979287454999999 +2010,1,305,0.8979287455 2010,1,306,0.8990000001999999 2010,1,307,0.8990000001999999 2010,1,308,0.8990000001999999 @@ -320,7 +320,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,319,0.8990000001999999 2010,1,320,0.8990000001999999 2010,1,321,0.8990000001999999 -2010,1,322,0.8979287454999999 +2010,1,322,0.8979287455 2010,1,323,0.8939896417000001 2010,1,324,0.8920200892 2010,1,325,0.8900505372999999 @@ -345,15 +345,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,344,0.8990000001999999 2010,1,345,0.8939896417000001 2010,1,346,0.8880809851 -2010,1,347,0.8841418812999998 -2010,1,348,0.8821723288 -2010,1,349,0.8802027765999999 -2010,1,350,0.8821723288 -2010,1,351,0.8841418812999998 +2010,1,347,0.8841418812999999 +2010,1,348,0.8821723288000001 +2010,1,349,0.8802027766 +2010,1,350,0.8821723288000001 +2010,1,351,0.8841418812999999 2010,1,352,0.8880809851 2010,1,353,0.8920200892 2010,1,354,0.8939896417000001 -2010,1,355,0.8979287454999999 +2010,1,355,0.8979287455 2010,1,356,0.8990000001999999 2010,1,357,0.8990000001999999 2010,1,358,0.8990000001999999 @@ -369,10 +369,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,368,0.8990000001999999 2010,1,369,0.8939896417000001 2010,1,370,0.8880809851 -2010,1,371,0.8841418812999998 -2010,1,372,0.8821723288 -2010,1,373,0.8821723288 -2010,1,374,0.8841418812999998 +2010,1,371,0.8841418812999999 +2010,1,372,0.8821723288000001 +2010,1,373,0.8821723288000001 +2010,1,374,0.8841418812999999 2010,1,375,0.8861114332 2010,1,376,0.8900505372999999 2010,1,377,0.8959591936 @@ -391,7 +391,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,390,0.8990000001999999 2010,1,391,0.8990000001999999 2010,1,392,0.8990000001999999 -2010,1,393,0.8979287454999999 +2010,1,393,0.8979287455 2010,1,394,0.8920200892 2010,1,395,0.8900505372999999 2010,1,396,0.8900505372999999 @@ -399,7 +399,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,398,0.8939896417000001 2010,1,399,0.8959591936 2010,1,400,0.8959591936 -2010,1,401,0.8979287454999999 +2010,1,401,0.8979287455 2010,1,402,0.8990000001999999 2010,1,403,0.8990000001999999 2010,1,404,0.8990000001999999 @@ -415,14 +415,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,414,0.8990000001999999 2010,1,415,0.8990000001999999 2010,1,416,0.8990000001999999 -2010,1,417,0.8979287454999999 +2010,1,417,0.8979287455 2010,1,418,0.8959591936 2010,1,419,0.8939896417000001 2010,1,420,0.8920200892 2010,1,421,0.8920200892 2010,1,422,0.8920200892 2010,1,423,0.8939896417000001 -2010,1,424,0.8979287454999999 +2010,1,424,0.8979287455 2010,1,425,0.8990000001999999 2010,1,426,0.8990000001999999 2010,1,427,0.8990000001999999 @@ -465,11 +465,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,464,0.8990000001999999 2010,1,465,0.8990000001999999 2010,1,466,0.8990000001999999 -2010,1,467,0.8979287454999999 +2010,1,467,0.8979287455 2010,1,468,0.8959591936 2010,1,469,0.8959591936 -2010,1,470,0.8979287454999999 -2010,1,471,0.8979287454999999 +2010,1,470,0.8979287455 +2010,1,471,0.8979287455 2010,1,472,0.8990000001999999 2010,1,473,0.8990000001999999 2010,1,474,0.8990000001999999 @@ -538,9 +538,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,537,0.8990000001999999 2010,1,538,0.8990000001999999 2010,1,539,0.8990000001999999 -2010,1,540,0.8979287454999999 -2010,1,541,0.8979287454999999 -2010,1,542,0.8979287454999999 +2010,1,540,0.8979287455 +2010,1,541,0.8979287455 +2010,1,542,0.8979287455 2010,1,543,0.8990000001999999 2010,1,544,0.8990000001999999 2010,1,545,0.8990000001999999 @@ -560,13 +560,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,559,0.8990000001999999 2010,1,560,0.8990000001999999 2010,1,561,0.8990000001999999 -2010,1,562,0.8979287454999999 +2010,1,562,0.8979287455 2010,1,563,0.8959591936 2010,1,564,0.8939896417000001 2010,1,565,0.8920200892 2010,1,566,0.8920200892 2010,1,567,0.8939896417000001 -2010,1,568,0.8979287454999999 +2010,1,568,0.8979287455 2010,1,569,0.8990000001999999 2010,1,570,0.8990000001999999 2010,1,571,0.8990000001999999 @@ -584,14 +584,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,583,0.8990000001999999 2010,1,584,0.8990000001999999 2010,1,585,0.8990000001999999 -2010,1,586,0.8979287454999999 +2010,1,586,0.8979287455 2010,1,587,0.8920200892 2010,1,588,0.8900505372999999 2010,1,589,0.8900505372999999 2010,1,590,0.8900505372999999 2010,1,591,0.8920200892 2010,1,592,0.8959591936 -2010,1,593,0.8979287454999999 +2010,1,593,0.8979287455 2010,1,594,0.8990000001999999 2010,1,595,0.8990000001999999 2010,1,596,0.8990000001999999 @@ -633,12 +633,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,632,0.8990000001999999 2010,1,633,0.8990000001999999 2010,1,634,0.8990000001999999 -2010,1,635,0.8979287454999999 +2010,1,635,0.8979287455 2010,1,636,0.8959591936 2010,1,637,0.8939896417000001 2010,1,638,0.8939896417000001 2010,1,639,0.8959591936 -2010,1,640,0.8979287454999999 +2010,1,640,0.8979287455 2010,1,641,0.8990000001999999 2010,1,642,0.8990000001999999 2010,1,643,0.8990000001999999 @@ -663,7 +663,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,662,0.8861114332 2010,1,663,0.8861114332 2010,1,664,0.8900505372999999 -2010,1,665,0.8979287454999999 +2010,1,665,0.8979287455 2010,1,666,0.8990000001999999 2010,1,667,0.8990000001999999 2010,1,668,0.8990000001999999 @@ -682,9 +682,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,681,0.8959591936 2010,1,682,0.8920200892 2010,1,683,0.8861114332 -2010,1,684,0.8841418812999998 -2010,1,685,0.8841418812999998 -2010,1,686,0.8841418812999998 +2010,1,684,0.8841418812999999 +2010,1,685,0.8841418812999999 +2010,1,686,0.8841418812999999 2010,1,687,0.8861114332 2010,1,688,0.8900505372999999 2010,1,689,0.8959591936 @@ -728,7 +728,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,727,0.8990000001999999 2010,1,728,0.8990000001999999 2010,1,729,0.8990000001999999 -2010,1,730,0.8979287454999999 +2010,1,730,0.8979287455 2010,1,731,0.8939896417000001 2010,1,732,0.8920200892 2010,1,733,0.8900505372999999 @@ -759,7 +759,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,758,0.8861114332 2010,1,759,0.8880809851 2010,1,760,0.8920200892 -2010,1,761,0.8979287454999999 +2010,1,761,0.8979287455 2010,1,762,0.8990000001999999 2010,1,763,0.8990000001999999 2010,1,764,0.8990000001999999 @@ -775,7 +775,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,774,0.8990000001999999 2010,1,775,0.8990000001999999 2010,1,776,0.8990000001999999 -2010,1,777,0.8979287454999999 +2010,1,777,0.8979287455 2010,1,778,0.8920200892 2010,1,779,0.8900505372999999 2010,1,780,0.8900505372999999 @@ -783,7 +783,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,782,0.8900505372999999 2010,1,783,0.8920200892 2010,1,784,0.8939896417000001 -2010,1,785,0.8979287454999999 +2010,1,785,0.8979287455 2010,1,786,0.8990000001999999 2010,1,787,0.8990000001999999 2010,1,788,0.8990000001999999 @@ -807,7 +807,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,806,0.8880809851 2010,1,807,0.8900505372999999 2010,1,808,0.8920200892 -2010,1,809,0.8979287454999999 +2010,1,809,0.8979287455 2010,1,810,0.8990000001999999 2010,1,811,0.8990000001999999 2010,1,812,0.8990000001999999 @@ -823,7 +823,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,822,0.8990000001999999 2010,1,823,0.8990000001999999 2010,1,824,0.8990000001999999 -2010,1,825,0.8979287454999999 +2010,1,825,0.8979287455 2010,1,826,0.8959591936 2010,1,827,0.8920200892 2010,1,828,0.8900505372999999 @@ -831,7 +831,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,830,0.8900505372999999 2010,1,831,0.8920200892 2010,1,832,0.8939896417000001 -2010,1,833,0.8979287454999999 +2010,1,833,0.8979287455 2010,1,834,0.8990000001999999 2010,1,835,0.8990000001999999 2010,1,836,0.8990000001999999 @@ -847,7 +847,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,846,0.8990000001999999 2010,1,847,0.8990000001999999 2010,1,848,0.8990000001999999 -2010,1,849,0.8979287454999999 +2010,1,849,0.8979287455 2010,1,850,0.8939896417000001 2010,1,851,0.8920200892 2010,1,852,0.8900505372999999 @@ -856,8 +856,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,855,0.8920200892 2010,1,856,0.8939896417000001 2010,1,857,0.8959591936 -2010,1,858,0.8979287454999999 -2010,1,859,0.8979287454999999 +2010,1,858,0.8979287455 +2010,1,859,0.8979287455 2010,1,860,0.8990000001999999 2010,1,861,0.8990000001999999 2010,1,862,0.8990000001999999 @@ -872,11 +872,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,871,0.8990000001999999 2010,1,872,0.8990000001999999 2010,1,873,0.8990000001999999 -2010,1,874,0.8979287454999999 -2010,1,875,0.8979287454999999 +2010,1,874,0.8979287455 +2010,1,875,0.8979287455 2010,1,876,0.8959591936 2010,1,877,0.8959591936 -2010,1,878,0.8979287454999999 +2010,1,878,0.8979287455 2010,1,879,0.8990000001999999 2010,1,880,0.8990000001999999 2010,1,881,0.8990000001999999 @@ -899,9 +899,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,898,0.8990000001999999 2010,1,899,0.8990000001999999 2010,1,900,0.8990000001999999 -2010,1,901,0.8979287454999999 +2010,1,901,0.8979287455 2010,1,902,0.8959591936 -2010,1,903,0.8979287454999999 +2010,1,903,0.8979287455 2010,1,904,0.8990000001999999 2010,1,905,0.8990000001999999 2010,1,906,0.8990000001999999 @@ -922,10 +922,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,921,0.8990000001999999 2010,1,922,0.8990000001999999 2010,1,923,0.8990000001999999 -2010,1,924,0.8979287454999999 +2010,1,924,0.8979287455 2010,1,925,0.8959591936 2010,1,926,0.8959591936 -2010,1,927,0.8979287454999999 +2010,1,927,0.8979287455 2010,1,928,0.8990000001999999 2010,1,929,0.8990000001999999 2010,1,930,0.8990000001999999 @@ -971,9 +971,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,970,0.8990000001999999 2010,1,971,0.8990000001999999 2010,1,972,0.8990000001999999 -2010,1,973,0.8979287454999999 +2010,1,973,0.8979287455 2010,1,974,0.8959591936 -2010,1,975,0.8979287454999999 +2010,1,975,0.8979287455 2010,1,976,0.8990000001999999 2010,1,977,0.8990000001999999 2010,1,978,0.8990000001999999 @@ -993,12 +993,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,992,0.8990000001999999 2010,1,993,0.8990000001999999 2010,1,994,0.8990000001999999 -2010,1,995,0.8979287454999999 +2010,1,995,0.8979287455 2010,1,996,0.8959591936 2010,1,997,0.8959591936 2010,1,998,0.8939896417000001 2010,1,999,0.8959591936 -2010,1,1000,0.8979287454999999 +2010,1,1000,0.8979287455 2010,1,1001,0.8990000001999999 2010,1,1002,0.8990000001999999 2010,1,1003,0.8990000001999999 @@ -1023,7 +1023,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1022,0.8900505372999999 2010,1,1023,0.8900505372999999 2010,1,1024,0.8920200892 -2010,1,1025,0.8979287454999999 +2010,1,1025,0.8979287455 2010,1,1026,0.8990000001999999 2010,1,1027,0.8990000001999999 2010,1,1028,0.8990000001999999 @@ -1039,7 +1039,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1038,0.8990000001999999 2010,1,1039,0.8990000001999999 2010,1,1040,0.8990000001999999 -2010,1,1041,0.8979287454999999 +2010,1,1041,0.8979287455 2010,1,1042,0.8939896417000001 2010,1,1043,0.8900505372999999 2010,1,1044,0.8880809851 @@ -1065,11 +1065,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1064,0.8990000001999999 2010,1,1065,0.8959591936 2010,1,1066,0.8900505372999999 -2010,1,1067,0.8841418812999998 -2010,1,1068,0.8821723288 -2010,1,1069,0.8802027765999999 -2010,1,1070,0.8821723288 -2010,1,1071,0.8841418812999998 +2010,1,1067,0.8841418812999999 +2010,1,1068,0.8821723288000001 +2010,1,1069,0.8802027766 +2010,1,1070,0.8821723288000001 +2010,1,1071,0.8841418812999999 2010,1,1072,0.8880809851 2010,1,1073,0.8939896417000001 2010,1,1074,0.8990000001999999 @@ -1091,8 +1091,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1090,0.8900505372999999 2010,1,1091,0.8880809851 2010,1,1092,0.8861114332 -2010,1,1093,0.8841418812999998 -2010,1,1094,0.8841418812999998 +2010,1,1093,0.8841418812999999 +2010,1,1094,0.8841418812999999 2010,1,1095,0.8861114332 2010,1,1096,0.8880809851 2010,1,1097,0.8939896417000001 @@ -1110,19 +1110,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1109,0.8990000001999999 2010,1,1110,0.8990000001999999 2010,1,1111,0.8990000001999999 -2010,1,1112,0.8979287454999999 +2010,1,1112,0.8979287455 2010,1,1113,0.8920200892 2010,1,1114,0.8880809851 -2010,1,1115,0.8841418812999998 -2010,1,1116,0.8821723288 -2010,1,1117,0.8802027765999999 -2010,1,1118,0.8782332246999999 -2010,1,1119,0.8802027765999999 -2010,1,1120,0.8841418812999998 +2010,1,1115,0.8841418812999999 +2010,1,1116,0.8821723288000001 +2010,1,1117,0.8802027766 +2010,1,1118,0.8782332247 +2010,1,1119,0.8802027766 +2010,1,1120,0.8841418812999999 2010,1,1121,0.8900505372999999 2010,1,1122,0.8959591936 -2010,1,1123,0.8979287454999999 -2010,1,1124,0.8979287454999999 +2010,1,1123,0.8979287455 +2010,1,1124,0.8979287455 2010,1,1125,0.8990000001999999 2010,1,1126,0.8990000001999999 2010,1,1127,0.8990000001999999 @@ -1136,13 +1136,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1135,0.8990000001999999 2010,1,1136,0.8959591936 2010,1,1137,0.8900505372999999 -2010,1,1138,0.8841418812999998 -2010,1,1139,0.8782332246999999 +2010,1,1138,0.8841418812999999 +2010,1,1139,0.8782332247 2010,1,1140,0.8762636728 2010,1,1141,0.8742941203 2010,1,1142,0.8742941203 2010,1,1143,0.8762636728 -2010,1,1144,0.8802027765999999 +2010,1,1144,0.8802027766 2010,1,1145,0.8861114332 2010,1,1146,0.8920200892 2010,1,1147,0.8920200892 @@ -1151,8 +1151,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1150,0.8939896417000001 2010,1,1151,0.8959591936 2010,1,1152,0.8959591936 -2010,1,1153,0.8979287454999999 -2010,1,1154,0.8979287454999999 +2010,1,1153,0.8979287455 +2010,1,1154,0.8979287455 2010,1,1155,0.8990000001999999 2010,1,1156,0.8990000001999999 2010,1,1157,0.8990000001999999 @@ -1160,16 +1160,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1159,0.8990000001999999 2010,1,1160,0.8959591936 2010,1,1161,0.8900505372999999 -2010,1,1162,0.8841418812999998 -2010,1,1163,0.8821723288 -2010,1,1164,0.8802027765999999 -2010,1,1165,0.8782332246999999 -2010,1,1166,0.8802027765999999 -2010,1,1167,0.8821723288 -2010,1,1168,0.8841418812999998 +2010,1,1162,0.8841418812999999 +2010,1,1163,0.8821723288000001 +2010,1,1164,0.8802027766 +2010,1,1165,0.8782332247 +2010,1,1166,0.8802027766 +2010,1,1167,0.8821723288000001 +2010,1,1168,0.8841418812999999 2010,1,1169,0.8900505372999999 2010,1,1170,0.8959591936 -2010,1,1171,0.8979287454999999 +2010,1,1171,0.8979287455 2010,1,1172,0.8990000001999999 2010,1,1173,0.8990000001999999 2010,1,1174,0.8990000001999999 @@ -1192,7 +1192,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1191,0.8880809851 2010,1,1192,0.8900505372999999 2010,1,1193,0.8959591936 -2010,1,1194,0.8979287454999999 +2010,1,1194,0.8979287455 2010,1,1195,0.8990000001999999 2010,1,1196,0.8990000001999999 2010,1,1197,0.8990000001999999 @@ -1209,13 +1209,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1208,0.8990000001999999 2010,1,1209,0.8990000001999999 2010,1,1210,0.8990000001999999 -2010,1,1211,0.8979287454999999 +2010,1,1211,0.8979287455 2010,1,1212,0.8959591936 2010,1,1213,0.8939896417000001 2010,1,1214,0.8920200892 2010,1,1215,0.8939896417000001 2010,1,1216,0.8959591936 -2010,1,1217,0.8979287454999999 +2010,1,1217,0.8979287455 2010,1,1218,0.8990000001999999 2010,1,1219,0.8990000001999999 2010,1,1220,0.8990000001999999 @@ -1232,13 +1232,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1231,0.8990000001999999 2010,1,1232,0.8990000001999999 2010,1,1233,0.8990000001999999 -2010,1,1234,0.8979287454999999 +2010,1,1234,0.8979287455 2010,1,1235,0.8959591936 2010,1,1236,0.8939896417000001 2010,1,1237,0.8959591936 2010,1,1238,0.8959591936 -2010,1,1239,0.8979287454999999 -2010,1,1240,0.8979287454999999 +2010,1,1239,0.8979287455 +2010,1,1240,0.8979287455 2010,1,1241,0.8990000001999999 2010,1,1242,0.8990000001999999 2010,1,1243,0.8990000001999999 @@ -1257,7 +1257,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1256,0.8990000001999999 2010,1,1257,0.8990000001999999 2010,1,1258,0.8990000001999999 -2010,1,1259,0.8979287454999999 +2010,1,1259,0.8979287455 2010,1,1260,0.8959591936 2010,1,1261,0.8939896417000001 2010,1,1262,0.8920200892 @@ -1280,7 +1280,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1279,0.8990000001999999 2010,1,1280,0.8990000001999999 2010,1,1281,0.8990000001999999 -2010,1,1282,0.8979287454999999 +2010,1,1282,0.8979287455 2010,1,1283,0.8959591936 2010,1,1284,0.8939896417000001 2010,1,1285,0.8939896417000001 @@ -1304,7 +1304,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1303,0.8990000001999999 2010,1,1304,0.8990000001999999 2010,1,1305,0.8990000001999999 -2010,1,1306,0.8979287454999999 +2010,1,1306,0.8979287455 2010,1,1307,0.8939896417000001 2010,1,1308,0.8920200892 2010,1,1309,0.8900505372999999 @@ -1353,17 +1353,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1352,0.8959591936 2010,1,1353,0.8920200892 2010,1,1354,0.8880809851 -2010,1,1355,0.8841418812999998 -2010,1,1356,0.8841418812999998 +2010,1,1355,0.8841418812999999 +2010,1,1356,0.8841418812999999 2010,1,1357,0.8861114332 2010,1,1358,0.8880809851 2010,1,1359,0.8900505372999999 2010,1,1360,0.8920200892 2010,1,1361,0.8939896417000001 2010,1,1362,0.8959591936 -2010,1,1363,0.8979287454999999 -2010,1,1364,0.8979287454999999 -2010,1,1365,0.8979287454999999 +2010,1,1363,0.8979287455 +2010,1,1364,0.8979287455 +2010,1,1365,0.8979287455 2010,1,1366,0.8990000001999999 2010,1,1367,0.8990000001999999 2010,1,1368,0.8990000001999999 @@ -1376,12 +1376,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1375,0.8990000001999999 2010,1,1376,0.8990000001999999 2010,1,1377,0.8990000001999999 -2010,1,1378,0.8979287454999999 -2010,1,1379,0.8979287454999999 +2010,1,1378,0.8979287455 +2010,1,1379,0.8979287455 2010,1,1380,0.8959591936 2010,1,1381,0.8959591936 -2010,1,1382,0.8979287454999999 -2010,1,1383,0.8979287454999999 +2010,1,1382,0.8979287455 +2010,1,1383,0.8979287455 2010,1,1384,0.8990000001999999 2010,1,1385,0.8990000001999999 2010,1,1386,0.8990000001999999 @@ -1422,18 +1422,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1421,0.8990000001999999 2010,1,1422,0.8990000001999999 2010,1,1423,0.8990000001999999 -2010,1,1424,0.8979287454999999 +2010,1,1424,0.8979287455 2010,1,1425,0.8939896417000001 2010,1,1426,0.8880809851 -2010,1,1427,0.8841418812999998 -2010,1,1428,0.8821723288 -2010,1,1429,0.8802027765999999 -2010,1,1430,0.8802027765999999 -2010,1,1431,0.8821723288 -2010,1,1432,0.8841418812999998 +2010,1,1427,0.8841418812999999 +2010,1,1428,0.8821723288000001 +2010,1,1429,0.8802027766 +2010,1,1430,0.8802027766 +2010,1,1431,0.8821723288000001 +2010,1,1432,0.8841418812999999 2010,1,1433,0.8900505372999999 2010,1,1434,0.8939896417000001 -2010,1,1435,0.8979287454999999 +2010,1,1435,0.8979287455 2010,1,1436,0.8990000001999999 2010,1,1437,0.8990000001999999 2010,1,1438,0.8990000001999999 @@ -1446,7 +1446,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1445,0.8990000001999999 2010,1,1446,0.8990000001999999 2010,1,1447,0.8990000001999999 -2010,1,1448,0.8979287454999999 +2010,1,1448,0.8979287455 2010,1,1449,0.8959591936 2010,1,1450,0.8920200892 2010,1,1451,0.8900505372999999 @@ -1456,7 +1456,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1455,0.8920200892 2010,1,1456,0.8939896417000001 2010,1,1457,0.8959591936 -2010,1,1458,0.8979287454999999 +2010,1,1458,0.8979287455 2010,1,1459,0.8990000001999999 2010,1,1460,0.8990000001999999 2010,1,1461,0.8990000001999999 @@ -1479,7 +1479,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1478,0.8900505372999999 2010,1,1479,0.8920200892 2010,1,1480,0.8939896417000001 -2010,1,1481,0.8979287454999999 +2010,1,1481,0.8979287455 2010,1,1482,0.8990000001999999 2010,1,1483,0.8990000001999999 2010,1,1484,0.8990000001999999 @@ -1499,9 +1499,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1498,0.8990000001999999 2010,1,1499,0.8990000001999999 2010,1,1500,0.8990000001999999 -2010,1,1501,0.8979287454999999 -2010,1,1502,0.8979287454999999 -2010,1,1503,0.8979287454999999 +2010,1,1501,0.8979287455 +2010,1,1502,0.8979287455 +2010,1,1503,0.8979287455 2010,1,1504,0.8990000001999999 2010,1,1505,0.8990000001999999 2010,1,1506,0.8990000001999999 @@ -1527,7 +1527,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1526,0.8900505372999999 2010,1,1527,0.8900505372999999 2010,1,1528,0.8920200892 -2010,1,1529,0.8979287454999999 +2010,1,1529,0.8979287455 2010,1,1530,0.8990000001999999 2010,1,1531,0.8990000001999999 2010,1,1532,0.8990000001999999 @@ -1545,12 +1545,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1544,0.8990000001999999 2010,1,1545,0.8990000001999999 2010,1,1546,0.8990000001999999 -2010,1,1547,0.8979287454999999 +2010,1,1547,0.8979287455 2010,1,1548,0.8959591936 2010,1,1549,0.8939896417000001 2010,1,1550,0.8939896417000001 2010,1,1551,0.8959591936 -2010,1,1552,0.8979287454999999 +2010,1,1552,0.8979287455 2010,1,1553,0.8990000001999999 2010,1,1554,0.8990000001999999 2010,1,1555,0.8990000001999999 @@ -1576,7 +1576,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1575,0.8900505372999999 2010,1,1576,0.8920200892 2010,1,1577,0.8939896417000001 -2010,1,1578,0.8979287454999999 +2010,1,1578,0.8979287455 2010,1,1579,0.8990000001999999 2010,1,1580,0.8990000001999999 2010,1,1581,0.8990000001999999 @@ -1593,13 +1593,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1592,0.8990000001999999 2010,1,1593,0.8990000001999999 2010,1,1594,0.8990000001999999 -2010,1,1595,0.8979287454999999 +2010,1,1595,0.8979287455 2010,1,1596,0.8959591936 2010,1,1597,0.8939896417000001 2010,1,1598,0.8939896417000001 2010,1,1599,0.8939896417000001 2010,1,1600,0.8959591936 -2010,1,1601,0.8979287454999999 +2010,1,1601,0.8979287455 2010,1,1602,0.8990000001999999 2010,1,1603,0.8990000001999999 2010,1,1604,0.8990000001999999 @@ -1619,9 +1619,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1618,0.8990000001999999 2010,1,1619,0.8990000001999999 2010,1,1620,0.8990000001999999 -2010,1,1621,0.8979287454999999 +2010,1,1621,0.8979287455 2010,1,1622,0.8959591936 -2010,1,1623,0.8979287454999999 +2010,1,1623,0.8979287455 2010,1,1624,0.8990000001999999 2010,1,1625,0.8990000001999999 2010,1,1626,0.8990000001999999 @@ -1644,7 +1644,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1643,0.8990000001999999 2010,1,1644,0.8990000001999999 2010,1,1645,0.8990000001999999 -2010,1,1646,0.8979287454999999 +2010,1,1646,0.8979287455 2010,1,1647,0.8990000001999999 2010,1,1648,0.8990000001999999 2010,1,1649,0.8990000001999999 @@ -1689,15 +1689,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1688,0.8990000001999999 2010,1,1689,0.8920200892 2010,1,1690,0.8861114332 -2010,1,1691,0.8841418812999998 -2010,1,1692,0.8821723288 -2010,1,1693,0.8821723288 -2010,1,1694,0.8821723288 -2010,1,1695,0.8841418812999998 +2010,1,1691,0.8841418812999999 +2010,1,1692,0.8821723288000001 +2010,1,1693,0.8821723288000001 +2010,1,1694,0.8821723288000001 +2010,1,1695,0.8841418812999999 2010,1,1696,0.8861114332 2010,1,1697,0.8920200892 2010,1,1698,0.8959591936 -2010,1,1699,0.8979287454999999 +2010,1,1699,0.8979287455 2010,1,1700,0.8990000001999999 2010,1,1701,0.8990000001999999 2010,1,1702,0.8990000001999999 @@ -1714,11 +1714,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1713,0.8990000001999999 2010,1,1714,0.8990000001999999 2010,1,1715,0.8990000001999999 -2010,1,1716,0.8979287454999999 +2010,1,1716,0.8979287455 2010,1,1717,0.8959591936 2010,1,1718,0.8959591936 2010,1,1719,0.8959591936 -2010,1,1720,0.8979287454999999 +2010,1,1720,0.8979287455 2010,1,1721,0.8990000001999999 2010,1,1722,0.8990000001999999 2010,1,1723,0.8990000001999999 @@ -1760,14 +1760,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1759,0.8990000001999999 2010,1,1760,0.8939896417000001 2010,1,1761,0.8880809851 -2010,1,1762,0.8821723288 -2010,1,1763,0.8782332246999999 +2010,1,1762,0.8821723288000001 +2010,1,1763,0.8782332247 2010,1,1764,0.8762636728 2010,1,1765,0.8742941203 2010,1,1766,0.8723245680999999 2010,1,1767,0.8742941203 2010,1,1768,0.8762636728 -2010,1,1769,0.8802027765999999 +2010,1,1769,0.8802027766 2010,1,1770,0.8861114332 2010,1,1771,0.8900505372999999 2010,1,1772,0.8900505372999999 @@ -1775,23 +1775,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1774,0.8920200892 2010,1,1775,0.8939896417000001 2010,1,1776,0.8959591936 -2010,1,1777,0.8979287454999999 -2010,1,1778,0.8979287454999999 +2010,1,1777,0.8979287455 +2010,1,1778,0.8979287455 2010,1,1779,0.8990000001999999 2010,1,1780,0.8990000001999999 2010,1,1781,0.8990000001999999 2010,1,1782,0.8990000001999999 2010,1,1783,0.8959591936 2010,1,1784,0.8880809851 -2010,1,1785,0.8821723288 +2010,1,1785,0.8821723288000001 2010,1,1786,0.8762636728 2010,1,1787,0.8742941203 2010,1,1788,0.8723245680999999 -2010,1,1789,0.8703550161999999 -2010,1,1790,0.8683854642999999 -2010,1,1791,0.8703550161999999 +2010,1,1789,0.8703550162 +2010,1,1790,0.8683854643 +2010,1,1791,0.8703550162 2010,1,1792,0.8723245680999999 -2010,1,1793,0.8782332246999999 +2010,1,1793,0.8782332247 2010,1,1794,0.8861114332 2010,1,1795,0.8900505372999999 2010,1,1796,0.8939896417000001 @@ -1807,44 +1807,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1806,0.8959591936 2010,1,1807,0.8939896417000001 2010,1,1808,0.8880809851 -2010,1,1809,0.8841418812999998 -2010,1,1810,0.8782332246999999 +2010,1,1809,0.8841418812999999 +2010,1,1810,0.8782332247 2010,1,1811,0.8742941203 2010,1,1812,0.8723245680999999 -2010,1,1813,0.8703550161999999 -2010,1,1814,0.8703550161999999 +2010,1,1813,0.8703550162 +2010,1,1814,0.8703550162 2010,1,1815,0.8723245680999999 2010,1,1816,0.8742941203 -2010,1,1817,0.8802027765999999 +2010,1,1817,0.8802027766 2010,1,1818,0.8880809851 2010,1,1819,0.8920200892 2010,1,1820,0.8920200892 2010,1,1821,0.8939896417000001 2010,1,1822,0.8939896417000001 2010,1,1823,0.8959591936 -2010,1,1824,0.8979287454999999 -2010,1,1825,0.8979287454999999 +2010,1,1824,0.8979287455 +2010,1,1825,0.8979287455 2010,1,1826,0.8990000001999999 2010,1,1827,0.8990000001999999 2010,1,1828,0.8990000001999999 2010,1,1829,0.8990000001999999 2010,1,1830,0.8990000001999999 -2010,1,1831,0.8979287454999999 +2010,1,1831,0.8979287455 2010,1,1832,0.8920200892 2010,1,1833,0.8880809851 -2010,1,1834,0.8841418812999998 -2010,1,1835,0.8802027765999999 -2010,1,1836,0.8782332246999999 +2010,1,1834,0.8841418812999999 +2010,1,1835,0.8802027766 +2010,1,1836,0.8782332247 2010,1,1837,0.8762636728 2010,1,1838,0.8762636728 -2010,1,1839,0.8782332246999999 -2010,1,1840,0.8802027765999999 -2010,1,1841,0.8841418812999998 +2010,1,1839,0.8782332247 +2010,1,1840,0.8802027766 +2010,1,1841,0.8841418812999999 2010,1,1842,0.8900505372999999 2010,1,1843,0.8939896417000001 2010,1,1844,0.8959591936 2010,1,1845,0.8959591936 -2010,1,1846,0.8979287454999999 +2010,1,1846,0.8979287455 2010,1,1847,0.8990000001999999 2010,1,1848,0.8990000001999999 2010,1,1849,0.8990000001999999 @@ -1853,25 +1853,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1852,0.8990000001999999 2010,1,1853,0.8990000001999999 2010,1,1854,0.8990000001999999 -2010,1,1855,0.8979287454999999 +2010,1,1855,0.8979287455 2010,1,1856,0.8920200892 2010,1,1857,0.8861114332 -2010,1,1858,0.8802027765999999 +2010,1,1858,0.8802027766 2010,1,1859,0.8762636728 2010,1,1860,0.8742941203 2010,1,1861,0.8723245680999999 2010,1,1862,0.8723245680999999 2010,1,1863,0.8742941203 2010,1,1864,0.8762636728 -2010,1,1865,0.8821723288 +2010,1,1865,0.8821723288000001 2010,1,1866,0.8880809851 2010,1,1867,0.8920200892 2010,1,1868,0.8939896417000001 2010,1,1869,0.8959591936 2010,1,1870,0.8959591936 2010,1,1871,0.8959591936 -2010,1,1872,0.8979287454999999 -2010,1,1873,0.8979287454999999 +2010,1,1872,0.8979287455 +2010,1,1873,0.8979287455 2010,1,1874,0.8990000001999999 2010,1,1875,0.8990000001999999 2010,1,1876,0.8990000001999999 @@ -1879,16 +1879,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1878,0.8990000001999999 2010,1,1879,0.8959591936 2010,1,1880,0.8900505372999999 -2010,1,1881,0.8841418812999998 -2010,1,1882,0.8782332246999999 +2010,1,1881,0.8841418812999999 +2010,1,1882,0.8782332247 2010,1,1883,0.8762636728 2010,1,1884,0.8742941203 2010,1,1885,0.8723245680999999 -2010,1,1886,0.8703550161999999 -2010,1,1887,0.8703550161999999 +2010,1,1886,0.8703550162 +2010,1,1887,0.8703550162 2010,1,1888,0.8723245680999999 -2010,1,1889,0.8782332246999999 -2010,1,1890,0.8841418812999998 +2010,1,1889,0.8782332247 +2010,1,1890,0.8841418812999999 2010,1,1891,0.8880809851 2010,1,1892,0.8900505372999999 2010,1,1893,0.8920200892 @@ -1898,26 +1898,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1897,0.8959591936 2010,1,1898,0.8959591936 2010,1,1899,0.8959591936 -2010,1,1900,0.8979287454999999 -2010,1,1901,0.8979287454999999 -2010,1,1902,0.8979287454999999 +2010,1,1900,0.8979287455 +2010,1,1901,0.8979287455 +2010,1,1902,0.8979287455 2010,1,1903,0.8959591936 2010,1,1904,0.8900505372999999 2010,1,1905,0.8861114332 -2010,1,1906,0.8821723288 -2010,1,1907,0.8782332246999999 +2010,1,1906,0.8821723288000001 +2010,1,1907,0.8782332247 2010,1,1908,0.8762636728 2010,1,1909,0.8742941203 2010,1,1910,0.8762636728 2010,1,1911,0.8762636728 -2010,1,1912,0.8782332246999999 -2010,1,1913,0.8841418812999998 +2010,1,1912,0.8782332247 +2010,1,1913,0.8841418812999999 2010,1,1914,0.8880809851 2010,1,1915,0.8900505372999999 2010,1,1916,0.8900505372999999 2010,1,1917,0.8920200892 2010,1,1918,0.8959591936 -2010,1,1919,0.8979287454999999 +2010,1,1919,0.8979287455 2010,1,1920,0.8990000001999999 2010,1,1921,0.8990000001999999 2010,1,1922,0.8990000001999999 @@ -1926,19 +1926,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1925,0.8990000001999999 2010,1,1926,0.8990000001999999 2010,1,1927,0.8990000001999999 -2010,1,1928,0.8979287454999999 +2010,1,1928,0.8979287455 2010,1,1929,0.8920200892 2010,1,1930,0.8880809851 -2010,1,1931,0.8841418812999998 -2010,1,1932,0.8821723288 -2010,1,1933,0.8802027765999999 -2010,1,1934,0.8802027765999999 -2010,1,1935,0.8802027765999999 -2010,1,1936,0.8821723288 +2010,1,1931,0.8841418812999999 +2010,1,1932,0.8821723288000001 +2010,1,1933,0.8802027766 +2010,1,1934,0.8802027766 +2010,1,1935,0.8802027766 +2010,1,1936,0.8821723288000001 2010,1,1937,0.8880809851 2010,1,1938,0.8920200892 2010,1,1939,0.8959591936 -2010,1,1940,0.8979287454999999 +2010,1,1940,0.8979287455 2010,1,1941,0.8990000001999999 2010,1,1942,0.8990000001999999 2010,1,1943,0.8990000001999999 @@ -1952,20 +1952,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1951,0.8990000001999999 2010,1,1952,0.8939896417000001 2010,1,1953,0.8880809851 -2010,1,1954,0.8821723288 -2010,1,1955,0.8782332246999999 +2010,1,1954,0.8821723288000001 +2010,1,1955,0.8782332247 2010,1,1956,0.8762636728 2010,1,1957,0.8742941203 2010,1,1958,0.8742941203 2010,1,1959,0.8742941203 2010,1,1960,0.8762636728 -2010,1,1961,0.8821723288 +2010,1,1961,0.8821723288000001 2010,1,1962,0.8900505372999999 2010,1,1963,0.8920200892 2010,1,1964,0.8920200892 2010,1,1965,0.8939896417000001 2010,1,1966,0.8959591936 -2010,1,1967,0.8979287454999999 +2010,1,1967,0.8979287455 2010,1,1968,0.8990000001999999 2010,1,1969,0.8990000001999999 2010,1,1970,0.8990000001999999 @@ -1973,20 +1973,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1972,0.8990000001999999 2010,1,1973,0.8990000001999999 2010,1,1974,0.8990000001999999 -2010,1,1975,0.8979287454999999 +2010,1,1975,0.8979287455 2010,1,1976,0.8920200892 2010,1,1977,0.8861114332 -2010,1,1978,0.8802027765999999 +2010,1,1978,0.8802027766 2010,1,1979,0.8762636728 2010,1,1980,0.8742941203 2010,1,1981,0.8723245680999999 2010,1,1982,0.8742941203 2010,1,1983,0.8762636728 -2010,1,1984,0.8821723288 +2010,1,1984,0.8821723288000001 2010,1,1985,0.8880809851 2010,1,1986,0.8939896417000001 -2010,1,1987,0.8979287454999999 -2010,1,1988,0.8979287454999999 +2010,1,1987,0.8979287455 +2010,1,1988,0.8979287455 2010,1,1989,0.8990000001999999 2010,1,1990,0.8990000001999999 2010,1,1991,0.8990000001999999 @@ -2000,7 +2000,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,1999,0.8990000001999999 2010,1,2000,0.8990000001999999 2010,1,2001,0.8990000001999999 -2010,1,2002,0.8979287454999999 +2010,1,2002,0.8979287455 2010,1,2003,0.8959591936 2010,1,2004,0.8939896417000001 2010,1,2005,0.8920200892 @@ -2023,7 +2023,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2022,0.8990000001999999 2010,1,2023,0.8990000001999999 2010,1,2024,0.8990000001999999 -2010,1,2025,0.8979287454999999 +2010,1,2025,0.8979287455 2010,1,2026,0.8939896417000001 2010,1,2027,0.8920200892 2010,1,2028,0.8900505372999999 @@ -2032,7 +2032,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2031,0.8861114332 2010,1,2032,0.8880809851 2010,1,2033,0.8920200892 -2010,1,2034,0.8979287454999999 +2010,1,2034,0.8979287455 2010,1,2035,0.8990000001999999 2010,1,2036,0.8990000001999999 2010,1,2037,0.8990000001999999 @@ -2048,21 +2048,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2047,0.8990000001999999 2010,1,2048,0.8939896417000001 2010,1,2049,0.8880809851 -2010,1,2050,0.8821723288 -2010,1,2051,0.8782332246999999 +2010,1,2050,0.8821723288000001 +2010,1,2051,0.8782332247 2010,1,2052,0.8762636728 2010,1,2053,0.8742941203 2010,1,2054,0.8723245680999999 2010,1,2055,0.8742941203 2010,1,2056,0.8762636728 -2010,1,2057,0.8802027765999999 +2010,1,2057,0.8802027766 2010,1,2058,0.8861114332 2010,1,2059,0.8900505372999999 2010,1,2060,0.8920200892 2010,1,2061,0.8939896417000001 2010,1,2062,0.8939896417000001 2010,1,2063,0.8959591936 -2010,1,2064,0.8979287454999999 +2010,1,2064,0.8979287455 2010,1,2065,0.8990000001999999 2010,1,2066,0.8990000001999999 2010,1,2067,0.8990000001999999 @@ -2071,60 +2071,60 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2070,0.8990000001999999 2010,1,2071,0.8959591936 2010,1,2072,0.8880809851 -2010,1,2073,0.8821723288 +2010,1,2073,0.8821723288000001 2010,1,2074,0.8762636728 2010,1,2075,0.8742941203 2010,1,2076,0.8723245680999999 -2010,1,2077,0.8703550161999999 -2010,1,2078,0.8703550161999999 -2010,1,2079,0.8703550161999999 +2010,1,2077,0.8703550162 +2010,1,2078,0.8703550162 +2010,1,2079,0.8703550162 2010,1,2080,0.8723245680999999 -2010,1,2081,0.8802027765999999 +2010,1,2081,0.8802027766 2010,1,2082,0.8880809851 2010,1,2083,0.8920200892 2010,1,2084,0.8920200892 2010,1,2085,0.8939896417000001 2010,1,2086,0.8959591936 2010,1,2087,0.8959591936 -2010,1,2088,0.8979287454999999 +2010,1,2088,0.8979287455 2010,1,2089,0.8990000001999999 2010,1,2090,0.8990000001999999 2010,1,2091,0.8990000001999999 2010,1,2092,0.8990000001999999 2010,1,2093,0.8990000001999999 2010,1,2094,0.8990000001999999 -2010,1,2095,0.8979287454999999 +2010,1,2095,0.8979287455 2010,1,2096,0.8920200892 2010,1,2097,0.8861114332 -2010,1,2098,0.8802027765999999 +2010,1,2098,0.8802027766 2010,1,2099,0.8762636728 2010,1,2100,0.8742941203 2010,1,2101,0.8742941203 2010,1,2102,0.8742941203 2010,1,2103,0.8742941203 2010,1,2104,0.8762636728 -2010,1,2105,0.8821723288 +2010,1,2105,0.8821723288000001 2010,1,2106,0.8880809851 2010,1,2107,0.8920200892 2010,1,2108,0.8939896417000001 2010,1,2109,0.8959591936 -2010,1,2110,0.8979287454999999 -2010,1,2111,0.8979287454999999 -2010,1,2112,0.8979287454999999 -2010,1,2113,0.8979287454999999 -2010,1,2114,0.8979287454999999 -2010,1,2115,0.8979287454999999 +2010,1,2110,0.8979287455 +2010,1,2111,0.8979287455 +2010,1,2112,0.8979287455 +2010,1,2113,0.8979287455 +2010,1,2114,0.8979287455 +2010,1,2115,0.8979287455 2010,1,2116,0.8990000001999999 2010,1,2117,0.8990000001999999 2010,1,2118,0.8990000001999999 -2010,1,2119,0.8979287454999999 +2010,1,2119,0.8979287455 2010,1,2120,0.8939896417000001 2010,1,2121,0.8920200892 2010,1,2122,0.8900505372999999 2010,1,2123,0.8880809851 2010,1,2124,0.8861114332 -2010,1,2125,0.8841418812999998 -2010,1,2126,0.8841418812999998 +2010,1,2125,0.8841418812999999 +2010,1,2126,0.8841418812999999 2010,1,2127,0.8861114332 2010,1,2128,0.8880809851 2010,1,2129,0.8920200892 @@ -2146,12 +2146,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2145,0.8990000001999999 2010,1,2146,0.8990000001999999 2010,1,2147,0.8990000001999999 -2010,1,2148,0.8979287454999999 -2010,1,2149,0.8979287454999999 +2010,1,2148,0.8979287455 +2010,1,2149,0.8979287455 2010,1,2150,0.8959591936 2010,1,2151,0.8959591936 2010,1,2152,0.8959591936 -2010,1,2153,0.8979287454999999 +2010,1,2153,0.8979287455 2010,1,2154,0.8990000001999999 2010,1,2155,0.8990000001999999 2010,1,2156,0.8990000001999999 @@ -2191,7 +2191,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2190,0.8990000001999999 2010,1,2191,0.8990000001999999 2010,1,2192,0.8990000001999999 -2010,1,2193,0.8979287454999999 +2010,1,2193,0.8979287455 2010,1,2194,0.8920200892 2010,1,2195,0.8900505372999999 2010,1,2196,0.8880809851 @@ -2224,7 +2224,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2223,0.8880809851 2010,1,2224,0.8900505372999999 2010,1,2225,0.8920200892 -2010,1,2226,0.8979287454999999 +2010,1,2226,0.8979287455 2010,1,2227,0.8990000001999999 2010,1,2228,0.8990000001999999 2010,1,2229,0.8990000001999999 @@ -2247,7 +2247,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2246,0.8900505372999999 2010,1,2247,0.8920200892 2010,1,2248,0.8939896417000001 -2010,1,2249,0.8979287454999999 +2010,1,2249,0.8979287455 2010,1,2250,0.8990000001999999 2010,1,2251,0.8990000001999999 2010,1,2252,0.8990000001999999 @@ -2264,7 +2264,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2263,0.8990000001999999 2010,1,2264,0.8990000001999999 2010,1,2265,0.8990000001999999 -2010,1,2266,0.8979287454999999 +2010,1,2266,0.8979287455 2010,1,2267,0.8959591936 2010,1,2268,0.8939896417000001 2010,1,2269,0.8939896417000001 @@ -2287,7 +2287,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2286,0.8990000001999999 2010,1,2287,0.8990000001999999 2010,1,2288,0.8990000001999999 -2010,1,2289,0.8979287454999999 +2010,1,2289,0.8979287455 2010,1,2290,0.8939896417000001 2010,1,2291,0.8920200892 2010,1,2292,0.8900505372999999 @@ -2312,14 +2312,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2311,0.8990000001999999 2010,1,2312,0.8920200892 2010,1,2313,0.8861114332 -2010,1,2314,0.8802027765999999 +2010,1,2314,0.8802027766 2010,1,2315,0.8762636728 2010,1,2316,0.8742941203 2010,1,2317,0.8723245680999999 2010,1,2318,0.8723245680999999 2010,1,2319,0.8723245680999999 2010,1,2320,0.8742941203 -2010,1,2321,0.8782332246999999 +2010,1,2321,0.8782332247 2010,1,2322,0.8880809851 2010,1,2323,0.8939896417000001 2010,1,2324,0.8939896417000001 @@ -2328,28 +2328,28 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2327,0.8939896417000001 2010,1,2328,0.8959591936 2010,1,2329,0.8959591936 -2010,1,2330,0.8979287454999999 +2010,1,2330,0.8979287455 2010,1,2331,0.8990000001999999 2010,1,2332,0.8990000001999999 2010,1,2333,0.8990000001999999 2010,1,2334,0.8990000001999999 2010,1,2335,0.8959591936 2010,1,2336,0.8900505372999999 -2010,1,2337,0.8841418812999998 -2010,1,2338,0.8802027765999999 -2010,1,2339,0.8782332246999999 +2010,1,2337,0.8841418812999999 +2010,1,2338,0.8802027766 +2010,1,2339,0.8782332247 2010,1,2340,0.8762636728 2010,1,2341,0.8742941203 2010,1,2342,0.8742941203 2010,1,2343,0.8742941203 2010,1,2344,0.8762636728 -2010,1,2345,0.8802027765999999 +2010,1,2345,0.8802027766 2010,1,2346,0.8861114332 2010,1,2347,0.8900505372999999 2010,1,2348,0.8920200892 2010,1,2349,0.8939896417000001 2010,1,2350,0.8959591936 -2010,1,2351,0.8979287454999999 +2010,1,2351,0.8979287455 2010,1,2352,0.8990000001999999 2010,1,2353,0.8990000001999999 2010,1,2354,0.8990000001999999 @@ -2360,18 +2360,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2359,0.8990000001999999 2010,1,2360,0.8959591936 2010,1,2361,0.8900505372999999 -2010,1,2362,0.8841418812999998 -2010,1,2363,0.8782332246999999 +2010,1,2362,0.8841418812999999 +2010,1,2363,0.8782332247 2010,1,2364,0.8742941203 2010,1,2365,0.8723245680999999 2010,1,2366,0.8723245680999999 2010,1,2367,0.8742941203 2010,1,2368,0.8762636728 -2010,1,2369,0.8802027765999999 +2010,1,2369,0.8802027766 2010,1,2370,0.8861114332 2010,1,2371,0.8920200892 2010,1,2372,0.8959591936 -2010,1,2373,0.8979287454999999 +2010,1,2373,0.8979287455 2010,1,2374,0.8990000001999999 2010,1,2375,0.8990000001999999 2010,1,2376,0.8990000001999999 @@ -2385,15 +2385,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2384,0.8959591936 2010,1,2385,0.8920200892 2010,1,2386,0.8880809851 -2010,1,2387,0.8841418812999998 -2010,1,2388,0.8821723288 -2010,1,2389,0.8802027765999999 -2010,1,2390,0.8802027765999999 -2010,1,2391,0.8821723288 -2010,1,2392,0.8841418812999998 +2010,1,2387,0.8841418812999999 +2010,1,2388,0.8821723288000001 +2010,1,2389,0.8802027766 +2010,1,2390,0.8802027766 +2010,1,2391,0.8821723288000001 +2010,1,2392,0.8841418812999999 2010,1,2393,0.8880809851 2010,1,2394,0.8939896417000001 -2010,1,2395,0.8979287454999999 +2010,1,2395,0.8979287455 2010,1,2396,0.8990000001999999 2010,1,2397,0.8990000001999999 2010,1,2398,0.8990000001999999 @@ -2417,7 +2417,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2416,0.8920200892 2010,1,2417,0.8939896417000001 2010,1,2418,0.8959591936 -2010,1,2419,0.8979287454999999 +2010,1,2419,0.8979287455 2010,1,2420,0.8990000001999999 2010,1,2421,0.8990000001999999 2010,1,2422,0.8990000001999999 @@ -2431,7 +2431,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2430,0.8990000001999999 2010,1,2431,0.8990000001999999 2010,1,2432,0.8990000001999999 -2010,1,2433,0.8979287454999999 +2010,1,2433,0.8979287455 2010,1,2434,0.8959591936 2010,1,2435,0.8939896417000001 2010,1,2436,0.8920200892 @@ -2439,7 +2439,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2438,0.8920200892 2010,1,2439,0.8939896417000001 2010,1,2440,0.8959591936 -2010,1,2441,0.8979287454999999 +2010,1,2441,0.8979287455 2010,1,2442,0.8990000001999999 2010,1,2443,0.8990000001999999 2010,1,2444,0.8990000001999999 @@ -2455,13 +2455,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2454,0.8990000001999999 2010,1,2455,0.8990000001999999 2010,1,2456,0.8990000001999999 -2010,1,2457,0.8979287454999999 +2010,1,2457,0.8979287455 2010,1,2458,0.8939896417000001 2010,1,2459,0.8900505372999999 2010,1,2460,0.8880809851 2010,1,2461,0.8861114332 -2010,1,2462,0.8841418812999998 -2010,1,2463,0.8841418812999998 +2010,1,2462,0.8841418812999999 +2010,1,2463,0.8841418812999999 2010,1,2464,0.8861114332 2010,1,2465,0.8880809851 2010,1,2466,0.8939896417000001 @@ -2481,13 +2481,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2480,0.8959591936 2010,1,2481,0.8920200892 2010,1,2482,0.8861114332 -2010,1,2483,0.8841418812999998 -2010,1,2484,0.8821723288 -2010,1,2485,0.8802027765999999 -2010,1,2486,0.8782332246999999 -2010,1,2487,0.8802027765999999 -2010,1,2488,0.8821723288 -2010,1,2489,0.8841418812999998 +2010,1,2483,0.8841418812999999 +2010,1,2484,0.8821723288000001 +2010,1,2485,0.8802027766 +2010,1,2486,0.8782332247 +2010,1,2487,0.8802027766 +2010,1,2488,0.8821723288000001 +2010,1,2489,0.8841418812999999 2010,1,2490,0.8900505372999999 2010,1,2491,0.8959591936 2010,1,2492,0.8990000001999999 @@ -2504,18 +2504,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2503,0.8990000001999999 2010,1,2504,0.8959591936 2010,1,2505,0.8900505372999999 -2010,1,2506,0.8841418812999998 -2010,1,2507,0.8782332246999999 +2010,1,2506,0.8841418812999999 +2010,1,2507,0.8782332247 2010,1,2508,0.8742941203 2010,1,2509,0.8723245680999999 2010,1,2510,0.8723245680999999 2010,1,2511,0.8723245680999999 2010,1,2512,0.8742941203 -2010,1,2513,0.8802027765999999 +2010,1,2513,0.8802027766 2010,1,2514,0.8861114332 2010,1,2515,0.8920200892 2010,1,2516,0.8959591936 -2010,1,2517,0.8979287454999999 +2010,1,2517,0.8979287455 2010,1,2518,0.8990000001999999 2010,1,2519,0.8990000001999999 2010,1,2520,0.8990000001999999 @@ -2529,17 +2529,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2528,0.8959591936 2010,1,2529,0.8900505372999999 2010,1,2530,0.8861114332 -2010,1,2531,0.8821723288 -2010,1,2532,0.8802027765999999 -2010,1,2533,0.8782332246999999 +2010,1,2531,0.8821723288000001 +2010,1,2532,0.8802027766 +2010,1,2533,0.8782332247 2010,1,2534,0.8762636728 -2010,1,2535,0.8782332246999999 -2010,1,2536,0.8802027765999999 -2010,1,2537,0.8821723288 +2010,1,2535,0.8782332247 +2010,1,2536,0.8802027766 +2010,1,2537,0.8821723288000001 2010,1,2538,0.8880809851 2010,1,2539,0.8939896417000001 -2010,1,2540,0.8979287454999999 -2010,1,2541,0.8979287454999999 +2010,1,2540,0.8979287455 +2010,1,2541,0.8979287455 2010,1,2542,0.8990000001999999 2010,1,2543,0.8990000001999999 2010,1,2544,0.8990000001999999 @@ -2549,42 +2549,42 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2548,0.8990000001999999 2010,1,2549,0.8990000001999999 2010,1,2550,0.8990000001999999 -2010,1,2551,0.8979287454999999 +2010,1,2551,0.8979287455 2010,1,2552,0.8939896417000001 2010,1,2553,0.8880809851 -2010,1,2554,0.8841418812999998 -2010,1,2555,0.8802027765999999 +2010,1,2554,0.8841418812999999 +2010,1,2555,0.8802027766 2010,1,2556,0.8762636728 2010,1,2557,0.8742941203 2010,1,2558,0.8723245680999999 2010,1,2559,0.8723245680999999 2010,1,2560,0.8742941203 -2010,1,2561,0.8782332246999999 -2010,1,2562,0.8841418812999998 +2010,1,2561,0.8782332247 +2010,1,2562,0.8841418812999999 2010,1,2563,0.8900505372999999 2010,1,2564,0.8920200892 2010,1,2565,0.8939896417000001 2010,1,2566,0.8939896417000001 2010,1,2567,0.8959591936 -2010,1,2568,0.8979287454999999 -2010,1,2569,0.8979287454999999 +2010,1,2568,0.8979287455 +2010,1,2569,0.8979287455 2010,1,2570,0.8990000001999999 2010,1,2571,0.8990000001999999 2010,1,2572,0.8990000001999999 2010,1,2573,0.8990000001999999 -2010,1,2574,0.8979287454999999 +2010,1,2574,0.8979287455 2010,1,2575,0.8939896417000001 2010,1,2576,0.8861114332 -2010,1,2577,0.8802027765999999 +2010,1,2577,0.8802027766 2010,1,2578,0.8742941203 2010,1,2579,0.8723245680999999 -2010,1,2580,0.8683854642999999 +2010,1,2580,0.8683854643 2010,1,2581,0.8664159117999999 2010,1,2582,0.8664159117999999 -2010,1,2583,0.8683854642999999 -2010,1,2584,0.8703550161999999 +2010,1,2583,0.8683854643 +2010,1,2584,0.8703550162 2010,1,2585,0.8742941203 -2010,1,2586,0.8802027765999999 +2010,1,2586,0.8802027766 2010,1,2587,0.8861114332 2010,1,2588,0.8900505372999999 2010,1,2589,0.8920200892 @@ -2594,33 +2594,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2593,0.8939896417000001 2010,1,2594,0.8939896417000001 2010,1,2595,0.8959591936 -2010,1,2596,0.8979287454999999 +2010,1,2596,0.8979287455 2010,1,2597,0.8990000001999999 -2010,1,2598,0.8979287454999999 +2010,1,2598,0.8979287455 2010,1,2599,0.8920200892 2010,1,2600,0.8880809851 -2010,1,2601,0.8841418812999998 -2010,1,2602,0.8782332246999999 +2010,1,2601,0.8841418812999999 +2010,1,2602,0.8782332247 2010,1,2603,0.8742941203 2010,1,2604,0.8723245680999999 -2010,1,2605,0.8703550161999999 -2010,1,2606,0.8703550161999999 +2010,1,2605,0.8703550162 +2010,1,2606,0.8703550162 2010,1,2607,0.8723245680999999 2010,1,2608,0.8742941203 -2010,1,2609,0.8782332246999999 -2010,1,2610,0.8841418812999998 +2010,1,2609,0.8782332247 +2010,1,2610,0.8841418812999999 2010,1,2611,0.8900505372999999 2010,1,2612,0.8939896417000001 2010,1,2613,0.8959591936 -2010,1,2614,0.8979287454999999 -2010,1,2615,0.8979287454999999 +2010,1,2614,0.8979287455 +2010,1,2615,0.8979287455 2010,1,2616,0.8990000001999999 2010,1,2617,0.8990000001999999 2010,1,2618,0.8990000001999999 2010,1,2619,0.8990000001999999 2010,1,2620,0.8990000001999999 2010,1,2621,0.8990000001999999 -2010,1,2622,0.8979287454999999 +2010,1,2622,0.8979287455 2010,1,2623,0.8959591936 2010,1,2624,0.8939896417000001 2010,1,2625,0.8920200892 @@ -2648,10 +2648,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2647,0.8990000001999999 2010,1,2648,0.8990000001999999 2010,1,2649,0.8990000001999999 -2010,1,2650,0.8979287454999999 +2010,1,2650,0.8979287455 2010,1,2651,0.8959591936 2010,1,2652,0.8959591936 -2010,1,2653,0.8979287454999999 +2010,1,2653,0.8979287455 2010,1,2654,0.8990000001999999 2010,1,2655,0.8990000001999999 2010,1,2656,0.8990000001999999 @@ -2680,7 +2680,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2679,0.8920200892 2010,1,2680,0.8939896417000001 2010,1,2681,0.8959591936 -2010,1,2682,0.8979287454999999 +2010,1,2682,0.8979287455 2010,1,2683,0.8990000001999999 2010,1,2684,0.8990000001999999 2010,1,2685,0.8990000001999999 @@ -2697,18 +2697,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2696,0.8959591936 2010,1,2697,0.8900505372999999 2010,1,2698,0.8861114332 -2010,1,2699,0.8841418812999998 -2010,1,2700,0.8802027765999999 -2010,1,2701,0.8782332246999999 +2010,1,2699,0.8841418812999999 +2010,1,2700,0.8802027766 +2010,1,2701,0.8782332247 2010,1,2702,0.8762636728 2010,1,2703,0.8762636728 -2010,1,2704,0.8782332246999999 -2010,1,2705,0.8802027765999999 +2010,1,2704,0.8782332247 +2010,1,2705,0.8802027766 2010,1,2706,0.8861114332 2010,1,2707,0.8920200892 2010,1,2708,0.8939896417000001 2010,1,2709,0.8959591936 -2010,1,2710,0.8979287454999999 +2010,1,2710,0.8979287455 2010,1,2711,0.8990000001999999 2010,1,2712,0.8990000001999999 2010,1,2713,0.8990000001999999 @@ -2719,21 +2719,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2718,0.8990000001999999 2010,1,2719,0.8939896417000001 2010,1,2720,0.8900505372999999 -2010,1,2721,0.8841418812999998 -2010,1,2722,0.8821723288 -2010,1,2723,0.8782332246999999 +2010,1,2721,0.8841418812999999 +2010,1,2722,0.8821723288000001 +2010,1,2723,0.8782332247 2010,1,2724,0.8762636728 2010,1,2725,0.8742941203 2010,1,2726,0.8723245680999999 2010,1,2727,0.8723245680999999 2010,1,2728,0.8742941203 2010,1,2729,0.8762636728 -2010,1,2730,0.8841418812999998 +2010,1,2730,0.8841418812999999 2010,1,2731,0.8900505372999999 2010,1,2732,0.8920200892 2010,1,2733,0.8939896417000001 2010,1,2734,0.8959591936 -2010,1,2735,0.8979287454999999 +2010,1,2735,0.8979287455 2010,1,2736,0.8990000001999999 2010,1,2737,0.8990000001999999 2010,1,2738,0.8990000001999999 @@ -2743,16 +2743,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2742,0.8990000001999999 2010,1,2743,0.8939896417000001 2010,1,2744,0.8900505372999999 -2010,1,2745,0.8841418812999998 -2010,1,2746,0.8782332246999999 +2010,1,2745,0.8841418812999999 +2010,1,2746,0.8782332247 2010,1,2747,0.8742941203 2010,1,2748,0.8723245680999999 -2010,1,2749,0.8703550161999999 -2010,1,2750,0.8683854642999999 -2010,1,2751,0.8683854642999999 -2010,1,2752,0.8703550161999999 +2010,1,2749,0.8703550162 +2010,1,2750,0.8683854643 +2010,1,2751,0.8683854643 +2010,1,2752,0.8703550162 2010,1,2753,0.8742941203 -2010,1,2754,0.8802027765999999 +2010,1,2754,0.8802027766 2010,1,2755,0.8861114332 2010,1,2756,0.8880809851 2010,1,2757,0.8900505372999999 @@ -2762,42 +2762,42 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2761,0.8939896417000001 2010,1,2762,0.8959591936 2010,1,2763,0.8959591936 -2010,1,2764,0.8979287454999999 -2010,1,2765,0.8979287454999999 +2010,1,2764,0.8979287455 +2010,1,2765,0.8979287455 2010,1,2766,0.8959591936 2010,1,2767,0.8900505372999999 -2010,1,2768,0.8841418812999998 -2010,1,2769,0.8782332246999999 +2010,1,2768,0.8841418812999999 +2010,1,2769,0.8782332247 2010,1,2770,0.8723245680999999 -2010,1,2771,0.8683854642999999 +2010,1,2771,0.8683854643 2010,1,2772,0.8644463599 2010,1,2773,0.8624768076999999 2010,1,2774,0.8624768076999999 2010,1,2775,0.8644463599 2010,1,2776,0.8664159117999999 -2010,1,2777,0.8703550161999999 +2010,1,2777,0.8703550162 2010,1,2778,0.8762636728 -2010,1,2779,0.8841418812999998 +2010,1,2779,0.8841418812999999 2010,1,2780,0.8880809851 2010,1,2781,0.8900505372999999 2010,1,2782,0.8939896417000001 2010,1,2783,0.8959591936 2010,1,2784,0.8959591936 2010,1,2785,0.8959591936 -2010,1,2786,0.8979287454999999 +2010,1,2786,0.8979287455 2010,1,2787,0.8990000001999999 2010,1,2788,0.8990000001999999 2010,1,2789,0.8990000001999999 -2010,1,2790,0.8979287454999999 +2010,1,2790,0.8979287455 2010,1,2791,0.8920200892 2010,1,2792,0.8861114332 -2010,1,2793,0.8802027765999999 +2010,1,2793,0.8802027766 2010,1,2794,0.8762636728 2010,1,2795,0.8742941203 2010,1,2796,0.8742941203 2010,1,2797,0.8762636728 -2010,1,2798,0.8782332246999999 -2010,1,2799,0.8821723288 +2010,1,2798,0.8782332247 +2010,1,2799,0.8821723288000001 2010,1,2800,0.8861114332 2010,1,2801,0.8880809851 2010,1,2802,0.8900505372999999 @@ -2806,21 +2806,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2805,0.8939896417000001 2010,1,2806,0.8959591936 2010,1,2807,0.8959591936 -2010,1,2808,0.8979287454999999 -2010,1,2809,0.8979287454999999 +2010,1,2808,0.8979287455 +2010,1,2809,0.8979287455 2010,1,2810,0.8990000001999999 2010,1,2811,0.8990000001999999 2010,1,2812,0.8990000001999999 2010,1,2813,0.8990000001999999 2010,1,2814,0.8990000001999999 2010,1,2815,0.8990000001999999 -2010,1,2816,0.8979287454999999 +2010,1,2816,0.8979287455 2010,1,2817,0.8939896417000001 2010,1,2818,0.8900505372999999 2010,1,2819,0.8880809851 2010,1,2820,0.8861114332 -2010,1,2821,0.8841418812999998 -2010,1,2822,0.8841418812999998 +2010,1,2821,0.8841418812999999 +2010,1,2822,0.8841418812999999 2010,1,2823,0.8861114332 2010,1,2824,0.8880809851 2010,1,2825,0.8920200892 @@ -2840,7 +2840,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2839,0.8990000001999999 2010,1,2840,0.8990000001999999 2010,1,2841,0.8990000001999999 -2010,1,2842,0.8979287454999999 +2010,1,2842,0.8979287455 2010,1,2843,0.8939896417000001 2010,1,2844,0.8920200892 2010,1,2845,0.8920200892 @@ -2867,10 +2867,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2866,0.8900505372999999 2010,1,2867,0.8880809851 2010,1,2868,0.8861114332 -2010,1,2869,0.8841418812999998 -2010,1,2870,0.8821723288 -2010,1,2871,0.8821723288 -2010,1,2872,0.8841418812999998 +2010,1,2869,0.8841418812999999 +2010,1,2870,0.8821723288000001 +2010,1,2871,0.8821723288000001 +2010,1,2872,0.8841418812999999 2010,1,2873,0.8861114332 2010,1,2874,0.8900505372999999 2010,1,2875,0.8959591936 @@ -2888,20 +2888,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2887,0.8990000001999999 2010,1,2888,0.8939896417000001 2010,1,2889,0.8880809851 -2010,1,2890,0.8841418812999998 -2010,1,2891,0.8802027765999999 -2010,1,2892,0.8782332246999999 +2010,1,2890,0.8841418812999999 +2010,1,2891,0.8802027766 +2010,1,2892,0.8782332247 2010,1,2893,0.8762636728 2010,1,2894,0.8742941203 2010,1,2895,0.8742941203 2010,1,2896,0.8762636728 -2010,1,2897,0.8782332246999999 -2010,1,2898,0.8841418812999998 +2010,1,2897,0.8782332247 +2010,1,2898,0.8841418812999999 2010,1,2899,0.8900505372999999 2010,1,2900,0.8939896417000001 2010,1,2901,0.8959591936 -2010,1,2902,0.8979287454999999 -2010,1,2903,0.8979287454999999 +2010,1,2902,0.8979287455 +2010,1,2903,0.8979287455 2010,1,2904,0.8990000001999999 2010,1,2905,0.8990000001999999 2010,1,2906,0.8990000001999999 @@ -2912,15 +2912,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2911,0.8939896417000001 2010,1,2912,0.8900505372999999 2010,1,2913,0.8861114332 -2010,1,2914,0.8821723288 -2010,1,2915,0.8782332246999999 +2010,1,2914,0.8821723288000001 +2010,1,2915,0.8782332247 2010,1,2916,0.8762636728 2010,1,2917,0.8742941203 2010,1,2918,0.8723245680999999 2010,1,2919,0.8723245680999999 2010,1,2920,0.8742941203 2010,1,2921,0.8762636728 -2010,1,2922,0.8821723288 +2010,1,2922,0.8821723288000001 2010,1,2923,0.8880809851 2010,1,2924,0.8920200892 2010,1,2925,0.8939896417000001 @@ -2930,22 +2930,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2929,0.8959591936 2010,1,2930,0.8959591936 2010,1,2931,0.8959591936 -2010,1,2932,0.8979287454999999 -2010,1,2933,0.8979287454999999 +2010,1,2932,0.8979287455 +2010,1,2933,0.8979287455 2010,1,2934,0.8959591936 2010,1,2935,0.8880809851 -2010,1,2936,0.8802027765999999 +2010,1,2936,0.8802027766 2010,1,2937,0.8742941203 -2010,1,2938,0.8683854642999999 +2010,1,2938,0.8683854643 2010,1,2939,0.8664159117999999 2010,1,2940,0.8644463599 2010,1,2941,0.8624768076999999 2010,1,2942,0.8624768076999999 2010,1,2943,0.8624768076999999 2010,1,2944,0.8644463599 -2010,1,2945,0.8683854642999999 +2010,1,2945,0.8683854643 2010,1,2946,0.8762636728 -2010,1,2947,0.8821723288 +2010,1,2947,0.8821723288000001 2010,1,2948,0.8861114332 2010,1,2949,0.8900505372999999 2010,1,2950,0.8920200892 @@ -2953,46 +2953,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,2952,0.8939896417000001 2010,1,2953,0.8959591936 2010,1,2954,0.8959591936 -2010,1,2955,0.8979287454999999 -2010,1,2956,0.8979287454999999 -2010,1,2957,0.8979287454999999 +2010,1,2955,0.8979287455 +2010,1,2956,0.8979287455 +2010,1,2957,0.8979287455 2010,1,2958,0.8959591936 2010,1,2959,0.8900505372999999 2010,1,2960,0.8861114332 -2010,1,2961,0.8802027765999999 +2010,1,2961,0.8802027766 2010,1,2962,0.8762636728 2010,1,2963,0.8723245680999999 -2010,1,2964,0.8703550161999999 -2010,1,2965,0.8683854642999999 +2010,1,2964,0.8703550162 +2010,1,2965,0.8683854643 2010,1,2966,0.8679581486999999 -2010,1,2967,0.8683854642999999 -2010,1,2968,0.8703550161999999 +2010,1,2967,0.8683854643 +2010,1,2968,0.8703550162 2010,1,2969,0.8723245680999999 -2010,1,2970,0.8782332246999999 -2010,1,2971,0.8841418812999998 +2010,1,2970,0.8782332247 +2010,1,2971,0.8841418812999999 2010,1,2972,0.8880809851 2010,1,2973,0.8900505372999999 2010,1,2974,0.8920200892 2010,1,2975,0.8939896417000001 -2010,1,2976,0.8979287454999999 -2010,1,2977,0.8979287454999999 +2010,1,2976,0.8979287455 +2010,1,2977,0.8979287455 2010,1,2978,0.8990000001999999 2010,1,2979,0.8990000001999999 2010,1,2980,0.8990000001999999 2010,1,2981,0.8990000001999999 -2010,1,2982,0.8979287454999999 +2010,1,2982,0.8979287455 2010,1,2983,0.8920200892 2010,1,2984,0.8880809851 -2010,1,2985,0.8841418812999998 -2010,1,2986,0.8802027765999999 +2010,1,2985,0.8841418812999999 +2010,1,2986,0.8802027766 2010,1,2987,0.8762636728 2010,1,2988,0.8742941203 2010,1,2989,0.8723245680999999 -2010,1,2990,0.8703550161999999 +2010,1,2990,0.8703550162 2010,1,2991,0.8723245680999999 2010,1,2992,0.8742941203 2010,1,2993,0.8762636728 -2010,1,2994,0.8802027765999999 +2010,1,2994,0.8802027766 2010,1,2995,0.8880809851 2010,1,2996,0.8920200892 2010,1,2997,0.8939896417000001 @@ -3005,21 +3005,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3004,0.8990000001999999 2010,1,3005,0.8990000001999999 2010,1,3006,0.8990000001999999 -2010,1,3007,0.8979287454999999 +2010,1,3007,0.8979287455 2010,1,3008,0.8920200892 2010,1,3009,0.8880809851 -2010,1,3010,0.8841418812999998 -2010,1,3011,0.8802027765999999 +2010,1,3010,0.8841418812999999 +2010,1,3011,0.8802027766 2010,1,3012,0.8762636728 2010,1,3013,0.8742941203 2010,1,3014,0.8742941203 2010,1,3015,0.8742941203 2010,1,3016,0.8762636728 -2010,1,3017,0.8782332246999999 -2010,1,3018,0.8841418812999998 +2010,1,3017,0.8782332247 +2010,1,3018,0.8841418812999999 2010,1,3019,0.8920200892 2010,1,3020,0.8959591936 -2010,1,3021,0.8979287454999999 +2010,1,3021,0.8979287455 2010,1,3022,0.8990000001999999 2010,1,3023,0.8990000001999999 2010,1,3024,0.8990000001999999 @@ -3031,22 +3031,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3030,0.8990000001999999 2010,1,3031,0.8939896417000001 2010,1,3032,0.8861114332 -2010,1,3033,0.8802027765999999 +2010,1,3033,0.8802027766 2010,1,3034,0.8742941203 2010,1,3035,0.8723245680999999 -2010,1,3036,0.8703550161999999 -2010,1,3037,0.8683854642999999 +2010,1,3036,0.8703550162 +2010,1,3037,0.8683854643 2010,1,3038,0.8664159117999999 2010,1,3039,0.8664159117999999 -2010,1,3040,0.8683854642999999 +2010,1,3040,0.8683854643 2010,1,3041,0.8723245680999999 -2010,1,3042,0.8782332246999999 +2010,1,3042,0.8782332247 2010,1,3043,0.8861114332 2010,1,3044,0.8900505372999999 2010,1,3045,0.8920200892 2010,1,3046,0.8939896417000001 2010,1,3047,0.8959591936 -2010,1,3048,0.8979287454999999 +2010,1,3048,0.8979287455 2010,1,3049,0.8990000001999999 2010,1,3050,0.8990000001999999 2010,1,3051,0.8990000001999999 @@ -3056,7 +3056,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3055,0.8959591936 2010,1,3056,0.8900505372999999 2010,1,3057,0.8861114332 -2010,1,3058,0.8802027765999999 +2010,1,3058,0.8802027766 2010,1,3059,0.8762636728 2010,1,3060,0.8742941203 2010,1,3061,0.8723245680999999 @@ -3064,12 +3064,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3063,0.8723245680999999 2010,1,3064,0.8742941203 2010,1,3065,0.8762636728 -2010,1,3066,0.8802027765999999 +2010,1,3066,0.8802027766 2010,1,3067,0.8880809851 2010,1,3068,0.8920200892 2010,1,3069,0.8939896417000001 2010,1,3070,0.8959591936 -2010,1,3071,0.8979287454999999 +2010,1,3071,0.8979287455 2010,1,3072,0.8990000001999999 2010,1,3073,0.8990000001999999 2010,1,3074,0.8990000001999999 @@ -3078,13 +3078,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3077,0.8990000001999999 2010,1,3078,0.8990000001999999 2010,1,3079,0.8990000001999999 -2010,1,3080,0.8979287454999999 +2010,1,3080,0.8979287455 2010,1,3081,0.8959591936 2010,1,3082,0.8920200892 2010,1,3083,0.8880809851 -2010,1,3084,0.8841418812999998 -2010,1,3085,0.8821723288 -2010,1,3086,0.8841418812999998 +2010,1,3084,0.8841418812999999 +2010,1,3085,0.8821723288000001 +2010,1,3086,0.8841418812999999 2010,1,3087,0.8861114332 2010,1,3088,0.8880809851 2010,1,3089,0.8900505372999999 @@ -3105,15 +3105,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3104,0.8959591936 2010,1,3105,0.8920200892 2010,1,3106,0.8880809851 -2010,1,3107,0.8841418812999998 -2010,1,3108,0.8821723288 -2010,1,3109,0.8802027765999999 -2010,1,3110,0.8802027765999999 -2010,1,3111,0.8821723288 -2010,1,3112,0.8841418812999998 +2010,1,3107,0.8841418812999999 +2010,1,3108,0.8821723288000001 +2010,1,3109,0.8802027766 +2010,1,3110,0.8802027766 +2010,1,3111,0.8821723288000001 +2010,1,3112,0.8841418812999999 2010,1,3113,0.8880809851 2010,1,3114,0.8939896417000001 -2010,1,3115,0.8979287454999999 +2010,1,3115,0.8979287455 2010,1,3116,0.8990000001999999 2010,1,3117,0.8990000001999999 2010,1,3118,0.8990000001999999 @@ -3127,14 +3127,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3126,0.8990000001999999 2010,1,3127,0.8990000001999999 2010,1,3128,0.8990000001999999 -2010,1,3129,0.8979287454999999 +2010,1,3129,0.8979287455 2010,1,3130,0.8920200892 2010,1,3131,0.8900505372999999 2010,1,3132,0.8880809851 2010,1,3133,0.8861114332 -2010,1,3134,0.8841418812999998 -2010,1,3135,0.8821723288 -2010,1,3136,0.8841418812999998 +2010,1,3134,0.8841418812999999 +2010,1,3135,0.8821723288000001 +2010,1,3136,0.8841418812999999 2010,1,3137,0.8861114332 2010,1,3138,0.8900505372999999 2010,1,3139,0.8959591936 @@ -3149,18 +3149,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3148,0.8990000001999999 2010,1,3149,0.8990000001999999 2010,1,3150,0.8990000001999999 -2010,1,3151,0.8979287454999999 +2010,1,3151,0.8979287455 2010,1,3152,0.8920200892 2010,1,3153,0.8861114332 -2010,1,3154,0.8821723288 -2010,1,3155,0.8782332246999999 +2010,1,3154,0.8821723288000001 +2010,1,3155,0.8782332247 2010,1,3156,0.8762636728 2010,1,3157,0.8742941203 2010,1,3158,0.8723245680999999 2010,1,3159,0.8723245680999999 2010,1,3160,0.8742941203 2010,1,3161,0.8762636728 -2010,1,3162,0.8802027765999999 +2010,1,3162,0.8802027766 2010,1,3163,0.8861114332 2010,1,3164,0.8880809851 2010,1,3165,0.8880809851 @@ -3169,23 +3169,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3168,0.8939896417000001 2010,1,3169,0.8939896417000001 2010,1,3170,0.8959591936 -2010,1,3171,0.8979287454999999 +2010,1,3171,0.8979287455 2010,1,3172,0.8990000001999999 2010,1,3173,0.8990000001999999 2010,1,3174,0.8959591936 2010,1,3175,0.8920200892 2010,1,3176,0.8861114332 -2010,1,3177,0.8802027765999999 +2010,1,3177,0.8802027766 2010,1,3178,0.8742941203 -2010,1,3179,0.8703550161999999 -2010,1,3180,0.8683854642999999 +2010,1,3179,0.8703550162 +2010,1,3180,0.8683854643 2010,1,3181,0.8664159117999999 2010,1,3182,0.8664159117999999 2010,1,3183,0.8664159117999999 -2010,1,3184,0.8683854642999999 -2010,1,3185,0.8703550161999999 +2010,1,3184,0.8683854643 +2010,1,3185,0.8703550162 2010,1,3186,0.8762636728 -2010,1,3187,0.8841418812999998 +2010,1,3187,0.8841418812999999 2010,1,3188,0.8880809851 2010,1,3189,0.8900505372999999 2010,1,3190,0.8900505372999999 @@ -3198,18 +3198,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3197,0.8959591936 2010,1,3198,0.8939896417000001 2010,1,3199,0.8880809851 -2010,1,3200,0.8821723288 +2010,1,3200,0.8821723288000001 2010,1,3201,0.8762636728 2010,1,3202,0.8723245680999999 -2010,1,3203,0.8683854642999999 +2010,1,3203,0.8683854643 2010,1,3204,0.8664159117999999 2010,1,3205,0.8644463599 2010,1,3206,0.8644463599 2010,1,3207,0.8644463599 2010,1,3208,0.8664159117999999 -2010,1,3209,0.8683854642999999 +2010,1,3209,0.8683854643 2010,1,3210,0.8742941203 -2010,1,3211,0.8821723288 +2010,1,3211,0.8821723288000001 2010,1,3212,0.8861114332 2010,1,3213,0.8880809851 2010,1,3214,0.8900505372999999 @@ -3222,19 +3222,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3221,0.8959591936 2010,1,3222,0.8939896417000001 2010,1,3223,0.8880809851 -2010,1,3224,0.8821723288 +2010,1,3224,0.8821723288000001 2010,1,3225,0.8762636728 -2010,1,3226,0.8703550161999999 +2010,1,3226,0.8703550162 2010,1,3227,0.8644463599 2010,1,3228,0.8624768076999999 -2010,1,3229,0.8605072557999999 +2010,1,3229,0.8605072558 2010,1,3230,0.8585377039 -2010,1,3231,0.8605072557999999 +2010,1,3231,0.8605072558 2010,1,3232,0.8624768076999999 2010,1,3233,0.8644463599 -2010,1,3234,0.8703550161999999 -2010,1,3235,0.8782332246999999 -2010,1,3236,0.8821723288 +2010,1,3234,0.8703550162 +2010,1,3235,0.8782332247 +2010,1,3236,0.8821723288000001 2010,1,3237,0.8861114332 2010,1,3238,0.8880809851 2010,1,3239,0.8900505372999999 @@ -3246,19 +3246,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3245,0.8920200892 2010,1,3246,0.8900505372999999 2010,1,3247,0.8861114332 -2010,1,3248,0.8802027765999999 +2010,1,3248,0.8802027766 2010,1,3249,0.8742941203 -2010,1,3250,0.8683854642999999 +2010,1,3250,0.8683854643 2010,1,3251,0.8644463599 2010,1,3252,0.8624768076999999 -2010,1,3253,0.8605072557999999 +2010,1,3253,0.8605072558 2010,1,3254,0.8624768076999999 2010,1,3255,0.8644463599 2010,1,3256,0.8664159117999999 -2010,1,3257,0.8683854642999999 +2010,1,3257,0.8683854643 2010,1,3258,0.8742941203 -2010,1,3259,0.8802027765999999 -2010,1,3260,0.8841418812999998 +2010,1,3259,0.8802027766 +2010,1,3260,0.8841418812999999 2010,1,3261,0.8861114332 2010,1,3262,0.8880809851 2010,1,3263,0.8900505372999999 @@ -3275,8 +3275,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3274,0.8900505372999999 2010,1,3275,0.8880809851 2010,1,3276,0.8861114332 -2010,1,3277,0.8841418812999998 -2010,1,3278,0.8841418812999998 +2010,1,3277,0.8841418812999999 +2010,1,3278,0.8841418812999999 2010,1,3279,0.8861114332 2010,1,3280,0.8880809851 2010,1,3281,0.8880809851 @@ -3285,26 +3285,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3284,0.8939896417000001 2010,1,3285,0.8959591936 2010,1,3286,0.8959591936 -2010,1,3287,0.8979287454999999 -2010,1,3288,0.8979287454999999 -2010,1,3289,0.8979287454999999 -2010,1,3290,0.8979287454999999 -2010,1,3291,0.8979287454999999 -2010,1,3292,0.8979287454999999 -2010,1,3293,0.8979287454999999 +2010,1,3287,0.8979287455 +2010,1,3288,0.8979287455 +2010,1,3289,0.8979287455 +2010,1,3290,0.8979287455 +2010,1,3291,0.8979287455 +2010,1,3292,0.8979287455 +2010,1,3293,0.8979287455 2010,1,3294,0.8959591936 2010,1,3295,0.8939896417000001 2010,1,3296,0.8900505372999999 2010,1,3297,0.8861114332 -2010,1,3298,0.8821723288 -2010,1,3299,0.8802027765999999 -2010,1,3300,0.8782332246999999 +2010,1,3298,0.8821723288000001 +2010,1,3299,0.8802027766 +2010,1,3300,0.8782332247 2010,1,3301,0.8762636728 2010,1,3302,0.8742941203 2010,1,3303,0.8742941203 2010,1,3304,0.8762636728 -2010,1,3305,0.8782332246999999 -2010,1,3306,0.8802027765999999 +2010,1,3305,0.8782332247 +2010,1,3306,0.8802027766 2010,1,3307,0.8861114332 2010,1,3308,0.8900505372999999 2010,1,3309,0.8920200892 @@ -3312,25 +3312,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3311,0.8939896417000001 2010,1,3312,0.8959591936 2010,1,3313,0.8959591936 -2010,1,3314,0.8979287454999999 -2010,1,3315,0.8979287454999999 -2010,1,3316,0.8979287454999999 -2010,1,3317,0.8979287454999999 +2010,1,3314,0.8979287455 +2010,1,3315,0.8979287455 +2010,1,3316,0.8979287455 +2010,1,3317,0.8979287455 2010,1,3318,0.8959591936 2010,1,3319,0.8900505372999999 2010,1,3320,0.8861114332 -2010,1,3321,0.8802027765999999 +2010,1,3321,0.8802027766 2010,1,3322,0.8762636728 2010,1,3323,0.8723245680999999 -2010,1,3324,0.8683854642999999 +2010,1,3324,0.8683854643 2010,1,3325,0.8664159117999999 2010,1,3326,0.8644463599 2010,1,3327,0.8644463599 2010,1,3328,0.8664159117999999 -2010,1,3329,0.8683854642999999 +2010,1,3329,0.8683854643 2010,1,3330,0.8723245680999999 -2010,1,3331,0.8802027765999999 -2010,1,3332,0.8841418812999998 +2010,1,3331,0.8802027766 +2010,1,3332,0.8841418812999999 2010,1,3333,0.8861114332 2010,1,3334,0.8880809851 2010,1,3335,0.8900505372999999 @@ -3344,20 +3344,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3343,0.8939896417000001 2010,1,3344,0.8900505372999999 2010,1,3345,0.8861114332 -2010,1,3346,0.8821723288 +2010,1,3346,0.8821723288000001 2010,1,3347,0.8762636728 2010,1,3348,0.8742941203 2010,1,3349,0.8718972524999999 2010,1,3350,0.8699277005999999 -2010,1,3351,0.8703550161999999 +2010,1,3351,0.8703550162 2010,1,3352,0.8723245680999999 2010,1,3353,0.8742941203 -2010,1,3354,0.8782332246999999 +2010,1,3354,0.8782332247 2010,1,3355,0.8861114332 2010,1,3356,0.8900505372999999 2010,1,3357,0.8920200892 2010,1,3358,0.8939896417000001 -2010,1,3359,0.8979287454999999 +2010,1,3359,0.8979287455 2010,1,3360,0.8990000001999999 2010,1,3361,0.8990000001999999 2010,1,3362,0.8990000001999999 @@ -3368,18 +3368,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3367,0.8959591936 2010,1,3368,0.8920200892 2010,1,3369,0.8861114332 -2010,1,3370,0.8821723288 -2010,1,3371,0.8802027765999999 -2010,1,3372,0.8782332246999999 +2010,1,3370,0.8821723288000001 +2010,1,3371,0.8802027766 +2010,1,3372,0.8782332247 2010,1,3373,0.8762636728 2010,1,3374,0.8762636728 2010,1,3375,0.8762636728 -2010,1,3376,0.8782332246999999 -2010,1,3377,0.8802027765999999 +2010,1,3376,0.8782332247 +2010,1,3377,0.8802027766 2010,1,3378,0.8861114332 2010,1,3379,0.8920200892 2010,1,3380,0.8959591936 -2010,1,3381,0.8979287454999999 +2010,1,3381,0.8979287455 2010,1,3382,0.8990000001999999 2010,1,3383,0.8990000001999999 2010,1,3384,0.8990000001999999 @@ -3390,19 +3390,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3389,0.8990000001999999 2010,1,3390,0.8990000001999999 2010,1,3391,0.8990000001999999 -2010,1,3392,0.8979287454999999 +2010,1,3392,0.8979287455 2010,1,3393,0.8939896417000001 2010,1,3394,0.8900505372999999 2010,1,3395,0.8880809851 2010,1,3396,0.8861114332 -2010,1,3397,0.8841418812999998 -2010,1,3398,0.8821723288 -2010,1,3399,0.8821723288 -2010,1,3400,0.8841418812999998 +2010,1,3397,0.8841418812999999 +2010,1,3398,0.8821723288000001 +2010,1,3399,0.8821723288000001 +2010,1,3400,0.8841418812999999 2010,1,3401,0.8861114332 2010,1,3402,0.8900505372999999 2010,1,3403,0.8939896417000001 -2010,1,3404,0.8979287454999999 +2010,1,3404,0.8979287455 2010,1,3405,0.8990000001999999 2010,1,3406,0.8990000001999999 2010,1,3407,0.8990000001999999 @@ -3419,11 +3419,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3418,0.8959591936 2010,1,3419,0.8900505372999999 2010,1,3420,0.8861114332 -2010,1,3421,0.8841418812999998 -2010,1,3422,0.8821723288 -2010,1,3423,0.8802027765999999 -2010,1,3424,0.8821723288 -2010,1,3425,0.8841418812999998 +2010,1,3421,0.8841418812999999 +2010,1,3422,0.8821723288000001 +2010,1,3423,0.8802027766 +2010,1,3424,0.8821723288000001 +2010,1,3425,0.8841418812999999 2010,1,3426,0.8880809851 2010,1,3427,0.8939896417000001 2010,1,3428,0.8990000001999999 @@ -3438,20 +3438,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3437,0.8990000001999999 2010,1,3438,0.8990000001999999 2010,1,3439,0.8990000001999999 -2010,1,3440,0.8979287454999999 +2010,1,3440,0.8979287455 2010,1,3441,0.8939896417000001 2010,1,3442,0.8900505372999999 2010,1,3443,0.8861114332 -2010,1,3444,0.8821723288 -2010,1,3445,0.8802027765999999 -2010,1,3446,0.8782332246999999 -2010,1,3447,0.8782332246999999 -2010,1,3448,0.8802027765999999 -2010,1,3449,0.8821723288 +2010,1,3444,0.8821723288000001 +2010,1,3445,0.8802027766 +2010,1,3446,0.8782332247 +2010,1,3447,0.8782332247 +2010,1,3448,0.8802027766 +2010,1,3449,0.8821723288000001 2010,1,3450,0.8861114332 2010,1,3451,0.8920200892 2010,1,3452,0.8959591936 -2010,1,3453,0.8979287454999999 +2010,1,3453,0.8979287455 2010,1,3454,0.8990000001999999 2010,1,3455,0.8990000001999999 2010,1,3456,0.8990000001999999 @@ -3463,16 +3463,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3462,0.8990000001999999 2010,1,3463,0.8939896417000001 2010,1,3464,0.8880809851 -2010,1,3465,0.8821723288 -2010,1,3466,0.8802027765999999 +2010,1,3465,0.8821723288000001 +2010,1,3466,0.8802027766 2010,1,3467,0.8762636728 2010,1,3468,0.8742941203 2010,1,3469,0.8723245680999999 2010,1,3470,0.8723245680999999 2010,1,3471,0.8742941203 2010,1,3472,0.8762636728 -2010,1,3473,0.8802027765999999 -2010,1,3474,0.8841418812999998 +2010,1,3473,0.8802027766 +2010,1,3474,0.8841418812999999 2010,1,3475,0.8880809851 2010,1,3476,0.8920200892 2010,1,3477,0.8939896417000001 @@ -3482,50 +3482,50 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3481,0.8959591936 2010,1,3482,0.8959591936 2010,1,3483,0.8959591936 -2010,1,3484,0.8979287454999999 -2010,1,3485,0.8979287454999999 +2010,1,3484,0.8979287455 +2010,1,3485,0.8979287455 2010,1,3486,0.8959591936 2010,1,3487,0.8920200892 2010,1,3488,0.8880809851 -2010,1,3489,0.8841418812999998 -2010,1,3490,0.8802027765999999 -2010,1,3491,0.8782332246999999 +2010,1,3489,0.8841418812999999 +2010,1,3490,0.8802027766 +2010,1,3491,0.8782332247 2010,1,3492,0.8762636728 2010,1,3493,0.8742941203 2010,1,3494,0.8742941203 2010,1,3495,0.8742941203 2010,1,3496,0.8762636728 -2010,1,3497,0.8802027765999999 -2010,1,3498,0.8841418812999998 +2010,1,3497,0.8802027766 +2010,1,3498,0.8841418812999999 2010,1,3499,0.8880809851 2010,1,3500,0.8920200892 2010,1,3501,0.8959591936 -2010,1,3502,0.8979287454999999 -2010,1,3503,0.8979287454999999 -2010,1,3504,0.8979287454999999 +2010,1,3502,0.8979287455 +2010,1,3503,0.8979287455 +2010,1,3504,0.8979287455 2010,1,3505,0.8990000001999999 2010,1,3506,0.8990000001999999 2010,1,3507,0.8990000001999999 2010,1,3508,0.8990000001999999 2010,1,3509,0.8990000001999999 -2010,1,3510,0.8979287454999999 +2010,1,3510,0.8979287455 2010,1,3511,0.8939896417000001 2010,1,3512,0.8900505372999999 2010,1,3513,0.8861114332 -2010,1,3514,0.8841418812999998 -2010,1,3515,0.8802027765999999 -2010,1,3516,0.8782332246999999 +2010,1,3514,0.8841418812999999 +2010,1,3515,0.8802027766 +2010,1,3516,0.8782332247 2010,1,3517,0.8762636728 2010,1,3518,0.8762636728 -2010,1,3519,0.8782332246999999 -2010,1,3520,0.8802027765999999 -2010,1,3521,0.8841418812999998 +2010,1,3519,0.8782332247 +2010,1,3520,0.8802027766 +2010,1,3521,0.8841418812999999 2010,1,3522,0.8880809851 2010,1,3523,0.8920200892 2010,1,3524,0.8959591936 -2010,1,3525,0.8979287454999999 -2010,1,3526,0.8979287454999999 -2010,1,3527,0.8979287454999999 +2010,1,3525,0.8979287455 +2010,1,3526,0.8979287455 +2010,1,3527,0.8979287455 2010,1,3528,0.8990000001999999 2010,1,3529,0.8990000001999999 2010,1,3530,0.8990000001999999 @@ -3533,22 +3533,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3532,0.8990000001999999 2010,1,3533,0.8990000001999999 2010,1,3534,0.8990000001999999 -2010,1,3535,0.8979287454999999 +2010,1,3535,0.8979287455 2010,1,3536,0.8939896417000001 2010,1,3537,0.8900505372999999 2010,1,3538,0.8861114332 -2010,1,3539,0.8821723288 -2010,1,3540,0.8802027765999999 -2010,1,3541,0.8782332246999999 -2010,1,3542,0.8782332246999999 -2010,1,3543,0.8782332246999999 -2010,1,3544,0.8802027765999999 -2010,1,3545,0.8821723288 -2010,1,3546,0.8841418812999998 +2010,1,3539,0.8821723288000001 +2010,1,3540,0.8802027766 +2010,1,3541,0.8782332247 +2010,1,3542,0.8782332247 +2010,1,3543,0.8782332247 +2010,1,3544,0.8802027766 +2010,1,3545,0.8821723288000001 +2010,1,3546,0.8841418812999999 2010,1,3547,0.8900505372999999 2010,1,3548,0.8959591936 2010,1,3549,0.8959591936 -2010,1,3550,0.8979287454999999 +2010,1,3550,0.8979287455 2010,1,3551,0.8990000001999999 2010,1,3552,0.8990000001999999 2010,1,3553,0.8990000001999999 @@ -3559,17 +3559,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3558,0.8990000001999999 2010,1,3559,0.8939896417000001 2010,1,3560,0.8880809851 -2010,1,3561,0.8821723288 -2010,1,3562,0.8782332246999999 +2010,1,3561,0.8821723288000001 +2010,1,3562,0.8782332247 2010,1,3563,0.8723245680999999 -2010,1,3564,0.8703550161999999 -2010,1,3565,0.8683854642999999 +2010,1,3564,0.8703550162 +2010,1,3565,0.8683854643 2010,1,3566,0.8664159117999999 2010,1,3567,0.8664159117999999 -2010,1,3568,0.8683854642999999 -2010,1,3569,0.8703550161999999 +2010,1,3568,0.8683854643 +2010,1,3569,0.8703550162 2010,1,3570,0.8742941203 -2010,1,3571,0.8821723288 +2010,1,3571,0.8821723288000001 2010,1,3572,0.8880809851 2010,1,3573,0.8900505372999999 2010,1,3574,0.8920200892 @@ -3577,26 +3577,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3576,0.8939896417000001 2010,1,3577,0.8959591936 2010,1,3578,0.8959591936 -2010,1,3579,0.8979287454999999 -2010,1,3580,0.8979287454999999 -2010,1,3581,0.8979287454999999 +2010,1,3579,0.8979287455 +2010,1,3580,0.8979287455 +2010,1,3581,0.8979287455 2010,1,3582,0.8920200892 2010,1,3583,0.8861114332 -2010,1,3584,0.8782332246999999 -2010,1,3585,0.8683854642999999 +2010,1,3584,0.8782332247 +2010,1,3585,0.8683854643 2010,1,3586,0.8624768076999999 2010,1,3587,0.8585377039 2010,1,3588,0.8551913319 2010,1,3589,0.8481913319 -2010,1,3590,0.8411913319000001 +2010,1,3590,0.8411913319 2010,1,3591,0.8481913319 2010,1,3592,0.8551913319 2010,1,3593,0.8585377039 2010,1,3594,0.8664159117999999 2010,1,3595,0.8742941203 -2010,1,3596,0.8782332246999999 -2010,1,3597,0.8802027765999999 -2010,1,3598,0.8841418812999998 +2010,1,3596,0.8782332247 +2010,1,3597,0.8802027766 +2010,1,3598,0.8841418812999999 2010,1,3599,0.8861114332 2010,1,3600,0.8880809851 2010,1,3601,0.8900505372999999 @@ -3605,21 +3605,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3604,0.8939896417000001 2010,1,3605,0.8939896417000001 2010,1,3606,0.8900505372999999 -2010,1,3607,0.8841418812999998 -2010,1,3608,0.8782332246999999 +2010,1,3607,0.8841418812999999 +2010,1,3608,0.8782332247 2010,1,3609,0.8723245680999999 2010,1,3610,0.8664159117999999 2010,1,3611,0.8620494920999999 -2010,1,3612,0.8593799401999999 +2010,1,3612,0.8593799402 2010,1,3613,0.8574103882999999 2010,1,3614,0.8581103883 2010,1,3615,0.8585377039 -2010,1,3616,0.8605072557999999 +2010,1,3616,0.8605072558 2010,1,3617,0.8644463599 -2010,1,3618,0.8703550161999999 +2010,1,3618,0.8703550162 2010,1,3619,0.8762636728 -2010,1,3620,0.8821723288 -2010,1,3621,0.8841418812999998 +2010,1,3620,0.8821723288000001 +2010,1,3621,0.8841418812999999 2010,1,3622,0.8861114332 2010,1,3623,0.8880809851 2010,1,3624,0.8880809851 @@ -3630,20 +3630,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3629,0.8920200892 2010,1,3630,0.8900505372999999 2010,1,3631,0.8880809851 -2010,1,3632,0.8841418812999998 -2010,1,3633,0.8802027765999999 +2010,1,3632,0.8841418812999999 +2010,1,3633,0.8802027766 2010,1,3634,0.8762636728 2010,1,3635,0.8723245680999999 -2010,1,3636,0.8703550161999999 -2010,1,3637,0.8683854642999999 +2010,1,3636,0.8703550162 +2010,1,3637,0.8683854643 2010,1,3638,0.8664159117999999 2010,1,3639,0.8664159117999999 2010,1,3640,0.8664159117999999 -2010,1,3641,0.8683854642999999 +2010,1,3641,0.8683854643 2010,1,3642,0.8723245680999999 -2010,1,3643,0.8782332246999999 -2010,1,3644,0.8821723288 -2010,1,3645,0.8841418812999998 +2010,1,3643,0.8782332247 +2010,1,3644,0.8821723288000001 +2010,1,3645,0.8841418812999999 2010,1,3646,0.8861114332 2010,1,3647,0.8880809851 2010,1,3648,0.8900505372999999 @@ -3654,22 +3654,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3653,0.8939896417000001 2010,1,3654,0.8900505372999999 2010,1,3655,0.8861114332 -2010,1,3656,0.8821723288 +2010,1,3656,0.8821723288000001 2010,1,3657,0.8762636728 2010,1,3658,0.8723245680999999 -2010,1,3659,0.8683854642999999 +2010,1,3659,0.8683854643 2010,1,3660,0.8640190443 2010,1,3661,0.8613494920999999 -2010,1,3662,0.8593799401999999 +2010,1,3662,0.8593799402 2010,1,3663,0.8581103883 -2010,1,3664,0.8605072557999999 +2010,1,3664,0.8605072558 2010,1,3665,0.8624768076999999 2010,1,3666,0.8664159117999999 2010,1,3667,0.8723245680999999 -2010,1,3668,0.8782332246999999 -2010,1,3669,0.8802027765999999 -2010,1,3670,0.8821723288 -2010,1,3671,0.8841418812999998 +2010,1,3668,0.8782332247 +2010,1,3669,0.8802027766 +2010,1,3670,0.8821723288000001 +2010,1,3671,0.8841418812999999 2010,1,3672,0.8861114332 2010,1,3673,0.8861114332 2010,1,3674,0.8880809851 @@ -3677,7 +3677,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3676,0.8900505372999999 2010,1,3677,0.8900505372999999 2010,1,3678,0.8861114332 -2010,1,3679,0.8821723288 +2010,1,3679,0.8821723288000001 2010,1,3680,0.8762636728 2010,1,3681,0.8723245680999999 2010,1,3682,0.8664159117999999 @@ -3687,24 +3687,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3686,0.8530913319 2010,1,3687,0.8537913319 2010,1,3688,0.8574103882999999 -2010,1,3689,0.8605072557999999 +2010,1,3689,0.8605072558 2010,1,3690,0.8664159117999999 -2010,1,3691,0.8703550161999999 +2010,1,3691,0.8703550162 2010,1,3692,0.8742941203 2010,1,3693,0.8762636728 -2010,1,3694,0.8782332246999999 -2010,1,3695,0.8802027765999999 -2010,1,3696,0.8821723288 -2010,1,3697,0.8841418812999998 +2010,1,3694,0.8782332247 +2010,1,3695,0.8802027766 +2010,1,3696,0.8821723288000001 +2010,1,3697,0.8841418812999999 2010,1,3698,0.8861114332 2010,1,3699,0.8861114332 2010,1,3700,0.8880809851 2010,1,3701,0.8880809851 -2010,1,3702,0.8841418812999998 -2010,1,3703,0.8802027765999999 +2010,1,3702,0.8841418812999999 +2010,1,3703,0.8802027766 2010,1,3704,0.8742941203 2010,1,3705,0.8699277005999999 -2010,1,3706,0.8626190443 +2010,1,3706,0.8626190442999999 2010,1,3707,0.8579799401999999 2010,1,3708,0.8553103883 2010,1,3709,0.8516913318999999 @@ -3713,23 +3713,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3712,0.8523913318999999 2010,1,3713,0.8567103883 2010,1,3714,0.8624768076999999 -2010,1,3715,0.8683854642999999 +2010,1,3715,0.8683854643 2010,1,3716,0.8723245680999999 2010,1,3717,0.8742941203 2010,1,3718,0.8762636728 -2010,1,3719,0.8782332246999999 -2010,1,3720,0.8802027765999999 -2010,1,3721,0.8821723288 -2010,1,3722,0.8841418812999998 +2010,1,3719,0.8782332247 +2010,1,3720,0.8802027766 +2010,1,3721,0.8821723288000001 +2010,1,3722,0.8841418812999999 2010,1,3723,0.8861114332 2010,1,3724,0.8861114332 2010,1,3725,0.8861114332 -2010,1,3726,0.8821723288 -2010,1,3727,0.8782332246999999 +2010,1,3726,0.8821723288000001 +2010,1,3727,0.8782332247 2010,1,3728,0.8723245680999999 2010,1,3729,0.8665581486999999 2010,1,3730,0.8612190443 -2010,1,3731,0.8565799401999998 +2010,1,3731,0.8565799402 2010,1,3732,0.8509913319 2010,1,3733,0.8439913319 2010,1,3734,0.8376913319 @@ -3738,17 +3738,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3737,0.8460913319 2010,1,3738,0.8574103882999999 2010,1,3739,0.8644463599 -2010,1,3740,0.8703550161999999 +2010,1,3740,0.8703550162 2010,1,3741,0.8723245680999999 2010,1,3742,0.8742941203 2010,1,3743,0.8762636728 -2010,1,3744,0.8782332246999999 -2010,1,3745,0.8802027765999999 -2010,1,3746,0.8821723288 -2010,1,3747,0.8841418812999998 +2010,1,3744,0.8782332247 +2010,1,3745,0.8802027766 +2010,1,3746,0.8821723288000001 +2010,1,3747,0.8841418812999999 2010,1,3748,0.8861114332 2010,1,3749,0.8861114332 -2010,1,3750,0.8821723288 +2010,1,3750,0.8821723288000001 2010,1,3751,0.8762636728 2010,1,3752,0.8718972524999999 2010,1,3753,0.8658581486999999 @@ -3759,37 +3759,37 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3758,0.8383913319 2010,1,3759,0.8327913319 2010,1,3760,0.8334913318999999 -2010,1,3761,0.8411913319000001 +2010,1,3761,0.8411913319 2010,1,3762,0.8585377039 2010,1,3763,0.8644463599 -2010,1,3764,0.8703550161999999 +2010,1,3764,0.8703550162 2010,1,3765,0.8723245680999999 2010,1,3766,0.8762636728 -2010,1,3767,0.8782332246999999 -2010,1,3768,0.8802027765999999 -2010,1,3769,0.8821723288 +2010,1,3767,0.8782332247 +2010,1,3768,0.8802027766 +2010,1,3769,0.8821723288000001 2010,1,3770,0.8861114332 2010,1,3771,0.8880809851 2010,1,3772,0.8880809851 2010,1,3773,0.8880809851 2010,1,3774,0.8861114332 -2010,1,3775,0.8821723288 -2010,1,3776,0.8782332246999999 +2010,1,3775,0.8821723288000001 +2010,1,3776,0.8782332247 2010,1,3777,0.8738668047 2010,1,3778,0.8658581486999999 2010,1,3779,0.8612190443 -2010,1,3780,0.8572799401999999 +2010,1,3780,0.8572799402 2010,1,3781,0.8553103883 2010,1,3782,0.8530913319 2010,1,3783,0.8537913319 2010,1,3784,0.8581103883 -2010,1,3785,0.8605072557999999 +2010,1,3785,0.8605072558 2010,1,3786,0.8664159117999999 2010,1,3787,0.8723245680999999 -2010,1,3788,0.8782332246999999 -2010,1,3789,0.8802027765999999 -2010,1,3790,0.8821723288 -2010,1,3791,0.8841418812999998 +2010,1,3788,0.8782332247 +2010,1,3789,0.8802027766 +2010,1,3790,0.8821723288000001 +2010,1,3791,0.8841418812999999 2010,1,3792,0.8861114332 2010,1,3793,0.8861114332 2010,1,3794,0.8880809851 @@ -3797,22 +3797,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3796,0.8900505372999999 2010,1,3797,0.8900505372999999 2010,1,3798,0.8861114332 -2010,1,3799,0.8821723288 -2010,1,3800,0.8782332246999999 +2010,1,3799,0.8821723288000001 +2010,1,3800,0.8782332247 2010,1,3801,0.8723245680999999 -2010,1,3802,0.8672581486999998 +2010,1,3802,0.8672581487 2010,1,3803,0.8606494921 2010,1,3804,0.8579799401999999 2010,1,3805,0.8560103883 2010,1,3806,0.8537913319 2010,1,3807,0.8544913318999999 2010,1,3808,0.8581103883 -2010,1,3809,0.8605072557999999 +2010,1,3809,0.8605072558 2010,1,3810,0.8644463599 2010,1,3811,0.8723245680999999 -2010,1,3812,0.8782332246999999 -2010,1,3813,0.8802027765999999 -2010,1,3814,0.8841418812999998 +2010,1,3812,0.8782332247 +2010,1,3813,0.8802027766 +2010,1,3814,0.8841418812999999 2010,1,3815,0.8861114332 2010,1,3816,0.8880809851 2010,1,3817,0.8900505372999999 @@ -3821,67 +3821,67 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3820,0.8900505372999999 2010,1,3821,0.8900505372999999 2010,1,3822,0.8880809851 -2010,1,3823,0.8841418812999998 -2010,1,3824,0.8782332246999999 +2010,1,3823,0.8841418812999999 +2010,1,3824,0.8782332247 2010,1,3825,0.8742941203 -2010,1,3826,0.8703550161999999 +2010,1,3826,0.8703550162 2010,1,3827,0.8664159117999999 2010,1,3828,0.8624768076999999 2010,1,3829,0.8600799401999999 2010,1,3830,0.8581103883 2010,1,3831,0.8585377039 -2010,1,3832,0.8605072557999999 +2010,1,3832,0.8605072558 2010,1,3833,0.8624768076999999 2010,1,3834,0.8664159117999999 2010,1,3835,0.8723245680999999 -2010,1,3836,0.8782332246999999 -2010,1,3837,0.8821723288 +2010,1,3836,0.8782332247 +2010,1,3837,0.8821723288000001 2010,1,3838,0.8861114332 2010,1,3839,0.8880809851 2010,1,3840,0.8920200892 2010,1,3841,0.8959591936 -2010,1,3842,0.8979287454999999 -2010,1,3843,0.8979287454999999 -2010,1,3844,0.8979287454999999 -2010,1,3845,0.8979287454999999 -2010,1,3846,0.8979287454999999 +2010,1,3842,0.8979287455 +2010,1,3843,0.8979287455 +2010,1,3844,0.8979287455 +2010,1,3845,0.8979287455 +2010,1,3846,0.8979287455 2010,1,3847,0.8939896417000001 2010,1,3848,0.8900505372999999 2010,1,3849,0.8861114332 -2010,1,3850,0.8821723288 +2010,1,3850,0.8821723288000001 2010,1,3851,0.8762636728 2010,1,3852,0.8742941203 2010,1,3853,0.8723245680999999 -2010,1,3854,0.8703550161999999 -2010,1,3855,0.8703550161999999 +2010,1,3854,0.8703550162 +2010,1,3855,0.8703550162 2010,1,3856,0.8723245680999999 2010,1,3857,0.8742941203 2010,1,3858,0.8762636728 -2010,1,3859,0.8821723288 -2010,1,3860,0.8841418812999998 +2010,1,3859,0.8821723288000001 +2010,1,3860,0.8841418812999999 2010,1,3861,0.8861114332 2010,1,3862,0.8880809851 2010,1,3863,0.8920200892 2010,1,3864,0.8939896417000001 2010,1,3865,0.8959591936 -2010,1,3866,0.8979287454999999 +2010,1,3866,0.8979287455 2010,1,3867,0.8990000001999999 2010,1,3868,0.8990000001999999 2010,1,3869,0.8990000001999999 2010,1,3870,0.8959591936 2010,1,3871,0.8900505372999999 2010,1,3872,0.8861114332 -2010,1,3873,0.8802027765999999 +2010,1,3873,0.8802027766 2010,1,3874,0.8762636728 2010,1,3875,0.8723245680999999 -2010,1,3876,0.8703550161999999 -2010,1,3877,0.8683854642999999 +2010,1,3876,0.8703550162 +2010,1,3877,0.8683854643 2010,1,3878,0.8664159117999999 2010,1,3879,0.8664159117999999 -2010,1,3880,0.8683854642999999 -2010,1,3881,0.8703550161999999 +2010,1,3880,0.8683854643 +2010,1,3881,0.8703550162 2010,1,3882,0.8742941203 -2010,1,3883,0.8802027765999999 +2010,1,3883,0.8802027766 2010,1,3884,0.8861114332 2010,1,3885,0.8861114332 2010,1,3886,0.8880809851 @@ -3893,21 +3893,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3892,0.8959591936 2010,1,3893,0.8939896417000001 2010,1,3894,0.8880809851 -2010,1,3895,0.8821723288 +2010,1,3895,0.8821723288000001 2010,1,3896,0.8762636728 -2010,1,3897,0.8703550161999999 +2010,1,3897,0.8703550162 2010,1,3898,0.8664159117999999 2010,1,3899,0.8644463599 2010,1,3900,0.8624768076999999 -2010,1,3901,0.8605072557999999 -2010,1,3902,0.8605072557999999 -2010,1,3903,0.8605072557999999 +2010,1,3901,0.8605072558 +2010,1,3902,0.8605072558 +2010,1,3903,0.8605072558 2010,1,3904,0.8624768076999999 2010,1,3905,0.8644463599 -2010,1,3906,0.8683854642999999 +2010,1,3906,0.8683854643 2010,1,3907,0.8762636728 -2010,1,3908,0.8802027765999999 -2010,1,3909,0.8841418812999998 +2010,1,3908,0.8802027766 +2010,1,3909,0.8841418812999999 2010,1,3910,0.8861114332 2010,1,3911,0.8861114332 2010,1,3912,0.8880809851 @@ -3917,9 +3917,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3916,0.8880809851 2010,1,3917,0.8880809851 2010,1,3918,0.8861114332 -2010,1,3919,0.8802027765999999 +2010,1,3919,0.8802027766 2010,1,3920,0.8742941203 -2010,1,3921,0.8683854642999999 +2010,1,3921,0.8683854643 2010,1,3922,0.8644463599 2010,1,3923,0.8585377039 2010,1,3924,0.8551913319 @@ -3929,20 +3929,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3928,0.8493186475 2010,1,3929,0.8556186474999999 2010,1,3930,0.8624768076999999 -2010,1,3931,0.8703550161999999 +2010,1,3931,0.8703550162 2010,1,3932,0.8742941203 2010,1,3933,0.8762636728 -2010,1,3934,0.8802027765999999 -2010,1,3935,0.8821723288 -2010,1,3936,0.8841418812999998 -2010,1,3937,0.8841418812999998 +2010,1,3934,0.8802027766 +2010,1,3935,0.8821723288000001 +2010,1,3936,0.8841418812999999 +2010,1,3937,0.8841418812999999 2010,1,3938,0.8861114332 2010,1,3939,0.8861114332 2010,1,3940,0.8861114332 2010,1,3941,0.8861114332 -2010,1,3942,0.8821723288 +2010,1,3942,0.8821723288000001 2010,1,3943,0.8742941203 -2010,1,3944,0.8683854642999999 +2010,1,3944,0.8683854643 2010,1,3945,0.8640190443 2010,1,3946,0.8574103882999999 2010,1,3947,0.8474913319 @@ -3955,55 +3955,55 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,3954,0.8585377039 2010,1,3955,0.8664159117999999 2010,1,3956,0.8742941203 -2010,1,3957,0.8782332246999999 -2010,1,3958,0.8802027765999999 -2010,1,3959,0.8821723288 -2010,1,3960,0.8841418812999998 +2010,1,3957,0.8782332247 +2010,1,3958,0.8802027766 +2010,1,3959,0.8821723288000001 +2010,1,3960,0.8841418812999999 2010,1,3961,0.8861114332 2010,1,3962,0.8880809851 2010,1,3963,0.8900505372999999 2010,1,3964,0.8900505372999999 2010,1,3965,0.8900505372999999 2010,1,3966,0.8861114332 -2010,1,3967,0.8821723288 +2010,1,3967,0.8821723288000001 2010,1,3968,0.8762636728 2010,1,3969,0.8699277005999999 -2010,1,3970,0.8626190443 +2010,1,3970,0.8626190442999999 2010,1,3971,0.8560103883 2010,1,3972,0.8523913318999999 2010,1,3973,0.8460913319 2010,1,3974,0.8404913319 2010,1,3975,0.8474913319 2010,1,3976,0.8551913319 -2010,1,3977,0.8605072557999999 +2010,1,3977,0.8605072558 2010,1,3978,0.8664159117999999 2010,1,3979,0.8762636728 -2010,1,3980,0.8821723288 +2010,1,3980,0.8821723288000001 2010,1,3981,0.8861114332 2010,1,3982,0.8900505372999999 2010,1,3983,0.8939896417000001 2010,1,3984,0.8959591936 -2010,1,3985,0.8979287454999999 -2010,1,3986,0.8979287454999999 +2010,1,3985,0.8979287455 +2010,1,3986,0.8979287455 2010,1,3987,0.8990000001999999 2010,1,3988,0.8990000001999999 2010,1,3989,0.8990000001999999 2010,1,3990,0.8959591936 2010,1,3991,0.8900505372999999 2010,1,3992,0.8861114332 -2010,1,3993,0.8802027765999999 +2010,1,3993,0.8802027766 2010,1,3994,0.8742941203 -2010,1,3995,0.8703550161999999 +2010,1,3995,0.8703550162 2010,1,3996,0.8664159117999999 2010,1,3997,0.8644463599 2010,1,3998,0.8624768076999999 2010,1,3999,0.8624768076999999 2010,1,4000,0.8644463599 2010,1,4001,0.8664159117999999 -2010,1,4002,0.8703550161999999 -2010,1,4003,0.8782332246999999 -2010,1,4004,0.8841418812999998 -2010,1,4005,0.8841418812999998 +2010,1,4002,0.8703550162 +2010,1,4003,0.8782332247 +2010,1,4004,0.8841418812999999 +2010,1,4005,0.8841418812999999 2010,1,4006,0.8861114332 2010,1,4007,0.8880809851 2010,1,4008,0.8900505372999999 @@ -4013,8 +4013,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4012,0.8959591936 2010,1,4013,0.8959591936 2010,1,4014,0.8900505372999999 -2010,1,4015,0.8841418812999998 -2010,1,4016,0.8782332246999999 +2010,1,4015,0.8841418812999999 +2010,1,4016,0.8782332247 2010,1,4017,0.8723245680999999 2010,1,4018,0.8664159117999999 2010,1,4019,0.8613494920999999 @@ -4023,11 +4023,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4022,0.8537913319 2010,1,4023,0.8544913318999999 2010,1,4024,0.8581103883 -2010,1,4025,0.8605072557999999 +2010,1,4025,0.8605072558 2010,1,4026,0.8664159117999999 2010,1,4027,0.8742941203 -2010,1,4028,0.8782332246999999 -2010,1,4029,0.8821723288 +2010,1,4028,0.8782332247 +2010,1,4029,0.8821723288000001 2010,1,4030,0.8861114332 2010,1,4031,0.8880809851 2010,1,4032,0.8900505372999999 @@ -4038,33 +4038,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4037,0.8959591936 2010,1,4038,0.8920200892 2010,1,4039,0.8861114332 -2010,1,4040,0.8802027765999999 +2010,1,4040,0.8802027766 2010,1,4041,0.8742941203 -2010,1,4042,0.8683854642999999 +2010,1,4042,0.8683854643 2010,1,4043,0.8640190443 2010,1,4044,0.8613494920999999 2010,1,4045,0.8586799401999999 -2010,1,4046,0.8593799401999999 +2010,1,4046,0.8593799402 2010,1,4047,0.8620494920999999 2010,1,4048,0.8644463599 -2010,1,4049,0.8683854642999999 +2010,1,4049,0.8683854643 2010,1,4050,0.8742941203 -2010,1,4051,0.8802027765999999 -2010,1,4052,0.8841418812999998 +2010,1,4051,0.8802027766 +2010,1,4052,0.8841418812999999 2010,1,4053,0.8880809851 2010,1,4054,0.8920200892 2010,1,4055,0.8939896417000001 2010,1,4056,0.8959591936 -2010,1,4057,0.8979287454999999 -2010,1,4058,0.8979287454999999 +2010,1,4057,0.8979287455 +2010,1,4058,0.8979287455 2010,1,4059,0.8990000001999999 2010,1,4060,0.8990000001999999 2010,1,4061,0.8990000001999999 -2010,1,4062,0.8979287454999999 +2010,1,4062,0.8979287455 2010,1,4063,0.8939896417000001 2010,1,4064,0.8880809851 -2010,1,4065,0.8841418812999998 -2010,1,4066,0.8782332246999999 +2010,1,4065,0.8841418812999999 +2010,1,4066,0.8782332247 2010,1,4067,0.8723245680999999 2010,1,4068,0.8679581486999999 2010,1,4069,0.8659885961999999 @@ -4073,21 +4073,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4072,0.8644463599 2010,1,4073,0.8664159117999999 2010,1,4074,0.8723245680999999 -2010,1,4075,0.8782332246999999 -2010,1,4076,0.8841418812999998 +2010,1,4075,0.8782332247 +2010,1,4076,0.8841418812999999 2010,1,4077,0.8861114332 2010,1,4078,0.8900505372999999 2010,1,4079,0.8920200892 2010,1,4080,0.8939896417000001 2010,1,4081,0.8959591936 -2010,1,4082,0.8979287454999999 +2010,1,4082,0.8979287455 2010,1,4083,0.8990000001999999 2010,1,4084,0.8990000001999999 2010,1,4085,0.8990000001999999 2010,1,4086,0.8959591936 2010,1,4087,0.8920200892 2010,1,4088,0.8880809851 -2010,1,4089,0.8821723288 +2010,1,4089,0.8821723288000001 2010,1,4090,0.8762636728 2010,1,4091,0.8718972524999999 2010,1,4092,0.8652885961999999 @@ -4096,9 +4096,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4095,0.8620494920999999 2010,1,4096,0.8644463599 2010,1,4097,0.8664159117999999 -2010,1,4098,0.8703550161999999 -2010,1,4099,0.8782332246999999 -2010,1,4100,0.8841418812999998 +2010,1,4098,0.8703550162 +2010,1,4099,0.8782332247 +2010,1,4100,0.8841418812999999 2010,1,4101,0.8880809851 2010,1,4102,0.8900505372999999 2010,1,4103,0.8920200892 @@ -4106,24 +4106,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4105,0.8939896417000001 2010,1,4106,0.8959591936 2010,1,4107,0.8959591936 -2010,1,4108,0.8979287454999999 +2010,1,4108,0.8979287455 2010,1,4109,0.8959591936 2010,1,4110,0.8920200892 2010,1,4111,0.8861114332 -2010,1,4112,0.8802027765999999 +2010,1,4112,0.8802027766 2010,1,4113,0.8742941203 -2010,1,4114,0.8703550161999999 +2010,1,4114,0.8703550162 2010,1,4115,0.8664159117999999 2010,1,4116,0.8624768076999999 -2010,1,4117,0.8605072557999999 -2010,1,4118,0.8605072557999999 -2010,1,4119,0.8605072557999999 +2010,1,4117,0.8605072558 +2010,1,4118,0.8605072558 +2010,1,4119,0.8605072558 2010,1,4120,0.8624768076999999 2010,1,4121,0.8644463599 -2010,1,4122,0.8683854642999999 +2010,1,4122,0.8683854643 2010,1,4123,0.8742941203 -2010,1,4124,0.8802027765999999 -2010,1,4125,0.8841418812999998 +2010,1,4124,0.8802027766 +2010,1,4125,0.8841418812999999 2010,1,4126,0.8880809851 2010,1,4127,0.8880809851 2010,1,4128,0.8900505372999999 @@ -4133,31 +4133,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4132,0.8939896417000001 2010,1,4133,0.8920200892 2010,1,4134,0.8861114332 -2010,1,4135,0.8802027765999999 +2010,1,4135,0.8802027766 2010,1,4136,0.8742941203 -2010,1,4137,0.8683854642999999 +2010,1,4137,0.8683854643 2010,1,4138,0.8640190443 -2010,1,4139,0.8593799401999999 +2010,1,4139,0.8593799402 2010,1,4140,0.8537913319 2010,1,4141,0.8467913319 2010,1,4142,0.8404913319 2010,1,4143,0.8404913319 2010,1,4144,0.8474913319 2010,1,4145,0.8551913319 -2010,1,4146,0.8605072557999999 -2010,1,4147,0.8683854642999999 +2010,1,4146,0.8605072558 +2010,1,4147,0.8683854643 2010,1,4148,0.8742941203 -2010,1,4149,0.8782332246999999 -2010,1,4150,0.8802027765999999 -2010,1,4151,0.8821723288 -2010,1,4152,0.8841418812999998 +2010,1,4149,0.8782332247 +2010,1,4150,0.8802027766 +2010,1,4151,0.8821723288000001 +2010,1,4152,0.8841418812999999 2010,1,4153,0.8861114332 2010,1,4154,0.8861114332 2010,1,4155,0.8880809851 2010,1,4156,0.8880809851 2010,1,4157,0.8880809851 -2010,1,4158,0.8841418812999998 -2010,1,4159,0.8782332246999999 +2010,1,4158,0.8841418812999999 +2010,1,4159,0.8782332247 2010,1,4160,0.8723245680999999 2010,1,4161,0.8659885961999999 2010,1,4162,0.8586799401999999 @@ -4168,22 +4168,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4167,0.8397913319 2010,1,4168,0.8467913319 2010,1,4169,0.8544913318999999 -2010,1,4170,0.8605072557999999 -2010,1,4171,0.8683854642999999 +2010,1,4170,0.8605072558 +2010,1,4171,0.8683854643 2010,1,4172,0.8742941203 -2010,1,4173,0.8782332246999999 -2010,1,4174,0.8821723288 -2010,1,4175,0.8841418812999998 -2010,1,4176,0.8841418812999998 +2010,1,4173,0.8782332247 +2010,1,4174,0.8821723288000001 +2010,1,4175,0.8841418812999999 +2010,1,4176,0.8841418812999999 2010,1,4177,0.8861114332 2010,1,4178,0.8861114332 2010,1,4179,0.8880809851 2010,1,4180,0.8900505372999999 2010,1,4181,0.8880809851 -2010,1,4182,0.8841418812999998 -2010,1,4183,0.8782332246999999 +2010,1,4182,0.8841418812999999 +2010,1,4183,0.8782332247 2010,1,4184,0.8742941203 -2010,1,4185,0.8672581486999998 +2010,1,4185,0.8672581487 2010,1,4186,0.8599494920999999 2010,1,4187,0.8553103883 2010,1,4188,0.8516913318999999 @@ -4193,35 +4193,35 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4192,0.8467913319 2010,1,4193,0.8574103882999999 2010,1,4194,0.8644463599 -2010,1,4195,0.8703550161999999 +2010,1,4195,0.8703550162 2010,1,4196,0.8742941203 2010,1,4197,0.8762636728 -2010,1,4198,0.8782332246999999 -2010,1,4199,0.8802027765999999 -2010,1,4200,0.8821723288 -2010,1,4201,0.8841418812999998 +2010,1,4198,0.8782332247 +2010,1,4199,0.8802027766 +2010,1,4200,0.8821723288000001 +2010,1,4201,0.8841418812999999 2010,1,4202,0.8861114332 2010,1,4203,0.8880809851 2010,1,4204,0.8880809851 2010,1,4205,0.8880809851 -2010,1,4206,0.8841418812999998 -2010,1,4207,0.8802027765999999 +2010,1,4206,0.8841418812999999 +2010,1,4207,0.8802027766 2010,1,4208,0.8742941203 2010,1,4209,0.8699277005999999 -2010,1,4210,0.8626190443 +2010,1,4210,0.8626190442999999 2010,1,4211,0.8579799401999999 2010,1,4212,0.8553103883 2010,1,4213,0.8523913318999999 2010,1,4214,0.8467913319 2010,1,4215,0.8537913319 2010,1,4216,0.8581103883 -2010,1,4217,0.8605072557999999 +2010,1,4217,0.8605072558 2010,1,4218,0.8664159117999999 2010,1,4219,0.8723245680999999 2010,1,4220,0.8762636728 -2010,1,4221,0.8802027765999999 -2010,1,4222,0.8841418812999998 -2010,1,4223,0.8841418812999998 +2010,1,4221,0.8802027766 +2010,1,4222,0.8841418812999999 +2010,1,4223,0.8841418812999999 2010,1,4224,0.8861114332 2010,1,4225,0.8880809851 2010,1,4226,0.8880809851 @@ -4229,80 +4229,80 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4228,0.8900505372999999 2010,1,4229,0.8900505372999999 2010,1,4230,0.8861114332 -2010,1,4231,0.8821723288 -2010,1,4232,0.8782332246999999 +2010,1,4231,0.8821723288000001 +2010,1,4232,0.8782332247 2010,1,4233,0.8723245680999999 2010,1,4234,0.8664159117999999 2010,1,4235,0.8620494920999999 2010,1,4236,0.8574103882999999 2010,1,4237,0.8474913319 -2010,1,4238,0.8411913319000001 -2010,1,4239,0.8411913319000001 +2010,1,4238,0.8411913319 +2010,1,4239,0.8411913319 2010,1,4240,0.8481913319 2010,1,4241,0.8551913319 -2010,1,4242,0.8605072557999999 +2010,1,4242,0.8605072558 2010,1,4243,0.8664159117999999 -2010,1,4244,0.8703550161999999 +2010,1,4244,0.8703550162 2010,1,4245,0.8742941203 2010,1,4246,0.8762636728 -2010,1,4247,0.8782332246999999 -2010,1,4248,0.8802027765999999 -2010,1,4249,0.8821723288 -2010,1,4250,0.8821723288 -2010,1,4251,0.8821723288 -2010,1,4252,0.8841418812999998 -2010,1,4253,0.8821723288 -2010,1,4254,0.8782332246999999 +2010,1,4247,0.8782332247 +2010,1,4248,0.8802027766 +2010,1,4249,0.8821723288000001 +2010,1,4250,0.8821723288000001 +2010,1,4251,0.8821723288000001 +2010,1,4252,0.8841418812999999 +2010,1,4253,0.8821723288000001 +2010,1,4254,0.8782332247 2010,1,4255,0.8742941203 -2010,1,4256,0.8683854642999999 +2010,1,4256,0.8683854643 2010,1,4257,0.8606494921 2010,1,4258,0.8530913319 2010,1,4259,0.8327913319 2010,1,4260,0.8194913318999999 2010,1,4261,0.8131913319 -2010,1,4262,0.8061913318999999 +2010,1,4262,0.8061913319 2010,1,4263,0.8005913319 -2010,1,4264,0.8075913318999999 +2010,1,4264,0.8075913319 2010,1,4265,0.8152913319 2010,1,4266,0.8362913318999999 -2010,1,4267,0.8605072557999999 +2010,1,4267,0.8605072558 2010,1,4268,0.8664159117999999 -2010,1,4269,0.8703550161999999 +2010,1,4269,0.8703550162 2010,1,4270,0.8723245680999999 2010,1,4271,0.8742941203 2010,1,4272,0.8742941203 2010,1,4273,0.8742941203 2010,1,4274,0.8762636728 -2010,1,4275,0.8782332246999999 -2010,1,4276,0.8782332246999999 -2010,1,4277,0.8782332246999999 +2010,1,4275,0.8782332247 +2010,1,4276,0.8782332247 +2010,1,4277,0.8782332247 2010,1,4278,0.8742941203 -2010,1,4279,0.8683854642999999 +2010,1,4279,0.8683854643 2010,1,4280,0.8620494920999999 2010,1,4281,0.8530913319 2010,1,4282,0.8397913319 2010,1,4283,0.8264913319 2010,1,4284,0.8131913319 -2010,1,4285,0.8061913318999999 +2010,1,4285,0.8061913319 2010,1,4286,0.8005913319 -2010,1,4287,0.8075913318999999 +2010,1,4287,0.8075913319 2010,1,4288,0.8145913319 2010,1,4289,0.8215913318999999 2010,1,4290,0.8425913319 2010,1,4291,0.8624768076999999 -2010,1,4292,0.8683854642999999 +2010,1,4292,0.8683854643 2010,1,4293,0.8723245680999999 2010,1,4294,0.8762636728 2010,1,4295,0.8762636728 -2010,1,4296,0.8782332246999999 -2010,1,4297,0.8802027765999999 -2010,1,4298,0.8821723288 -2010,1,4299,0.8821723288 -2010,1,4300,0.8841418812999998 -2010,1,4301,0.8841418812999998 -2010,1,4302,0.8802027765999999 +2010,1,4296,0.8782332247 +2010,1,4297,0.8802027766 +2010,1,4298,0.8821723288000001 +2010,1,4299,0.8821723288000001 +2010,1,4300,0.8841418812999999 +2010,1,4301,0.8841418812999999 +2010,1,4302,0.8802027766 2010,1,4303,0.8742941203 -2010,1,4304,0.8683854642999999 +2010,1,4304,0.8683854643 2010,1,4305,0.8633190443 2010,1,4306,0.8567103883 2010,1,4307,0.8467913319 @@ -4314,17 +4314,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4313,0.8418913319 2010,1,4314,0.8556186474999999 2010,1,4315,0.8644463599 -2010,1,4316,0.8703550161999999 +2010,1,4316,0.8703550162 2010,1,4317,0.8742941203 2010,1,4318,0.8762636728 -2010,1,4319,0.8782332246999999 -2010,1,4320,0.8802027765999999 -2010,1,4321,0.8821723288 -2010,1,4322,0.8821723288 -2010,1,4323,0.8841418812999998 -2010,1,4324,0.8841418812999998 -2010,1,4325,0.8841418812999998 -2010,1,4326,0.8802027765999999 +2010,1,4319,0.8782332247 +2010,1,4320,0.8802027766 +2010,1,4321,0.8821723288000001 +2010,1,4322,0.8821723288000001 +2010,1,4323,0.8841418812999999 +2010,1,4324,0.8841418812999999 +2010,1,4325,0.8841418812999999 +2010,1,4326,0.8802027766 2010,1,4327,0.8742941203 2010,1,4328,0.8679581486999999 2010,1,4329,0.8619190443 @@ -4340,8 +4340,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4339,0.8664159117999999 2010,1,4340,0.8723245680999999 2010,1,4341,0.8762636728 -2010,1,4342,0.8802027765999999 -2010,1,4343,0.8841418812999998 +2010,1,4342,0.8802027766 +2010,1,4343,0.8841418812999999 2010,1,4344,0.8861114332 2010,1,4345,0.8880809851 2010,1,4346,0.8900505372999999 @@ -4349,23 +4349,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4348,0.8920200892 2010,1,4349,0.8900505372999999 2010,1,4350,0.8861114332 -2010,1,4351,0.8821723288 +2010,1,4351,0.8821723288000001 2010,1,4352,0.8758363572 2010,1,4353,0.8697972525 2010,1,4354,0.8631885961999999 -2010,1,4355,0.8565799401999998 +2010,1,4355,0.8565799402 2010,1,4356,0.8509913319 2010,1,4357,0.8446913319 2010,1,4358,0.8383913319 2010,1,4359,0.8390913319 2010,1,4360,0.8460913319 2010,1,4361,0.8544913318999999 -2010,1,4362,0.8605072557999999 -2010,1,4363,0.8683854642999999 +2010,1,4362,0.8605072558 +2010,1,4363,0.8683854643 2010,1,4364,0.8742941203 -2010,1,4365,0.8782332246999999 -2010,1,4366,0.8821723288 -2010,1,4367,0.8841418812999998 +2010,1,4365,0.8782332247 +2010,1,4366,0.8821723288000001 +2010,1,4367,0.8841418812999999 2010,1,4368,0.8861114332 2010,1,4369,0.8880809851 2010,1,4370,0.8900505372999999 @@ -4373,11 +4373,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4372,0.8920200892 2010,1,4373,0.8900505372999999 2010,1,4374,0.8861114332 -2010,1,4375,0.8821723288 +2010,1,4375,0.8821723288000001 2010,1,4376,0.8762636728 -2010,1,4377,0.8692277005999999 +2010,1,4377,0.8692277006 2010,1,4378,0.8645885962 -2010,1,4379,0.8572799401999999 +2010,1,4379,0.8572799402 2010,1,4380,0.8516913318999999 2010,1,4381,0.8453913318999999 2010,1,4382,0.8460913319 @@ -4385,70 +4385,70 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4384,0.8481913319 2010,1,4385,0.8556186474999999 2010,1,4386,0.8624768076999999 -2010,1,4387,0.8683854642999999 +2010,1,4387,0.8683854643 2010,1,4388,0.8742941203 -2010,1,4389,0.8782332246999999 -2010,1,4390,0.8802027765999999 -2010,1,4391,0.8841418812999998 -2010,1,4392,0.8841418812999998 +2010,1,4389,0.8782332247 +2010,1,4390,0.8802027766 +2010,1,4391,0.8841418812999999 +2010,1,4392,0.8841418812999999 2010,1,4393,0.8861114332 2010,1,4394,0.8880809851 2010,1,4395,0.8880809851 2010,1,4396,0.8880809851 2010,1,4397,0.8880809851 -2010,1,4398,0.8841418812999998 -2010,1,4399,0.8782332246999999 +2010,1,4398,0.8841418812999999 +2010,1,4399,0.8782332247 2010,1,4400,0.8723245680999999 -2010,1,4401,0.8683854642999999 +2010,1,4401,0.8683854643 2010,1,4402,0.8620494920999999 -2010,1,4403,0.8593799401999999 +2010,1,4403,0.8593799402 2010,1,4404,0.8537913319 2010,1,4405,0.8467913319 2010,1,4406,0.8474913319 2010,1,4407,0.8418913319 2010,1,4408,0.8488913319 2010,1,4409,0.8556186474999999 -2010,1,4410,0.8605072557999999 -2010,1,4411,0.8683854642999999 +2010,1,4410,0.8605072558 +2010,1,4411,0.8683854643 2010,1,4412,0.8742941203 -2010,1,4413,0.8782332246999999 -2010,1,4414,0.8802027765999999 -2010,1,4415,0.8821723288 -2010,1,4416,0.8841418812999998 -2010,1,4417,0.8841418812999998 +2010,1,4413,0.8782332247 +2010,1,4414,0.8802027766 +2010,1,4415,0.8821723288000001 +2010,1,4416,0.8841418812999999 +2010,1,4417,0.8841418812999999 2010,1,4418,0.8861114332 2010,1,4419,0.8861114332 2010,1,4420,0.8861114332 2010,1,4421,0.8861114332 -2010,1,4422,0.8821723288 +2010,1,4422,0.8821723288000001 2010,1,4423,0.8762636728 -2010,1,4424,0.8703550161999999 +2010,1,4424,0.8703550162 2010,1,4425,0.8644463599 2010,1,4426,0.8581103883 2010,1,4427,0.8481913319 -2010,1,4428,0.8411913319000001 +2010,1,4428,0.8411913319 2010,1,4429,0.8341913318999999 2010,1,4430,0.8341913318999999 2010,1,4431,0.8341913318999999 -2010,1,4432,0.8411913319000001 +2010,1,4432,0.8411913319 2010,1,4433,0.8488913319 2010,1,4434,0.8585377039 2010,1,4435,0.8664159117999999 2010,1,4436,0.8723245680999999 2010,1,4437,0.8762636728 -2010,1,4438,0.8782332246999999 -2010,1,4439,0.8802027765999999 -2010,1,4440,0.8821723288 -2010,1,4441,0.8821723288 -2010,1,4442,0.8841418812999998 +2010,1,4438,0.8782332247 +2010,1,4439,0.8802027766 +2010,1,4440,0.8821723288000001 +2010,1,4441,0.8821723288000001 +2010,1,4442,0.8841418812999999 2010,1,4443,0.8861114332 2010,1,4444,0.8861114332 2010,1,4445,0.8861114332 -2010,1,4446,0.8821723288 +2010,1,4446,0.8821723288000001 2010,1,4447,0.8762636728 -2010,1,4448,0.8703550161999999 +2010,1,4448,0.8703550162 2010,1,4449,0.8659885961999999 -2010,1,4450,0.8593799401999999 +2010,1,4450,0.8593799402 2010,1,4451,0.8537913319 2010,1,4452,0.8404913319 2010,1,4453,0.8334913318999999 @@ -4460,18 +4460,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4459,0.8664159117999999 2010,1,4460,0.8723245680999999 2010,1,4461,0.8762636728 -2010,1,4462,0.8802027765999999 -2010,1,4463,0.8821723288 -2010,1,4464,0.8841418812999998 -2010,1,4465,0.8841418812999998 +2010,1,4462,0.8802027766 +2010,1,4463,0.8821723288000001 +2010,1,4464,0.8841418812999999 +2010,1,4465,0.8841418812999999 2010,1,4466,0.8861114332 2010,1,4467,0.8861114332 2010,1,4468,0.8861114332 2010,1,4469,0.8861114332 -2010,1,4470,0.8841418812999998 -2010,1,4471,0.8782332246999999 +2010,1,4470,0.8841418812999999 +2010,1,4471,0.8782332247 2010,1,4472,0.8723245680999999 -2010,1,4473,0.8683854642999999 +2010,1,4473,0.8683854643 2010,1,4474,0.8620494920999999 2010,1,4475,0.8574103882999999 2010,1,4476,0.8537913319 @@ -4479,45 +4479,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4478,0.8474913319 2010,1,4479,0.8481913319 2010,1,4480,0.8551913319 -2010,1,4481,0.8605072557999999 +2010,1,4481,0.8605072558 2010,1,4482,0.8664159117999999 2010,1,4483,0.8723245680999999 2010,1,4484,0.8762636728 -2010,1,4485,0.8802027765999999 -2010,1,4486,0.8821723288 -2010,1,4487,0.8821723288 -2010,1,4488,0.8841418812999998 +2010,1,4485,0.8802027766 +2010,1,4486,0.8821723288000001 +2010,1,4487,0.8821723288000001 +2010,1,4488,0.8841418812999999 2010,1,4489,0.8861114332 2010,1,4490,0.8861114332 2010,1,4491,0.8880809851 2010,1,4492,0.8880809851 2010,1,4493,0.8880809851 -2010,1,4494,0.8841418812999998 -2010,1,4495,0.8802027765999999 +2010,1,4494,0.8841418812999999 +2010,1,4495,0.8802027766 2010,1,4496,0.8742941203 -2010,1,4497,0.8683854642999999 +2010,1,4497,0.8683854643 2010,1,4498,0.8633190443 2010,1,4499,0.8567103883 2010,1,4500,0.8530913319 2010,1,4501,0.8460913319 2010,1,4502,0.8404913319 -2010,1,4503,0.8411913319000001 +2010,1,4503,0.8411913319 2010,1,4504,0.8481913319 2010,1,4505,0.8551913319 2010,1,4506,0.8624768076999999 -2010,1,4507,0.8683854642999999 +2010,1,4507,0.8683854643 2010,1,4508,0.8742941203 -2010,1,4509,0.8782332246999999 -2010,1,4510,0.8821723288 -2010,1,4511,0.8821723288 -2010,1,4512,0.8841418812999998 +2010,1,4509,0.8782332247 +2010,1,4510,0.8821723288000001 +2010,1,4511,0.8821723288000001 +2010,1,4512,0.8841418812999999 2010,1,4513,0.8861114332 2010,1,4514,0.8861114332 2010,1,4515,0.8861114332 2010,1,4516,0.8880809851 2010,1,4517,0.8880809851 -2010,1,4518,0.8841418812999998 -2010,1,4519,0.8782332246999999 +2010,1,4518,0.8841418812999999 +2010,1,4519,0.8782332247 2010,1,4520,0.8742941203 2010,1,4521,0.8665581486999999 2010,1,4522,0.8619190443 @@ -4531,91 +4531,91 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4530,0.8585377039 2010,1,4531,0.8664159117999999 2010,1,4532,0.8742941203 -2010,1,4533,0.8782332246999999 -2010,1,4534,0.8802027765999999 -2010,1,4535,0.8821723288 -2010,1,4536,0.8821723288 -2010,1,4537,0.8841418812999998 +2010,1,4533,0.8782332247 +2010,1,4534,0.8802027766 +2010,1,4535,0.8821723288000001 +2010,1,4536,0.8821723288000001 +2010,1,4537,0.8841418812999999 2010,1,4538,0.8861114332 2010,1,4539,0.8861114332 2010,1,4540,0.8880809851 2010,1,4541,0.8861114332 -2010,1,4542,0.8821723288 -2010,1,4543,0.8782332246999999 +2010,1,4542,0.8821723288000001 +2010,1,4543,0.8782332247 2010,1,4544,0.8711972524999999 2010,1,4545,0.8631885961999999 -2010,1,4546,0.8565799401999998 +2010,1,4546,0.8565799402 2010,1,4547,0.8446913319 2010,1,4548,0.8257913319 2010,1,4549,0.8194913318999999 2010,1,4550,0.8131913319 -2010,1,4551,0.8138913319000001 -2010,1,4552,0.8208913318999999 +2010,1,4551,0.8138913319 +2010,1,4552,0.8208913319 2010,1,4553,0.8278913319 2010,1,4554,0.8481913319 2010,1,4555,0.8624768076999999 -2010,1,4556,0.8683854642999999 +2010,1,4556,0.8683854643 2010,1,4557,0.8723245680999999 2010,1,4558,0.8742941203 2010,1,4559,0.8762636728 -2010,1,4560,0.8782332246999999 -2010,1,4561,0.8782332246999999 -2010,1,4562,0.8802027765999999 -2010,1,4563,0.8821723288 -2010,1,4564,0.8821723288 -2010,1,4565,0.8821723288 -2010,1,4566,0.8782332246999999 +2010,1,4560,0.8782332247 +2010,1,4561,0.8782332247 +2010,1,4562,0.8802027766 +2010,1,4563,0.8821723288000001 +2010,1,4564,0.8821723288000001 +2010,1,4565,0.8821723288000001 +2010,1,4566,0.8782332247 2010,1,4567,0.8742941203 2010,1,4568,0.8665581486999999 2010,1,4569,0.8592494920999999 2010,1,4570,0.8516913318999999 2010,1,4571,0.8383913319 -2010,1,4572,0.8187913318999999 +2010,1,4572,0.8187913319 2010,1,4573,0.8124913319 2010,1,4574,0.8068913319 -2010,1,4575,0.8138913319000001 -2010,1,4576,0.8208913318999999 +2010,1,4575,0.8138913319 +2010,1,4576,0.8208913319 2010,1,4577,0.8285913319 2010,1,4578,0.8493186475 -2010,1,4579,0.8605072557999999 +2010,1,4579,0.8605072558 2010,1,4580,0.8664159117999999 -2010,1,4581,0.8703550161999999 +2010,1,4581,0.8703550162 2010,1,4582,0.8742941203 2010,1,4583,0.8742941203 2010,1,4584,0.8742941203 2010,1,4585,0.8762636728 -2010,1,4586,0.8782332246999999 -2010,1,4587,0.8802027765999999 -2010,1,4588,0.8802027765999999 -2010,1,4589,0.8802027765999999 -2010,1,4590,0.8802027765999999 +2010,1,4586,0.8782332247 +2010,1,4587,0.8802027766 +2010,1,4588,0.8802027766 +2010,1,4589,0.8802027766 +2010,1,4590,0.8802027766 2010,1,4591,0.8762636728 -2010,1,4592,0.8703550161999999 +2010,1,4592,0.8703550162 2010,1,4593,0.8652885961999999 2010,1,4594,0.8579799401999999 2010,1,4595,0.8460913319 2010,1,4596,0.8327913319 2010,1,4597,0.8264913319 -2010,1,4598,0.8208913318999999 +2010,1,4598,0.8208913319 2010,1,4599,0.8215913318999999 2010,1,4600,0.8285913319 -2010,1,4601,0.8355913318999999 +2010,1,4601,0.8355913319 2010,1,4602,0.8493186475 -2010,1,4603,0.8605072557999999 +2010,1,4603,0.8605072558 2010,1,4604,0.8664159117999999 -2010,1,4605,0.8703550161999999 +2010,1,4605,0.8703550162 2010,1,4606,0.8742941203 2010,1,4607,0.8762636728 -2010,1,4608,0.8782332246999999 -2010,1,4609,0.8782332246999999 -2010,1,4610,0.8802027765999999 -2010,1,4611,0.8802027765999999 -2010,1,4612,0.8821723288 -2010,1,4613,0.8821723288 -2010,1,4614,0.8782332246999999 +2010,1,4608,0.8782332247 +2010,1,4609,0.8782332247 +2010,1,4610,0.8802027766 +2010,1,4611,0.8802027766 +2010,1,4612,0.8821723288000001 +2010,1,4613,0.8821723288000001 +2010,1,4614,0.8782332247 2010,1,4615,0.8742941203 -2010,1,4616,0.8703550161999999 -2010,1,4617,0.8626190443 +2010,1,4616,0.8703550162 +2010,1,4617,0.8626190442999999 2010,1,4618,0.8560103883 2010,1,4619,0.8460913319 2010,1,4620,0.8390913319 @@ -4624,23 +4624,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4623,0.8334913318999999 2010,1,4624,0.8404913319 2010,1,4625,0.8474913319 -2010,1,4626,0.8605072557999999 +2010,1,4626,0.8605072558 2010,1,4627,0.8664159117999999 2010,1,4628,0.8723245680999999 2010,1,4629,0.8762636728 -2010,1,4630,0.8782332246999999 -2010,1,4631,0.8782332246999999 -2010,1,4632,0.8802027765999999 -2010,1,4633,0.8821723288 -2010,1,4634,0.8821723288 -2010,1,4635,0.8841418812999998 -2010,1,4636,0.8841418812999998 -2010,1,4637,0.8841418812999998 -2010,1,4638,0.8821723288 -2010,1,4639,0.8782332246999999 +2010,1,4630,0.8782332247 +2010,1,4631,0.8782332247 +2010,1,4632,0.8802027766 +2010,1,4633,0.8821723288000001 +2010,1,4634,0.8821723288000001 +2010,1,4635,0.8841418812999999 +2010,1,4636,0.8841418812999999 +2010,1,4637,0.8841418812999999 +2010,1,4638,0.8821723288000001 +2010,1,4639,0.8782332247 2010,1,4640,0.8718972524999999 2010,1,4641,0.8638885961999999 -2010,1,4642,0.8565799401999998 +2010,1,4642,0.8565799402 2010,1,4643,0.8446913319 2010,1,4644,0.8376913319 2010,1,4645,0.8313913318999999 @@ -4649,18 +4649,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4648,0.8397913319 2010,1,4649,0.8530913319 2010,1,4650,0.8620494920999999 -2010,1,4651,0.8683854642999999 +2010,1,4651,0.8683854643 2010,1,4652,0.8723245680999999 2010,1,4653,0.8762636728 -2010,1,4654,0.8782332246999999 -2010,1,4655,0.8802027765999999 -2010,1,4656,0.8802027765999999 -2010,1,4657,0.8821723288 -2010,1,4658,0.8841418812999998 -2010,1,4659,0.8841418812999998 -2010,1,4660,0.8841418812999998 -2010,1,4661,0.8841418812999998 -2010,1,4662,0.8802027765999999 +2010,1,4654,0.8782332247 +2010,1,4655,0.8802027766 +2010,1,4656,0.8802027766 +2010,1,4657,0.8821723288000001 +2010,1,4658,0.8841418812999999 +2010,1,4659,0.8841418812999999 +2010,1,4660,0.8841418812999999 +2010,1,4661,0.8841418812999999 +2010,1,4662,0.8802027766 2010,1,4663,0.8742941203 2010,1,4664,0.8658581486999999 2010,1,4665,0.8578494920999999 @@ -4669,21 +4669,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4668,0.8236913319 2010,1,4669,0.8173913318999999 2010,1,4670,0.8110913319 -2010,1,4671,0.8117913319000001 -2010,1,4672,0.8187913318999999 +2010,1,4671,0.8117913319 +2010,1,4672,0.8187913319 2010,1,4673,0.8257913319 2010,1,4674,0.8397913319 -2010,1,4675,0.8593799401999999 +2010,1,4675,0.8593799402 2010,1,4676,0.8644463599 2010,1,4677,0.8664159117999999 -2010,1,4678,0.8683854642999999 -2010,1,4679,0.8703550161999999 +2010,1,4678,0.8683854643 +2010,1,4679,0.8703550162 2010,1,4680,0.8723245680999999 2010,1,4681,0.8742941203 2010,1,4682,0.8762636728 2010,1,4683,0.8762636728 -2010,1,4684,0.8782332246999999 -2010,1,4685,0.8782332246999999 +2010,1,4684,0.8782332247 +2010,1,4685,0.8782332247 2010,1,4686,0.8742941203 2010,1,4687,0.8665581486999999 2010,1,4688,0.8585494920999999 @@ -4698,22 +4698,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4697,0.8068913319 2010,1,4698,0.8215913318999999 2010,1,4699,0.8481913319 -2010,1,4700,0.8605072557999999 +2010,1,4700,0.8605072558 2010,1,4701,0.8624768076999999 2010,1,4702,0.8644463599 2010,1,4703,0.8664159117999999 -2010,1,4704,0.8683854642999999 -2010,1,4705,0.8703550161999999 -2010,1,4706,0.8703550161999999 +2010,1,4704,0.8683854643 +2010,1,4705,0.8703550162 +2010,1,4706,0.8703550162 2010,1,4707,0.8723245680999999 2010,1,4708,0.8723245680999999 2010,1,4709,0.8723245680999999 -2010,1,4710,0.8683854642999999 +2010,1,4710,0.8683854643 2010,1,4711,0.8640190443 2010,1,4712,0.8579799401999999 2010,1,4713,0.8446913319 2010,1,4714,0.8250913319 -2010,1,4715,0.8117913319000001 +2010,1,4715,0.8117913319 2010,1,4716,0.7984913319 2010,1,4717,0.7914913319 2010,1,4718,0.7914913319 @@ -4725,20 +4725,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4724,0.8585377039 2010,1,4725,0.8624768076999999 2010,1,4726,0.8664159117999999 -2010,1,4727,0.8683854642999999 -2010,1,4728,0.8683854642999999 -2010,1,4729,0.8703550161999999 +2010,1,4727,0.8683854643 +2010,1,4728,0.8683854643 +2010,1,4729,0.8703550162 2010,1,4730,0.8723245680999999 2010,1,4731,0.8723245680999999 2010,1,4732,0.8742941203 2010,1,4733,0.8742941203 -2010,1,4734,0.8703550161999999 +2010,1,4734,0.8703550162 2010,1,4735,0.8633190443 -2010,1,4736,0.8572799401999999 +2010,1,4736,0.8572799402 2010,1,4737,0.8446913319 2010,1,4738,0.8306913319 2010,1,4739,0.8110913319 -2010,1,4740,0.8040913318999999 +2010,1,4740,0.8040913319 2010,1,4741,0.7977913319 2010,1,4742,0.7921913319 2010,1,4743,0.7928913318999999 @@ -4749,8 +4749,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4748,0.8585377039 2010,1,4749,0.8624768076999999 2010,1,4750,0.8664159117999999 -2010,1,4751,0.8683854642999999 -2010,1,4752,0.8703550161999999 +2010,1,4751,0.8683854643 +2010,1,4752,0.8703550162 2010,1,4753,0.8723245680999999 2010,1,4754,0.8742941203 2010,1,4755,0.8742941203 @@ -4762,57 +4762,57 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4761,0.8502913319 2010,1,4762,0.8306913319 2010,1,4763,0.8173913318999999 -2010,1,4764,0.8040913318999999 +2010,1,4764,0.8040913319 2010,1,4765,0.7977913319 2010,1,4766,0.7914913319 2010,1,4767,0.7921913319 2010,1,4768,0.7991913318999999 -2010,1,4769,0.8061913318999999 -2010,1,4770,0.8208913318999999 +2010,1,4769,0.8061913319 +2010,1,4770,0.8208913319 2010,1,4771,0.8488913319 -2010,1,4772,0.8605072557999999 +2010,1,4772,0.8605072558 2010,1,4773,0.8644463599 2010,1,4774,0.8664159117999999 -2010,1,4775,0.8703550161999999 +2010,1,4775,0.8703550162 2010,1,4776,0.8723245680999999 2010,1,4777,0.8742941203 2010,1,4778,0.8762636728 2010,1,4779,0.8762636728 -2010,1,4780,0.8782332246999999 -2010,1,4781,0.8782332246999999 +2010,1,4780,0.8782332247 +2010,1,4781,0.8782332247 2010,1,4782,0.8742941203 -2010,1,4783,0.8683854642999999 -2010,1,4784,0.8593799401999999 +2010,1,4783,0.8683854643 +2010,1,4784,0.8593799402 2010,1,4785,0.8460913319 2010,1,4786,0.8320913319 2010,1,4787,0.8124913319 -2010,1,4788,0.8054913318999999 +2010,1,4788,0.8054913319 2010,1,4789,0.7984913319 2010,1,4790,0.7991913318999999 -2010,1,4791,0.8061913318999999 +2010,1,4791,0.8061913319 2010,1,4792,0.8131913319 2010,1,4793,0.8271913318999999 2010,1,4794,0.8481913319 2010,1,4795,0.8624768076999999 -2010,1,4796,0.8683854642999999 +2010,1,4796,0.8683854643 2010,1,4797,0.8723245680999999 2010,1,4798,0.8742941203 2010,1,4799,0.8762636728 2010,1,4800,0.8762636728 -2010,1,4801,0.8782332246999999 -2010,1,4802,0.8802027765999999 -2010,1,4803,0.8802027765999999 -2010,1,4804,0.8821723288 -2010,1,4805,0.8821723288 -2010,1,4806,0.8782332246999999 +2010,1,4801,0.8782332247 +2010,1,4802,0.8802027766 +2010,1,4803,0.8802027766 +2010,1,4804,0.8821723288000001 +2010,1,4805,0.8821723288000001 +2010,1,4806,0.8782332247 2010,1,4807,0.8742941203 -2010,1,4808,0.8672581486999998 +2010,1,4808,0.8672581487 2010,1,4809,0.8592494920999999 2010,1,4810,0.8516913318999999 2010,1,4811,0.8383913319 2010,1,4812,0.8250913319 -2010,1,4813,0.8187913318999999 -2010,1,4814,0.8187913318999999 +2010,1,4813,0.8187913319 +2010,1,4814,0.8187913319 2010,1,4815,0.8194913318999999 2010,1,4816,0.8264913319 2010,1,4817,0.8404913319 @@ -4820,19 +4820,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4819,0.8664159117999999 2010,1,4820,0.8723245680999999 2010,1,4821,0.8762636728 -2010,1,4822,0.8802027765999999 -2010,1,4823,0.8802027765999999 -2010,1,4824,0.8821723288 -2010,1,4825,0.8841418812999998 +2010,1,4822,0.8802027766 +2010,1,4823,0.8802027766 +2010,1,4824,0.8821723288000001 +2010,1,4825,0.8841418812999999 2010,1,4826,0.8861114332 2010,1,4827,0.8861114332 2010,1,4828,0.8880809851 2010,1,4829,0.8880809851 -2010,1,4830,0.8841418812999998 -2010,1,4831,0.8782332246999999 +2010,1,4830,0.8841418812999999 +2010,1,4831,0.8782332247 2010,1,4832,0.8718972524999999 2010,1,4833,0.8645885962 -2010,1,4834,0.8572799401999999 +2010,1,4834,0.8572799402 2010,1,4835,0.8453913318999999 2010,1,4836,0.8383913319 2010,1,4837,0.8320913319 @@ -4840,118 +4840,118 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4839,0.8334913318999999 2010,1,4840,0.8404913319 2010,1,4841,0.8481913319 -2010,1,4842,0.8605072557999999 +2010,1,4842,0.8605072558 2010,1,4843,0.8664159117999999 2010,1,4844,0.8742941203 -2010,1,4845,0.8782332246999999 -2010,1,4846,0.8802027765999999 -2010,1,4847,0.8821723288 -2010,1,4848,0.8821723288 -2010,1,4849,0.8841418812999998 -2010,1,4850,0.8841418812999998 +2010,1,4845,0.8782332247 +2010,1,4846,0.8802027766 +2010,1,4847,0.8821723288000001 +2010,1,4848,0.8821723288000001 +2010,1,4849,0.8841418812999999 +2010,1,4850,0.8841418812999999 2010,1,4851,0.8861114332 2010,1,4852,0.8861114332 2010,1,4853,0.8861114332 -2010,1,4854,0.8841418812999998 -2010,1,4855,0.8782332246999999 +2010,1,4854,0.8841418812999999 +2010,1,4855,0.8782332247 2010,1,4856,0.8718972524999999 2010,1,4857,0.8638885961999999 -2010,1,4858,0.8572799401999999 +2010,1,4858,0.8572799402 2010,1,4859,0.8453913318999999 2010,1,4860,0.8320913319 2010,1,4861,0.8257913319 2010,1,4862,0.8194913318999999 2010,1,4863,0.8264913319 2010,1,4864,0.8334913318999999 -2010,1,4865,0.8411913319000001 +2010,1,4865,0.8411913319 2010,1,4866,0.8556186474999999 2010,1,4867,0.8644463599 2010,1,4868,0.8723245680999999 2010,1,4869,0.8762636728 -2010,1,4870,0.8782332246999999 -2010,1,4871,0.8802027765999999 -2010,1,4872,0.8802027765999999 -2010,1,4873,0.8821723288 -2010,1,4874,0.8821723288 -2010,1,4875,0.8841418812999998 -2010,1,4876,0.8841418812999998 -2010,1,4877,0.8841418812999998 -2010,1,4878,0.8821723288 +2010,1,4870,0.8782332247 +2010,1,4871,0.8802027766 +2010,1,4872,0.8802027766 +2010,1,4873,0.8821723288000001 +2010,1,4874,0.8821723288000001 +2010,1,4875,0.8841418812999999 +2010,1,4876,0.8841418812999999 +2010,1,4877,0.8841418812999999 +2010,1,4878,0.8821723288000001 2010,1,4879,0.8762636728 2010,1,4880,0.8685277006 2010,1,4881,0.8612190443 2010,1,4882,0.8546103883 2010,1,4883,0.8383913319 2010,1,4884,0.8250913319 -2010,1,4885,0.8180913318999998 +2010,1,4885,0.8180913318999999 2010,1,4886,0.8124913319 2010,1,4887,0.8131913319 -2010,1,4888,0.8201913318999998 +2010,1,4888,0.8201913318999999 2010,1,4889,0.8271913318999999 2010,1,4890,0.8418913319 2010,1,4891,0.8624768076999999 -2010,1,4892,0.8683854642999999 +2010,1,4892,0.8683854643 2010,1,4893,0.8723245680999999 2010,1,4894,0.8742941203 2010,1,4895,0.8762636728 -2010,1,4896,0.8782332246999999 -2010,1,4897,0.8802027765999999 -2010,1,4898,0.8802027765999999 -2010,1,4899,0.8821723288 -2010,1,4900,0.8821723288 -2010,1,4901,0.8821723288 -2010,1,4902,0.8802027765999999 +2010,1,4896,0.8782332247 +2010,1,4897,0.8802027766 +2010,1,4898,0.8802027766 +2010,1,4899,0.8821723288000001 +2010,1,4900,0.8821723288000001 +2010,1,4901,0.8821723288000001 +2010,1,4902,0.8802027766 2010,1,4903,0.8742941203 2010,1,4904,0.8645885962 -2010,1,4905,0.8572799401999999 +2010,1,4905,0.8572799402 2010,1,4906,0.8446913319 2010,1,4907,0.8250913319 -2010,1,4908,0.8180913318999998 -2010,1,4909,0.8117913319000001 -2010,1,4910,0.8054913318999999 -2010,1,4911,0.8061913318999999 +2010,1,4908,0.8180913318999999 +2010,1,4909,0.8117913319 +2010,1,4910,0.8054913319 +2010,1,4911,0.8061913319 2010,1,4912,0.8131913319 -2010,1,4913,0.8201913318999998 -2010,1,4914,0.8411913319000001 -2010,1,4915,0.8605072557999999 +2010,1,4913,0.8201913318999999 +2010,1,4914,0.8411913319 +2010,1,4915,0.8605072558 2010,1,4916,0.8664159117999999 -2010,1,4917,0.8703550161999999 +2010,1,4917,0.8703550162 2010,1,4918,0.8742941203 2010,1,4919,0.8762636728 -2010,1,4920,0.8782332246999999 -2010,1,4921,0.8802027765999999 -2010,1,4922,0.8802027765999999 -2010,1,4923,0.8821723288 -2010,1,4924,0.8841418812999998 -2010,1,4925,0.8841418812999998 -2010,1,4926,0.8802027765999999 +2010,1,4920,0.8782332247 +2010,1,4921,0.8802027766 +2010,1,4922,0.8802027766 +2010,1,4923,0.8821723288000001 +2010,1,4924,0.8841418812999999 +2010,1,4925,0.8841418812999999 +2010,1,4926,0.8802027766 2010,1,4927,0.8762636728 -2010,1,4928,0.8692277005999999 +2010,1,4928,0.8692277006 2010,1,4929,0.8631885961999999 -2010,1,4930,0.8565799401999998 +2010,1,4930,0.8565799402 2010,1,4931,0.8446913319 2010,1,4932,0.8313913318999999 2010,1,4933,0.8250913319 2010,1,4934,0.8194913318999999 -2010,1,4935,0.8201913318999998 +2010,1,4935,0.8201913318999999 2010,1,4936,0.8271913318999999 2010,1,4937,0.8341913318999999 2010,1,4938,0.8551913319 2010,1,4939,0.8644463599 -2010,1,4940,0.8703550161999999 +2010,1,4940,0.8703550162 2010,1,4941,0.8742941203 2010,1,4942,0.8762636728 -2010,1,4943,0.8782332246999999 -2010,1,4944,0.8802027765999999 -2010,1,4945,0.8821723288 -2010,1,4946,0.8841418812999998 -2010,1,4947,0.8841418812999998 +2010,1,4943,0.8782332247 +2010,1,4944,0.8802027766 +2010,1,4945,0.8821723288000001 +2010,1,4946,0.8841418812999999 +2010,1,4947,0.8841418812999999 2010,1,4948,0.8861114332 2010,1,4949,0.8861114332 -2010,1,4950,0.8841418812999998 -2010,1,4951,0.8782332246999999 +2010,1,4950,0.8841418812999999 +2010,1,4951,0.8782332247 2010,1,4952,0.8742941203 -2010,1,4953,0.8672581486999998 +2010,1,4953,0.8672581487 2010,1,4954,0.8599494920999999 2010,1,4955,0.8523913318999999 2010,1,4956,0.8390913319 @@ -4961,11 +4961,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4960,0.8404913319 2010,1,4961,0.8544913318999999 2010,1,4962,0.8624768076999999 -2010,1,4963,0.8683854642999999 +2010,1,4963,0.8683854643 2010,1,4964,0.8762636728 -2010,1,4965,0.8802027765999999 -2010,1,4966,0.8821723288 -2010,1,4967,0.8841418812999998 +2010,1,4965,0.8802027766 +2010,1,4966,0.8821723288000001 +2010,1,4967,0.8841418812999999 2010,1,4968,0.8861114332 2010,1,4969,0.8861114332 2010,1,4970,0.8880809851 @@ -4973,7 +4973,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4972,0.8900505372999999 2010,1,4973,0.8900505372999999 2010,1,4974,0.8861114332 -2010,1,4975,0.8802027765999999 +2010,1,4975,0.8802027766 2010,1,4976,0.8762636728 2010,1,4977,0.8685277006 2010,1,4978,0.8619190443 @@ -4982,13 +4982,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4981,0.8390913319 2010,1,4982,0.8334913318999999 2010,1,4983,0.8341913318999999 -2010,1,4984,0.8411913319000001 +2010,1,4984,0.8411913319 2010,1,4985,0.8574103882999999 2010,1,4986,0.8644463599 2010,1,4987,0.8723245680999999 -2010,1,4988,0.8782332246999999 -2010,1,4989,0.8821723288 -2010,1,4990,0.8841418812999998 +2010,1,4988,0.8782332247 +2010,1,4989,0.8821723288000001 +2010,1,4990,0.8841418812999999 2010,1,4991,0.8861114332 2010,1,4992,0.8861114332 2010,1,4993,0.8880809851 @@ -4997,23 +4997,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,4996,0.8920200892 2010,1,4997,0.8920200892 2010,1,4998,0.8900505372999999 -2010,1,4999,0.8841418812999998 -2010,1,5000,0.8782332246999999 +2010,1,4999,0.8841418812999999 +2010,1,5000,0.8782332247 2010,1,5001,0.8711972524999999 -2010,1,5002,0.8626190443 +2010,1,5002,0.8626190442999999 2010,1,5003,0.8560103883 2010,1,5004,0.8397913319 2010,1,5005,0.8334913318999999 2010,1,5006,0.8271913318999999 2010,1,5007,0.8341913318999999 -2010,1,5008,0.8411913319000001 +2010,1,5008,0.8411913319 2010,1,5009,0.8481913319 -2010,1,5010,0.8605072557999999 -2010,1,5011,0.8683854642999999 +2010,1,5010,0.8605072558 +2010,1,5011,0.8683854643 2010,1,5012,0.8742941203 -2010,1,5013,0.8782332246999999 -2010,1,5014,0.8821723288 -2010,1,5015,0.8841418812999998 +2010,1,5013,0.8782332247 +2010,1,5014,0.8821723288000001 +2010,1,5015,0.8841418812999999 2010,1,5016,0.8861114332 2010,1,5017,0.8880809851 2010,1,5018,0.8880809851 @@ -5021,80 +5021,80 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5020,0.8900505372999999 2010,1,5021,0.8900505372999999 2010,1,5022,0.8861114332 -2010,1,5023,0.8802027765999999 +2010,1,5023,0.8802027766 2010,1,5024,0.8742941203 2010,1,5025,0.8665581486999999 2010,1,5026,0.8579799401999999 2010,1,5027,0.8460913319 2010,1,5028,0.8327913319 2010,1,5029,0.8264913319 -2010,1,5030,0.8201913318999998 -2010,1,5031,0.8208913318999999 +2010,1,5030,0.8201913318999999 +2010,1,5031,0.8208913319 2010,1,5032,0.8278913319 2010,1,5033,0.8348913319 2010,1,5034,0.8581103883 2010,1,5035,0.8664159117999999 2010,1,5036,0.8723245680999999 2010,1,5037,0.8762636728 -2010,1,5038,0.8782332246999999 -2010,1,5039,0.8802027765999999 -2010,1,5040,0.8821723288 -2010,1,5041,0.8841418812999998 +2010,1,5038,0.8782332247 +2010,1,5039,0.8802027766 +2010,1,5040,0.8821723288000001 +2010,1,5041,0.8841418812999999 2010,1,5042,0.8861114332 2010,1,5043,0.8861114332 2010,1,5044,0.8880809851 2010,1,5045,0.8880809851 -2010,1,5046,0.8841418812999998 -2010,1,5047,0.8782332246999999 +2010,1,5046,0.8841418812999999 +2010,1,5047,0.8782332247 2010,1,5048,0.8723245680999999 2010,1,5049,0.8644463599 2010,1,5050,0.8581103883 2010,1,5051,0.8404913319 2010,1,5052,0.8327913319 2010,1,5053,0.8257913319 -2010,1,5054,0.8201913318999998 -2010,1,5055,0.8208913318999999 +2010,1,5054,0.8201913318999999 +2010,1,5055,0.8208913319 2010,1,5056,0.8278913319 -2010,1,5057,0.8355913318999999 +2010,1,5057,0.8355913319 2010,1,5058,0.8556186474999999 2010,1,5059,0.8644463599 -2010,1,5060,0.8703550161999999 +2010,1,5060,0.8703550162 2010,1,5061,0.8742941203 2010,1,5062,0.8762636728 -2010,1,5063,0.8782332246999999 -2010,1,5064,0.8782332246999999 -2010,1,5065,0.8802027765999999 -2010,1,5066,0.8821723288 -2010,1,5067,0.8821723288 -2010,1,5068,0.8841418812999998 -2010,1,5069,0.8841418812999998 -2010,1,5070,0.8802027765999999 +2010,1,5063,0.8782332247 +2010,1,5064,0.8782332247 +2010,1,5065,0.8802027766 +2010,1,5066,0.8821723288000001 +2010,1,5067,0.8821723288000001 +2010,1,5068,0.8841418812999999 +2010,1,5069,0.8841418812999999 +2010,1,5070,0.8802027766 2010,1,5071,0.8762636728 -2010,1,5072,0.8703550161999999 +2010,1,5072,0.8703550162 2010,1,5073,0.8644463599 2010,1,5074,0.8581103883 2010,1,5075,0.8481913319 -2010,1,5076,0.8411913319000001 +2010,1,5076,0.8411913319 2010,1,5077,0.8341913318999999 2010,1,5078,0.8278913319 2010,1,5079,0.8285913319 -2010,1,5080,0.8355913318999999 +2010,1,5080,0.8355913319 2010,1,5081,0.8425913319 2010,1,5082,0.8585377039 2010,1,5083,0.8664159117999999 2010,1,5084,0.8723245680999999 2010,1,5085,0.8762636728 -2010,1,5086,0.8802027765999999 -2010,1,5087,0.8802027765999999 -2010,1,5088,0.8802027765999999 -2010,1,5089,0.8821723288 -2010,1,5090,0.8821723288 -2010,1,5091,0.8841418812999998 -2010,1,5092,0.8841418812999998 -2010,1,5093,0.8841418812999998 -2010,1,5094,0.8821723288 +2010,1,5086,0.8802027766 +2010,1,5087,0.8802027766 +2010,1,5088,0.8802027766 +2010,1,5089,0.8821723288000001 +2010,1,5090,0.8821723288000001 +2010,1,5091,0.8841418812999999 +2010,1,5092,0.8841418812999999 +2010,1,5093,0.8841418812999999 +2010,1,5094,0.8821723288000001 2010,1,5095,0.8762636728 -2010,1,5096,0.8703550161999999 +2010,1,5096,0.8703550162 2010,1,5097,0.8644463599 2010,1,5098,0.8585377039 2010,1,5099,0.8493186475 @@ -5102,45 +5102,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5101,0.8292913318999999 2010,1,5102,0.8222913318999999 2010,1,5103,0.8285913319 -2010,1,5104,0.8355913318999999 +2010,1,5104,0.8355913319 2010,1,5105,0.8425913319 2010,1,5106,0.8585377039 2010,1,5107,0.8664159117999999 2010,1,5108,0.8723245680999999 2010,1,5109,0.8762636728 -2010,1,5110,0.8782332246999999 -2010,1,5111,0.8782332246999999 -2010,1,5112,0.8802027765999999 -2010,1,5113,0.8821723288 -2010,1,5114,0.8821723288 -2010,1,5115,0.8841418812999998 -2010,1,5116,0.8841418812999998 -2010,1,5117,0.8841418812999998 -2010,1,5118,0.8821723288 +2010,1,5110,0.8782332247 +2010,1,5111,0.8782332247 +2010,1,5112,0.8802027766 +2010,1,5113,0.8821723288000001 +2010,1,5114,0.8821723288000001 +2010,1,5115,0.8841418812999999 +2010,1,5116,0.8841418812999999 +2010,1,5117,0.8841418812999999 +2010,1,5118,0.8821723288000001 2010,1,5119,0.8762636728 -2010,1,5120,0.8703550161999999 +2010,1,5120,0.8703550162 2010,1,5121,0.8644463599 2010,1,5122,0.8585377039 2010,1,5123,0.8425913319 2010,1,5124,0.8299913319 2010,1,5125,0.8236913318999999 -2010,1,5126,0.8229913318999998 -2010,1,5127,0.8229913318999998 +2010,1,5126,0.8229913319 +2010,1,5127,0.8229913319 2010,1,5128,0.8299913319 2010,1,5129,0.8367186474999999 2010,1,5130,0.8556186474999999 2010,1,5131,0.8644463599 -2010,1,5132,0.8703550161999999 +2010,1,5132,0.8703550162 2010,1,5133,0.8742941203 2010,1,5134,0.8762636728 -2010,1,5135,0.8782332246999999 -2010,1,5136,0.8802027765999999 -2010,1,5137,0.8821723288 -2010,1,5138,0.8821723288 -2010,1,5139,0.8841418812999998 -2010,1,5140,0.8841418812999998 -2010,1,5141,0.8841418812999998 -2010,1,5142,0.8802027765999999 +2010,1,5135,0.8782332247 +2010,1,5136,0.8802027766 +2010,1,5137,0.8821723288000001 +2010,1,5138,0.8821723288000001 +2010,1,5139,0.8841418812999999 +2010,1,5140,0.8841418812999999 +2010,1,5141,0.8841418812999999 +2010,1,5142,0.8802027766 2010,1,5143,0.8742941203 2010,1,5144,0.8652885961999999 2010,1,5145,0.8586799401999999 @@ -5149,30 +5149,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5148,0.8194913318999999 2010,1,5149,0.8131913319 2010,1,5150,0.8131913319 -2010,1,5151,0.8138913319000001 -2010,1,5152,0.8208913318999999 +2010,1,5151,0.8138913319 +2010,1,5152,0.8208913319 2010,1,5153,0.8341913318999999 2010,1,5154,0.8551913319 2010,1,5155,0.8644463599 -2010,1,5156,0.8703550161999999 +2010,1,5156,0.8703550162 2010,1,5157,0.8742941203 2010,1,5158,0.8762636728 -2010,1,5159,0.8782332246999999 -2010,1,5160,0.8782332246999999 -2010,1,5161,0.8802027765999999 -2010,1,5162,0.8821723288 -2010,1,5163,0.8841418812999998 -2010,1,5164,0.8841418812999998 -2010,1,5165,0.8841418812999998 -2010,1,5166,0.8821723288 +2010,1,5159,0.8782332247 +2010,1,5160,0.8782332247 +2010,1,5161,0.8802027766 +2010,1,5162,0.8821723288000001 +2010,1,5163,0.8841418812999999 +2010,1,5164,0.8841418812999999 +2010,1,5165,0.8841418812999999 +2010,1,5166,0.8821723288000001 2010,1,5167,0.8762636728 2010,1,5168,0.8679581486999999 2010,1,5169,0.8599494920999999 2010,1,5170,0.8516913318999999 2010,1,5171,0.8320913319 2010,1,5172,0.8250913319 -2010,1,5173,0.8187913318999999 -2010,1,5174,0.8187913318999999 +2010,1,5173,0.8187913319 +2010,1,5174,0.8187913319 2010,1,5175,0.8194913318999999 2010,1,5176,0.8264913319 2010,1,5177,0.8341913318999999 @@ -5180,16 +5180,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5179,0.8664159117999999 2010,1,5180,0.8723245680999999 2010,1,5181,0.8762636728 -2010,1,5182,0.8782332246999999 -2010,1,5183,0.8802027765999999 -2010,1,5184,0.8821723288 -2010,1,5185,0.8841418812999998 +2010,1,5182,0.8782332247 +2010,1,5183,0.8802027766 +2010,1,5184,0.8821723288000001 +2010,1,5185,0.8841418812999999 2010,1,5186,0.8861114332 2010,1,5187,0.8861114332 2010,1,5188,0.8880809851 2010,1,5189,0.8880809851 2010,1,5190,0.8861114332 -2010,1,5191,0.8802027765999999 +2010,1,5191,0.8802027766 2010,1,5192,0.8738668047 2010,1,5193,0.8658581486999999 2010,1,5194,0.8585494920999999 @@ -5200,20 +5200,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5199,0.8320913319 2010,1,5200,0.8397913319 2010,1,5201,0.8474913319 -2010,1,5202,0.8605072557999999 -2010,1,5203,0.8683854642999999 +2010,1,5202,0.8605072558 +2010,1,5203,0.8683854643 2010,1,5204,0.8742941203 -2010,1,5205,0.8782332246999999 -2010,1,5206,0.8802027765999999 -2010,1,5207,0.8821723288 -2010,1,5208,0.8821723288 -2010,1,5209,0.8841418812999998 +2010,1,5205,0.8782332247 +2010,1,5206,0.8802027766 +2010,1,5207,0.8821723288000001 +2010,1,5208,0.8821723288000001 +2010,1,5209,0.8841418812999999 2010,1,5210,0.8861114332 2010,1,5211,0.8861114332 2010,1,5212,0.8880809851 2010,1,5213,0.8880809851 2010,1,5214,0.8861114332 -2010,1,5215,0.8802027765999999 +2010,1,5215,0.8802027766 2010,1,5216,0.8742941203 2010,1,5217,0.8665581486999999 2010,1,5218,0.8592494920999999 @@ -5224,20 +5224,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5223,0.8334913318999999 2010,1,5224,0.8404913319 2010,1,5225,0.8481913319 -2010,1,5226,0.8605072557999999 -2010,1,5227,0.8683854642999999 +2010,1,5226,0.8605072558 +2010,1,5227,0.8683854643 2010,1,5228,0.8723245680999999 2010,1,5229,0.8762636728 -2010,1,5230,0.8802027765999999 -2010,1,5231,0.8821723288 -2010,1,5232,0.8821723288 -2010,1,5233,0.8841418812999998 +2010,1,5230,0.8802027766 +2010,1,5231,0.8821723288000001 +2010,1,5232,0.8821723288000001 +2010,1,5233,0.8841418812999999 2010,1,5234,0.8861114332 2010,1,5235,0.8861114332 2010,1,5236,0.8880809851 2010,1,5237,0.8880809851 -2010,1,5238,0.8841418812999998 -2010,1,5239,0.8802027765999999 +2010,1,5238,0.8841418812999999 +2010,1,5239,0.8802027766 2010,1,5240,0.8742941203 2010,1,5241,0.8679581486999999 2010,1,5242,0.8613494920999999 @@ -5249,70 +5249,70 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5248,0.8488913319 2010,1,5249,0.8556186474999999 2010,1,5250,0.8624768076999999 -2010,1,5251,0.8703550161999999 +2010,1,5251,0.8703550162 2010,1,5252,0.8762636728 -2010,1,5253,0.8802027765999999 -2010,1,5254,0.8821723288 -2010,1,5255,0.8821723288 -2010,1,5256,0.8841418812999998 +2010,1,5253,0.8802027766 +2010,1,5254,0.8821723288000001 +2010,1,5255,0.8821723288000001 +2010,1,5256,0.8841418812999999 2010,1,5257,0.8861114332 2010,1,5258,0.8861114332 2010,1,5259,0.8880809851 2010,1,5260,0.8880809851 2010,1,5261,0.8880809851 2010,1,5262,0.8861114332 -2010,1,5263,0.8821723288 +2010,1,5263,0.8821723288000001 2010,1,5264,0.8762636728 -2010,1,5265,0.8703550161999999 +2010,1,5265,0.8703550162 2010,1,5266,0.8640190443 -2010,1,5267,0.8593799401999999 +2010,1,5267,0.8593799402 2010,1,5268,0.8567103883 2010,1,5269,0.8537913319 2010,1,5270,0.8474913319 2010,1,5271,0.8544913318999999 2010,1,5272,0.8581103883 -2010,1,5273,0.8605072557999999 +2010,1,5273,0.8605072558 2010,1,5274,0.8664159117999999 2010,1,5275,0.8742941203 -2010,1,5276,0.8782332246999999 -2010,1,5277,0.8821723288 -2010,1,5278,0.8821723288 -2010,1,5279,0.8841418812999998 -2010,1,5280,0.8841418812999998 +2010,1,5276,0.8782332247 +2010,1,5277,0.8821723288000001 +2010,1,5278,0.8821723288000001 +2010,1,5279,0.8841418812999999 +2010,1,5280,0.8841418812999999 2010,1,5281,0.8861114332 2010,1,5282,0.8861114332 2010,1,5283,0.8861114332 2010,1,5284,0.8880809851 2010,1,5285,0.8880809851 2010,1,5286,0.8861114332 -2010,1,5287,0.8821723288 +2010,1,5287,0.8821723288000001 2010,1,5288,0.8762636728 -2010,1,5289,0.8703550161999999 +2010,1,5289,0.8703550162 2010,1,5290,0.8633190443 2010,1,5291,0.8567103883 2010,1,5292,0.8530913319 2010,1,5293,0.8467913319 2010,1,5294,0.8404913319 -2010,1,5295,0.8411913319000001 +2010,1,5295,0.8411913319 2010,1,5296,0.8481913319 2010,1,5297,0.8551913319 2010,1,5298,0.8624768076999999 -2010,1,5299,0.8703550161999999 +2010,1,5299,0.8703550162 2010,1,5300,0.8742941203 -2010,1,5301,0.8782332246999999 -2010,1,5302,0.8802027765999999 -2010,1,5303,0.8821723288 -2010,1,5304,0.8821723288 -2010,1,5305,0.8841418812999998 +2010,1,5301,0.8782332247 +2010,1,5302,0.8802027766 +2010,1,5303,0.8821723288000001 +2010,1,5304,0.8821723288000001 +2010,1,5305,0.8841418812999999 2010,1,5306,0.8861114332 2010,1,5307,0.8861114332 2010,1,5308,0.8880809851 2010,1,5309,0.8880809851 2010,1,5310,0.8861114332 -2010,1,5311,0.8802027765999999 +2010,1,5311,0.8802027766 2010,1,5312,0.8723245680999999 2010,1,5313,0.8659885961999999 -2010,1,5314,0.8593799401999999 +2010,1,5314,0.8593799402 2010,1,5315,0.8530913319 2010,1,5316,0.8460913319 2010,1,5317,0.8397913319 @@ -5321,11 +5321,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5320,0.8474913319 2010,1,5321,0.8585377039 2010,1,5322,0.8624768076999999 -2010,1,5323,0.8703550161999999 +2010,1,5323,0.8703550162 2010,1,5324,0.8762636728 -2010,1,5325,0.8802027765999999 -2010,1,5326,0.8821723288 -2010,1,5327,0.8841418812999998 +2010,1,5325,0.8802027766 +2010,1,5326,0.8821723288000001 +2010,1,5327,0.8841418812999999 2010,1,5328,0.8861114332 2010,1,5329,0.8861114332 2010,1,5330,0.8861114332 @@ -5333,9 +5333,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5332,0.8880809851 2010,1,5333,0.8880809851 2010,1,5334,0.8861114332 -2010,1,5335,0.8802027765999999 +2010,1,5335,0.8802027766 2010,1,5336,0.8742941203 -2010,1,5337,0.8703550161999999 +2010,1,5337,0.8703550162 2010,1,5338,0.8633190443 2010,1,5339,0.8586799401999999 2010,1,5340,0.8560103883 @@ -5347,9 +5347,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5346,0.8644463599 2010,1,5347,0.8723245680999999 2010,1,5348,0.8762636728 -2010,1,5349,0.8782332246999999 -2010,1,5350,0.8821723288 -2010,1,5351,0.8841418812999998 +2010,1,5349,0.8782332247 +2010,1,5350,0.8821723288000001 +2010,1,5351,0.8841418812999999 2010,1,5352,0.8861114332 2010,1,5353,0.8861114332 2010,1,5354,0.8880809851 @@ -5357,10 +5357,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5356,0.8900505372999999 2010,1,5357,0.8900505372999999 2010,1,5358,0.8880809851 -2010,1,5359,0.8821723288 +2010,1,5359,0.8821723288000001 2010,1,5360,0.8762636728 -2010,1,5361,0.8703550161999999 -2010,1,5362,0.8626190443 +2010,1,5361,0.8703550162 +2010,1,5362,0.8626190442999999 2010,1,5363,0.8579799401999999 2010,1,5364,0.8523913318999999 2010,1,5365,0.8453913318999999 @@ -5369,19 +5369,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5368,0.8467913319 2010,1,5369,0.8551913319 2010,1,5370,0.8624768076999999 -2010,1,5371,0.8703550161999999 +2010,1,5371,0.8703550162 2010,1,5372,0.8742941203 -2010,1,5373,0.8782332246999999 -2010,1,5374,0.8802027765999999 -2010,1,5375,0.8821723288 -2010,1,5376,0.8841418812999998 -2010,1,5377,0.8841418812999998 +2010,1,5373,0.8782332247 +2010,1,5374,0.8802027766 +2010,1,5375,0.8821723288000001 +2010,1,5376,0.8841418812999999 +2010,1,5377,0.8841418812999999 2010,1,5378,0.8861114332 2010,1,5379,0.8861114332 2010,1,5380,0.8880809851 2010,1,5381,0.8880809851 2010,1,5382,0.8861114332 -2010,1,5383,0.8802027765999999 +2010,1,5383,0.8802027766 2010,1,5384,0.8723245680999999 2010,1,5385,0.8652885961999999 2010,1,5386,0.8579799401999999 @@ -5392,24 +5392,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5391,0.8327913319 2010,1,5392,0.8397913319 2010,1,5393,0.8481913319 -2010,1,5394,0.8605072557999999 -2010,1,5395,0.8683854642999999 +2010,1,5394,0.8605072558 +2010,1,5395,0.8683854643 2010,1,5396,0.8742941203 -2010,1,5397,0.8782332246999999 -2010,1,5398,0.8802027765999999 -2010,1,5399,0.8821723288 -2010,1,5400,0.8841418812999998 +2010,1,5397,0.8782332247 +2010,1,5398,0.8802027766 +2010,1,5399,0.8821723288000001 +2010,1,5400,0.8841418812999999 2010,1,5401,0.8861114332 2010,1,5402,0.8880809851 2010,1,5403,0.8880809851 2010,1,5404,0.8900505372999999 2010,1,5405,0.8900505372999999 2010,1,5406,0.8880809851 -2010,1,5407,0.8821723288 +2010,1,5407,0.8821723288000001 2010,1,5408,0.8762636728 -2010,1,5409,0.8692277005999999 +2010,1,5409,0.8692277006 2010,1,5410,0.8612190443 -2010,1,5411,0.8565799401999998 +2010,1,5411,0.8565799402 2010,1,5412,0.8509913319 2010,1,5413,0.8376913319 2010,1,5414,0.8313913318999999 @@ -5417,120 +5417,120 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5416,0.8390913319 2010,1,5417,0.8467913319 2010,1,5418,0.8624768076999999 -2010,1,5419,0.8703550161999999 +2010,1,5419,0.8703550162 2010,1,5420,0.8742941203 2010,1,5421,0.8762636728 -2010,1,5422,0.8802027765999999 -2010,1,5423,0.8821723288 -2010,1,5424,0.8841418812999998 +2010,1,5422,0.8802027766 +2010,1,5423,0.8821723288000001 +2010,1,5424,0.8841418812999999 2010,1,5425,0.8861114332 2010,1,5426,0.8861114332 2010,1,5427,0.8880809851 2010,1,5428,0.8900505372999999 2010,1,5429,0.8900505372999999 2010,1,5430,0.8880809851 -2010,1,5431,0.8821723288 +2010,1,5431,0.8821723288000001 2010,1,5432,0.8778059090999999 2010,1,5433,0.8690972524999999 2010,1,5434,0.8617885961999999 -2010,1,5435,0.8551799401999999 +2010,1,5435,0.8551799402 2010,1,5436,0.8495913318999999 2010,1,5437,0.8369913319 2010,1,5438,0.8306913319 2010,1,5439,0.8250913319 2010,1,5440,0.8320913319 2010,1,5441,0.8390913319 -2010,1,5442,0.8593799401999999 -2010,1,5443,0.8683854642999999 +2010,1,5442,0.8593799402 +2010,1,5443,0.8683854643 2010,1,5444,0.8723245680999999 2010,1,5445,0.8742941203 2010,1,5446,0.8762636728 -2010,1,5447,0.8782332246999999 -2010,1,5448,0.8802027765999999 -2010,1,5449,0.8821723288 -2010,1,5450,0.8821723288 -2010,1,5451,0.8841418812999998 +2010,1,5447,0.8782332247 +2010,1,5448,0.8802027766 +2010,1,5449,0.8821723288000001 +2010,1,5450,0.8821723288000001 +2010,1,5451,0.8841418812999999 2010,1,5452,0.8861114332 2010,1,5453,0.8861114332 -2010,1,5454,0.8841418812999998 -2010,1,5455,0.8782332246999999 +2010,1,5454,0.8841418812999999 +2010,1,5455,0.8782332247 2010,1,5456,0.8704972525 2010,1,5457,0.8624885962 2010,1,5458,0.8558799401999999 2010,1,5459,0.8439913319 2010,1,5460,0.8243913319 -2010,1,5461,0.8180913318999998 -2010,1,5462,0.8117913319000001 -2010,1,5463,0.8061913318999999 +2010,1,5461,0.8180913318999999 +2010,1,5462,0.8117913319 +2010,1,5463,0.8061913319 2010,1,5464,0.8131913319 2010,1,5465,0.8264913319 2010,1,5466,0.8537913319 2010,1,5467,0.8644463599 -2010,1,5468,0.8683854642999999 -2010,1,5469,0.8683854642999999 -2010,1,5470,0.8703550161999999 +2010,1,5468,0.8683854643 +2010,1,5469,0.8683854643 +2010,1,5470,0.8703550162 2010,1,5471,0.8723245680999999 2010,1,5472,0.8742941203 2010,1,5473,0.8742941203 2010,1,5474,0.8762636728 -2010,1,5475,0.8782332246999999 -2010,1,5476,0.8802027765999999 -2010,1,5477,0.8802027765999999 -2010,1,5478,0.8782332246999999 +2010,1,5475,0.8782332247 +2010,1,5476,0.8802027766 +2010,1,5477,0.8802027766 +2010,1,5478,0.8782332247 2010,1,5479,0.8723245680999999 2010,1,5480,0.8645885962 2010,1,5481,0.8553103883 2010,1,5482,0.8390913319 2010,1,5483,0.8194913318999999 -2010,1,5484,0.8061913318999999 +2010,1,5484,0.8061913319 2010,1,5485,0.7998913319 2010,1,5486,0.7998913319 2010,1,5487,0.8005913319 -2010,1,5488,0.8075913318999999 +2010,1,5488,0.8075913319 2010,1,5489,0.8215913318999999 2010,1,5490,0.8418913319 -2010,1,5491,0.8605072557999999 +2010,1,5491,0.8605072558 2010,1,5492,0.8644463599 -2010,1,5493,0.8683854642999999 -2010,1,5494,0.8703550161999999 -2010,1,5495,0.8703550161999999 -2010,1,5496,0.8703550161999999 +2010,1,5493,0.8683854643 +2010,1,5494,0.8703550162 +2010,1,5495,0.8703550162 +2010,1,5496,0.8703550162 2010,1,5497,0.8723245680999999 2010,1,5498,0.8742941203 2010,1,5499,0.8742941203 2010,1,5500,0.8762636728 2010,1,5501,0.8762636728 2010,1,5502,0.8742941203 -2010,1,5503,0.8703550161999999 +2010,1,5503,0.8703550162 2010,1,5504,0.8659885961999999 2010,1,5505,0.8586799401999999 2010,1,5506,0.8460913319 2010,1,5507,0.8257913319 -2010,1,5508,0.8187913318999999 +2010,1,5508,0.8187913319 2010,1,5509,0.8124913319 -2010,1,5510,0.8061913318999999 +2010,1,5510,0.8061913319 2010,1,5511,0.8131913319 -2010,1,5512,0.8201913318999998 +2010,1,5512,0.8201913318999999 2010,1,5513,0.8278913319 2010,1,5514,0.8488913319 2010,1,5515,0.8624768076999999 2010,1,5516,0.8664159117999999 -2010,1,5517,0.8703550161999999 +2010,1,5517,0.8703550162 2010,1,5518,0.8723245680999999 2010,1,5519,0.8742941203 2010,1,5520,0.8762636728 -2010,1,5521,0.8782332246999999 -2010,1,5522,0.8802027765999999 -2010,1,5523,0.8802027765999999 -2010,1,5524,0.8802027765999999 -2010,1,5525,0.8802027765999999 -2010,1,5526,0.8782332246999999 +2010,1,5521,0.8782332247 +2010,1,5522,0.8802027766 +2010,1,5523,0.8802027766 +2010,1,5524,0.8802027766 +2010,1,5525,0.8802027766 +2010,1,5526,0.8782332247 2010,1,5527,0.8723245680999999 2010,1,5528,0.8640190443 2010,1,5529,0.8567103883 2010,1,5530,0.8397913319 2010,1,5531,0.8257913319 -2010,1,5532,0.8187913318999999 +2010,1,5532,0.8187913319 2010,1,5533,0.8124913319 2010,1,5534,0.8124913319 2010,1,5535,0.8194913318999999 @@ -5538,70 +5538,70 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5537,0.8348913319 2010,1,5538,0.8585377039 2010,1,5539,0.8664159117999999 -2010,1,5540,0.8703550161999999 +2010,1,5540,0.8703550162 2010,1,5541,0.8723245680999999 2010,1,5542,0.8762636728 -2010,1,5543,0.8782332246999999 -2010,1,5544,0.8802027765999999 -2010,1,5545,0.8802027765999999 -2010,1,5546,0.8821723288 -2010,1,5547,0.8841418812999998 -2010,1,5548,0.8841418812999998 -2010,1,5549,0.8841418812999998 -2010,1,5550,0.8821723288 +2010,1,5543,0.8782332247 +2010,1,5544,0.8802027766 +2010,1,5545,0.8802027766 +2010,1,5546,0.8821723288000001 +2010,1,5547,0.8841418812999999 +2010,1,5548,0.8841418812999999 +2010,1,5549,0.8841418812999999 +2010,1,5550,0.8821723288000001 2010,1,5551,0.8762636728 2010,1,5552,0.8679581486999999 2010,1,5553,0.8599494920999999 2010,1,5554,0.8509913319 2010,1,5555,0.8313913318999999 -2010,1,5556,0.8180913318999998 +2010,1,5556,0.8180913318999999 2010,1,5557,0.8110913319 -2010,1,5558,0.8117913319000001 +2010,1,5558,0.8117913319 2010,1,5559,0.8124913319 2010,1,5560,0.8194913318999999 2010,1,5561,0.8334913318999999 2010,1,5562,0.8574103882999999 2010,1,5563,0.8664159117999999 -2010,1,5564,0.8703550161999999 +2010,1,5564,0.8703550162 2010,1,5565,0.8742941203 2010,1,5566,0.8742941203 2010,1,5567,0.8762636728 2010,1,5568,0.8762636728 -2010,1,5569,0.8782332246999999 -2010,1,5570,0.8782332246999999 -2010,1,5571,0.8802027765999999 -2010,1,5572,0.8802027765999999 -2010,1,5573,0.8802027765999999 -2010,1,5574,0.8782332246999999 +2010,1,5569,0.8782332247 +2010,1,5570,0.8782332247 +2010,1,5571,0.8802027766 +2010,1,5572,0.8802027766 +2010,1,5573,0.8802027766 +2010,1,5574,0.8782332247 2010,1,5575,0.8742941203 -2010,1,5576,0.8672581486999998 +2010,1,5576,0.8672581487 2010,1,5577,0.8592494920999999 2010,1,5578,0.8509913319 2010,1,5579,0.8313913318999999 2010,1,5580,0.8243913319 -2010,1,5581,0.8180913318999998 -2010,1,5582,0.8180913318999998 -2010,1,5583,0.8187913318999999 +2010,1,5581,0.8180913318999999 +2010,1,5582,0.8180913318999999 +2010,1,5583,0.8187913319 2010,1,5584,0.8264913319 2010,1,5585,0.8404913319 2010,1,5586,0.8581103883 2010,1,5587,0.8644463599 -2010,1,5588,0.8683854642999999 +2010,1,5588,0.8683854643 2010,1,5589,0.8723245680999999 2010,1,5590,0.8742941203 2010,1,5591,0.8762636728 -2010,1,5592,0.8782332246999999 -2010,1,5593,0.8802027765999999 -2010,1,5594,0.8821723288 -2010,1,5595,0.8841418812999998 +2010,1,5592,0.8782332247 +2010,1,5593,0.8802027766 +2010,1,5594,0.8821723288000001 +2010,1,5595,0.8841418812999999 2010,1,5596,0.8861114332 2010,1,5597,0.8861114332 2010,1,5598,0.8861114332 -2010,1,5599,0.8821723288 +2010,1,5599,0.8821723288000001 2010,1,5600,0.8778059090999999 2010,1,5601,0.8697972525 2010,1,5602,0.8631885961999999 -2010,1,5603,0.8565799401999998 +2010,1,5603,0.8565799402 2010,1,5604,0.8509913319 2010,1,5605,0.8446913319 2010,1,5606,0.8383913319 @@ -5609,20 +5609,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5608,0.8460913319 2010,1,5609,0.8560103883 2010,1,5610,0.8640190443 -2010,1,5611,0.8703550161999999 +2010,1,5611,0.8703550162 2010,1,5612,0.8742941203 -2010,1,5613,0.8782332246999999 -2010,1,5614,0.8802027765999999 -2010,1,5615,0.8821723288 -2010,1,5616,0.8821723288 -2010,1,5617,0.8841418812999998 +2010,1,5613,0.8782332247 +2010,1,5614,0.8802027766 +2010,1,5615,0.8821723288000001 +2010,1,5616,0.8821723288000001 +2010,1,5617,0.8841418812999999 2010,1,5618,0.8861114332 2010,1,5619,0.8861114332 2010,1,5620,0.8880809851 2010,1,5621,0.8880809851 -2010,1,5622,0.8841418812999998 -2010,1,5623,0.8782332246999999 -2010,1,5624,0.8692277005999999 +2010,1,5622,0.8841418812999999 +2010,1,5623,0.8782332247 +2010,1,5624,0.8692277006 2010,1,5625,0.8592494920999999 2010,1,5626,0.8509913319 2010,1,5627,0.8306913319 @@ -5630,13 +5630,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5629,0.8047913319 2010,1,5630,0.7984913319 2010,1,5631,0.7984913319 -2010,1,5632,0.8054913318999999 +2010,1,5632,0.8054913319 2010,1,5633,0.8194913318999999 2010,1,5634,0.8467913319 2010,1,5635,0.8640190443 -2010,1,5636,0.8683854642999999 -2010,1,5637,0.8703550161999999 -2010,1,5638,0.8703550161999999 +2010,1,5636,0.8683854643 +2010,1,5637,0.8703550162 +2010,1,5638,0.8703550162 2010,1,5639,0.8723245680999999 2010,1,5640,0.8723245680999999 2010,1,5641,0.8742941203 @@ -5648,7 +5648,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5647,0.8652885961999999 2010,1,5648,0.8553103883 2010,1,5649,0.8313913318999999 -2010,1,5650,0.8117913319000001 +2010,1,5650,0.8117913319 2010,1,5651,0.7921913319 2010,1,5652,0.7788913318999999 2010,1,5653,0.7718913319 @@ -5658,7 +5658,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5657,0.7998913319 2010,1,5658,0.8271913318999999 2010,1,5659,0.8544913318999999 -2010,1,5660,0.8605072557999999 +2010,1,5660,0.8605072558 2010,1,5661,0.8644463599 2010,1,5662,0.8664159117999999 2010,1,5663,0.8664159117999999 @@ -5666,12 +5666,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5665,0.8664159117999999 2010,1,5666,0.8664159117999999 2010,1,5667,0.8664159117999999 -2010,1,5668,0.8683854642999999 -2010,1,5669,0.8683854642999999 +2010,1,5668,0.8683854643 +2010,1,5669,0.8683854643 2010,1,5670,0.8664159117999999 2010,1,5671,0.8624768076999999 2010,1,5672,0.8481913319 -2010,1,5673,0.8208913318999999 +2010,1,5673,0.8208913319 2010,1,5674,0.8012913318999999 2010,1,5675,0.7879913318999999 2010,1,5676,0.7809913318999999 @@ -5679,61 +5679,61 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5678,0.7746913319 2010,1,5679,0.7809913318999999 2010,1,5680,0.7942913319 -2010,1,5681,0.8075913318999999 +2010,1,5681,0.8075913319 2010,1,5682,0.8348913319 2010,1,5683,0.8581103883 2010,1,5684,0.8620494920999999 2010,1,5685,0.8640190443 2010,1,5686,0.8640190443 2010,1,5687,0.8664159117999999 -2010,1,5688,0.8683854642999999 -2010,1,5689,0.8683854642999999 -2010,1,5690,0.8683854642999999 -2010,1,5691,0.8683854642999999 -2010,1,5692,0.8683854642999999 -2010,1,5693,0.8703550161999999 -2010,1,5694,0.8683854642999999 +2010,1,5688,0.8683854643 +2010,1,5689,0.8683854643 +2010,1,5690,0.8683854643 +2010,1,5691,0.8683854643 +2010,1,5692,0.8683854643 +2010,1,5693,0.8703550162 +2010,1,5694,0.8683854643 2010,1,5695,0.8640190443 2010,1,5696,0.8579799401999999 2010,1,5697,0.8453913318999999 2010,1,5698,0.8257913319 -2010,1,5699,0.8061913318999999 +2010,1,5699,0.8061913319 2010,1,5700,0.7928913318999999 2010,1,5701,0.7865913319 2010,1,5702,0.7872913318999999 2010,1,5703,0.7942913319 2010,1,5704,0.8012913318999999 2010,1,5705,0.8145913319 -2010,1,5706,0.8355913318999999 +2010,1,5706,0.8355913319 2010,1,5707,0.8585377039 2010,1,5708,0.8624768076999999 2010,1,5709,0.8664159117999999 -2010,1,5710,0.8703550161999999 +2010,1,5710,0.8703550162 2010,1,5711,0.8723245680999999 2010,1,5712,0.8742941203 2010,1,5713,0.8762636728 -2010,1,5714,0.8782332246999999 -2010,1,5715,0.8782332246999999 -2010,1,5716,0.8802027765999999 -2010,1,5717,0.8802027765999999 -2010,1,5718,0.8782332246999999 +2010,1,5714,0.8782332247 +2010,1,5715,0.8782332247 +2010,1,5716,0.8802027766 +2010,1,5717,0.8802027766 +2010,1,5718,0.8782332247 2010,1,5719,0.8742941203 -2010,1,5720,0.8672581486999998 +2010,1,5720,0.8672581487 2010,1,5721,0.8599494920999999 2010,1,5722,0.8516913318999999 2010,1,5723,0.8320913319 2010,1,5724,0.8250913319 -2010,1,5725,0.8187913318999999 +2010,1,5725,0.8187913319 2010,1,5726,0.8194913318999999 2010,1,5727,0.8264913319 2010,1,5728,0.8334913318999999 2010,1,5729,0.8481913319 2010,1,5730,0.8624768076999999 -2010,1,5731,0.8703550161999999 +2010,1,5731,0.8703550162 2010,1,5732,0.8742941203 -2010,1,5733,0.8782332246999999 -2010,1,5734,0.8821723288 -2010,1,5735,0.8841418812999998 +2010,1,5733,0.8782332247 +2010,1,5734,0.8821723288000001 +2010,1,5735,0.8841418812999999 2010,1,5736,0.8880809851 2010,1,5737,0.8900505372999999 2010,1,5738,0.8920200892 @@ -5743,19 +5743,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5742,0.8939896417000001 2010,1,5743,0.8900505372999999 2010,1,5744,0.8861114332 -2010,1,5745,0.8821723288 +2010,1,5745,0.8821723288000001 2010,1,5746,0.8762636728 2010,1,5747,0.8723245680999999 -2010,1,5748,0.8683854642999999 +2010,1,5748,0.8683854643 2010,1,5749,0.8664159117999999 2010,1,5750,0.8644463599 2010,1,5751,0.8644463599 2010,1,5752,0.8664159117999999 -2010,1,5753,0.8683854642999999 +2010,1,5753,0.8683854643 2010,1,5754,0.8742941203 -2010,1,5755,0.8782332246999999 -2010,1,5756,0.8821723288 -2010,1,5757,0.8841418812999998 +2010,1,5755,0.8782332247 +2010,1,5756,0.8821723288000001 +2010,1,5757,0.8841418812999999 2010,1,5758,0.8861114332 2010,1,5759,0.8880809851 2010,1,5760,0.8900505372999999 @@ -5766,18 +5766,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5765,0.8939896417000001 2010,1,5766,0.8920200892 2010,1,5767,0.8880809851 -2010,1,5768,0.8841418812999998 -2010,1,5769,0.8802027765999999 +2010,1,5768,0.8841418812999999 +2010,1,5769,0.8802027766 2010,1,5770,0.8762636728 2010,1,5771,0.8723245680999999 -2010,1,5772,0.8703550161999999 -2010,1,5773,0.8683854642999999 -2010,1,5774,0.8683854642999999 -2010,1,5775,0.8683854642999999 -2010,1,5776,0.8703550161999999 +2010,1,5772,0.8703550162 +2010,1,5773,0.8683854643 +2010,1,5774,0.8683854643 +2010,1,5775,0.8683854643 +2010,1,5776,0.8703550162 2010,1,5777,0.8723245680999999 -2010,1,5778,0.8782332246999999 -2010,1,5779,0.8821723288 +2010,1,5778,0.8782332247 +2010,1,5779,0.8821723288000001 2010,1,5780,0.8861114332 2010,1,5781,0.8900505372999999 2010,1,5782,0.8920200892 @@ -5790,19 +5790,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5789,0.8959591936 2010,1,5790,0.8939896417000001 2010,1,5791,0.8880809851 -2010,1,5792,0.8821723288 -2010,1,5793,0.8782332246999999 +2010,1,5792,0.8821723288000001 +2010,1,5793,0.8782332247 2010,1,5794,0.8723245680999999 -2010,1,5795,0.8703550161999999 +2010,1,5795,0.8703550162 2010,1,5796,0.8664159117999999 2010,1,5797,0.8644463599 2010,1,5798,0.8644463599 2010,1,5799,0.8644463599 2010,1,5800,0.8664159117999999 -2010,1,5801,0.8683854642999999 +2010,1,5801,0.8683854643 2010,1,5802,0.8742941203 -2010,1,5803,0.8802027765999999 -2010,1,5804,0.8821723288 +2010,1,5803,0.8802027766 +2010,1,5804,0.8821723288000001 2010,1,5805,0.8861114332 2010,1,5806,0.8880809851 2010,1,5807,0.8900505372999999 @@ -5814,30 +5814,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5813,0.8939896417000001 2010,1,5814,0.8920200892 2010,1,5815,0.8880809851 -2010,1,5816,0.8821723288 +2010,1,5816,0.8821723288000001 2010,1,5817,0.8762636728 -2010,1,5818,0.8703550161999999 +2010,1,5818,0.8703550162 2010,1,5819,0.8659885961999999 2010,1,5820,0.8613494920999999 2010,1,5821,0.8586799401999999 2010,1,5822,0.8560103883 2010,1,5823,0.8567103883 -2010,1,5824,0.8593799401999999 +2010,1,5824,0.8593799402 2010,1,5825,0.8624768076999999 -2010,1,5826,0.8703550161999999 +2010,1,5826,0.8703550162 2010,1,5827,0.8762636728 -2010,1,5828,0.8802027765999999 -2010,1,5829,0.8802027765999999 -2010,1,5830,0.8821723288 -2010,1,5831,0.8821723288 -2010,1,5832,0.8841418812999998 -2010,1,5833,0.8841418812999998 +2010,1,5828,0.8802027766 +2010,1,5829,0.8802027766 +2010,1,5830,0.8821723288000001 +2010,1,5831,0.8821723288000001 +2010,1,5832,0.8841418812999999 +2010,1,5833,0.8841418812999999 2010,1,5834,0.8861114332 2010,1,5835,0.8861114332 2010,1,5836,0.8880809851 2010,1,5837,0.8880809851 2010,1,5838,0.8861114332 -2010,1,5839,0.8802027765999999 +2010,1,5839,0.8802027766 2010,1,5840,0.8742941203 2010,1,5841,0.8652885961999999 2010,1,5842,0.8579799401999999 @@ -5845,98 +5845,98 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5844,0.8327913319 2010,1,5845,0.8194913318999999 2010,1,5846,0.8131913319 -2010,1,5847,0.8201913318999998 +2010,1,5847,0.8201913318999999 2010,1,5848,0.8271913318999999 -2010,1,5849,0.8411913319000001 -2010,1,5850,0.8605072557999999 -2010,1,5851,0.8683854642999999 +2010,1,5849,0.8411913319 +2010,1,5850,0.8605072558 +2010,1,5851,0.8683854643 2010,1,5852,0.8723245680999999 2010,1,5853,0.8742941203 2010,1,5854,0.8762636728 -2010,1,5855,0.8782332246999999 -2010,1,5856,0.8782332246999999 -2010,1,5857,0.8802027765999999 -2010,1,5858,0.8802027765999999 -2010,1,5859,0.8802027765999999 -2010,1,5860,0.8802027765999999 -2010,1,5861,0.8802027765999999 -2010,1,5862,0.8782332246999999 +2010,1,5855,0.8782332247 +2010,1,5856,0.8782332247 +2010,1,5857,0.8802027766 +2010,1,5858,0.8802027766 +2010,1,5859,0.8802027766 +2010,1,5860,0.8802027766 +2010,1,5861,0.8802027766 +2010,1,5862,0.8782332247 2010,1,5863,0.8723245680999999 2010,1,5864,0.8633190443 2010,1,5865,0.8523913318999999 2010,1,5866,0.8320913319 2010,1,5867,0.8124913319 -2010,1,5868,0.8054913318999999 +2010,1,5868,0.8054913319 2010,1,5869,0.7991913318999999 2010,1,5870,0.7928913318999999 2010,1,5871,0.7998913319 2010,1,5872,0.8068913319 -2010,1,5873,0.8208913318999999 +2010,1,5873,0.8208913319 2010,1,5874,0.8551913319 2010,1,5875,0.8644463599 -2010,1,5876,0.8683854642999999 +2010,1,5876,0.8683854643 2010,1,5877,0.8723245680999999 2010,1,5878,0.8723245680999999 2010,1,5879,0.8742941203 2010,1,5880,0.8742941203 2010,1,5881,0.8762636728 2010,1,5882,0.8762636728 -2010,1,5883,0.8782332246999999 -2010,1,5884,0.8782332246999999 -2010,1,5885,0.8802027765999999 -2010,1,5886,0.8782332246999999 +2010,1,5883,0.8782332247 +2010,1,5884,0.8782332247 +2010,1,5885,0.8802027766 +2010,1,5886,0.8782332247 2010,1,5887,0.8723245680999999 2010,1,5888,0.8645885962 2010,1,5889,0.8546103883 2010,1,5890,0.8376913319 -2010,1,5891,0.8180913318999998 +2010,1,5891,0.8180913318999999 2010,1,5892,0.8047913319 2010,1,5893,0.7977913319 2010,1,5894,0.7984913319 2010,1,5895,0.7984913319 -2010,1,5896,0.8054913318999999 +2010,1,5896,0.8054913319 2010,1,5897,0.8264913319 2010,1,5898,0.8544913318999999 2010,1,5899,0.8644463599 -2010,1,5900,0.8683854642999999 -2010,1,5901,0.8703550161999999 +2010,1,5900,0.8683854643 +2010,1,5901,0.8703550162 2010,1,5902,0.8742941203 2010,1,5903,0.8742941203 2010,1,5904,0.8762636728 -2010,1,5905,0.8782332246999999 -2010,1,5906,0.8782332246999999 -2010,1,5907,0.8802027765999999 -2010,1,5908,0.8802027765999999 -2010,1,5909,0.8821723288 -2010,1,5910,0.8802027765999999 +2010,1,5905,0.8782332247 +2010,1,5906,0.8782332247 +2010,1,5907,0.8802027766 +2010,1,5908,0.8802027766 +2010,1,5909,0.8821723288000001 +2010,1,5910,0.8802027766 2010,1,5911,0.8742941203 2010,1,5912,0.8645885962 -2010,1,5913,0.8565799401999998 +2010,1,5913,0.8565799402 2010,1,5914,0.8439913319 2010,1,5915,0.8243913319 2010,1,5916,0.8110913319 2010,1,5917,0.8047913319 2010,1,5918,0.8047913319 -2010,1,5919,0.8117913319000001 -2010,1,5920,0.8187913318999999 +2010,1,5919,0.8117913319 +2010,1,5920,0.8187913319 2010,1,5921,0.8334913318999999 2010,1,5922,0.8581103883 2010,1,5923,0.8644463599 -2010,1,5924,0.8683854642999999 -2010,1,5925,0.8703550161999999 +2010,1,5924,0.8683854643 +2010,1,5925,0.8703550162 2010,1,5926,0.8723245680999999 2010,1,5927,0.8762636728 2010,1,5928,0.8762636728 -2010,1,5929,0.8782332246999999 -2010,1,5930,0.8802027765999999 -2010,1,5931,0.8821723288 -2010,1,5932,0.8841418812999998 -2010,1,5933,0.8841418812999998 -2010,1,5934,0.8821723288 -2010,1,5935,0.8782332246999999 +2010,1,5929,0.8782332247 +2010,1,5930,0.8802027766 +2010,1,5931,0.8821723288000001 +2010,1,5932,0.8841418812999999 +2010,1,5933,0.8841418812999999 +2010,1,5934,0.8821723288000001 +2010,1,5935,0.8782332247 2010,1,5936,0.8718972524999999 2010,1,5937,0.8638885961999999 -2010,1,5938,0.8572799401999999 +2010,1,5938,0.8572799402 2010,1,5939,0.8453913318999999 2010,1,5940,0.8320913319 2010,1,5941,0.8250913319 @@ -5945,45 +5945,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5944,0.8334913318999999 2010,1,5945,0.8481913319 2010,1,5946,0.8624768076999999 -2010,1,5947,0.8703550161999999 +2010,1,5947,0.8703550162 2010,1,5948,0.8742941203 -2010,1,5949,0.8782332246999999 -2010,1,5950,0.8802027765999999 -2010,1,5951,0.8821723288 -2010,1,5952,0.8821723288 -2010,1,5953,0.8821723288 -2010,1,5954,0.8841418812999998 -2010,1,5955,0.8841418812999998 -2010,1,5956,0.8841418812999998 +2010,1,5949,0.8782332247 +2010,1,5950,0.8802027766 +2010,1,5951,0.8821723288000001 +2010,1,5952,0.8821723288000001 +2010,1,5953,0.8821723288000001 +2010,1,5954,0.8841418812999999 +2010,1,5955,0.8841418812999999 +2010,1,5956,0.8841418812999999 2010,1,5957,0.8861114332 -2010,1,5958,0.8841418812999998 -2010,1,5959,0.8782332246999999 +2010,1,5958,0.8841418812999999 +2010,1,5959,0.8782332247 2010,1,5960,0.8723245680999999 2010,1,5961,0.8659885961999999 2010,1,5962,0.8579799401999999 2010,1,5963,0.8460913319 2010,1,5964,0.8327913319 2010,1,5965,0.8257913319 -2010,1,5966,0.8201913318999998 +2010,1,5966,0.8201913318999999 2010,1,5967,0.8271913318999999 2010,1,5968,0.8341913318999999 2010,1,5969,0.8481913319 2010,1,5970,0.8624768076999999 -2010,1,5971,0.8703550161999999 +2010,1,5971,0.8703550162 2010,1,5972,0.8742941203 2010,1,5973,0.8762636728 -2010,1,5974,0.8782332246999999 -2010,1,5975,0.8802027765999999 -2010,1,5976,0.8802027765999999 -2010,1,5977,0.8821723288 -2010,1,5978,0.8821723288 -2010,1,5979,0.8841418812999998 -2010,1,5980,0.8841418812999998 +2010,1,5974,0.8782332247 +2010,1,5975,0.8802027766 +2010,1,5976,0.8802027766 +2010,1,5977,0.8821723288000001 +2010,1,5978,0.8821723288000001 +2010,1,5979,0.8841418812999999 +2010,1,5980,0.8841418812999999 2010,1,5981,0.8861114332 -2010,1,5982,0.8841418812999998 -2010,1,5983,0.8802027765999999 +2010,1,5982,0.8841418812999999 +2010,1,5983,0.8802027766 2010,1,5984,0.8742941203 -2010,1,5985,0.8683854642999999 +2010,1,5985,0.8683854643 2010,1,5986,0.8620494920999999 2010,1,5987,0.8574103882999999 2010,1,5988,0.8537913319 @@ -5992,10 +5992,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,5991,0.8551913319 2010,1,5992,0.8585377039 2010,1,5993,0.8644463599 -2010,1,5994,0.8703550161999999 -2010,1,5995,0.8782332246999999 -2010,1,5996,0.8821723288 -2010,1,5997,0.8841418812999998 +2010,1,5994,0.8703550162 +2010,1,5995,0.8782332247 +2010,1,5996,0.8821723288000001 +2010,1,5997,0.8841418812999999 2010,1,5998,0.8861114332 2010,1,5999,0.8880809851 2010,1,6000,0.8880809851 @@ -6006,18 +6006,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6005,0.8920200892 2010,1,6006,0.8920200892 2010,1,6007,0.8880809851 -2010,1,6008,0.8821723288 -2010,1,6009,0.8782332246999999 +2010,1,6008,0.8821723288000001 +2010,1,6009,0.8782332247 2010,1,6010,0.8762636728 2010,1,6011,0.8723245680999999 -2010,1,6012,0.8703550161999999 -2010,1,6013,0.8683854642999999 -2010,1,6014,0.8683854642999999 -2010,1,6015,0.8703550161999999 +2010,1,6012,0.8703550162 +2010,1,6013,0.8683854643 +2010,1,6014,0.8683854643 +2010,1,6015,0.8703550162 2010,1,6016,0.8723245680999999 2010,1,6017,0.8762636728 -2010,1,6018,0.8802027765999999 -2010,1,6019,0.8841418812999998 +2010,1,6018,0.8802027766 +2010,1,6019,0.8841418812999999 2010,1,6020,0.8861114332 2010,1,6021,0.8880809851 2010,1,6022,0.8900505372999999 @@ -6026,22 +6026,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6025,0.8939896417000001 2010,1,6026,0.8959591936 2010,1,6027,0.8959591936 -2010,1,6028,0.8979287454999999 -2010,1,6029,0.8979287454999999 -2010,1,6030,0.8979287454999999 +2010,1,6028,0.8979287455 +2010,1,6029,0.8979287455 +2010,1,6030,0.8979287455 2010,1,6031,0.8939896417000001 2010,1,6032,0.8900505372999999 -2010,1,6033,0.8841418812999998 -2010,1,6034,0.8802027765999999 +2010,1,6033,0.8841418812999999 +2010,1,6034,0.8802027766 2010,1,6035,0.8762636728 2010,1,6036,0.8742941203 2010,1,6037,0.8723245680999999 -2010,1,6038,0.8703550161999999 -2010,1,6039,0.8703550161999999 +2010,1,6038,0.8703550162 +2010,1,6039,0.8703550162 2010,1,6040,0.8723245680999999 2010,1,6041,0.8742941203 -2010,1,6042,0.8802027765999999 -2010,1,6043,0.8841418812999998 +2010,1,6042,0.8802027766 +2010,1,6043,0.8841418812999999 2010,1,6044,0.8861114332 2010,1,6045,0.8880809851 2010,1,6046,0.8880809851 @@ -6051,24 +6051,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6050,0.8939896417000001 2010,1,6051,0.8959591936 2010,1,6052,0.8959591936 -2010,1,6053,0.8979287454999999 +2010,1,6053,0.8979287455 2010,1,6054,0.8959591936 2010,1,6055,0.8900505372999999 -2010,1,6056,0.8841418812999998 -2010,1,6057,0.8782332246999999 +2010,1,6056,0.8841418812999999 +2010,1,6057,0.8782332247 2010,1,6058,0.8742941203 -2010,1,6059,0.8683854642999999 +2010,1,6059,0.8683854643 2010,1,6060,0.8624768076999999 2010,1,6061,0.8600799401999999 2010,1,6062,0.8581103883 2010,1,6063,0.8585377039 -2010,1,6064,0.8605072557999999 +2010,1,6064,0.8605072558 2010,1,6065,0.8644463599 -2010,1,6066,0.8703550161999999 +2010,1,6066,0.8703550162 2010,1,6067,0.8762636728 -2010,1,6068,0.8802027765999999 -2010,1,6069,0.8821723288 -2010,1,6070,0.8841418812999998 +2010,1,6068,0.8802027766 +2010,1,6069,0.8821723288000001 +2010,1,6070,0.8841418812999999 2010,1,6071,0.8861114332 2010,1,6072,0.8861114332 2010,1,6073,0.8861114332 @@ -6078,22 +6078,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6077,0.8900505372999999 2010,1,6078,0.8900505372999999 2010,1,6079,0.8861114332 -2010,1,6080,0.8782332246999999 -2010,1,6081,0.8703550161999999 +2010,1,6080,0.8782332247 +2010,1,6081,0.8703550162 2010,1,6082,0.8620494920999999 2010,1,6083,0.8544913318999999 -2010,1,6084,0.8411913319000001 +2010,1,6084,0.8411913319 2010,1,6085,0.8341913318999999 2010,1,6086,0.8341913318999999 2010,1,6087,0.8348913319 2010,1,6088,0.8418913319 2010,1,6089,0.8585377039 -2010,1,6090,0.8683854642999999 +2010,1,6090,0.8683854643 2010,1,6091,0.8742941203 -2010,1,6092,0.8782332246999999 -2010,1,6093,0.8821723288 -2010,1,6094,0.8841418812999998 -2010,1,6095,0.8841418812999998 +2010,1,6092,0.8782332247 +2010,1,6093,0.8821723288000001 +2010,1,6094,0.8841418812999999 +2010,1,6095,0.8841418812999999 2010,1,6096,0.8861114332 2010,1,6097,0.8861114332 2010,1,6098,0.8880809851 @@ -6101,10 +6101,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6100,0.8880809851 2010,1,6101,0.8900505372999999 2010,1,6102,0.8880809851 -2010,1,6103,0.8841418812999998 -2010,1,6104,0.8782332246999999 +2010,1,6103,0.8841418812999999 +2010,1,6104,0.8782332247 2010,1,6105,0.8718972524999999 -2010,1,6106,0.8626190443 +2010,1,6106,0.8626190442999999 2010,1,6107,0.8560103883 2010,1,6108,0.8460913319 2010,1,6109,0.8390913319 @@ -6112,10 +6112,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6111,0.8397913319 2010,1,6112,0.8467913319 2010,1,6113,0.8600799401999999 -2010,1,6114,0.8683854642999999 +2010,1,6114,0.8683854643 2010,1,6115,0.8762636728 -2010,1,6116,0.8802027765999999 -2010,1,6117,0.8821723288 +2010,1,6116,0.8802027766 +2010,1,6117,0.8821723288000001 2010,1,6118,0.8861114332 2010,1,6119,0.8861114332 2010,1,6120,0.8880809851 @@ -6126,20 +6126,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6125,0.8920200892 2010,1,6126,0.8900505372999999 2010,1,6127,0.8861114332 -2010,1,6128,0.8802027765999999 +2010,1,6128,0.8802027766 2010,1,6129,0.8711972524999999 2010,1,6130,0.8638885961999999 -2010,1,6131,0.8572799401999999 +2010,1,6131,0.8572799402 2010,1,6132,0.8453913318999999 2010,1,6133,0.8390913319 2010,1,6134,0.8390913319 2010,1,6135,0.8460913319 2010,1,6136,0.8537913319 2010,1,6137,0.8600799401999999 -2010,1,6138,0.8703550161999999 +2010,1,6138,0.8703550162 2010,1,6139,0.8762636728 -2010,1,6140,0.8802027765999999 -2010,1,6141,0.8841418812999998 +2010,1,6140,0.8802027766 +2010,1,6141,0.8841418812999999 2010,1,6142,0.8861114332 2010,1,6143,0.8861114332 2010,1,6144,0.8880809851 @@ -6150,8 +6150,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6149,0.8920200892 2010,1,6150,0.8900505372999999 2010,1,6151,0.8861114332 -2010,1,6152,0.8782332246999999 -2010,1,6153,0.8703550161999999 +2010,1,6152,0.8782332247 +2010,1,6153,0.8703550162 2010,1,6154,0.8633190443 2010,1,6155,0.8567103883 2010,1,6156,0.8530913319 @@ -6160,12 +6160,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6159,0.8474913319 2010,1,6160,0.8544913318999999 2010,1,6161,0.8624768076999999 -2010,1,6162,0.8703550161999999 +2010,1,6162,0.8703550162 2010,1,6163,0.8762636728 -2010,1,6164,0.8802027765999999 -2010,1,6165,0.8821723288 -2010,1,6166,0.8841418812999998 -2010,1,6167,0.8841418812999998 +2010,1,6164,0.8802027766 +2010,1,6165,0.8821723288000001 +2010,1,6166,0.8841418812999999 +2010,1,6167,0.8841418812999999 2010,1,6168,0.8861114332 2010,1,6169,0.8880809851 2010,1,6170,0.8880809851 @@ -6174,22 +6174,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6173,0.8920200892 2010,1,6174,0.8900505372999999 2010,1,6175,0.8861114332 -2010,1,6176,0.8782332246999999 +2010,1,6176,0.8782332247 2010,1,6177,0.8723245680999999 2010,1,6178,0.8659885961999999 -2010,1,6179,0.8593799401999999 +2010,1,6179,0.8593799402 2010,1,6180,0.8567103883 2010,1,6181,0.8530913319 2010,1,6182,0.8530913319 2010,1,6183,0.8537913319 2010,1,6184,0.8574103882999999 2010,1,6185,0.8644463599 -2010,1,6186,0.8703550161999999 +2010,1,6186,0.8703550162 2010,1,6187,0.8762636728 -2010,1,6188,0.8782332246999999 -2010,1,6189,0.8802027765999999 -2010,1,6190,0.8841418812999998 -2010,1,6191,0.8841418812999998 +2010,1,6188,0.8782332247 +2010,1,6189,0.8802027766 +2010,1,6190,0.8841418812999999 +2010,1,6191,0.8841418812999999 2010,1,6192,0.8861114332 2010,1,6193,0.8880809851 2010,1,6194,0.8900505372999999 @@ -6198,23 +6198,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6197,0.8939896417000001 2010,1,6198,0.8920200892 2010,1,6199,0.8880809851 -2010,1,6200,0.8821723288 +2010,1,6200,0.8821723288000001 2010,1,6201,0.8762636728 -2010,1,6202,0.8692277005999999 +2010,1,6202,0.8692277006 2010,1,6203,0.8619190443 -2010,1,6204,0.8572799401999999 +2010,1,6204,0.8572799402 2010,1,6205,0.8553103883 2010,1,6206,0.8523913318999999 2010,1,6207,0.8530913319 2010,1,6208,0.8567103883 2010,1,6209,0.8624768076999999 -2010,1,6210,0.8703550161999999 +2010,1,6210,0.8703550162 2010,1,6211,0.8762636728 -2010,1,6212,0.8782332246999999 -2010,1,6213,0.8782332246999999 -2010,1,6214,0.8802027765999999 -2010,1,6215,0.8841418812999998 -2010,1,6216,0.8841418812999998 +2010,1,6212,0.8782332247 +2010,1,6213,0.8782332247 +2010,1,6214,0.8802027766 +2010,1,6215,0.8841418812999999 +2010,1,6216,0.8841418812999999 2010,1,6217,0.8861114332 2010,1,6218,0.8880809851 2010,1,6219,0.8900505372999999 @@ -6222,9 +6222,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6221,0.8900505372999999 2010,1,6222,0.8900505372999999 2010,1,6223,0.8861114332 -2010,1,6224,0.8802027765999999 +2010,1,6224,0.8802027766 2010,1,6225,0.8742941203 -2010,1,6226,0.8672581486999998 +2010,1,6226,0.8672581487 2010,1,6227,0.8599494920999999 2010,1,6228,0.8553103883 2010,1,6229,0.8523913318999999 @@ -6232,13 +6232,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6231,0.8530913319 2010,1,6232,0.8567103883 2010,1,6233,0.8624768076999999 -2010,1,6234,0.8683854642999999 +2010,1,6234,0.8683854643 2010,1,6235,0.8742941203 2010,1,6236,0.8762636728 -2010,1,6237,0.8802027765999999 -2010,1,6238,0.8821723288 -2010,1,6239,0.8841418812999998 -2010,1,6240,0.8841418812999998 +2010,1,6237,0.8802027766 +2010,1,6238,0.8821723288000001 +2010,1,6239,0.8841418812999999 +2010,1,6240,0.8841418812999999 2010,1,6241,0.8861114332 2010,1,6242,0.8880809851 2010,1,6243,0.8880809851 @@ -6246,21 +6246,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6245,0.8900505372999999 2010,1,6246,0.8900505372999999 2010,1,6247,0.8861114332 -2010,1,6248,0.8821723288 +2010,1,6248,0.8821723288000001 2010,1,6249,0.8762636728 -2010,1,6250,0.8692277005999999 +2010,1,6250,0.8692277006 2010,1,6251,0.8619190443 -2010,1,6252,0.8572799401999999 +2010,1,6252,0.8572799402 2010,1,6253,0.8546103883 2010,1,6254,0.8516913318999999 2010,1,6255,0.8523913318999999 2010,1,6256,0.8560103883 2010,1,6257,0.8624768076999999 -2010,1,6258,0.8683854642999999 +2010,1,6258,0.8683854643 2010,1,6259,0.8742941203 -2010,1,6260,0.8782332246999999 -2010,1,6261,0.8802027765999999 -2010,1,6262,0.8841418812999998 +2010,1,6260,0.8782332247 +2010,1,6261,0.8802027766 +2010,1,6262,0.8841418812999999 2010,1,6263,0.8861114332 2010,1,6264,0.8880809851 2010,1,6265,0.8880809851 @@ -6270,21 +6270,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6269,0.8939896417000001 2010,1,6270,0.8939896417000001 2010,1,6271,0.8900505372999999 -2010,1,6272,0.8841418812999998 -2010,1,6273,0.8782332246999999 +2010,1,6272,0.8841418812999999 +2010,1,6273,0.8782332247 2010,1,6274,0.8724668047 -2010,1,6275,0.8651581486999999 +2010,1,6275,0.8651581487 2010,1,6276,0.8605190442999999 2010,1,6277,0.8585494920999999 -2010,1,6278,0.8565799401999998 -2010,1,6279,0.8572799401999999 +2010,1,6278,0.8565799402 +2010,1,6279,0.8572799402 2010,1,6280,0.8599494920999999 2010,1,6281,0.8664159117999999 2010,1,6282,0.8723245680999999 -2010,1,6283,0.8782332246999999 -2010,1,6284,0.8821723288 -2010,1,6285,0.8841418812999998 -2010,1,6286,0.8841418812999998 +2010,1,6283,0.8782332247 +2010,1,6284,0.8821723288000001 +2010,1,6285,0.8841418812999999 +2010,1,6286,0.8841418812999999 2010,1,6287,0.8861114332 2010,1,6288,0.8880809851 2010,1,6289,0.8880809851 @@ -6294,20 +6294,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6293,0.8920200892 2010,1,6294,0.8920200892 2010,1,6295,0.8880809851 -2010,1,6296,0.8841418812999998 -2010,1,6297,0.8802027765999999 +2010,1,6296,0.8841418812999999 +2010,1,6297,0.8802027766 2010,1,6298,0.8751363571999999 2010,1,6299,0.8678277005999999 2010,1,6300,0.8631885961999999 2010,1,6301,0.8605190442999999 2010,1,6302,0.8592494920999999 2010,1,6303,0.8599494920999999 -2010,1,6304,0.8626190443 -2010,1,6305,0.8683854642999999 +2010,1,6304,0.8626190442999999 +2010,1,6305,0.8683854643 2010,1,6306,0.8742941203 -2010,1,6307,0.8802027765999999 -2010,1,6308,0.8821723288 -2010,1,6309,0.8841418812999998 +2010,1,6307,0.8802027766 +2010,1,6308,0.8821723288000001 +2010,1,6309,0.8841418812999999 2010,1,6310,0.8861114332 2010,1,6311,0.8861114332 2010,1,6312,0.8880809851 @@ -6318,18 +6318,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6317,0.8939896417000001 2010,1,6318,0.8939896417000001 2010,1,6319,0.8880809851 -2010,1,6320,0.8821723288 +2010,1,6320,0.8821723288000001 2010,1,6321,0.8762636728 -2010,1,6322,0.8703550161999999 +2010,1,6322,0.8703550162 2010,1,6323,0.8664159117999999 2010,1,6324,0.8640190443 2010,1,6325,0.8620494920999999 2010,1,6326,0.8600799401999999 2010,1,6327,0.8624768076999999 2010,1,6328,0.8644463599 -2010,1,6329,0.8703550161999999 +2010,1,6329,0.8703550162 2010,1,6330,0.8762636728 -2010,1,6331,0.8821723288 +2010,1,6331,0.8821723288000001 2010,1,6332,0.8861114332 2010,1,6333,0.8900505372999999 2010,1,6334,0.8920200892 @@ -6339,20 +6339,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6338,0.8959591936 2010,1,6339,0.8959591936 2010,1,6340,0.8959591936 -2010,1,6341,0.8979287454999999 -2010,1,6342,0.8979287454999999 +2010,1,6341,0.8979287455 +2010,1,6342,0.8979287455 2010,1,6343,0.8939896417000001 2010,1,6344,0.8900505372999999 2010,1,6345,0.8861114332 -2010,1,6346,0.8802027765999999 -2010,1,6347,0.8782332246999999 +2010,1,6346,0.8802027766 +2010,1,6347,0.8782332247 2010,1,6348,0.8742941203 2010,1,6349,0.8723245680999999 2010,1,6350,0.8723245680999999 2010,1,6351,0.8723245680999999 2010,1,6352,0.8742941203 2010,1,6353,0.8762636728 -2010,1,6354,0.8821723288 +2010,1,6354,0.8821723288000001 2010,1,6355,0.8880809851 2010,1,6356,0.8900505372999999 2010,1,6357,0.8920200892 @@ -6360,26 +6360,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6359,0.8939896417000001 2010,1,6360,0.8959591936 2010,1,6361,0.8959591936 -2010,1,6362,0.8979287454999999 -2010,1,6363,0.8979287454999999 +2010,1,6362,0.8979287455 +2010,1,6363,0.8979287455 2010,1,6364,0.8990000001999999 2010,1,6365,0.8990000001999999 2010,1,6366,0.8990000001999999 2010,1,6367,0.8959591936 2010,1,6368,0.8900505372999999 -2010,1,6369,0.8841418812999998 -2010,1,6370,0.8782332246999999 +2010,1,6369,0.8841418812999999 +2010,1,6370,0.8782332247 2010,1,6371,0.8718972524999999 2010,1,6372,0.8652885961999999 2010,1,6373,0.8613494920999999 -2010,1,6374,0.8593799401999999 +2010,1,6374,0.8593799402 2010,1,6375,0.8620494920999999 2010,1,6376,0.8644463599 -2010,1,6377,0.8683854642999999 +2010,1,6377,0.8683854643 2010,1,6378,0.8762636728 -2010,1,6379,0.8821723288 -2010,1,6380,0.8821723288 -2010,1,6381,0.8841418812999998 +2010,1,6379,0.8821723288000001 +2010,1,6380,0.8821723288000001 +2010,1,6381,0.8841418812999999 2010,1,6382,0.8861114332 2010,1,6383,0.8861114332 2010,1,6384,0.8880809851 @@ -6390,67 +6390,67 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6389,0.8920200892 2010,1,6390,0.8920200892 2010,1,6391,0.8861114332 -2010,1,6392,0.8782332246999999 -2010,1,6393,0.8703550161999999 +2010,1,6392,0.8782332247 +2010,1,6393,0.8703550162 2010,1,6394,0.8620494920999999 2010,1,6395,0.8537913319 2010,1,6396,0.8404913319 2010,1,6397,0.8341913318999999 2010,1,6398,0.8271913318999999 2010,1,6399,0.8341913318999999 -2010,1,6400,0.8411913319000001 +2010,1,6400,0.8411913319 2010,1,6401,0.8585377039 2010,1,6402,0.8664159117999999 2010,1,6403,0.8723245680999999 2010,1,6404,0.8742941203 2010,1,6405,0.8762636728 -2010,1,6406,0.8782332246999999 -2010,1,6407,0.8782332246999999 -2010,1,6408,0.8802027765999999 -2010,1,6409,0.8802027765999999 -2010,1,6410,0.8821723288 -2010,1,6411,0.8821723288 -2010,1,6412,0.8821723288 -2010,1,6413,0.8821723288 -2010,1,6414,0.8821723288 +2010,1,6406,0.8782332247 +2010,1,6407,0.8782332247 +2010,1,6408,0.8802027766 +2010,1,6409,0.8802027766 +2010,1,6410,0.8821723288000001 +2010,1,6411,0.8821723288000001 +2010,1,6412,0.8821723288000001 +2010,1,6413,0.8821723288000001 +2010,1,6414,0.8821723288000001 2010,1,6415,0.8762636728 -2010,1,6416,0.8703550161999999 +2010,1,6416,0.8703550162 2010,1,6417,0.8613494920999999 2010,1,6418,0.8530913319 2010,1,6419,0.8327913319 2010,1,6420,0.8194913318999999 2010,1,6421,0.8131913319 2010,1,6422,0.8068913319 -2010,1,6423,0.8075913318999999 +2010,1,6423,0.8075913319 2010,1,6424,0.8145913319 2010,1,6425,0.8418913319 2010,1,6426,0.8624768076999999 -2010,1,6427,0.8683854642999999 -2010,1,6428,0.8703550161999999 -2010,1,6429,0.8703550161999999 +2010,1,6427,0.8683854643 +2010,1,6428,0.8703550162 +2010,1,6429,0.8703550162 2010,1,6430,0.8723245680999999 2010,1,6431,0.8742941203 2010,1,6432,0.8762636728 -2010,1,6433,0.8782332246999999 -2010,1,6434,0.8802027765999999 -2010,1,6435,0.8802027765999999 -2010,1,6436,0.8821723288 -2010,1,6437,0.8821723288 -2010,1,6438,0.8821723288 +2010,1,6433,0.8782332247 +2010,1,6434,0.8802027766 +2010,1,6435,0.8802027766 +2010,1,6436,0.8821723288000001 +2010,1,6437,0.8821723288000001 +2010,1,6438,0.8821723288000001 2010,1,6439,0.8762636728 2010,1,6440,0.8699277005999999 2010,1,6441,0.8599494920999999 2010,1,6442,0.8516913318999999 2010,1,6443,0.8320913319 -2010,1,6444,0.8187913318999999 -2010,1,6445,0.8117913319000001 -2010,1,6446,0.8117913319000001 +2010,1,6444,0.8187913319 +2010,1,6445,0.8117913319 +2010,1,6446,0.8117913319 2010,1,6447,0.8124913319 2010,1,6448,0.8194913318999999 2010,1,6449,0.8404913319 2010,1,6450,0.8620494920999999 2010,1,6451,0.8664159117999999 -2010,1,6452,0.8703550161999999 +2010,1,6452,0.8703550162 2010,1,6453,0.8723245680999999 2010,1,6454,0.8723245680999999 2010,1,6455,0.8742941203 @@ -6465,7 +6465,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6464,0.8613494920999999 2010,1,6465,0.8460913319 2010,1,6466,0.8257913319 -2010,1,6467,0.8061913318999999 +2010,1,6467,0.8061913319 2010,1,6468,0.7991913318999999 2010,1,6469,0.7928913318999999 2010,1,6470,0.7928913318999999 @@ -6478,42 +6478,42 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6477,0.8644463599 2010,1,6478,0.8644463599 2010,1,6479,0.8664159117999999 -2010,1,6480,0.8683854642999999 -2010,1,6481,0.8703550161999999 -2010,1,6482,0.8703550161999999 +2010,1,6480,0.8683854643 +2010,1,6481,0.8703550162 +2010,1,6482,0.8703550162 2010,1,6483,0.8723245680999999 2010,1,6484,0.8723245680999999 2010,1,6485,0.8742941203 2010,1,6486,0.8742941203 -2010,1,6487,0.8683854642999999 +2010,1,6487,0.8683854643 2010,1,6488,0.8624768076999999 2010,1,6489,0.8537913319 2010,1,6490,0.8334913318999999 -2010,1,6491,0.8138913319000001 -2010,1,6492,0.8075913318999999 +2010,1,6491,0.8138913319 +2010,1,6492,0.8075913319 2010,1,6493,0.8012913318999999 -2010,1,6494,0.8082913318999999 -2010,1,6495,0.8159913319000001 +2010,1,6494,0.8082913319 +2010,1,6495,0.8159913319 2010,1,6496,0.8292913318999999 2010,1,6497,0.8493186475 2010,1,6498,0.8585377039 2010,1,6499,0.8624768076999999 2010,1,6500,0.8644463599 2010,1,6501,0.8664159117999999 -2010,1,6502,0.8703550161999999 -2010,1,6503,0.8703550161999999 -2010,1,6504,0.8703550161999999 +2010,1,6502,0.8703550162 +2010,1,6503,0.8703550162 +2010,1,6504,0.8703550162 2010,1,6505,0.8723245680999999 2010,1,6506,0.8723245680999999 2010,1,6507,0.8742941203 2010,1,6508,0.8742941203 2010,1,6509,0.8742941203 2010,1,6510,0.8742941203 -2010,1,6511,0.8703550161999999 +2010,1,6511,0.8703550162 2010,1,6512,0.8644463599 2010,1,6513,0.8574103882999999 2010,1,6514,0.8404913319 -2010,1,6515,0.8208913318999999 +2010,1,6515,0.8208913319 2010,1,6516,0.8145913319 2010,1,6517,0.8089913318999999 2010,1,6518,0.8026913319 @@ -6523,8 +6523,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6522,0.8585377039 2010,1,6523,0.8624768076999999 2010,1,6524,0.8664159117999999 -2010,1,6525,0.8683854642999999 -2010,1,6526,0.8703550161999999 +2010,1,6525,0.8683854643 +2010,1,6526,0.8703550162 2010,1,6527,0.8723245680999999 2010,1,6528,0.8723245680999999 2010,1,6529,0.8742941203 @@ -6540,25 +6540,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6539,0.8397913319 2010,1,6540,0.8327913319 2010,1,6541,0.8264913319 -2010,1,6542,0.8208913318999999 +2010,1,6542,0.8208913319 2010,1,6543,0.8222913318999999 2010,1,6544,0.8292913318999999 2010,1,6545,0.8493186475 2010,1,6546,0.8624768076999999 2010,1,6547,0.8664159117999999 -2010,1,6548,0.8703550161999999 -2010,1,6549,0.8703550161999999 -2010,1,6550,0.8703550161999999 -2010,1,6551,0.8703550161999999 +2010,1,6548,0.8703550162 +2010,1,6549,0.8703550162 +2010,1,6550,0.8703550162 +2010,1,6551,0.8703550162 2010,1,6552,0.8723245680999999 2010,1,6553,0.8742941203 2010,1,6554,0.8742941203 2010,1,6555,0.8762636728 2010,1,6556,0.8762636728 -2010,1,6557,0.8782332246999999 -2010,1,6558,0.8782332246999999 +2010,1,6557,0.8782332247 +2010,1,6558,0.8782332247 2010,1,6559,0.8742941203 -2010,1,6560,0.8683854642999999 +2010,1,6560,0.8683854643 2010,1,6561,0.8620494920999999 2010,1,6562,0.8544913318999999 2010,1,6563,0.8474913319 @@ -6570,8 +6570,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6569,0.8556186474999999 2010,1,6570,0.8624768076999999 2010,1,6571,0.8664159117999999 -2010,1,6572,0.8683854642999999 -2010,1,6573,0.8703550161999999 +2010,1,6572,0.8683854643 +2010,1,6573,0.8703550162 2010,1,6574,0.8723245680999999 2010,1,6575,0.8723245680999999 2010,1,6576,0.8723245680999999 @@ -6582,46 +6582,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6581,0.8762636728 2010,1,6582,0.8762636728 2010,1,6583,0.8742941203 -2010,1,6584,0.8703550161999999 +2010,1,6584,0.8703550162 2010,1,6585,0.8644463599 2010,1,6586,0.8585377039 2010,1,6587,0.8488913319 2010,1,6588,0.8418913319 -2010,1,6589,0.8355913318999999 +2010,1,6589,0.8355913319 2010,1,6590,0.8418913319 2010,1,6591,0.8488913319 2010,1,6592,0.8556186474999999 -2010,1,6593,0.8605072557999999 +2010,1,6593,0.8605072558 2010,1,6594,0.8644463599 -2010,1,6595,0.8683854642999999 -2010,1,6596,0.8703550161999999 +2010,1,6595,0.8683854643 +2010,1,6596,0.8703550162 2010,1,6597,0.8723245680999999 2010,1,6598,0.8742941203 2010,1,6599,0.8742941203 2010,1,6600,0.8762636728 2010,1,6601,0.8762636728 -2010,1,6602,0.8782332246999999 -2010,1,6603,0.8802027765999999 -2010,1,6604,0.8802027765999999 -2010,1,6605,0.8821723288 -2010,1,6606,0.8821723288 -2010,1,6607,0.8782332246999999 +2010,1,6602,0.8782332247 +2010,1,6603,0.8802027766 +2010,1,6604,0.8802027766 +2010,1,6605,0.8821723288000001 +2010,1,6606,0.8821723288000001 +2010,1,6607,0.8782332247 2010,1,6608,0.8742941203 -2010,1,6609,0.8683854642999999 +2010,1,6609,0.8683854643 2010,1,6610,0.8644463599 -2010,1,6611,0.8605072557999999 +2010,1,6611,0.8605072558 2010,1,6612,0.8585377039 2010,1,6613,0.8556186474999999 2010,1,6614,0.8556186474999999 2010,1,6615,0.8585377039 -2010,1,6616,0.8605072557999999 +2010,1,6616,0.8605072558 2010,1,6617,0.8664159117999999 -2010,1,6618,0.8703550161999999 +2010,1,6618,0.8703550162 2010,1,6619,0.8742941203 -2010,1,6620,0.8782332246999999 -2010,1,6621,0.8802027765999999 -2010,1,6622,0.8821723288 -2010,1,6623,0.8841418812999998 +2010,1,6620,0.8782332247 +2010,1,6621,0.8802027766 +2010,1,6622,0.8821723288000001 +2010,1,6623,0.8841418812999999 2010,1,6624,0.8861114332 2010,1,6625,0.8861114332 2010,1,6626,0.8861114332 @@ -6631,15 +6631,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6630,0.8900505372999999 2010,1,6631,0.8900505372999999 2010,1,6632,0.8880809851 -2010,1,6633,0.8841418812999998 -2010,1,6634,0.8802027765999999 -2010,1,6635,0.8782332246999999 +2010,1,6633,0.8841418812999999 +2010,1,6634,0.8802027766 +2010,1,6635,0.8782332247 2010,1,6636,0.8762636728 2010,1,6637,0.8742941203 2010,1,6638,0.8742941203 2010,1,6639,0.8762636728 -2010,1,6640,0.8782332246999999 -2010,1,6641,0.8821723288 +2010,1,6640,0.8782332247 +2010,1,6641,0.8821723288000001 2010,1,6642,0.8861114332 2010,1,6643,0.8900505372999999 2010,1,6644,0.8939896417000001 @@ -6658,9 +6658,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6657,0.8900505372999999 2010,1,6658,0.8880809851 2010,1,6659,0.8861114332 -2010,1,6660,0.8841418812999998 -2010,1,6661,0.8841418812999998 -2010,1,6662,0.8841418812999998 +2010,1,6660,0.8841418812999999 +2010,1,6661,0.8841418812999999 +2010,1,6662,0.8841418812999999 2010,1,6663,0.8861114332 2010,1,6664,0.8880809851 2010,1,6665,0.8900505372999999 @@ -6681,11 +6681,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6680,0.8920200892 2010,1,6681,0.8900505372999999 2010,1,6682,0.8861114332 -2010,1,6683,0.8841418812999998 -2010,1,6684,0.8821723288 -2010,1,6685,0.8821723288 -2010,1,6686,0.8821723288 -2010,1,6687,0.8841418812999998 +2010,1,6683,0.8841418812999999 +2010,1,6684,0.8821723288000001 +2010,1,6685,0.8821723288000001 +2010,1,6686,0.8821723288000001 +2010,1,6687,0.8841418812999999 2010,1,6688,0.8861114332 2010,1,6689,0.8880809851 2010,1,6690,0.8900505372999999 @@ -6704,14 +6704,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6703,0.8959591936 2010,1,6704,0.8920200892 2010,1,6705,0.8880809851 -2010,1,6706,0.8841418812999998 -2010,1,6707,0.8802027765999999 -2010,1,6708,0.8782332246999999 +2010,1,6706,0.8841418812999999 +2010,1,6707,0.8802027766 +2010,1,6708,0.8782332247 2010,1,6709,0.8762636728 2010,1,6710,0.8762636728 2010,1,6711,0.8762636728 -2010,1,6712,0.8782332246999999 -2010,1,6713,0.8821723288 +2010,1,6712,0.8782332247 +2010,1,6713,0.8821723288000001 2010,1,6714,0.8880809851 2010,1,6715,0.8900505372999999 2010,1,6716,0.8920200892 @@ -6720,23 +6720,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6719,0.8939896417000001 2010,1,6720,0.8959591936 2010,1,6721,0.8959591936 -2010,1,6722,0.8979287454999999 -2010,1,6723,0.8979287454999999 -2010,1,6724,0.8979287454999999 +2010,1,6722,0.8979287455 +2010,1,6723,0.8979287455 +2010,1,6724,0.8979287455 2010,1,6725,0.8990000001999999 2010,1,6726,0.8990000001999999 2010,1,6727,0.8959591936 2010,1,6728,0.8900505372999999 2010,1,6729,0.8861114332 -2010,1,6730,0.8802027765999999 +2010,1,6730,0.8802027766 2010,1,6731,0.8762636728 2010,1,6732,0.8723245680999999 -2010,1,6733,0.8703550161999999 -2010,1,6734,0.8703550161999999 -2010,1,6735,0.8703550161999999 +2010,1,6733,0.8703550162 +2010,1,6734,0.8703550162 +2010,1,6735,0.8703550162 2010,1,6736,0.8723245680999999 -2010,1,6737,0.8782332246999999 -2010,1,6738,0.8841418812999998 +2010,1,6737,0.8782332247 +2010,1,6738,0.8841418812999999 2010,1,6739,0.8861114332 2010,1,6740,0.8880809851 2010,1,6741,0.8880809851 @@ -6751,19 +6751,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6750,0.8939896417000001 2010,1,6751,0.8920200892 2010,1,6752,0.8861114332 -2010,1,6753,0.8821723288 +2010,1,6753,0.8821723288000001 2010,1,6754,0.8762636728 2010,1,6755,0.8723245680999999 -2010,1,6756,0.8683854642999999 +2010,1,6756,0.8683854643 2010,1,6757,0.8664159117999999 2010,1,6758,0.8644463599 2010,1,6759,0.8644463599 2010,1,6760,0.8664159117999999 2010,1,6761,0.8742941203 -2010,1,6762,0.8802027765999999 -2010,1,6763,0.8841418812999998 -2010,1,6764,0.8841418812999998 -2010,1,6765,0.8841418812999998 +2010,1,6762,0.8802027766 +2010,1,6763,0.8841418812999999 +2010,1,6764,0.8841418812999999 +2010,1,6765,0.8841418812999999 2010,1,6766,0.8861114332 2010,1,6767,0.8861114332 2010,1,6768,0.8880809851 @@ -6774,33 +6774,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6773,0.8920200892 2010,1,6774,0.8920200892 2010,1,6775,0.8880809851 -2010,1,6776,0.8821723288 +2010,1,6776,0.8821723288000001 2010,1,6777,0.8762636728 -2010,1,6778,0.8703550161999999 +2010,1,6778,0.8703550162 2010,1,6779,0.8644463599 2010,1,6780,0.8600799401999999 2010,1,6781,0.8581103883 2010,1,6782,0.8551913319 2010,1,6783,0.8585377039 -2010,1,6784,0.8605072557999999 -2010,1,6785,0.8683854642999999 +2010,1,6784,0.8605072558 +2010,1,6785,0.8683854643 2010,1,6786,0.8742941203 -2010,1,6787,0.8782332246999999 -2010,1,6788,0.8782332246999999 -2010,1,6789,0.8802027765999999 -2010,1,6790,0.8802027765999999 -2010,1,6791,0.8821723288 -2010,1,6792,0.8841418812999998 -2010,1,6793,0.8841418812999998 +2010,1,6787,0.8782332247 +2010,1,6788,0.8782332247 +2010,1,6789,0.8802027766 +2010,1,6790,0.8802027766 +2010,1,6791,0.8821723288000001 +2010,1,6792,0.8841418812999999 +2010,1,6793,0.8841418812999999 2010,1,6794,0.8861114332 2010,1,6795,0.8880809851 2010,1,6796,0.8880809851 2010,1,6797,0.8880809851 2010,1,6798,0.8880809851 2010,1,6799,0.8861114332 -2010,1,6800,0.8802027765999999 +2010,1,6800,0.8802027766 2010,1,6801,0.8742941203 -2010,1,6802,0.8683854642999999 +2010,1,6802,0.8683854643 2010,1,6803,0.8620494920999999 2010,1,6804,0.8574103882999999 2010,1,6805,0.8537913319 @@ -6810,69 +6810,69 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6809,0.8664159117999999 2010,1,6810,0.8723245680999999 2010,1,6811,0.8762636728 -2010,1,6812,0.8782332246999999 -2010,1,6813,0.8802027765999999 -2010,1,6814,0.8821723288 -2010,1,6815,0.8821723288 -2010,1,6816,0.8841418812999998 -2010,1,6817,0.8841418812999998 -2010,1,6818,0.8841418812999998 +2010,1,6812,0.8782332247 +2010,1,6813,0.8802027766 +2010,1,6814,0.8821723288000001 +2010,1,6815,0.8821723288000001 +2010,1,6816,0.8841418812999999 +2010,1,6817,0.8841418812999999 +2010,1,6818,0.8841418812999999 2010,1,6819,0.8861114332 2010,1,6820,0.8861114332 2010,1,6821,0.8861114332 2010,1,6822,0.8861114332 -2010,1,6823,0.8821723288 +2010,1,6823,0.8821723288000001 2010,1,6824,0.8762636728 -2010,1,6825,0.8703550161999999 +2010,1,6825,0.8703550162 2010,1,6826,0.8624768076999999 2010,1,6827,0.8551913319 2010,1,6828,0.8481913319 -2010,1,6829,0.8411913319000001 +2010,1,6829,0.8411913319 2010,1,6830,0.8348913319 2010,1,6831,0.8418913319 2010,1,6832,0.8488913319 2010,1,6833,0.8624768076999999 -2010,1,6834,0.8703550161999999 +2010,1,6834,0.8703550162 2010,1,6835,0.8742941203 2010,1,6836,0.8742941203 2010,1,6837,0.8762636728 -2010,1,6838,0.8782332246999999 -2010,1,6839,0.8782332246999999 -2010,1,6840,0.8802027765999999 -2010,1,6841,0.8802027765999999 -2010,1,6842,0.8802027765999999 -2010,1,6843,0.8821723288 -2010,1,6844,0.8821723288 -2010,1,6845,0.8841418812999998 -2010,1,6846,0.8841418812999998 -2010,1,6847,0.8802027765999999 +2010,1,6838,0.8782332247 +2010,1,6839,0.8782332247 +2010,1,6840,0.8802027766 +2010,1,6841,0.8802027766 +2010,1,6842,0.8802027766 +2010,1,6843,0.8821723288000001 +2010,1,6844,0.8821723288000001 +2010,1,6845,0.8841418812999999 +2010,1,6846,0.8841418812999999 +2010,1,6847,0.8802027766 2010,1,6848,0.8723245680999999 2010,1,6849,0.8644463599 2010,1,6850,0.8585377039 2010,1,6851,0.8481913319 -2010,1,6852,0.8411913319000001 +2010,1,6852,0.8411913319 2010,1,6853,0.8348913319 2010,1,6854,0.8348913319 2010,1,6855,0.8418913319 2010,1,6856,0.8551913319 2010,1,6857,0.8624768076999999 -2010,1,6858,0.8683854642999999 +2010,1,6858,0.8683854643 2010,1,6859,0.8723245680999999 2010,1,6860,0.8762636728 2010,1,6861,0.8762636728 -2010,1,6862,0.8782332246999999 -2010,1,6863,0.8782332246999999 -2010,1,6864,0.8802027765999999 -2010,1,6865,0.8802027765999999 -2010,1,6866,0.8821723288 -2010,1,6867,0.8821723288 -2010,1,6868,0.8841418812999998 -2010,1,6869,0.8841418812999998 -2010,1,6870,0.8841418812999998 -2010,1,6871,0.8821723288 +2010,1,6862,0.8782332247 +2010,1,6863,0.8782332247 +2010,1,6864,0.8802027766 +2010,1,6865,0.8802027766 +2010,1,6866,0.8821723288000001 +2010,1,6867,0.8821723288000001 +2010,1,6868,0.8841418812999999 +2010,1,6869,0.8841418812999999 +2010,1,6870,0.8841418812999999 +2010,1,6871,0.8821723288000001 2010,1,6872,0.8742941203 2010,1,6873,0.8664159117999999 -2010,1,6874,0.8605072557999999 +2010,1,6874,0.8605072558 2010,1,6875,0.8488913319 2010,1,6876,0.8418913319 2010,1,6877,0.8348913319 @@ -6880,22 +6880,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6879,0.8418913319 2010,1,6880,0.8488913319 2010,1,6881,0.8624768076999999 -2010,1,6882,0.8703550161999999 +2010,1,6882,0.8703550162 2010,1,6883,0.8723245680999999 2010,1,6884,0.8723245680999999 2010,1,6885,0.8742941203 2010,1,6886,0.8762636728 -2010,1,6887,0.8782332246999999 -2010,1,6888,0.8782332246999999 -2010,1,6889,0.8802027765999999 -2010,1,6890,0.8821723288 -2010,1,6891,0.8841418812999998 -2010,1,6892,0.8841418812999998 -2010,1,6893,0.8841418812999998 -2010,1,6894,0.8841418812999998 -2010,1,6895,0.8821723288 +2010,1,6887,0.8782332247 +2010,1,6888,0.8782332247 +2010,1,6889,0.8802027766 +2010,1,6890,0.8821723288000001 +2010,1,6891,0.8841418812999999 +2010,1,6892,0.8841418812999999 +2010,1,6893,0.8841418812999999 +2010,1,6894,0.8841418812999999 +2010,1,6895,0.8821723288000001 2010,1,6896,0.8762636728 -2010,1,6897,0.8703550161999999 +2010,1,6897,0.8703550162 2010,1,6898,0.8644463599 2010,1,6899,0.8600799401999999 2010,1,6900,0.8574103882999999 @@ -6906,33 +6906,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6905,0.8644463599 2010,1,6906,0.8723245680999999 2010,1,6907,0.8762636728 -2010,1,6908,0.8782332246999999 -2010,1,6909,0.8802027765999999 -2010,1,6910,0.8802027765999999 -2010,1,6911,0.8821723288 -2010,1,6912,0.8841418812999998 -2010,1,6913,0.8841418812999998 +2010,1,6908,0.8782332247 +2010,1,6909,0.8802027766 +2010,1,6910,0.8802027766 +2010,1,6911,0.8821723288000001 +2010,1,6912,0.8841418812999999 +2010,1,6913,0.8841418812999999 2010,1,6914,0.8861114332 2010,1,6915,0.8861114332 2010,1,6916,0.8880809851 2010,1,6917,0.8880809851 2010,1,6918,0.8880809851 2010,1,6919,0.8861114332 -2010,1,6920,0.8802027765999999 +2010,1,6920,0.8802027766 2010,1,6921,0.8742941203 -2010,1,6922,0.8703550161999999 +2010,1,6922,0.8703550162 2010,1,6923,0.8664159117999999 2010,1,6924,0.8644463599 2010,1,6925,0.8620494920999999 2010,1,6926,0.8624768076999999 2010,1,6927,0.8644463599 2010,1,6928,0.8664159117999999 -2010,1,6929,0.8703550161999999 +2010,1,6929,0.8703550162 2010,1,6930,0.8762636728 -2010,1,6931,0.8802027765999999 -2010,1,6932,0.8821723288 -2010,1,6933,0.8841418812999998 -2010,1,6934,0.8841418812999998 +2010,1,6931,0.8802027766 +2010,1,6932,0.8821723288000001 +2010,1,6933,0.8841418812999999 +2010,1,6934,0.8841418812999999 2010,1,6935,0.8861114332 2010,1,6936,0.8861114332 2010,1,6937,0.8880809851 @@ -6942,17 +6942,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6941,0.8880809851 2010,1,6942,0.8900505372999999 2010,1,6943,0.8880809851 -2010,1,6944,0.8841418812999998 -2010,1,6945,0.8802027765999999 +2010,1,6944,0.8841418812999999 +2010,1,6945,0.8802027766 2010,1,6946,0.8742941203 -2010,1,6947,0.8703550161999999 -2010,1,6948,0.8683854642999999 -2010,1,6949,0.8703550161999999 -2010,1,6950,0.8703550161999999 +2010,1,6947,0.8703550162 +2010,1,6948,0.8683854643 +2010,1,6949,0.8703550162 +2010,1,6950,0.8703550162 2010,1,6951,0.8723245680999999 2010,1,6952,0.8742941203 -2010,1,6953,0.8782332246999999 -2010,1,6954,0.8821723288 +2010,1,6953,0.8782332247 +2010,1,6954,0.8821723288000001 2010,1,6955,0.8861114332 2010,1,6956,0.8880809851 2010,1,6957,0.8900505372999999 @@ -6969,13 +6969,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6968,0.8939896417000001 2010,1,6969,0.8900505372999999 2010,1,6970,0.8880809851 -2010,1,6971,0.8841418812999998 -2010,1,6972,0.8821723288 -2010,1,6973,0.8802027765999999 -2010,1,6974,0.8802027765999999 -2010,1,6975,0.8802027765999999 -2010,1,6976,0.8821723288 -2010,1,6977,0.8841418812999998 +2010,1,6971,0.8841418812999999 +2010,1,6972,0.8821723288000001 +2010,1,6973,0.8802027766 +2010,1,6974,0.8802027766 +2010,1,6975,0.8802027766 +2010,1,6976,0.8821723288000001 +2010,1,6977,0.8841418812999999 2010,1,6978,0.8880809851 2010,1,6979,0.8880809851 2010,1,6980,0.8900505372999999 @@ -6992,14 +6992,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,6991,0.8939896417000001 2010,1,6992,0.8920200892 2010,1,6993,0.8880809851 -2010,1,6994,0.8821723288 +2010,1,6994,0.8821723288000001 2010,1,6995,0.8762636728 2010,1,6996,0.8742941203 2010,1,6997,0.8723245680999999 2010,1,6998,0.8723245680999999 2010,1,6999,0.8742941203 2010,1,7000,0.8762636728 -2010,1,7001,0.8802027765999999 +2010,1,7001,0.8802027766 2010,1,7002,0.8861114332 2010,1,7003,0.8880809851 2010,1,7004,0.8900505372999999 @@ -7016,16 +7016,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7015,0.8920200892 2010,1,7016,0.8900505372999999 2010,1,7017,0.8861114332 -2010,1,7018,0.8802027765999999 +2010,1,7018,0.8802027766 2010,1,7019,0.8742941203 2010,1,7020,0.8723245680999999 -2010,1,7021,0.8703550161999999 +2010,1,7021,0.8703550162 2010,1,7022,0.8723245680999999 2010,1,7023,0.8723245680999999 2010,1,7024,0.8742941203 -2010,1,7025,0.8782332246999999 -2010,1,7026,0.8821723288 -2010,1,7027,0.8841418812999998 +2010,1,7025,0.8782332247 +2010,1,7026,0.8821723288000001 +2010,1,7027,0.8841418812999999 2010,1,7028,0.8861114332 2010,1,7029,0.8880809851 2010,1,7030,0.8900505372999999 @@ -7039,15 +7039,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7038,0.8939896417000001 2010,1,7039,0.8939896417000001 2010,1,7040,0.8900505372999999 -2010,1,7041,0.8841418812999998 -2010,1,7042,0.8802027765999999 -2010,1,7043,0.8782332246999999 +2010,1,7041,0.8841418812999999 +2010,1,7042,0.8802027766 +2010,1,7043,0.8782332247 2010,1,7044,0.8762636728 2010,1,7045,0.8742941203 2010,1,7046,0.8742941203 2010,1,7047,0.8762636728 -2010,1,7048,0.8782332246999999 -2010,1,7049,0.8821723288 +2010,1,7048,0.8782332247 +2010,1,7049,0.8821723288000001 2010,1,7050,0.8861114332 2010,1,7051,0.8880809851 2010,1,7052,0.8900505372999999 @@ -7056,22 +7056,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7055,0.8939896417000001 2010,1,7056,0.8959591936 2010,1,7057,0.8959591936 -2010,1,7058,0.8979287454999999 -2010,1,7059,0.8979287454999999 +2010,1,7058,0.8979287455 +2010,1,7059,0.8979287455 2010,1,7060,0.8990000001999999 2010,1,7061,0.8990000001999999 2010,1,7062,0.8990000001999999 -2010,1,7063,0.8979287454999999 +2010,1,7063,0.8979287455 2010,1,7064,0.8939896417000001 2010,1,7065,0.8900505372999999 -2010,1,7066,0.8841418812999998 -2010,1,7067,0.8802027765999999 -2010,1,7068,0.8782332246999999 +2010,1,7066,0.8841418812999999 +2010,1,7067,0.8802027766 +2010,1,7068,0.8782332247 2010,1,7069,0.8762636728 2010,1,7070,0.8762636728 -2010,1,7071,0.8782332246999999 -2010,1,7072,0.8802027765999999 -2010,1,7073,0.8821723288 +2010,1,7071,0.8782332247 +2010,1,7072,0.8802027766 +2010,1,7073,0.8821723288000001 2010,1,7074,0.8861114332 2010,1,7075,0.8880809851 2010,1,7076,0.8900505372999999 @@ -7089,13 +7089,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7088,0.8939896417000001 2010,1,7089,0.8900505372999999 2010,1,7090,0.8861114332 -2010,1,7091,0.8821723288 -2010,1,7092,0.8802027765999999 -2010,1,7093,0.8782332246999999 -2010,1,7094,0.8782332246999999 -2010,1,7095,0.8802027765999999 -2010,1,7096,0.8821723288 -2010,1,7097,0.8841418812999998 +2010,1,7091,0.8821723288000001 +2010,1,7092,0.8802027766 +2010,1,7093,0.8782332247 +2010,1,7094,0.8782332247 +2010,1,7095,0.8802027766 +2010,1,7096,0.8821723288000001 +2010,1,7097,0.8841418812999999 2010,1,7098,0.8880809851 2010,1,7099,0.8900505372999999 2010,1,7100,0.8920200892 @@ -7112,14 +7112,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7111,0.8939896417000001 2010,1,7112,0.8900505372999999 2010,1,7113,0.8861114332 -2010,1,7114,0.8821723288 -2010,1,7115,0.8802027765999999 -2010,1,7116,0.8782332246999999 +2010,1,7114,0.8821723288000001 +2010,1,7115,0.8802027766 +2010,1,7116,0.8782332247 2010,1,7117,0.8762636728 2010,1,7118,0.8762636728 2010,1,7119,0.8762636728 -2010,1,7120,0.8782332246999999 -2010,1,7121,0.8821723288 +2010,1,7120,0.8782332247 +2010,1,7121,0.8821723288000001 2010,1,7122,0.8861114332 2010,1,7123,0.8861114332 2010,1,7124,0.8880809851 @@ -7138,15 +7138,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7137,0.8920200892 2010,1,7138,0.8880809851 2010,1,7139,0.8861114332 -2010,1,7140,0.8841418812999998 -2010,1,7141,0.8821723288 -2010,1,7142,0.8821723288 -2010,1,7143,0.8821723288 -2010,1,7144,0.8841418812999998 +2010,1,7140,0.8841418812999999 +2010,1,7141,0.8821723288000001 +2010,1,7142,0.8821723288000001 +2010,1,7143,0.8821723288000001 +2010,1,7144,0.8841418812999999 2010,1,7145,0.8900505372999999 2010,1,7146,0.8939896417000001 -2010,1,7147,0.8979287454999999 -2010,1,7148,0.8979287454999999 +2010,1,7147,0.8979287455 +2010,1,7148,0.8979287455 2010,1,7149,0.8990000001999999 2010,1,7150,0.8990000001999999 2010,1,7151,0.8990000001999999 @@ -7162,14 +7162,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7161,0.8939896417000001 2010,1,7162,0.8900505372999999 2010,1,7163,0.8861114332 -2010,1,7164,0.8841418812999998 -2010,1,7165,0.8821723288 -2010,1,7166,0.8821723288 -2010,1,7167,0.8821723288 -2010,1,7168,0.8841418812999998 +2010,1,7164,0.8841418812999999 +2010,1,7165,0.8821723288000001 +2010,1,7166,0.8821723288000001 +2010,1,7167,0.8821723288000001 +2010,1,7168,0.8841418812999999 2010,1,7169,0.8900505372999999 2010,1,7170,0.8959591936 -2010,1,7171,0.8979287454999999 +2010,1,7171,0.8979287455 2010,1,7172,0.8990000001999999 2010,1,7173,0.8990000001999999 2010,1,7174,0.8990000001999999 @@ -7184,90 +7184,90 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7183,0.8990000001999999 2010,1,7184,0.8959591936 2010,1,7185,0.8880809851 -2010,1,7186,0.8821723288 +2010,1,7186,0.8821723288000001 2010,1,7187,0.8762636728 2010,1,7188,0.8742941203 2010,1,7189,0.8742941203 2010,1,7190,0.8742941203 2010,1,7191,0.8762636728 -2010,1,7192,0.8802027765999999 +2010,1,7192,0.8802027766 2010,1,7193,0.8861114332 2010,1,7194,0.8920200892 2010,1,7195,0.8959591936 -2010,1,7196,0.8979287454999999 -2010,1,7197,0.8979287454999999 +2010,1,7196,0.8979287455 +2010,1,7197,0.8979287455 2010,1,7198,0.8990000001999999 2010,1,7199,0.8990000001999999 2010,1,7200,0.8990000001999999 2010,1,7201,0.8990000001999999 2010,1,7202,0.8990000001999999 -2010,1,7203,0.8979287454999999 -2010,1,7204,0.8979287454999999 -2010,1,7205,0.8979287454999999 -2010,1,7206,0.8979287454999999 +2010,1,7203,0.8979287455 +2010,1,7204,0.8979287455 +2010,1,7205,0.8979287455 +2010,1,7206,0.8979287455 2010,1,7207,0.8939896417000001 2010,1,7208,0.8900505372999999 2010,1,7209,0.8861114332 -2010,1,7210,0.8802027765999999 +2010,1,7210,0.8802027766 2010,1,7211,0.8742941203 -2010,1,7212,0.8703550161999999 -2010,1,7213,0.8683854642999999 -2010,1,7214,0.8683854642999999 -2010,1,7215,0.8703550161999999 +2010,1,7212,0.8703550162 +2010,1,7213,0.8683854643 +2010,1,7214,0.8683854643 +2010,1,7215,0.8703550162 2010,1,7216,0.8742941203 -2010,1,7217,0.8821723288 +2010,1,7217,0.8821723288000001 2010,1,7218,0.8880809851 2010,1,7219,0.8920200892 2010,1,7220,0.8939896417000001 2010,1,7221,0.8939896417000001 2010,1,7222,0.8959591936 2010,1,7223,0.8959591936 -2010,1,7224,0.8979287454999999 -2010,1,7225,0.8979287454999999 -2010,1,7226,0.8979287454999999 -2010,1,7227,0.8979287454999999 -2010,1,7228,0.8979287454999999 -2010,1,7229,0.8979287454999999 -2010,1,7230,0.8979287454999999 +2010,1,7224,0.8979287455 +2010,1,7225,0.8979287455 +2010,1,7226,0.8979287455 +2010,1,7227,0.8979287455 +2010,1,7228,0.8979287455 +2010,1,7229,0.8979287455 +2010,1,7230,0.8979287455 2010,1,7231,0.8959591936 2010,1,7232,0.8920200892 2010,1,7233,0.8861114332 -2010,1,7234,0.8802027765999999 +2010,1,7234,0.8802027766 2010,1,7235,0.8762636728 2010,1,7236,0.8723245680999999 -2010,1,7237,0.8703550161999999 -2010,1,7238,0.8683854642999999 -2010,1,7239,0.8703550161999999 +2010,1,7237,0.8703550162 +2010,1,7238,0.8683854643 +2010,1,7239,0.8703550162 2010,1,7240,0.8742941203 -2010,1,7241,0.8821723288 +2010,1,7241,0.8821723288000001 2010,1,7242,0.8880809851 2010,1,7243,0.8920200892 2010,1,7244,0.8939896417000001 2010,1,7245,0.8939896417000001 2010,1,7246,0.8959591936 -2010,1,7247,0.8979287454999999 -2010,1,7248,0.8979287454999999 -2010,1,7249,0.8979287454999999 -2010,1,7250,0.8979287454999999 -2010,1,7251,0.8979287454999999 +2010,1,7247,0.8979287455 +2010,1,7248,0.8979287455 +2010,1,7249,0.8979287455 +2010,1,7250,0.8979287455 +2010,1,7251,0.8979287455 2010,1,7252,0.8990000001999999 2010,1,7253,0.8990000001999999 2010,1,7254,0.8990000001999999 2010,1,7255,0.8990000001999999 -2010,1,7256,0.8979287454999999 +2010,1,7256,0.8979287455 2010,1,7257,0.8939896417000001 2010,1,7258,0.8900505372999999 2010,1,7259,0.8861114332 -2010,1,7260,0.8841418812999998 -2010,1,7261,0.8821723288 -2010,1,7262,0.8821723288 -2010,1,7263,0.8841418812999998 +2010,1,7260,0.8841418812999999 +2010,1,7261,0.8821723288000001 +2010,1,7262,0.8821723288000001 +2010,1,7263,0.8841418812999999 2010,1,7264,0.8861114332 2010,1,7265,0.8900505372999999 2010,1,7266,0.8959591936 2010,1,7267,0.8959591936 2010,1,7268,0.8959591936 -2010,1,7269,0.8979287454999999 +2010,1,7269,0.8979287455 2010,1,7270,0.8990000001999999 2010,1,7271,0.8990000001999999 2010,1,7272,0.8990000001999999 @@ -7278,22 +7278,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7277,0.8990000001999999 2010,1,7278,0.8990000001999999 2010,1,7279,0.8990000001999999 -2010,1,7280,0.8979287454999999 +2010,1,7280,0.8979287455 2010,1,7281,0.8920200892 2010,1,7282,0.8861114332 -2010,1,7283,0.8841418812999998 -2010,1,7284,0.8821723288 -2010,1,7285,0.8802027765999999 -2010,1,7286,0.8802027765999999 -2010,1,7287,0.8802027765999999 -2010,1,7288,0.8821723288 +2010,1,7283,0.8841418812999999 +2010,1,7284,0.8821723288000001 +2010,1,7285,0.8802027766 +2010,1,7286,0.8802027766 +2010,1,7287,0.8802027766 +2010,1,7288,0.8821723288000001 2010,1,7289,0.8880809851 2010,1,7290,0.8920200892 2010,1,7291,0.8959591936 2010,1,7292,0.8959591936 -2010,1,7293,0.8979287454999999 -2010,1,7294,0.8979287454999999 -2010,1,7295,0.8979287454999999 +2010,1,7293,0.8979287455 +2010,1,7294,0.8979287455 +2010,1,7295,0.8979287455 2010,1,7296,0.8990000001999999 2010,1,7297,0.8990000001999999 2010,1,7298,0.8990000001999999 @@ -7304,14 +7304,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7303,0.8990000001999999 2010,1,7304,0.8959591936 2010,1,7305,0.8900505372999999 -2010,1,7306,0.8841418812999998 -2010,1,7307,0.8782332246999999 +2010,1,7306,0.8841418812999999 +2010,1,7307,0.8782332247 2010,1,7308,0.8742941203 2010,1,7309,0.8723245680999999 2010,1,7310,0.8723245680999999 2010,1,7311,0.8723245680999999 2010,1,7312,0.8762636728 -2010,1,7313,0.8841418812999998 +2010,1,7313,0.8841418812999999 2010,1,7314,0.8900505372999999 2010,1,7315,0.8920200892 2010,1,7316,0.8920200892 @@ -7321,22 +7321,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7320,0.8959591936 2010,1,7321,0.8959591936 2010,1,7322,0.8959591936 -2010,1,7323,0.8979287454999999 -2010,1,7324,0.8979287454999999 -2010,1,7325,0.8979287454999999 -2010,1,7326,0.8979287454999999 +2010,1,7323,0.8979287455 +2010,1,7324,0.8979287455 +2010,1,7325,0.8979287455 +2010,1,7326,0.8979287455 2010,1,7327,0.8939896417000001 2010,1,7328,0.8880809851 -2010,1,7329,0.8802027765999999 +2010,1,7329,0.8802027766 2010,1,7330,0.8742941203 -2010,1,7331,0.8683854642999999 +2010,1,7331,0.8683854643 2010,1,7332,0.8644463599 2010,1,7333,0.8624768076999999 -2010,1,7334,0.8605072557999999 +2010,1,7334,0.8605072558 2010,1,7335,0.8624768076999999 -2010,1,7336,0.8683854642999999 +2010,1,7336,0.8683854643 2010,1,7337,0.8762636728 -2010,1,7338,0.8821723288 +2010,1,7338,0.8821723288000001 2010,1,7339,0.8861114332 2010,1,7340,0.8861114332 2010,1,7341,0.8861114332 @@ -7350,9 +7350,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7349,0.8880809851 2010,1,7350,0.8880809851 2010,1,7351,0.8861114332 -2010,1,7352,0.8802027765999999 +2010,1,7352,0.8802027766 2010,1,7353,0.8742941203 -2010,1,7354,0.8683854642999999 +2010,1,7354,0.8683854643 2010,1,7355,0.8624768076999999 2010,1,7356,0.8585377039 2010,1,7357,0.8556186474999999 @@ -7360,57 +7360,57 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7359,0.8585377039 2010,1,7360,0.8624768076999999 2010,1,7361,0.8723245680999999 -2010,1,7362,0.8782332246999999 -2010,1,7363,0.8782332246999999 -2010,1,7364,0.8782332246999999 -2010,1,7365,0.8782332246999999 -2010,1,7366,0.8802027765999999 -2010,1,7367,0.8821723288 -2010,1,7368,0.8821723288 -2010,1,7369,0.8841418812999998 -2010,1,7370,0.8841418812999998 -2010,1,7371,0.8841418812999998 -2010,1,7372,0.8841418812999998 +2010,1,7362,0.8782332247 +2010,1,7363,0.8782332247 +2010,1,7364,0.8782332247 +2010,1,7365,0.8782332247 +2010,1,7366,0.8802027766 +2010,1,7367,0.8821723288000001 +2010,1,7368,0.8821723288000001 +2010,1,7369,0.8841418812999999 +2010,1,7370,0.8841418812999999 +2010,1,7371,0.8841418812999999 +2010,1,7372,0.8841418812999999 2010,1,7373,0.8861114332 2010,1,7374,0.8861114332 -2010,1,7375,0.8841418812999998 -2010,1,7376,0.8782332246999999 +2010,1,7375,0.8841418812999999 +2010,1,7376,0.8782332247 2010,1,7377,0.8723245680999999 2010,1,7378,0.8644463599 2010,1,7379,0.8585377039 2010,1,7380,0.8556186474999999 2010,1,7381,0.8556186474999999 2010,1,7382,0.8585377039 -2010,1,7383,0.8605072557999999 +2010,1,7383,0.8605072558 2010,1,7384,0.8624768076999999 -2010,1,7385,0.8683854642999999 +2010,1,7385,0.8683854643 2010,1,7386,0.8723245680999999 2010,1,7387,0.8742941203 2010,1,7388,0.8762636728 -2010,1,7389,0.8782332246999999 -2010,1,7390,0.8782332246999999 -2010,1,7391,0.8802027765999999 -2010,1,7392,0.8802027765999999 -2010,1,7393,0.8821723288 -2010,1,7394,0.8841418812999998 -2010,1,7395,0.8841418812999998 +2010,1,7389,0.8782332247 +2010,1,7390,0.8782332247 +2010,1,7391,0.8802027766 +2010,1,7392,0.8802027766 +2010,1,7393,0.8821723288000001 +2010,1,7394,0.8841418812999999 +2010,1,7395,0.8841418812999999 2010,1,7396,0.8861114332 2010,1,7397,0.8861114332 2010,1,7398,0.8880809851 2010,1,7399,0.8861114332 -2010,1,7400,0.8802027765999999 +2010,1,7400,0.8802027766 2010,1,7401,0.8742941203 2010,1,7402,0.8664159117999999 2010,1,7403,0.8624768076999999 -2010,1,7404,0.8605072557999999 +2010,1,7404,0.8605072558 2010,1,7405,0.8585377039 -2010,1,7406,0.8605072557999999 +2010,1,7406,0.8605072558 2010,1,7407,0.8624768076999999 -2010,1,7408,0.8683854642999999 +2010,1,7408,0.8683854643 2010,1,7409,0.8762636728 -2010,1,7410,0.8802027765999999 -2010,1,7411,0.8841418812999998 -2010,1,7412,0.8841418812999998 +2010,1,7410,0.8802027766 +2010,1,7411,0.8841418812999999 +2010,1,7412,0.8841418812999999 2010,1,7413,0.8861114332 2010,1,7414,0.8861114332 2010,1,7415,0.8880809851 @@ -7423,14 +7423,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7422,0.8939896417000001 2010,1,7423,0.8939896417000001 2010,1,7424,0.8880809851 -2010,1,7425,0.8821723288 -2010,1,7426,0.8782332246999999 +2010,1,7425,0.8821723288000001 +2010,1,7426,0.8782332247 2010,1,7427,0.8762636728 2010,1,7428,0.8762636728 2010,1,7429,0.8762636728 -2010,1,7430,0.8782332246999999 -2010,1,7431,0.8802027765999999 -2010,1,7432,0.8821723288 +2010,1,7430,0.8782332247 +2010,1,7431,0.8802027766 +2010,1,7432,0.8821723288000001 2010,1,7433,0.8861114332 2010,1,7434,0.8900505372999999 2010,1,7435,0.8920200892 @@ -7441,20 +7441,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7440,0.8939896417000001 2010,1,7441,0.8959591936 2010,1,7442,0.8959591936 -2010,1,7443,0.8979287454999999 -2010,1,7444,0.8979287454999999 +2010,1,7443,0.8979287455 +2010,1,7444,0.8979287455 2010,1,7445,0.8990000001999999 2010,1,7446,0.8990000001999999 -2010,1,7447,0.8979287454999999 +2010,1,7447,0.8979287455 2010,1,7448,0.8939896417000001 2010,1,7449,0.8900505372999999 -2010,1,7450,0.8841418812999998 -2010,1,7451,0.8821723288 -2010,1,7452,0.8802027765999999 -2010,1,7453,0.8782332246999999 -2010,1,7454,0.8802027765999999 -2010,1,7455,0.8821723288 -2010,1,7456,0.8841418812999998 +2010,1,7450,0.8841418812999999 +2010,1,7451,0.8821723288000001 +2010,1,7452,0.8802027766 +2010,1,7453,0.8782332247 +2010,1,7454,0.8802027766 +2010,1,7455,0.8821723288000001 +2010,1,7456,0.8841418812999999 2010,1,7457,0.8880809851 2010,1,7458,0.8900505372999999 2010,1,7459,0.8920200892 @@ -7462,7 +7462,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7461,0.8920200892 2010,1,7462,0.8939896417000001 2010,1,7463,0.8959591936 -2010,1,7464,0.8979287454999999 +2010,1,7464,0.8979287455 2010,1,7465,0.8990000001999999 2010,1,7466,0.8990000001999999 2010,1,7467,0.8990000001999999 @@ -7479,7 +7479,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7478,0.8900505372999999 2010,1,7479,0.8920200892 2010,1,7480,0.8939896417000001 -2010,1,7481,0.8979287454999999 +2010,1,7481,0.8979287455 2010,1,7482,0.8990000001999999 2010,1,7483,0.8990000001999999 2010,1,7484,0.8990000001999999 @@ -7503,7 +7503,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7502,0.8880809851 2010,1,7503,0.8900505372999999 2010,1,7504,0.8920200892 -2010,1,7505,0.8979287454999999 +2010,1,7505,0.8979287455 2010,1,7506,0.8990000001999999 2010,1,7507,0.8990000001999999 2010,1,7508,0.8990000001999999 @@ -7519,7 +7519,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7518,0.8990000001999999 2010,1,7519,0.8990000001999999 2010,1,7520,0.8990000001999999 -2010,1,7521,0.8979287454999999 +2010,1,7521,0.8979287455 2010,1,7522,0.8939896417000001 2010,1,7523,0.8920200892 2010,1,7524,0.8920200892 @@ -7527,7 +7527,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7526,0.8900505372999999 2010,1,7527,0.8920200892 2010,1,7528,0.8939896417000001 -2010,1,7529,0.8979287454999999 +2010,1,7529,0.8979287455 2010,1,7530,0.8990000001999999 2010,1,7531,0.8990000001999999 2010,1,7532,0.8990000001999999 @@ -7543,13 +7543,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7542,0.8990000001999999 2010,1,7543,0.8990000001999999 2010,1,7544,0.8990000001999999 -2010,1,7545,0.8979287454999999 +2010,1,7545,0.8979287455 2010,1,7546,0.8920200892 2010,1,7547,0.8861114332 -2010,1,7548,0.8841418812999998 -2010,1,7549,0.8821723288 -2010,1,7550,0.8821723288 -2010,1,7551,0.8841418812999998 +2010,1,7548,0.8841418812999999 +2010,1,7549,0.8821723288000001 +2010,1,7550,0.8821723288000001 +2010,1,7551,0.8841418812999999 2010,1,7552,0.8880809851 2010,1,7553,0.8959591936 2010,1,7554,0.8990000001999999 @@ -7567,13 +7567,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7566,0.8990000001999999 2010,1,7567,0.8990000001999999 2010,1,7568,0.8990000001999999 -2010,1,7569,0.8979287454999999 +2010,1,7569,0.8979287455 2010,1,7570,0.8920200892 2010,1,7571,0.8861114332 -2010,1,7572,0.8841418812999998 -2010,1,7573,0.8821723288 -2010,1,7574,0.8821723288 -2010,1,7575,0.8841418812999998 +2010,1,7572,0.8841418812999999 +2010,1,7573,0.8821723288000001 +2010,1,7574,0.8821723288000001 +2010,1,7575,0.8841418812999999 2010,1,7576,0.8880809851 2010,1,7577,0.8939896417000001 2010,1,7578,0.8990000001999999 @@ -7593,12 +7593,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7592,0.8990000001999999 2010,1,7593,0.8939896417000001 2010,1,7594,0.8880809851 -2010,1,7595,0.8821723288 -2010,1,7596,0.8782332246999999 +2010,1,7595,0.8821723288000001 +2010,1,7596,0.8782332247 2010,1,7597,0.8762636728 2010,1,7598,0.8762636728 -2010,1,7599,0.8782332246999999 -2010,1,7600,0.8841418812999998 +2010,1,7599,0.8782332247 +2010,1,7600,0.8841418812999999 2010,1,7601,0.8920200892 2010,1,7602,0.8959591936 2010,1,7603,0.8990000001999999 @@ -7610,19 +7610,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7609,0.8990000001999999 2010,1,7610,0.8990000001999999 2010,1,7611,0.8990000001999999 -2010,1,7612,0.8979287454999999 -2010,1,7613,0.8979287454999999 -2010,1,7614,0.8979287454999999 -2010,1,7615,0.8979287454999999 +2010,1,7612,0.8979287455 +2010,1,7613,0.8979287455 +2010,1,7614,0.8979287455 +2010,1,7615,0.8979287455 2010,1,7616,0.8939896417000001 2010,1,7617,0.8880809851 -2010,1,7618,0.8841418812999998 -2010,1,7619,0.8782332246999999 +2010,1,7618,0.8841418812999999 +2010,1,7619,0.8782332247 2010,1,7620,0.8762636728 2010,1,7621,0.8742941203 2010,1,7622,0.8742941203 2010,1,7623,0.8762636728 -2010,1,7624,0.8802027765999999 +2010,1,7624,0.8802027766 2010,1,7625,0.8880809851 2010,1,7626,0.8920200892 2010,1,7627,0.8939896417000001 @@ -7632,21 +7632,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7631,0.8959591936 2010,1,7632,0.8959591936 2010,1,7633,0.8959591936 -2010,1,7634,0.8979287454999999 -2010,1,7635,0.8979287454999999 -2010,1,7636,0.8979287454999999 -2010,1,7637,0.8979287454999999 +2010,1,7634,0.8979287455 +2010,1,7635,0.8979287455 +2010,1,7636,0.8979287455 +2010,1,7637,0.8979287455 2010,1,7638,0.8990000001999999 -2010,1,7639,0.8979287454999999 +2010,1,7639,0.8979287455 2010,1,7640,0.8939896417000001 2010,1,7641,0.8880809851 -2010,1,7642,0.8821723288 -2010,1,7643,0.8782332246999999 +2010,1,7642,0.8821723288000001 +2010,1,7643,0.8782332247 2010,1,7644,0.8762636728 2010,1,7645,0.8742941203 2010,1,7646,0.8742941203 2010,1,7647,0.8762636728 -2010,1,7648,0.8802027765999999 +2010,1,7648,0.8802027766 2010,1,7649,0.8861114332 2010,1,7650,0.8920200892 2010,1,7651,0.8939896417000001 @@ -7654,28 +7654,28 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7653,0.8939896417000001 2010,1,7654,0.8959591936 2010,1,7655,0.8959591936 -2010,1,7656,0.8979287454999999 -2010,1,7657,0.8979287454999999 -2010,1,7658,0.8979287454999999 -2010,1,7659,0.8979287454999999 -2010,1,7660,0.8979287454999999 -2010,1,7661,0.8979287454999999 -2010,1,7662,0.8979287454999999 -2010,1,7663,0.8979287454999999 +2010,1,7656,0.8979287455 +2010,1,7657,0.8979287455 +2010,1,7658,0.8979287455 +2010,1,7659,0.8979287455 +2010,1,7660,0.8979287455 +2010,1,7661,0.8979287455 +2010,1,7662,0.8979287455 +2010,1,7663,0.8979287455 2010,1,7664,0.8939896417000001 2010,1,7665,0.8900505372999999 -2010,1,7666,0.8841418812999998 -2010,1,7667,0.8802027765999999 -2010,1,7668,0.8782332246999999 +2010,1,7666,0.8841418812999999 +2010,1,7667,0.8802027766 +2010,1,7668,0.8782332247 2010,1,7669,0.8762636728 2010,1,7670,0.8762636728 -2010,1,7671,0.8782332246999999 -2010,1,7672,0.8821723288 +2010,1,7671,0.8782332247 +2010,1,7672,0.8821723288000001 2010,1,7673,0.8900505372999999 2010,1,7674,0.8939896417000001 2010,1,7675,0.8959591936 -2010,1,7676,0.8979287454999999 -2010,1,7677,0.8979287454999999 +2010,1,7676,0.8979287455 +2010,1,7677,0.8979287455 2010,1,7678,0.8990000001999999 2010,1,7679,0.8990000001999999 2010,1,7680,0.8990000001999999 @@ -7686,24 +7686,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7685,0.8990000001999999 2010,1,7686,0.8990000001999999 2010,1,7687,0.8990000001999999 -2010,1,7688,0.8979287454999999 +2010,1,7688,0.8979287455 2010,1,7689,0.8900505372999999 -2010,1,7690,0.8841418812999998 -2010,1,7691,0.8782332246999999 +2010,1,7690,0.8841418812999999 +2010,1,7691,0.8782332247 2010,1,7692,0.8742941203 2010,1,7693,0.8723245680999999 2010,1,7694,0.8723245680999999 2010,1,7695,0.8742941203 -2010,1,7696,0.8782332246999999 +2010,1,7696,0.8782332247 2010,1,7697,0.8861114332 2010,1,7698,0.8900505372999999 2010,1,7699,0.8920200892 2010,1,7700,0.8939896417000001 2010,1,7701,0.8959591936 2010,1,7702,0.8959591936 -2010,1,7703,0.8979287454999999 -2010,1,7704,0.8979287454999999 -2010,1,7705,0.8979287454999999 +2010,1,7703,0.8979287455 +2010,1,7704,0.8979287455 +2010,1,7705,0.8979287455 2010,1,7706,0.8990000001999999 2010,1,7707,0.8990000001999999 2010,1,7708,0.8990000001999999 @@ -7712,20 +7712,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7711,0.8990000001999999 2010,1,7712,0.8959591936 2010,1,7713,0.8880809851 -2010,1,7714,0.8821723288 +2010,1,7714,0.8821723288000001 2010,1,7715,0.8762636728 2010,1,7716,0.8723245680999999 -2010,1,7717,0.8703550161999999 -2010,1,7718,0.8703550161999999 +2010,1,7717,0.8703550162 +2010,1,7718,0.8703550162 2010,1,7719,0.8723245680999999 -2010,1,7720,0.8782332246999999 +2010,1,7720,0.8782332247 2010,1,7721,0.8861114332 2010,1,7722,0.8900505372999999 2010,1,7723,0.8920200892 2010,1,7724,0.8939896417000001 -2010,1,7725,0.8979287454999999 -2010,1,7726,0.8979287454999999 -2010,1,7727,0.8979287454999999 +2010,1,7725,0.8979287455 +2010,1,7726,0.8979287455 +2010,1,7727,0.8979287455 2010,1,7728,0.8990000001999999 2010,1,7729,0.8990000001999999 2010,1,7730,0.8990000001999999 @@ -7734,7 +7734,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7733,0.8990000001999999 2010,1,7734,0.8990000001999999 2010,1,7735,0.8990000001999999 -2010,1,7736,0.8979287454999999 +2010,1,7736,0.8979287455 2010,1,7737,0.8939896417000001 2010,1,7738,0.8920200892 2010,1,7739,0.8900505372999999 @@ -7744,11 +7744,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7743,0.8900505372999999 2010,1,7744,0.8920200892 2010,1,7745,0.8939896417000001 -2010,1,7746,0.8979287454999999 -2010,1,7747,0.8979287454999999 -2010,1,7748,0.8979287454999999 -2010,1,7749,0.8979287454999999 -2010,1,7750,0.8979287454999999 +2010,1,7746,0.8979287455 +2010,1,7747,0.8979287455 +2010,1,7748,0.8979287455 +2010,1,7749,0.8979287455 +2010,1,7750,0.8979287455 2010,1,7751,0.8990000001999999 2010,1,7752,0.8990000001999999 2010,1,7753,0.8990000001999999 @@ -7759,7 +7759,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7758,0.8990000001999999 2010,1,7759,0.8990000001999999 2010,1,7760,0.8990000001999999 -2010,1,7761,0.8979287454999999 +2010,1,7761,0.8979287455 2010,1,7762,0.8959591936 2010,1,7763,0.8959591936 2010,1,7764,0.8939896417000001 @@ -7786,10 +7786,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7785,0.8990000001999999 2010,1,7786,0.8990000001999999 2010,1,7787,0.8990000001999999 -2010,1,7788,0.8979287454999999 -2010,1,7789,0.8979287454999999 -2010,1,7790,0.8979287454999999 -2010,1,7791,0.8979287454999999 +2010,1,7788,0.8979287455 +2010,1,7789,0.8979287455 +2010,1,7790,0.8979287455 +2010,1,7791,0.8979287455 2010,1,7792,0.8990000001999999 2010,1,7793,0.8990000001999999 2010,1,7794,0.8990000001999999 @@ -7810,10 +7810,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7809,0.8990000001999999 2010,1,7810,0.8990000001999999 2010,1,7811,0.8990000001999999 -2010,1,7812,0.8979287454999999 +2010,1,7812,0.8979287455 2010,1,7813,0.8959591936 2010,1,7814,0.8959591936 -2010,1,7815,0.8979287454999999 +2010,1,7815,0.8979287455 2010,1,7816,0.8990000001999999 2010,1,7817,0.8990000001999999 2010,1,7818,0.8990000001999999 @@ -7833,12 +7833,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7832,0.8990000001999999 2010,1,7833,0.8990000001999999 2010,1,7834,0.8990000001999999 -2010,1,7835,0.8979287454999999 +2010,1,7835,0.8979287455 2010,1,7836,0.8959591936 2010,1,7837,0.8939896417000001 2010,1,7838,0.8939896417000001 2010,1,7839,0.8959591936 -2010,1,7840,0.8979287454999999 +2010,1,7840,0.8979287455 2010,1,7841,0.8990000001999999 2010,1,7842,0.8990000001999999 2010,1,7843,0.8990000001999999 @@ -7886,7 +7886,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7885,0.8920200892 2010,1,7886,0.8920200892 2010,1,7887,0.8939896417000001 -2010,1,7888,0.8979287454999999 +2010,1,7888,0.8979287455 2010,1,7889,0.8990000001999999 2010,1,7890,0.8990000001999999 2010,1,7891,0.8990000001999999 @@ -7904,7 +7904,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7903,0.8990000001999999 2010,1,7904,0.8990000001999999 2010,1,7905,0.8990000001999999 -2010,1,7906,0.8979287454999999 +2010,1,7906,0.8979287455 2010,1,7907,0.8920200892 2010,1,7908,0.8900505372999999 2010,1,7909,0.8880809851 @@ -7933,7 +7933,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7932,0.8939896417000001 2010,1,7933,0.8939896417000001 2010,1,7934,0.8959591936 -2010,1,7935,0.8979287454999999 +2010,1,7935,0.8979287455 2010,1,7936,0.8990000001999999 2010,1,7937,0.8990000001999999 2010,1,7938,0.8990000001999999 @@ -7978,10 +7978,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7977,0.8990000001999999 2010,1,7978,0.8990000001999999 2010,1,7979,0.8990000001999999 -2010,1,7980,0.8979287454999999 +2010,1,7980,0.8979287455 2010,1,7981,0.8959591936 2010,1,7982,0.8959591936 -2010,1,7983,0.8979287454999999 +2010,1,7983,0.8979287455 2010,1,7984,0.8990000001999999 2010,1,7985,0.8990000001999999 2010,1,7986,0.8990000001999999 @@ -8000,13 +8000,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,7999,0.8990000001999999 2010,1,8000,0.8990000001999999 2010,1,8001,0.8990000001999999 -2010,1,8002,0.8979287454999999 +2010,1,8002,0.8979287455 2010,1,8003,0.8939896417000001 2010,1,8004,0.8920200892 2010,1,8005,0.8900505372999999 2010,1,8006,0.8920200892 2010,1,8007,0.8939896417000001 -2010,1,8008,0.8979287454999999 +2010,1,8008,0.8979287455 2010,1,8009,0.8990000001999999 2010,1,8010,0.8990000001999999 2010,1,8011,0.8990000001999999 @@ -8050,18 +8050,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8049,0.8959591936 2010,1,8050,0.8900505372999999 2010,1,8051,0.8861114332 -2010,1,8052,0.8841418812999998 -2010,1,8053,0.8841418812999998 -2010,1,8054,0.8821723288 -2010,1,8055,0.8841418812999998 +2010,1,8052,0.8841418812999999 +2010,1,8053,0.8841418812999999 +2010,1,8054,0.8821723288000001 +2010,1,8055,0.8841418812999999 2010,1,8056,0.8880809851 2010,1,8057,0.8920200892 2010,1,8058,0.8959591936 2010,1,8059,0.8959591936 2010,1,8060,0.8959591936 -2010,1,8061,0.8979287454999999 -2010,1,8062,0.8979287454999999 -2010,1,8063,0.8979287454999999 +2010,1,8061,0.8979287455 +2010,1,8062,0.8979287455 +2010,1,8063,0.8979287455 2010,1,8064,0.8990000001999999 2010,1,8065,0.8990000001999999 2010,1,8066,0.8990000001999999 @@ -8071,7 +8071,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8070,0.8990000001999999 2010,1,8071,0.8990000001999999 2010,1,8072,0.8990000001999999 -2010,1,8073,0.8979287454999999 +2010,1,8073,0.8979287455 2010,1,8074,0.8939896417000001 2010,1,8075,0.8880809851 2010,1,8076,0.8861114332 @@ -8081,7 +8081,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8080,0.8939896417000001 2010,1,8081,0.8959591936 2010,1,8082,0.8959591936 -2010,1,8083,0.8979287454999999 +2010,1,8083,0.8979287455 2010,1,8084,0.8990000001999999 2010,1,8085,0.8990000001999999 2010,1,8086,0.8990000001999999 @@ -8095,22 +8095,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8094,0.8990000001999999 2010,1,8095,0.8990000001999999 2010,1,8096,0.8990000001999999 -2010,1,8097,0.8979287454999999 +2010,1,8097,0.8979287455 2010,1,8098,0.8939896417000001 2010,1,8099,0.8900505372999999 -2010,1,8100,0.8841418812999998 -2010,1,8101,0.8821723288 -2010,1,8102,0.8802027765999999 -2010,1,8103,0.8821723288 +2010,1,8100,0.8841418812999999 +2010,1,8101,0.8821723288000001 +2010,1,8102,0.8802027766 +2010,1,8103,0.8821723288000001 2010,1,8104,0.8880809851 2010,1,8105,0.8920200892 2010,1,8106,0.8939896417000001 2010,1,8107,0.8959591936 -2010,1,8108,0.8979287454999999 -2010,1,8109,0.8979287454999999 -2010,1,8110,0.8979287454999999 -2010,1,8111,0.8979287454999999 -2010,1,8112,0.8979287454999999 +2010,1,8108,0.8979287455 +2010,1,8109,0.8979287455 +2010,1,8110,0.8979287455 +2010,1,8111,0.8979287455 +2010,1,8112,0.8979287455 2010,1,8113,0.8990000001999999 2010,1,8114,0.8990000001999999 2010,1,8115,0.8990000001999999 @@ -8124,15 +8124,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8123,0.8920200892 2010,1,8124,0.8900505372999999 2010,1,8125,0.8880809851 -2010,1,8126,0.8841418812999998 -2010,1,8127,0.8841418812999998 +2010,1,8126,0.8841418812999999 +2010,1,8127,0.8841418812999999 2010,1,8128,0.8880809851 2010,1,8129,0.8920200892 2010,1,8130,0.8939896417000001 2010,1,8131,0.8959591936 -2010,1,8132,0.8979287454999999 -2010,1,8133,0.8979287454999999 -2010,1,8134,0.8979287454999999 +2010,1,8132,0.8979287455 +2010,1,8133,0.8979287455 +2010,1,8134,0.8979287455 2010,1,8135,0.8990000001999999 2010,1,8136,0.8990000001999999 2010,1,8137,0.8990000001999999 @@ -8148,7 +8148,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8147,0.8900505372999999 2010,1,8148,0.8880809851 2010,1,8149,0.8861114332 -2010,1,8150,0.8841418812999998 +2010,1,8150,0.8841418812999999 2010,1,8151,0.8861114332 2010,1,8152,0.8900505372999999 2010,1,8153,0.8959591936 @@ -8167,20 +8167,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8166,0.8990000001999999 2010,1,8167,0.8990000001999999 2010,1,8168,0.8990000001999999 -2010,1,8169,0.8979287454999999 +2010,1,8169,0.8979287455 2010,1,8170,0.8900505372999999 -2010,1,8171,0.8841418812999998 -2010,1,8172,0.8802027765999999 -2010,1,8173,0.8782332246999999 +2010,1,8171,0.8841418812999999 +2010,1,8172,0.8802027766 +2010,1,8173,0.8782332247 2010,1,8174,0.8762636728 -2010,1,8175,0.8782332246999999 -2010,1,8176,0.8841418812999998 +2010,1,8175,0.8782332247 +2010,1,8176,0.8841418812999999 2010,1,8177,0.8900505372999999 2010,1,8178,0.8939896417000001 2010,1,8179,0.8959591936 2010,1,8180,0.8959591936 -2010,1,8181,0.8979287454999999 -2010,1,8182,0.8979287454999999 +2010,1,8181,0.8979287455 +2010,1,8182,0.8979287455 2010,1,8183,0.8990000001999999 2010,1,8184,0.8990000001999999 2010,1,8185,0.8990000001999999 @@ -8195,15 +8195,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8194,0.8920200892 2010,1,8195,0.8880809851 2010,1,8196,0.8861114332 -2010,1,8197,0.8841418812999998 -2010,1,8198,0.8821723288 -2010,1,8199,0.8841418812999998 +2010,1,8197,0.8841418812999999 +2010,1,8198,0.8821723288000001 +2010,1,8199,0.8841418812999999 2010,1,8200,0.8900505372999999 2010,1,8201,0.8939896417000001 2010,1,8202,0.8959591936 2010,1,8203,0.8959591936 -2010,1,8204,0.8979287454999999 -2010,1,8205,0.8979287454999999 +2010,1,8204,0.8979287455 +2010,1,8205,0.8979287455 2010,1,8206,0.8990000001999999 2010,1,8207,0.8990000001999999 2010,1,8208,0.8990000001999999 @@ -8214,21 +8214,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8213,0.8990000001999999 2010,1,8214,0.8990000001999999 2010,1,8215,0.8990000001999999 -2010,1,8216,0.8979287454999999 +2010,1,8216,0.8979287455 2010,1,8217,0.8920200892 2010,1,8218,0.8880809851 -2010,1,8219,0.8841418812999998 -2010,1,8220,0.8821723288 -2010,1,8221,0.8802027765999999 -2010,1,8222,0.8821723288 -2010,1,8223,0.8841418812999998 +2010,1,8219,0.8841418812999999 +2010,1,8220,0.8821723288000001 +2010,1,8221,0.8802027766 +2010,1,8222,0.8821723288000001 +2010,1,8223,0.8841418812999999 2010,1,8224,0.8880809851 2010,1,8225,0.8920200892 2010,1,8226,0.8959591936 2010,1,8227,0.8959591936 -2010,1,8228,0.8979287454999999 -2010,1,8229,0.8979287454999999 -2010,1,8230,0.8979287454999999 +2010,1,8228,0.8979287455 +2010,1,8229,0.8979287455 +2010,1,8230,0.8979287455 2010,1,8231,0.8990000001999999 2010,1,8232,0.8990000001999999 2010,1,8233,0.8990000001999999 @@ -8238,14 +8238,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8237,0.8990000001999999 2010,1,8238,0.8990000001999999 2010,1,8239,0.8990000001999999 -2010,1,8240,0.8979287454999999 +2010,1,8240,0.8979287455 2010,1,8241,0.8939896417000001 2010,1,8242,0.8880809851 -2010,1,8243,0.8841418812999998 -2010,1,8244,0.8821723288 -2010,1,8245,0.8802027765999999 -2010,1,8246,0.8802027765999999 -2010,1,8247,0.8821723288 +2010,1,8243,0.8841418812999999 +2010,1,8244,0.8821723288000001 +2010,1,8245,0.8802027766 +2010,1,8246,0.8802027766 +2010,1,8247,0.8821723288000001 2010,1,8248,0.8861114332 2010,1,8249,0.8900505372999999 2010,1,8250,0.8939896417000001 @@ -8253,8 +8253,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8252,0.8959591936 2010,1,8253,0.8959591936 2010,1,8254,0.8959591936 -2010,1,8255,0.8979287454999999 -2010,1,8256,0.8979287454999999 +2010,1,8255,0.8979287455 +2010,1,8256,0.8979287455 2010,1,8257,0.8990000001999999 2010,1,8258,0.8990000001999999 2010,1,8259,0.8990000001999999 @@ -8262,47 +8262,47 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8261,0.8990000001999999 2010,1,8262,0.8990000001999999 2010,1,8263,0.8990000001999999 -2010,1,8264,0.8979287454999999 +2010,1,8264,0.8979287455 2010,1,8265,0.8939896417000001 2010,1,8266,0.8900505372999999 2010,1,8267,0.8880809851 2010,1,8268,0.8861114332 -2010,1,8269,0.8841418812999998 -2010,1,8270,0.8841418812999998 +2010,1,8269,0.8841418812999999 +2010,1,8270,0.8841418812999999 2010,1,8271,0.8861114332 2010,1,8272,0.8900505372999999 2010,1,8273,0.8939896417000001 2010,1,8274,0.8959591936 2010,1,8275,0.8959591936 -2010,1,8276,0.8979287454999999 -2010,1,8277,0.8979287454999999 -2010,1,8278,0.8979287454999999 -2010,1,8279,0.8979287454999999 -2010,1,8280,0.8979287454999999 -2010,1,8281,0.8979287454999999 -2010,1,8282,0.8979287454999999 -2010,1,8283,0.8979287454999999 -2010,1,8284,0.8979287454999999 -2010,1,8285,0.8979287454999999 -2010,1,8286,0.8979287454999999 -2010,1,8287,0.8979287454999999 +2010,1,8276,0.8979287455 +2010,1,8277,0.8979287455 +2010,1,8278,0.8979287455 +2010,1,8279,0.8979287455 +2010,1,8280,0.8979287455 +2010,1,8281,0.8979287455 +2010,1,8282,0.8979287455 +2010,1,8283,0.8979287455 +2010,1,8284,0.8979287455 +2010,1,8285,0.8979287455 +2010,1,8286,0.8979287455 +2010,1,8287,0.8979287455 2010,1,8288,0.8959591936 2010,1,8289,0.8900505372999999 -2010,1,8290,0.8841418812999998 -2010,1,8291,0.8782332246999999 +2010,1,8290,0.8841418812999999 +2010,1,8291,0.8782332247 2010,1,8292,0.8742941203 2010,1,8293,0.8723245680999999 2010,1,8294,0.8723245680999999 2010,1,8295,0.8742941203 -2010,1,8296,0.8802027765999999 +2010,1,8296,0.8802027766 2010,1,8297,0.8880809851 2010,1,8298,0.8920200892 2010,1,8299,0.8920200892 2010,1,8300,0.8939896417000001 2010,1,8301,0.8959591936 2010,1,8302,0.8959591936 -2010,1,8303,0.8979287454999999 -2010,1,8304,0.8979287454999999 +2010,1,8303,0.8979287455 +2010,1,8304,0.8979287455 2010,1,8305,0.8990000001999999 2010,1,8306,0.8990000001999999 2010,1,8307,0.8990000001999999 @@ -8310,19 +8310,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8309,0.8990000001999999 2010,1,8310,0.8990000001999999 2010,1,8311,0.8990000001999999 -2010,1,8312,0.8979287454999999 +2010,1,8312,0.8979287455 2010,1,8313,0.8920200892 2010,1,8314,0.8861114332 -2010,1,8315,0.8802027765999999 -2010,1,8316,0.8782332246999999 +2010,1,8315,0.8802027766 +2010,1,8316,0.8782332247 2010,1,8317,0.8762636728 2010,1,8318,0.8762636728 -2010,1,8319,0.8802027765999999 +2010,1,8319,0.8802027766 2010,1,8320,0.8861114332 2010,1,8321,0.8920200892 2010,1,8322,0.8959591936 -2010,1,8323,0.8979287454999999 -2010,1,8324,0.8979287454999999 +2010,1,8323,0.8979287455 +2010,1,8324,0.8979287455 2010,1,8325,0.8990000001999999 2010,1,8326,0.8990000001999999 2010,1,8327,0.8990000001999999 @@ -8336,20 +8336,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8335,0.8990000001999999 2010,1,8336,0.8990000001999999 2010,1,8337,0.8990000001999999 -2010,1,8338,0.8979287454999999 +2010,1,8338,0.8979287455 2010,1,8339,0.8959591936 2010,1,8340,0.8920200892 2010,1,8341,0.8900505372999999 2010,1,8342,0.8900505372999999 2010,1,8343,0.8900505372999999 2010,1,8344,0.8939896417000001 -2010,1,8345,0.8979287454999999 -2010,1,8346,0.8979287454999999 -2010,1,8347,0.8979287454999999 -2010,1,8348,0.8979287454999999 -2010,1,8349,0.8979287454999999 -2010,1,8350,0.8979287454999999 -2010,1,8351,0.8979287454999999 +2010,1,8345,0.8979287455 +2010,1,8346,0.8979287455 +2010,1,8347,0.8979287455 +2010,1,8348,0.8979287455 +2010,1,8349,0.8979287455 +2010,1,8350,0.8979287455 +2010,1,8351,0.8979287455 2010,1,8352,0.8990000001999999 2010,1,8353,0.8990000001999999 2010,1,8354,0.8990000001999999 @@ -8361,10 +8361,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8360,0.8990000001999999 2010,1,8361,0.8990000001999999 2010,1,8362,0.8990000001999999 -2010,1,8363,0.8979287454999999 +2010,1,8363,0.8979287455 2010,1,8364,0.8959591936 -2010,1,8365,0.8979287454999999 -2010,1,8366,0.8979287454999999 +2010,1,8365,0.8979287455 +2010,1,8366,0.8979287455 2010,1,8367,0.8990000001999999 2010,1,8368,0.8990000001999999 2010,1,8369,0.8990000001999999 @@ -8390,7 +8390,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8389,0.8920200892 2010,1,8390,0.8920200892 2010,1,8391,0.8939896417000001 -2010,1,8392,0.8979287454999999 +2010,1,8392,0.8979287455 2010,1,8393,0.8990000001999999 2010,1,8394,0.8990000001999999 2010,1,8395,0.8990000001999999 @@ -8409,20 +8409,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8408,0.8990000001999999 2010,1,8409,0.8990000001999999 2010,1,8410,0.8990000001999999 -2010,1,8411,0.8979287454999999 +2010,1,8411,0.8979287455 2010,1,8412,0.8959591936 2010,1,8413,0.8959591936 2010,1,8414,0.8959591936 2010,1,8415,0.8959591936 -2010,1,8416,0.8979287454999999 -2010,1,8417,0.8979287454999999 -2010,1,8418,0.8979287454999999 -2010,1,8419,0.8979287454999999 -2010,1,8420,0.8979287454999999 -2010,1,8421,0.8979287454999999 -2010,1,8422,0.8979287454999999 -2010,1,8423,0.8979287454999999 -2010,1,8424,0.8979287454999999 +2010,1,8416,0.8979287455 +2010,1,8417,0.8979287455 +2010,1,8418,0.8979287455 +2010,1,8419,0.8979287455 +2010,1,8420,0.8979287455 +2010,1,8421,0.8979287455 +2010,1,8422,0.8979287455 +2010,1,8423,0.8979287455 +2010,1,8424,0.8979287455 2010,1,8425,0.8990000001999999 2010,1,8426,0.8990000001999999 2010,1,8427,0.8990000001999999 @@ -8431,7 +8431,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8430,0.8990000001999999 2010,1,8431,0.8990000001999999 2010,1,8432,0.8990000001999999 -2010,1,8433,0.8979287454999999 +2010,1,8433,0.8979287455 2010,1,8434,0.8959591936 2010,1,8435,0.8939896417000001 2010,1,8436,0.8920200892 @@ -8505,7 +8505,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8504,0.8990000001999999 2010,1,8505,0.8990000001999999 2010,1,8506,0.8990000001999999 -2010,1,8507,0.8979287454999999 +2010,1,8507,0.8979287455 2010,1,8508,0.8959591936 2010,1,8509,0.8939896417000001 2010,1,8510,0.8939896417000001 @@ -8528,7 +8528,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8527,0.8990000001999999 2010,1,8528,0.8990000001999999 2010,1,8529,0.8990000001999999 -2010,1,8530,0.8979287454999999 +2010,1,8530,0.8979287455 2010,1,8531,0.8959591936 2010,1,8532,0.8939896417000001 2010,1,8533,0.8939896417000001 @@ -8553,7 +8553,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8552,0.8990000001999999 2010,1,8553,0.8990000001999999 2010,1,8554,0.8990000001999999 -2010,1,8555,0.8979287454999999 +2010,1,8555,0.8979287455 2010,1,8556,0.8959591936 2010,1,8557,0.8939896417000001 2010,1,8558,0.8920200892 @@ -8580,11 +8580,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8579,0.8900505372999999 2010,1,8580,0.8880809851 2010,1,8581,0.8861114332 -2010,1,8582,0.8841418812999998 +2010,1,8582,0.8841418812999999 2010,1,8583,0.8861114332 2010,1,8584,0.8900505372999999 2010,1,8585,0.8939896417000001 -2010,1,8586,0.8979287454999999 +2010,1,8586,0.8979287455 2010,1,8587,0.8990000001999999 2010,1,8588,0.8990000001999999 2010,1,8589,0.8990000001999999 @@ -8607,7 +8607,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8606,0.8900505372999999 2010,1,8607,0.8920200892 2010,1,8608,0.8959591936 -2010,1,8609,0.8979287454999999 +2010,1,8609,0.8979287455 2010,1,8610,0.8990000001999999 2010,1,8611,0.8990000001999999 2010,1,8612,0.8990000001999999 @@ -8650,9 +8650,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8649,0.8990000001999999 2010,1,8650,0.8990000001999999 2010,1,8651,0.8990000001999999 -2010,1,8652,0.8979287454999999 +2010,1,8652,0.8979287455 2010,1,8653,0.8959591936 -2010,1,8654,0.8979287454999999 +2010,1,8654,0.8979287455 2010,1,8655,0.8990000001999999 2010,1,8656,0.8990000001999999 2010,1,8657,0.8990000001999999 @@ -8674,9 +8674,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2010,1,8673,0.8990000001999999 2010,1,8674,0.8990000001999999 2010,1,8675,0.8990000001999999 -2010,1,8676,0.8979287454999999 +2010,1,8676,0.8979287455 2010,1,8677,0.8959591936 -2010,1,8678,0.8979287454999999 +2010,1,8678,0.8979287455 2010,1,8679,0.8990000001999999 2010,1,8680,0.8990000001999999 2010,1,8681,0.8990000001999999 @@ -8820,7 +8820,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,59,0.8990000001999999 2011,1,60,0.8990000001999999 2011,1,61,0.8990000001999999 -2011,1,62,0.8979287454999999 +2011,1,62,0.8979287455 2011,1,63,0.8990000001999999 2011,1,64,0.8990000001999999 2011,1,65,0.8990000001999999 @@ -8841,11 +8841,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,80,0.8990000001999999 2011,1,81,0.8990000001999999 2011,1,82,0.8990000001999999 -2011,1,83,0.8979287454999999 +2011,1,83,0.8979287455 2011,1,84,0.8959591936 2011,1,85,0.8959591936 2011,1,86,0.8959591936 -2011,1,87,0.8979287454999999 +2011,1,87,0.8979287455 2011,1,88,0.8990000001999999 2011,1,89,0.8990000001999999 2011,1,90,0.8990000001999999 @@ -8865,7 +8865,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,104,0.8990000001999999 2011,1,105,0.8990000001999999 2011,1,106,0.8990000001999999 -2011,1,107,0.8979287454999999 +2011,1,107,0.8979287455 2011,1,108,0.8959591936 2011,1,109,0.8939896417000001 2011,1,110,0.8939896417000001 @@ -8889,12 +8889,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,128,0.8990000001999999 2011,1,129,0.8990000001999999 2011,1,130,0.8990000001999999 -2011,1,131,0.8979287454999999 +2011,1,131,0.8979287455 2011,1,132,0.8959591936 2011,1,133,0.8939896417000001 2011,1,134,0.8939896417000001 2011,1,135,0.8959591936 -2011,1,136,0.8979287454999999 +2011,1,136,0.8979287455 2011,1,137,0.8990000001999999 2011,1,138,0.8990000001999999 2011,1,139,0.8990000001999999 @@ -8912,13 +8912,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,151,0.8990000001999999 2011,1,152,0.8990000001999999 2011,1,153,0.8990000001999999 -2011,1,154,0.8979287454999999 +2011,1,154,0.8979287455 2011,1,155,0.8959591936 2011,1,156,0.8939896417000001 2011,1,157,0.8920200892 2011,1,158,0.8920200892 2011,1,159,0.8939896417000001 -2011,1,160,0.8979287454999999 +2011,1,160,0.8979287455 2011,1,161,0.8990000001999999 2011,1,162,0.8990000001999999 2011,1,163,0.8990000001999999 @@ -8987,9 +8987,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,226,0.8990000001999999 2011,1,227,0.8990000001999999 2011,1,228,0.8990000001999999 -2011,1,229,0.8979287454999999 +2011,1,229,0.8979287455 2011,1,230,0.8959591936 -2011,1,231,0.8979287454999999 +2011,1,231,0.8979287455 2011,1,232,0.8990000001999999 2011,1,233,0.8990000001999999 2011,1,234,0.8990000001999999 @@ -9031,7 +9031,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,270,0.8990000001999999 2011,1,271,0.8990000001999999 2011,1,272,0.8990000001999999 -2011,1,273,0.8979287454999999 +2011,1,273,0.8979287455 2011,1,274,0.8939896417000001 2011,1,275,0.8920200892 2011,1,276,0.8900505372999999 @@ -9039,7 +9039,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,278,0.8880809851 2011,1,279,0.8900505372999999 2011,1,280,0.8939896417000001 -2011,1,281,0.8979287454999999 +2011,1,281,0.8979287455 2011,1,282,0.8990000001999999 2011,1,283,0.8990000001999999 2011,1,284,0.8990000001999999 @@ -9084,10 +9084,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,323,0.8920200892 2011,1,324,0.8880809851 2011,1,325,0.8861114332 -2011,1,326,0.8841418812999998 +2011,1,326,0.8841418812999999 2011,1,327,0.8861114332 2011,1,328,0.8900505372999999 -2011,1,329,0.8979287454999999 +2011,1,329,0.8979287455 2011,1,330,0.8990000001999999 2011,1,331,0.8990000001999999 2011,1,332,0.8990000001999999 @@ -9102,16 +9102,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,341,0.8990000001999999 2011,1,342,0.8990000001999999 2011,1,343,0.8990000001999999 -2011,1,344,0.8979287454999999 +2011,1,344,0.8979287455 2011,1,345,0.8920200892 2011,1,346,0.8861114332 -2011,1,347,0.8841418812999998 -2011,1,348,0.8821723288 -2011,1,349,0.8821723288 -2011,1,350,0.8841418812999998 +2011,1,347,0.8841418812999999 +2011,1,348,0.8821723288000001 +2011,1,349,0.8821723288000001 +2011,1,350,0.8841418812999999 2011,1,351,0.8861114332 2011,1,352,0.8900505372999999 -2011,1,353,0.8979287454999999 +2011,1,353,0.8979287455 2011,1,354,0.8990000001999999 2011,1,355,0.8990000001999999 2011,1,356,0.8990000001999999 @@ -9127,7 +9127,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,366,0.8990000001999999 2011,1,367,0.8990000001999999 2011,1,368,0.8990000001999999 -2011,1,369,0.8979287454999999 +2011,1,369,0.8979287455 2011,1,370,0.8939896417000001 2011,1,371,0.8920200892 2011,1,372,0.8900505372999999 @@ -9135,7 +9135,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,374,0.8880809851 2011,1,375,0.8900505372999999 2011,1,376,0.8920200892 -2011,1,377,0.8979287454999999 +2011,1,377,0.8979287455 2011,1,378,0.8990000001999999 2011,1,379,0.8990000001999999 2011,1,380,0.8990000001999999 @@ -9151,7 +9151,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,390,0.8990000001999999 2011,1,391,0.8990000001999999 2011,1,392,0.8990000001999999 -2011,1,393,0.8979287454999999 +2011,1,393,0.8979287455 2011,1,394,0.8939896417000001 2011,1,395,0.8920200892 2011,1,396,0.8900505372999999 @@ -9159,7 +9159,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,398,0.8880809851 2011,1,399,0.8900505372999999 2011,1,400,0.8920200892 -2011,1,401,0.8979287454999999 +2011,1,401,0.8979287455 2011,1,402,0.8990000001999999 2011,1,403,0.8990000001999999 2011,1,404,0.8990000001999999 @@ -9178,12 +9178,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,417,0.8939896417000001 2011,1,418,0.8900505372999999 2011,1,419,0.8861114332 -2011,1,420,0.8841418812999998 -2011,1,421,0.8821723288 -2011,1,422,0.8841418812999998 +2011,1,420,0.8841418812999999 +2011,1,421,0.8821723288000001 +2011,1,422,0.8841418812999999 2011,1,423,0.8861114332 2011,1,424,0.8900505372999999 -2011,1,425,0.8979287454999999 +2011,1,425,0.8979287455 2011,1,426,0.8990000001999999 2011,1,427,0.8990000001999999 2011,1,428,0.8990000001999999 @@ -9200,12 +9200,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,439,0.8990000001999999 2011,1,440,0.8990000001999999 2011,1,441,0.8990000001999999 -2011,1,442,0.8979287454999999 +2011,1,442,0.8979287455 2011,1,443,0.8959591936 2011,1,444,0.8939896417000001 2011,1,445,0.8939896417000001 2011,1,446,0.8959591936 -2011,1,447,0.8979287454999999 +2011,1,447,0.8979287455 2011,1,448,0.8990000001999999 2011,1,449,0.8990000001999999 2011,1,450,0.8990000001999999 @@ -9223,24 +9223,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,462,0.8990000001999999 2011,1,463,0.8990000001999999 2011,1,464,0.8990000001999999 -2011,1,465,0.8979287454999999 +2011,1,465,0.8979287455 2011,1,466,0.8920200892 2011,1,467,0.8880809851 -2011,1,468,0.8841418812999998 -2011,1,469,0.8821723288 -2011,1,470,0.8821723288 -2011,1,471,0.8841418812999998 +2011,1,468,0.8841418812999999 +2011,1,469,0.8821723288000001 +2011,1,470,0.8821723288000001 +2011,1,471,0.8841418812999999 2011,1,472,0.8861114332 2011,1,473,0.8900505372999999 2011,1,474,0.8939896417000001 2011,1,475,0.8959591936 -2011,1,476,0.8979287454999999 -2011,1,477,0.8979287454999999 +2011,1,476,0.8979287455 +2011,1,477,0.8979287455 2011,1,478,0.8990000001999999 2011,1,479,0.8990000001999999 2011,1,480,0.8990000001999999 2011,1,481,0.8990000001999999 -2011,1,482,0.8979287454999999 +2011,1,482,0.8979287455 2011,1,483,0.8990000001999999 2011,1,484,0.8990000001999999 2011,1,485,0.8990000001999999 @@ -9249,17 +9249,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,488,0.8990000001999999 2011,1,489,0.8939896417000001 2011,1,490,0.8880809851 -2011,1,491,0.8841418812999998 -2011,1,492,0.8821723288 -2011,1,493,0.8821723288 -2011,1,494,0.8821723288 -2011,1,495,0.8841418812999998 +2011,1,491,0.8841418812999999 +2011,1,492,0.8821723288000001 +2011,1,493,0.8821723288000001 +2011,1,494,0.8821723288000001 +2011,1,495,0.8841418812999999 2011,1,496,0.8880809851 2011,1,497,0.8920200892 2011,1,498,0.8959591936 2011,1,499,0.8959591936 -2011,1,500,0.8979287454999999 -2011,1,501,0.8979287454999999 +2011,1,500,0.8979287455 +2011,1,501,0.8979287455 2011,1,502,0.8990000001999999 2011,1,503,0.8990000001999999 2011,1,504,0.8990000001999999 @@ -9274,9 +9274,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,513,0.8959591936 2011,1,514,0.8900505372999999 2011,1,515,0.8861114332 -2011,1,516,0.8841418812999998 -2011,1,517,0.8821723288 -2011,1,518,0.8841418812999998 +2011,1,516,0.8841418812999999 +2011,1,517,0.8821723288000001 +2011,1,518,0.8841418812999999 2011,1,519,0.8861114332 2011,1,520,0.8900505372999999 2011,1,521,0.8959591936 @@ -9298,15 +9298,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,537,0.8959591936 2011,1,538,0.8900505372999999 2011,1,539,0.8861114332 -2011,1,540,0.8821723288 -2011,1,541,0.8802027765999999 -2011,1,542,0.8802027765999999 -2011,1,543,0.8821723288 +2011,1,540,0.8821723288000001 +2011,1,541,0.8802027766 +2011,1,542,0.8802027766 +2011,1,543,0.8821723288000001 2011,1,544,0.8861114332 2011,1,545,0.8920200892 2011,1,546,0.8959591936 -2011,1,547,0.8979287454999999 -2011,1,548,0.8979287454999999 +2011,1,547,0.8979287455 +2011,1,548,0.8979287455 2011,1,549,0.8990000001999999 2011,1,550,0.8990000001999999 2011,1,551,0.8990000001999999 @@ -9322,10 +9322,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,561,0.8959591936 2011,1,562,0.8920200892 2011,1,563,0.8861114332 -2011,1,564,0.8841418812999998 -2011,1,565,0.8821723288 -2011,1,566,0.8821723288 -2011,1,567,0.8841418812999998 +2011,1,564,0.8841418812999999 +2011,1,565,0.8821723288000001 +2011,1,566,0.8821723288000001 +2011,1,567,0.8841418812999999 2011,1,568,0.8880809851 2011,1,569,0.8959591936 2011,1,570,0.8990000001999999 @@ -9345,14 +9345,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,584,0.8990000001999999 2011,1,585,0.8939896417000001 2011,1,586,0.8880809851 -2011,1,587,0.8841418812999998 -2011,1,588,0.8821723288 -2011,1,589,0.8802027765999999 -2011,1,590,0.8802027765999999 -2011,1,591,0.8821723288 +2011,1,587,0.8841418812999999 +2011,1,588,0.8821723288000001 +2011,1,589,0.8802027766 +2011,1,590,0.8802027766 +2011,1,591,0.8821723288000001 2011,1,592,0.8880809851 2011,1,593,0.8939896417000001 -2011,1,594,0.8979287454999999 +2011,1,594,0.8979287455 2011,1,595,0.8990000001999999 2011,1,596,0.8990000001999999 2011,1,597,0.8990000001999999 @@ -9369,18 +9369,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,608,0.8990000001999999 2011,1,609,0.8920200892 2011,1,610,0.8861114332 -2011,1,611,0.8841418812999998 -2011,1,612,0.8821723288 -2011,1,613,0.8802027765999999 -2011,1,614,0.8782332246999999 -2011,1,615,0.8802027765999999 -2011,1,616,0.8841418812999998 +2011,1,611,0.8841418812999999 +2011,1,612,0.8821723288000001 +2011,1,613,0.8802027766 +2011,1,614,0.8782332247 +2011,1,615,0.8802027766 +2011,1,616,0.8841418812999999 2011,1,617,0.8900505372999999 2011,1,618,0.8939896417000001 2011,1,619,0.8939896417000001 2011,1,620,0.8959591936 -2011,1,621,0.8979287454999999 -2011,1,622,0.8979287454999999 +2011,1,621,0.8979287455 +2011,1,622,0.8979287455 2011,1,623,0.8990000001999999 2011,1,624,0.8990000001999999 2011,1,625,0.8990000001999999 @@ -9393,15 +9393,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,632,0.8990000001999999 2011,1,633,0.8939896417000001 2011,1,634,0.8880809851 -2011,1,635,0.8821723288 -2011,1,636,0.8802027765999999 -2011,1,637,0.8802027765999999 -2011,1,638,0.8802027765999999 -2011,1,639,0.8821723288 +2011,1,635,0.8821723288000001 +2011,1,636,0.8802027766 +2011,1,637,0.8802027766 +2011,1,638,0.8802027766 +2011,1,639,0.8821723288000001 2011,1,640,0.8880809851 2011,1,641,0.8920200892 2011,1,642,0.8959591936 -2011,1,643,0.8979287454999999 +2011,1,643,0.8979287455 2011,1,644,0.8990000001999999 2011,1,645,0.8990000001999999 2011,1,646,0.8990000001999999 @@ -9418,13 +9418,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,657,0.8959591936 2011,1,658,0.8920200892 2011,1,659,0.8861114332 -2011,1,660,0.8841418812999998 -2011,1,661,0.8821723288 -2011,1,662,0.8821723288 -2011,1,663,0.8841418812999998 +2011,1,660,0.8841418812999999 +2011,1,661,0.8821723288000001 +2011,1,662,0.8821723288000001 +2011,1,663,0.8841418812999999 2011,1,664,0.8900505372999999 2011,1,665,0.8959591936 -2011,1,666,0.8979287454999999 +2011,1,666,0.8979287455 2011,1,667,0.8990000001999999 2011,1,668,0.8990000001999999 2011,1,669,0.8990000001999999 @@ -9440,7 +9440,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,679,0.8990000001999999 2011,1,680,0.8990000001999999 2011,1,681,0.8990000001999999 -2011,1,682,0.8979287454999999 +2011,1,682,0.8979287455 2011,1,683,0.8920200892 2011,1,684,0.8900505372999999 2011,1,685,0.8880809851 @@ -9465,11 +9465,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,704,0.8990000001999999 2011,1,705,0.8990000001999999 2011,1,706,0.8990000001999999 -2011,1,707,0.8979287454999999 +2011,1,707,0.8979287455 2011,1,708,0.8959591936 2011,1,709,0.8959591936 -2011,1,710,0.8979287454999999 -2011,1,711,0.8979287454999999 +2011,1,710,0.8979287455 +2011,1,711,0.8979287455 2011,1,712,0.8990000001999999 2011,1,713,0.8990000001999999 2011,1,714,0.8990000001999999 @@ -9490,10 +9490,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,729,0.8990000001999999 2011,1,730,0.8990000001999999 2011,1,731,0.8990000001999999 -2011,1,732,0.8979287454999999 +2011,1,732,0.8979287455 2011,1,733,0.8959591936 2011,1,734,0.8959591936 -2011,1,735,0.8979287454999999 +2011,1,735,0.8979287455 2011,1,736,0.8990000001999999 2011,1,737,0.8990000001999999 2011,1,738,0.8990000001999999 @@ -9514,7 +9514,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,753,0.8990000001999999 2011,1,754,0.8990000001999999 2011,1,755,0.8990000001999999 -2011,1,756,0.8979287454999999 +2011,1,756,0.8979287455 2011,1,757,0.8959591936 2011,1,758,0.8939896417000001 2011,1,759,0.8959591936 @@ -9607,7 +9607,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,846,0.8990000001999999 2011,1,847,0.8990000001999999 2011,1,848,0.8990000001999999 -2011,1,849,0.8979287454999999 +2011,1,849,0.8979287455 2011,1,850,0.8939896417000001 2011,1,851,0.8900505372999999 2011,1,852,0.8880809851 @@ -9615,7 +9615,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,854,0.8880809851 2011,1,855,0.8900505372999999 2011,1,856,0.8920200892 -2011,1,857,0.8979287454999999 +2011,1,857,0.8979287455 2011,1,858,0.8990000001999999 2011,1,859,0.8990000001999999 2011,1,860,0.8990000001999999 @@ -9633,40 +9633,40 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,872,0.8990000001999999 2011,1,873,0.8939896417000001 2011,1,874,0.8880809851 -2011,1,875,0.8821723288 -2011,1,876,0.8802027765999999 -2011,1,877,0.8782332246999999 -2011,1,878,0.8782332246999999 -2011,1,879,0.8802027765999999 -2011,1,880,0.8841418812999998 +2011,1,875,0.8821723288000001 +2011,1,876,0.8802027766 +2011,1,877,0.8782332247 +2011,1,878,0.8782332247 +2011,1,879,0.8802027766 +2011,1,880,0.8841418812999999 2011,1,881,0.8900505372999999 2011,1,882,0.8939896417000001 2011,1,883,0.8939896417000001 2011,1,884,0.8959591936 -2011,1,885,0.8979287454999999 +2011,1,885,0.8979287455 2011,1,886,0.8990000001999999 2011,1,887,0.8990000001999999 2011,1,888,0.8990000001999999 2011,1,889,0.8990000001999999 -2011,1,890,0.8979287454999999 -2011,1,891,0.8979287454999999 +2011,1,890,0.8979287455 +2011,1,891,0.8979287455 2011,1,892,0.8959591936 -2011,1,893,0.8979287454999999 -2011,1,894,0.8979287454999999 -2011,1,895,0.8979287454999999 +2011,1,893,0.8979287455 +2011,1,894,0.8979287455 +2011,1,895,0.8979287455 2011,1,896,0.8939896417000001 2011,1,897,0.8880809851 -2011,1,898,0.8841418812999998 -2011,1,899,0.8821723288 -2011,1,900,0.8802027765999999 -2011,1,901,0.8782332246999999 -2011,1,902,0.8782332246999999 -2011,1,903,0.8802027765999999 -2011,1,904,0.8841418812999998 +2011,1,898,0.8841418812999999 +2011,1,899,0.8821723288000001 +2011,1,900,0.8802027766 +2011,1,901,0.8782332247 +2011,1,902,0.8782332247 +2011,1,903,0.8802027766 +2011,1,904,0.8841418812999999 2011,1,905,0.8900505372999999 2011,1,906,0.8939896417000001 2011,1,907,0.8959591936 -2011,1,908,0.8979287454999999 +2011,1,908,0.8979287455 2011,1,909,0.8990000001999999 2011,1,910,0.8990000001999999 2011,1,911,0.8990000001999999 @@ -9681,12 +9681,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,920,0.8990000001999999 2011,1,921,0.8990000001999999 2011,1,922,0.8990000001999999 -2011,1,923,0.8979287454999999 +2011,1,923,0.8979287455 2011,1,924,0.8959591936 2011,1,925,0.8959591936 2011,1,926,0.8939896417000001 2011,1,927,0.8959591936 -2011,1,928,0.8979287454999999 +2011,1,928,0.8979287455 2011,1,929,0.8990000001999999 2011,1,930,0.8990000001999999 2011,1,931,0.8990000001999999 @@ -9735,7 +9735,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,974,0.8861114332 2011,1,975,0.8880809851 2011,1,976,0.8920200892 -2011,1,977,0.8979287454999999 +2011,1,977,0.8979287455 2011,1,978,0.8990000001999999 2011,1,979,0.8990000001999999 2011,1,980,0.8990000001999999 @@ -9754,15 +9754,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,993,0.8959591936 2011,1,994,0.8900505372999999 2011,1,995,0.8861114332 -2011,1,996,0.8841418812999998 -2011,1,997,0.8821723288 -2011,1,998,0.8802027765999999 -2011,1,999,0.8821723288 +2011,1,996,0.8841418812999999 +2011,1,997,0.8821723288000001 +2011,1,998,0.8802027766 +2011,1,999,0.8821723288000001 2011,1,1000,0.8861114332 2011,1,1001,0.8920200892 2011,1,1002,0.8959591936 2011,1,1003,0.8959591936 -2011,1,1004,0.8979287454999999 +2011,1,1004,0.8979287455 2011,1,1005,0.8990000001999999 2011,1,1006,0.8990000001999999 2011,1,1007,0.8990000001999999 @@ -9774,23 +9774,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1013,0.8990000001999999 2011,1,1014,0.8990000001999999 2011,1,1015,0.8990000001999999 -2011,1,1016,0.8979287454999999 +2011,1,1016,0.8979287455 2011,1,1017,0.8900505372999999 -2011,1,1018,0.8841418812999998 -2011,1,1019,0.8802027765999999 -2011,1,1020,0.8782332246999999 +2011,1,1018,0.8841418812999999 +2011,1,1019,0.8802027766 +2011,1,1020,0.8782332247 2011,1,1021,0.8762636728 2011,1,1022,0.8762636728 2011,1,1023,0.8762636728 -2011,1,1024,0.8802027765999999 +2011,1,1024,0.8802027766 2011,1,1025,0.8861114332 2011,1,1026,0.8920200892 2011,1,1027,0.8939896417000001 2011,1,1028,0.8939896417000001 2011,1,1029,0.8939896417000001 2011,1,1030,0.8959591936 -2011,1,1031,0.8979287454999999 -2011,1,1032,0.8979287454999999 +2011,1,1031,0.8979287455 +2011,1,1032,0.8979287455 2011,1,1033,0.8990000001999999 2011,1,1034,0.8990000001999999 2011,1,1035,0.8990000001999999 @@ -9798,18 +9798,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1037,0.8990000001999999 2011,1,1038,0.8990000001999999 2011,1,1039,0.8990000001999999 -2011,1,1040,0.8979287454999999 +2011,1,1040,0.8979287455 2011,1,1041,0.8920200892 2011,1,1042,0.8861114332 -2011,1,1043,0.8802027765999999 -2011,1,1044,0.8782332246999999 -2011,1,1045,0.8782332246999999 -2011,1,1046,0.8802027765999999 -2011,1,1047,0.8821723288 +2011,1,1043,0.8802027766 +2011,1,1044,0.8782332247 +2011,1,1045,0.8782332247 +2011,1,1046,0.8802027766 +2011,1,1047,0.8821723288000001 2011,1,1048,0.8880809851 2011,1,1049,0.8939896417000001 -2011,1,1050,0.8979287454999999 -2011,1,1051,0.8979287454999999 +2011,1,1050,0.8979287455 +2011,1,1051,0.8979287455 2011,1,1052,0.8990000001999999 2011,1,1053,0.8990000001999999 2011,1,1054,0.8990000001999999 @@ -9824,7 +9824,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1063,0.8990000001999999 2011,1,1064,0.8990000001999999 2011,1,1065,0.8990000001999999 -2011,1,1066,0.8979287454999999 +2011,1,1066,0.8979287455 2011,1,1067,0.8959591936 2011,1,1068,0.8939896417000001 2011,1,1069,0.8920200892 @@ -9856,8 +9856,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1095,0.8880809851 2011,1,1096,0.8900505372999999 2011,1,1097,0.8939896417000001 -2011,1,1098,0.8979287454999999 -2011,1,1099,0.8979287454999999 +2011,1,1098,0.8979287455 +2011,1,1099,0.8979287455 2011,1,1100,0.8990000001999999 2011,1,1101,0.8990000001999999 2011,1,1102,0.8990000001999999 @@ -9871,12 +9871,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1110,0.8990000001999999 2011,1,1111,0.8990000001999999 2011,1,1112,0.8990000001999999 -2011,1,1113,0.8979287454999999 -2011,1,1114,0.8979287454999999 -2011,1,1115,0.8979287454999999 +2011,1,1113,0.8979287455 +2011,1,1114,0.8979287455 +2011,1,1115,0.8979287455 2011,1,1116,0.8959591936 2011,1,1117,0.8959591936 -2011,1,1118,0.8979287454999999 +2011,1,1118,0.8979287455 2011,1,1119,0.8990000001999999 2011,1,1120,0.8990000001999999 2011,1,1121,0.8990000001999999 @@ -9897,12 +9897,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1136,0.8990000001999999 2011,1,1137,0.8990000001999999 2011,1,1138,0.8990000001999999 -2011,1,1139,0.8979287454999999 +2011,1,1139,0.8979287455 2011,1,1140,0.8959591936 2011,1,1141,0.8959591936 2011,1,1142,0.8959591936 2011,1,1143,0.8959591936 -2011,1,1144,0.8979287454999999 +2011,1,1144,0.8979287455 2011,1,1145,0.8990000001999999 2011,1,1146,0.8990000001999999 2011,1,1147,0.8990000001999999 @@ -9920,16 +9920,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1159,0.8990000001999999 2011,1,1160,0.8990000001999999 2011,1,1161,0.8990000001999999 -2011,1,1162,0.8979287454999999 +2011,1,1162,0.8979287455 2011,1,1163,0.8959591936 2011,1,1164,0.8939896417000001 2011,1,1165,0.8920200892 2011,1,1166,0.8939896417000001 2011,1,1167,0.8939896417000001 2011,1,1168,0.8959591936 -2011,1,1169,0.8979287454999999 -2011,1,1170,0.8979287454999999 -2011,1,1171,0.8979287454999999 +2011,1,1169,0.8979287455 +2011,1,1170,0.8979287455 +2011,1,1171,0.8979287455 2011,1,1172,0.8990000001999999 2011,1,1173,0.8990000001999999 2011,1,1174,0.8990000001999999 @@ -9972,7 +9972,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1211,0.8990000001999999 2011,1,1212,0.8990000001999999 2011,1,1213,0.8990000001999999 -2011,1,1214,0.8979287454999999 +2011,1,1214,0.8979287455 2011,1,1215,0.8990000001999999 2011,1,1216,0.8990000001999999 2011,1,1217,0.8990000001999999 @@ -9994,11 +9994,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1233,0.8990000001999999 2011,1,1234,0.8990000001999999 2011,1,1235,0.8990000001999999 -2011,1,1236,0.8979287454999999 +2011,1,1236,0.8979287455 2011,1,1237,0.8959591936 2011,1,1238,0.8959591936 2011,1,1239,0.8959591936 -2011,1,1240,0.8979287454999999 +2011,1,1240,0.8979287455 2011,1,1241,0.8990000001999999 2011,1,1242,0.8990000001999999 2011,1,1243,0.8990000001999999 @@ -10017,7 +10017,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1256,0.8990000001999999 2011,1,1257,0.8990000001999999 2011,1,1258,0.8990000001999999 -2011,1,1259,0.8979287454999999 +2011,1,1259,0.8979287455 2011,1,1260,0.8959591936 2011,1,1261,0.8939896417000001 2011,1,1262,0.8939896417000001 @@ -10041,12 +10041,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1280,0.8990000001999999 2011,1,1281,0.8990000001999999 2011,1,1282,0.8990000001999999 -2011,1,1283,0.8979287454999999 +2011,1,1283,0.8979287455 2011,1,1284,0.8959591936 2011,1,1285,0.8959591936 2011,1,1286,0.8939896417000001 2011,1,1287,0.8959591936 -2011,1,1288,0.8979287454999999 +2011,1,1288,0.8979287455 2011,1,1289,0.8990000001999999 2011,1,1290,0.8990000001999999 2011,1,1291,0.8990000001999999 @@ -10066,11 +10066,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1305,0.8990000001999999 2011,1,1306,0.8990000001999999 2011,1,1307,0.8990000001999999 -2011,1,1308,0.8979287454999999 +2011,1,1308,0.8979287455 2011,1,1309,0.8959591936 2011,1,1310,0.8939896417000001 2011,1,1311,0.8959591936 -2011,1,1312,0.8979287454999999 +2011,1,1312,0.8979287455 2011,1,1313,0.8990000001999999 2011,1,1314,0.8990000001999999 2011,1,1315,0.8990000001999999 @@ -10089,10 +10089,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1328,0.8990000001999999 2011,1,1329,0.8990000001999999 2011,1,1330,0.8990000001999999 -2011,1,1331,0.8979287454999999 -2011,1,1332,0.8979287454999999 -2011,1,1333,0.8979287454999999 -2011,1,1334,0.8979287454999999 +2011,1,1331,0.8979287455 +2011,1,1332,0.8979287455 +2011,1,1333,0.8979287455 +2011,1,1334,0.8979287455 2011,1,1335,0.8990000001999999 2011,1,1336,0.8990000001999999 2011,1,1337,0.8990000001999999 @@ -10160,7 +10160,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1399,0.8990000001999999 2011,1,1400,0.8990000001999999 2011,1,1401,0.8990000001999999 -2011,1,1402,0.8979287454999999 +2011,1,1402,0.8979287455 2011,1,1403,0.8939896417000001 2011,1,1404,0.8920200892 2011,1,1405,0.8900505372999999 @@ -10208,7 +10208,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1447,0.8990000001999999 2011,1,1448,0.8990000001999999 2011,1,1449,0.8990000001999999 -2011,1,1450,0.8979287454999999 +2011,1,1450,0.8979287455 2011,1,1451,0.8959591936 2011,1,1452,0.8939896417000001 2011,1,1453,0.8920200892 @@ -10217,7 +10217,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1456,0.8900505372999999 2011,1,1457,0.8920200892 2011,1,1458,0.8959591936 -2011,1,1459,0.8979287454999999 +2011,1,1459,0.8979287455 2011,1,1460,0.8990000001999999 2011,1,1461,0.8990000001999999 2011,1,1462,0.8990000001999999 @@ -10230,7 +10230,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1469,0.8990000001999999 2011,1,1470,0.8990000001999999 2011,1,1471,0.8990000001999999 -2011,1,1472,0.8979287454999999 +2011,1,1472,0.8979287455 2011,1,1473,0.8959591936 2011,1,1474,0.8939896417000001 2011,1,1475,0.8920200892 @@ -10240,7 +10240,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1479,0.8900505372999999 2011,1,1480,0.8920200892 2011,1,1481,0.8939896417000001 -2011,1,1482,0.8979287454999999 +2011,1,1482,0.8979287455 2011,1,1483,0.8990000001999999 2011,1,1484,0.8990000001999999 2011,1,1485,0.8990000001999999 @@ -10255,14 +10255,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1494,0.8990000001999999 2011,1,1495,0.8990000001999999 2011,1,1496,0.8990000001999999 -2011,1,1497,0.8979287454999999 +2011,1,1497,0.8979287455 2011,1,1498,0.8920200892 2011,1,1499,0.8861114332 -2011,1,1500,0.8841418812999998 -2011,1,1501,0.8821723288 -2011,1,1502,0.8802027765999999 -2011,1,1503,0.8802027765999999 -2011,1,1504,0.8821723288 +2011,1,1500,0.8841418812999999 +2011,1,1501,0.8821723288000001 +2011,1,1502,0.8802027766 +2011,1,1503,0.8802027766 +2011,1,1504,0.8821723288000001 2011,1,1505,0.8900505372999999 2011,1,1506,0.8959591936 2011,1,1507,0.8990000001999999 @@ -10278,22 +10278,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1517,0.8990000001999999 2011,1,1518,0.8990000001999999 2011,1,1519,0.8990000001999999 -2011,1,1520,0.8979287454999999 +2011,1,1520,0.8979287455 2011,1,1521,0.8920200892 2011,1,1522,0.8861114332 -2011,1,1523,0.8821723288 -2011,1,1524,0.8802027765999999 -2011,1,1525,0.8802027765999999 -2011,1,1526,0.8802027765999999 -2011,1,1527,0.8821723288 -2011,1,1528,0.8841418812999998 +2011,1,1523,0.8821723288000001 +2011,1,1524,0.8802027766 +2011,1,1525,0.8802027766 +2011,1,1526,0.8802027766 +2011,1,1527,0.8821723288000001 +2011,1,1528,0.8841418812999999 2011,1,1529,0.8880809851 2011,1,1530,0.8939896417000001 2011,1,1531,0.8959591936 2011,1,1532,0.8959591936 -2011,1,1533,0.8979287454999999 -2011,1,1534,0.8979287454999999 -2011,1,1535,0.8979287454999999 +2011,1,1533,0.8979287455 +2011,1,1534,0.8979287455 +2011,1,1535,0.8979287455 2011,1,1536,0.8990000001999999 2011,1,1537,0.8990000001999999 2011,1,1538,0.8990000001999999 @@ -10314,8 +10314,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1553,0.8939896417000001 2011,1,1554,0.8959591936 2011,1,1555,0.8959591936 -2011,1,1556,0.8979287454999999 -2011,1,1557,0.8979287454999999 +2011,1,1556,0.8979287455 +2011,1,1557,0.8979287455 2011,1,1558,0.8990000001999999 2011,1,1559,0.8990000001999999 2011,1,1560,0.8990000001999999 @@ -10328,14 +10328,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1567,0.8990000001999999 2011,1,1568,0.8990000001999999 2011,1,1569,0.8990000001999999 -2011,1,1570,0.8979287454999999 +2011,1,1570,0.8979287455 2011,1,1571,0.8959591936 2011,1,1572,0.8939896417000001 2011,1,1573,0.8939896417000001 2011,1,1574,0.8920200892 2011,1,1575,0.8939896417000001 2011,1,1576,0.8959591936 -2011,1,1577,0.8979287454999999 +2011,1,1577,0.8979287455 2011,1,1578,0.8990000001999999 2011,1,1579,0.8990000001999999 2011,1,1580,0.8990000001999999 @@ -10374,16 +10374,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1613,0.8990000001999999 2011,1,1614,0.8990000001999999 2011,1,1615,0.8990000001999999 -2011,1,1616,0.8979287454999999 +2011,1,1616,0.8979287455 2011,1,1617,0.8920200892 2011,1,1618,0.8861114332 -2011,1,1619,0.8802027765999999 +2011,1,1619,0.8802027766 2011,1,1620,0.8762636728 2011,1,1621,0.8742941203 2011,1,1622,0.8742941203 2011,1,1623,0.8762636728 -2011,1,1624,0.8782332246999999 -2011,1,1625,0.8841418812999998 +2011,1,1624,0.8782332247 +2011,1,1625,0.8841418812999999 2011,1,1626,0.8920200892 2011,1,1627,0.8939896417000001 2011,1,1628,0.8939896417000001 @@ -10395,22 +10395,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1634,0.8959591936 2011,1,1635,0.8959591936 2011,1,1636,0.8959591936 -2011,1,1637,0.8979287454999999 -2011,1,1638,0.8979287454999999 +2011,1,1637,0.8979287455 +2011,1,1638,0.8979287455 2011,1,1639,0.8959591936 2011,1,1640,0.8900505372999999 2011,1,1641,0.8861114332 -2011,1,1642,0.8802027765999999 -2011,1,1643,0.8782332246999999 +2011,1,1642,0.8802027766 +2011,1,1643,0.8782332247 2011,1,1644,0.8762636728 2011,1,1645,0.8762636728 2011,1,1646,0.8762636728 -2011,1,1647,0.8782332246999999 -2011,1,1648,0.8802027765999999 -2011,1,1649,0.8841418812999998 +2011,1,1647,0.8782332247 +2011,1,1648,0.8802027766 +2011,1,1649,0.8841418812999999 2011,1,1650,0.8920200892 2011,1,1651,0.8959591936 -2011,1,1652,0.8979287454999999 +2011,1,1652,0.8979287455 2011,1,1653,0.8990000001999999 2011,1,1654,0.8990000001999999 2011,1,1655,0.8990000001999999 @@ -10423,7 +10423,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1662,0.8990000001999999 2011,1,1663,0.8990000001999999 2011,1,1664,0.8990000001999999 -2011,1,1665,0.8979287454999999 +2011,1,1665,0.8979287455 2011,1,1666,0.8939896417000001 2011,1,1667,0.8920200892 2011,1,1668,0.8900505372999999 @@ -10432,7 +10432,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1671,0.8861114332 2011,1,1672,0.8880809851 2011,1,1673,0.8920200892 -2011,1,1674,0.8979287454999999 +2011,1,1674,0.8979287455 2011,1,1675,0.8990000001999999 2011,1,1676,0.8990000001999999 2011,1,1677,0.8990000001999999 @@ -10447,7 +10447,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1686,0.8990000001999999 2011,1,1687,0.8990000001999999 2011,1,1688,0.8990000001999999 -2011,1,1689,0.8979287454999999 +2011,1,1689,0.8979287455 2011,1,1690,0.8959591936 2011,1,1691,0.8939896417000001 2011,1,1692,0.8920200892 @@ -10470,14 +10470,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1709,0.8990000001999999 2011,1,1710,0.8990000001999999 2011,1,1711,0.8990000001999999 -2011,1,1712,0.8979287454999999 +2011,1,1712,0.8979287455 2011,1,1713,0.8939896417000001 2011,1,1714,0.8920200892 2011,1,1715,0.8880809851 2011,1,1716,0.8861114332 2011,1,1717,0.8861114332 -2011,1,1718,0.8841418812999998 -2011,1,1719,0.8841418812999998 +2011,1,1718,0.8841418812999999 +2011,1,1719,0.8841418812999999 2011,1,1720,0.8861114332 2011,1,1721,0.8920200892 2011,1,1722,0.8959591936 @@ -10493,41 +10493,41 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1732,0.8990000001999999 2011,1,1733,0.8990000001999999 2011,1,1734,0.8990000001999999 -2011,1,1735,0.8979287454999999 +2011,1,1735,0.8979287455 2011,1,1736,0.8920200892 2011,1,1737,0.8880809851 -2011,1,1738,0.8841418812999998 -2011,1,1739,0.8802027765999999 -2011,1,1740,0.8782332246999999 -2011,1,1741,0.8782332246999999 -2011,1,1742,0.8782332246999999 -2011,1,1743,0.8782332246999999 -2011,1,1744,0.8802027765999999 -2011,1,1745,0.8841418812999998 +2011,1,1738,0.8841418812999999 +2011,1,1739,0.8802027766 +2011,1,1740,0.8782332247 +2011,1,1741,0.8782332247 +2011,1,1742,0.8782332247 +2011,1,1743,0.8782332247 +2011,1,1744,0.8802027766 +2011,1,1745,0.8841418812999999 2011,1,1746,0.8900505372999999 2011,1,1747,0.8939896417000001 2011,1,1748,0.8939896417000001 2011,1,1749,0.8939896417000001 2011,1,1750,0.8959591936 -2011,1,1751,0.8979287454999999 -2011,1,1752,0.8979287454999999 -2011,1,1753,0.8979287454999999 -2011,1,1754,0.8979287454999999 +2011,1,1751,0.8979287455 +2011,1,1752,0.8979287455 +2011,1,1753,0.8979287455 +2011,1,1754,0.8979287455 2011,1,1755,0.8990000001999999 2011,1,1756,0.8990000001999999 2011,1,1757,0.8990000001999999 2011,1,1758,0.8990000001999999 -2011,1,1759,0.8979287454999999 +2011,1,1759,0.8979287455 2011,1,1760,0.8939896417000001 2011,1,1761,0.8880809851 -2011,1,1762,0.8841418812999998 -2011,1,1763,0.8782332246999999 +2011,1,1762,0.8841418812999999 +2011,1,1763,0.8782332247 2011,1,1764,0.8762636728 2011,1,1765,0.8762636728 2011,1,1766,0.8762636728 -2011,1,1767,0.8782332246999999 -2011,1,1768,0.8802027765999999 -2011,1,1769,0.8841418812999998 +2011,1,1767,0.8782332247 +2011,1,1768,0.8802027766 +2011,1,1769,0.8841418812999999 2011,1,1770,0.8900505372999999 2011,1,1771,0.8939896417000001 2011,1,1772,0.8939896417000001 @@ -10535,13 +10535,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1774,0.8959591936 2011,1,1775,0.8959591936 2011,1,1776,0.8959591936 -2011,1,1777,0.8979287454999999 -2011,1,1778,0.8979287454999999 -2011,1,1779,0.8979287454999999 +2011,1,1777,0.8979287455 +2011,1,1778,0.8979287455 +2011,1,1779,0.8979287455 2011,1,1780,0.8990000001999999 2011,1,1781,0.8990000001999999 2011,1,1782,0.8990000001999999 -2011,1,1783,0.8979287454999999 +2011,1,1783,0.8979287455 2011,1,1784,0.8939896417000001 2011,1,1785,0.8920200892 2011,1,1786,0.8900505372999999 @@ -10551,7 +10551,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1790,0.8939896417000001 2011,1,1791,0.8939896417000001 2011,1,1792,0.8959591936 -2011,1,1793,0.8979287454999999 +2011,1,1793,0.8979287455 2011,1,1794,0.8990000001999999 2011,1,1795,0.8990000001999999 2011,1,1796,0.8990000001999999 @@ -10567,16 +10567,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1806,0.8990000001999999 2011,1,1807,0.8990000001999999 2011,1,1808,0.8990000001999999 -2011,1,1809,0.8979287454999999 +2011,1,1809,0.8979287455 2011,1,1810,0.8939896417000001 2011,1,1811,0.8900505372999999 2011,1,1812,0.8880809851 2011,1,1813,0.8861114332 -2011,1,1814,0.8841418812999998 +2011,1,1814,0.8841418812999999 2011,1,1815,0.8861114332 2011,1,1816,0.8880809851 2011,1,1817,0.8920200892 -2011,1,1818,0.8979287454999999 +2011,1,1818,0.8979287455 2011,1,1819,0.8990000001999999 2011,1,1820,0.8990000001999999 2011,1,1821,0.8990000001999999 @@ -10599,7 +10599,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1838,0.8900505372999999 2011,1,1839,0.8920200892 2011,1,1840,0.8939896417000001 -2011,1,1841,0.8979287454999999 +2011,1,1841,0.8979287455 2011,1,1842,0.8990000001999999 2011,1,1843,0.8990000001999999 2011,1,1844,0.8990000001999999 @@ -10618,10 +10618,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1857,0.8990000001999999 2011,1,1858,0.8990000001999999 2011,1,1859,0.8990000001999999 -2011,1,1860,0.8979287454999999 -2011,1,1861,0.8979287454999999 -2011,1,1862,0.8979287454999999 -2011,1,1863,0.8979287454999999 +2011,1,1860,0.8979287455 +2011,1,1861,0.8979287455 +2011,1,1862,0.8979287455 +2011,1,1863,0.8979287455 2011,1,1864,0.8990000001999999 2011,1,1865,0.8990000001999999 2011,1,1866,0.8990000001999999 @@ -10640,10 +10640,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1879,0.8990000001999999 2011,1,1880,0.8990000001999999 2011,1,1881,0.8990000001999999 -2011,1,1882,0.8979287454999999 +2011,1,1882,0.8979287455 2011,1,1883,0.8959591936 2011,1,1884,0.8959591936 -2011,1,1885,0.8979287454999999 +2011,1,1885,0.8979287455 2011,1,1886,0.8990000001999999 2011,1,1887,0.8990000001999999 2011,1,1888,0.8990000001999999 @@ -10667,8 +10667,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1906,0.8990000001999999 2011,1,1907,0.8990000001999999 2011,1,1908,0.8990000001999999 -2011,1,1909,0.8979287454999999 -2011,1,1910,0.8979287454999999 +2011,1,1909,0.8979287455 +2011,1,1910,0.8979287455 2011,1,1911,0.8990000001999999 2011,1,1912,0.8990000001999999 2011,1,1913,0.8990000001999999 @@ -10688,7 +10688,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1927,0.8990000001999999 2011,1,1928,0.8990000001999999 2011,1,1929,0.8990000001999999 -2011,1,1930,0.8979287454999999 +2011,1,1930,0.8979287455 2011,1,1931,0.8959591936 2011,1,1932,0.8939896417000001 2011,1,1933,0.8920200892 @@ -10712,11 +10712,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1951,0.8990000001999999 2011,1,1952,0.8990000001999999 2011,1,1953,0.8990000001999999 -2011,1,1954,0.8979287454999999 +2011,1,1954,0.8979287455 2011,1,1955,0.8959591936 2011,1,1956,0.8959591936 2011,1,1957,0.8959591936 -2011,1,1958,0.8979287454999999 +2011,1,1958,0.8979287455 2011,1,1959,0.8990000001999999 2011,1,1960,0.8990000001999999 2011,1,1961,0.8990000001999999 @@ -10737,12 +10737,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1976,0.8990000001999999 2011,1,1977,0.8990000001999999 2011,1,1978,0.8990000001999999 -2011,1,1979,0.8979287454999999 -2011,1,1980,0.8979287454999999 +2011,1,1979,0.8979287455 +2011,1,1980,0.8979287455 2011,1,1981,0.8959591936 2011,1,1982,0.8959591936 -2011,1,1983,0.8979287454999999 -2011,1,1984,0.8979287454999999 +2011,1,1983,0.8979287455 +2011,1,1984,0.8979287455 2011,1,1985,0.8990000001999999 2011,1,1986,0.8990000001999999 2011,1,1987,0.8990000001999999 @@ -10760,7 +10760,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,1999,0.8990000001999999 2011,1,2000,0.8990000001999999 2011,1,2001,0.8990000001999999 -2011,1,2002,0.8979287454999999 +2011,1,2002,0.8979287455 2011,1,2003,0.8959591936 2011,1,2004,0.8939896417000001 2011,1,2005,0.8920200892 @@ -10784,14 +10784,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2023,0.8990000001999999 2011,1,2024,0.8990000001999999 2011,1,2025,0.8990000001999999 -2011,1,2026,0.8979287454999999 +2011,1,2026,0.8979287455 2011,1,2027,0.8959591936 2011,1,2028,0.8939896417000001 2011,1,2029,0.8920200892 2011,1,2030,0.8920200892 2011,1,2031,0.8939896417000001 2011,1,2032,0.8959591936 -2011,1,2033,0.8979287454999999 +2011,1,2033,0.8979287455 2011,1,2034,0.8990000001999999 2011,1,2035,0.8990000001999999 2011,1,2036,0.8990000001999999 @@ -10816,7 +10816,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2055,0.8900505372999999 2011,1,2056,0.8920200892 2011,1,2057,0.8939896417000001 -2011,1,2058,0.8979287454999999 +2011,1,2058,0.8979287455 2011,1,2059,0.8990000001999999 2011,1,2060,0.8990000001999999 2011,1,2061,0.8990000001999999 @@ -10855,7 +10855,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2094,0.8990000001999999 2011,1,2095,0.8990000001999999 2011,1,2096,0.8990000001999999 -2011,1,2097,0.8979287454999999 +2011,1,2097,0.8979287455 2011,1,2098,0.8939896417000001 2011,1,2099,0.8900505372999999 2011,1,2100,0.8880809851 @@ -10864,7 +10864,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2103,0.8900505372999999 2011,1,2104,0.8900505372999999 2011,1,2105,0.8920200892 -2011,1,2106,0.8979287454999999 +2011,1,2106,0.8979287455 2011,1,2107,0.8990000001999999 2011,1,2108,0.8990000001999999 2011,1,2109,0.8990000001999999 @@ -10881,13 +10881,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2120,0.8959591936 2011,1,2121,0.8920200892 2011,1,2122,0.8861114332 -2011,1,2123,0.8821723288 -2011,1,2124,0.8802027765999999 -2011,1,2125,0.8802027765999999 -2011,1,2126,0.8802027765999999 -2011,1,2127,0.8782332246999999 -2011,1,2128,0.8802027765999999 -2011,1,2129,0.8821723288 +2011,1,2123,0.8821723288000001 +2011,1,2124,0.8802027766 +2011,1,2125,0.8802027766 +2011,1,2126,0.8802027766 +2011,1,2127,0.8782332247 +2011,1,2128,0.8802027766 +2011,1,2129,0.8821723288000001 2011,1,2130,0.8880809851 2011,1,2131,0.8939896417000001 2011,1,2132,0.8939896417000001 @@ -10897,23 +10897,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2136,0.8959591936 2011,1,2137,0.8959591936 2011,1,2138,0.8959591936 -2011,1,2139,0.8979287454999999 -2011,1,2140,0.8979287454999999 -2011,1,2141,0.8979287454999999 +2011,1,2139,0.8979287455 +2011,1,2140,0.8979287455 +2011,1,2141,0.8979287455 2011,1,2142,0.8959591936 2011,1,2143,0.8900505372999999 -2011,1,2144,0.8841418812999998 -2011,1,2145,0.8782332246999999 +2011,1,2144,0.8841418812999999 +2011,1,2145,0.8782332247 2011,1,2146,0.8723245680999999 -2011,1,2147,0.8683854642999999 +2011,1,2147,0.8683854643 2011,1,2148,0.8664159117999999 2011,1,2149,0.8640190443 2011,1,2150,0.8659885961999999 -2011,1,2151,0.8683854642999999 -2011,1,2152,0.8703550161999999 +2011,1,2151,0.8683854643 +2011,1,2152,0.8703550162 2011,1,2153,0.8742941203 -2011,1,2154,0.8802027765999999 -2011,1,2155,0.8841418812999998 +2011,1,2154,0.8802027766 +2011,1,2155,0.8841418812999999 2011,1,2156,0.8880809851 2011,1,2157,0.8880809851 2011,1,2158,0.8900505372999999 @@ -10925,20 +10925,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2164,0.8880809851 2011,1,2165,0.8900505372999999 2011,1,2166,0.8900505372999999 -2011,1,2167,0.8841418812999998 -2011,1,2168,0.8782332246999999 +2011,1,2167,0.8841418812999999 +2011,1,2168,0.8782332247 2011,1,2169,0.8723245680999999 2011,1,2170,0.8664159117999999 2011,1,2171,0.8620494920999999 -2011,1,2172,0.8593799401999999 -2011,1,2173,0.8593799401999999 -2011,1,2174,0.8593799401999999 +2011,1,2172,0.8593799402 +2011,1,2173,0.8593799402 +2011,1,2174,0.8593799402 2011,1,2175,0.8620494920999999 2011,1,2176,0.8644463599 -2011,1,2177,0.8703550161999999 -2011,1,2178,0.8782332246999999 -2011,1,2179,0.8821723288 -2011,1,2180,0.8841418812999998 +2011,1,2177,0.8703550162 +2011,1,2178,0.8782332247 +2011,1,2179,0.8821723288000001 +2011,1,2180,0.8841418812999999 2011,1,2181,0.8861114332 2011,1,2182,0.8880809851 2011,1,2183,0.8880809851 @@ -10950,22 +10950,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2189,0.8939896417000001 2011,1,2190,0.8939896417000001 2011,1,2191,0.8900505372999999 -2011,1,2192,0.8841418812999998 -2011,1,2193,0.8802027765999999 -2011,1,2194,0.8782332246999999 +2011,1,2192,0.8841418812999999 +2011,1,2193,0.8802027766 +2011,1,2194,0.8782332247 2011,1,2195,0.8762636728 2011,1,2196,0.8742941203 2011,1,2197,0.8762636728 2011,1,2198,0.8762636728 2011,1,2199,0.8762636728 -2011,1,2200,0.8782332246999999 -2011,1,2201,0.8841418812999998 +2011,1,2200,0.8782332247 +2011,1,2201,0.8841418812999999 2011,1,2202,0.8900505372999999 2011,1,2203,0.8939896417000001 2011,1,2204,0.8959591936 2011,1,2205,0.8959591936 -2011,1,2206,0.8979287454999999 -2011,1,2207,0.8979287454999999 +2011,1,2206,0.8979287455 +2011,1,2207,0.8979287455 2011,1,2208,0.8990000001999999 2011,1,2209,0.8990000001999999 2011,1,2210,0.8990000001999999 @@ -10978,14 +10978,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2217,0.8920200892 2011,1,2218,0.8900505372999999 2011,1,2219,0.8861114332 -2011,1,2220,0.8841418812999998 -2011,1,2221,0.8841418812999998 -2011,1,2222,0.8821723288 -2011,1,2223,0.8841418812999998 +2011,1,2220,0.8841418812999999 +2011,1,2221,0.8841418812999999 +2011,1,2222,0.8821723288000001 +2011,1,2223,0.8841418812999999 2011,1,2224,0.8861114332 2011,1,2225,0.8880809851 2011,1,2226,0.8939896417000001 -2011,1,2227,0.8979287454999999 +2011,1,2227,0.8979287455 2011,1,2228,0.8990000001999999 2011,1,2229,0.8990000001999999 2011,1,2230,0.8990000001999999 @@ -10997,18 +10997,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2236,0.8990000001999999 2011,1,2237,0.8990000001999999 2011,1,2238,0.8990000001999999 -2011,1,2239,0.8979287454999999 +2011,1,2239,0.8979287455 2011,1,2240,0.8920200892 2011,1,2241,0.8861114332 -2011,1,2242,0.8821723288 -2011,1,2243,0.8782332246999999 +2011,1,2242,0.8821723288000001 +2011,1,2243,0.8782332247 2011,1,2244,0.8742941203 2011,1,2245,0.8723245680999999 2011,1,2246,0.8723245680999999 2011,1,2247,0.8723245680999999 2011,1,2248,0.8723245680999999 2011,1,2249,0.8762636728 -2011,1,2250,0.8821723288 +2011,1,2250,0.8821723288000001 2011,1,2251,0.8880809851 2011,1,2252,0.8920200892 2011,1,2253,0.8920200892 @@ -11023,23 +11023,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2262,0.8959591936 2011,1,2263,0.8920200892 2011,1,2264,0.8880809851 -2011,1,2265,0.8841418812999998 -2011,1,2266,0.8782332246999999 +2011,1,2265,0.8841418812999999 +2011,1,2266,0.8782332247 2011,1,2267,0.8762636728 2011,1,2268,0.8742941203 2011,1,2269,0.8723245680999999 2011,1,2270,0.8723245680999999 2011,1,2271,0.8742941203 2011,1,2272,0.8762636728 -2011,1,2273,0.8782332246999999 -2011,1,2274,0.8841418812999998 +2011,1,2273,0.8782332247 +2011,1,2274,0.8841418812999999 2011,1,2275,0.8880809851 2011,1,2276,0.8900505372999999 2011,1,2277,0.8920200892 2011,1,2278,0.8939896417000001 2011,1,2279,0.8959591936 -2011,1,2280,0.8979287454999999 -2011,1,2281,0.8979287454999999 +2011,1,2280,0.8979287455 +2011,1,2281,0.8979287455 2011,1,2282,0.8990000001999999 2011,1,2283,0.8990000001999999 2011,1,2284,0.8990000001999999 @@ -11048,14 +11048,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2287,0.8959591936 2011,1,2288,0.8920200892 2011,1,2289,0.8880809851 -2011,1,2290,0.8841418812999998 -2011,1,2291,0.8821723288 -2011,1,2292,0.8802027765999999 -2011,1,2293,0.8782332246999999 -2011,1,2294,0.8782332246999999 -2011,1,2295,0.8782332246999999 -2011,1,2296,0.8802027765999999 -2011,1,2297,0.8821723288 +2011,1,2290,0.8841418812999999 +2011,1,2291,0.8821723288000001 +2011,1,2292,0.8802027766 +2011,1,2293,0.8782332247 +2011,1,2294,0.8782332247 +2011,1,2295,0.8782332247 +2011,1,2296,0.8802027766 +2011,1,2297,0.8821723288000001 2011,1,2298,0.8880809851 2011,1,2299,0.8939896417000001 2011,1,2300,0.8959591936 @@ -11072,10 +11072,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2311,0.8990000001999999 2011,1,2312,0.8990000001999999 2011,1,2313,0.8990000001999999 -2011,1,2314,0.8979287454999999 -2011,1,2315,0.8979287454999999 -2011,1,2316,0.8979287454999999 -2011,1,2317,0.8979287454999999 +2011,1,2314,0.8979287455 +2011,1,2315,0.8979287455 +2011,1,2316,0.8979287455 +2011,1,2317,0.8979287455 2011,1,2318,0.8990000001999999 2011,1,2319,0.8990000001999999 2011,1,2320,0.8990000001999999 @@ -11120,7 +11120,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2359,0.8990000001999999 2011,1,2360,0.8990000001999999 2011,1,2361,0.8990000001999999 -2011,1,2362,0.8979287454999999 +2011,1,2362,0.8979287455 2011,1,2363,0.8939896417000001 2011,1,2364,0.8920200892 2011,1,2365,0.8920200892 @@ -11148,8 +11148,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2387,0.8900505372999999 2011,1,2388,0.8880809851 2011,1,2389,0.8861114332 -2011,1,2390,0.8841418812999998 -2011,1,2391,0.8841418812999998 +2011,1,2390,0.8841418812999999 +2011,1,2391,0.8841418812999999 2011,1,2392,0.8861114332 2011,1,2393,0.8880809851 2011,1,2394,0.8939896417000001 @@ -11172,12 +11172,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2411,0.8900505372999999 2011,1,2412,0.8880809851 2011,1,2413,0.8861114332 -2011,1,2414,0.8841418812999998 +2011,1,2414,0.8841418812999999 2011,1,2415,0.8861114332 2011,1,2416,0.8880809851 2011,1,2417,0.8900505372999999 2011,1,2418,0.8939896417000001 -2011,1,2419,0.8979287454999999 +2011,1,2419,0.8979287455 2011,1,2420,0.8990000001999999 2011,1,2421,0.8990000001999999 2011,1,2422,0.8990000001999999 @@ -11195,14 +11195,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2434,0.8920200892 2011,1,2435,0.8880809851 2011,1,2436,0.8861114332 -2011,1,2437,0.8841418812999998 -2011,1,2438,0.8821723288 -2011,1,2439,0.8821723288 -2011,1,2440,0.8841418812999998 +2011,1,2437,0.8841418812999999 +2011,1,2438,0.8821723288000001 +2011,1,2439,0.8821723288000001 +2011,1,2440,0.8841418812999999 2011,1,2441,0.8861114332 2011,1,2442,0.8920200892 -2011,1,2443,0.8979287454999999 -2011,1,2444,0.8979287454999999 +2011,1,2443,0.8979287455 +2011,1,2444,0.8979287455 2011,1,2445,0.8990000001999999 2011,1,2446,0.8990000001999999 2011,1,2447,0.8990000001999999 @@ -11224,7 +11224,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2463,0.8900505372999999 2011,1,2464,0.8920200892 2011,1,2465,0.8939896417000001 -2011,1,2466,0.8979287454999999 +2011,1,2466,0.8979287455 2011,1,2467,0.8990000001999999 2011,1,2468,0.8990000001999999 2011,1,2469,0.8990000001999999 @@ -11243,9 +11243,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2482,0.8939896417000001 2011,1,2483,0.8900505372999999 2011,1,2484,0.8861114332 -2011,1,2485,0.8841418812999998 -2011,1,2486,0.8841418812999998 -2011,1,2487,0.8841418812999998 +2011,1,2485,0.8841418812999999 +2011,1,2486,0.8841418812999999 +2011,1,2487,0.8841418812999999 2011,1,2488,0.8861114332 2011,1,2489,0.8880809851 2011,1,2490,0.8939896417000001 @@ -11265,38 +11265,38 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2504,0.8959591936 2011,1,2505,0.8920200892 2011,1,2506,0.8880809851 -2011,1,2507,0.8841418812999998 -2011,1,2508,0.8821723288 -2011,1,2509,0.8802027765999999 -2011,1,2510,0.8782332246999999 -2011,1,2511,0.8782332246999999 -2011,1,2512,0.8802027765999999 -2011,1,2513,0.8821723288 +2011,1,2507,0.8841418812999999 +2011,1,2508,0.8821723288000001 +2011,1,2509,0.8802027766 +2011,1,2510,0.8782332247 +2011,1,2511,0.8782332247 +2011,1,2512,0.8802027766 +2011,1,2513,0.8821723288000001 2011,1,2514,0.8880809851 2011,1,2515,0.8920200892 2011,1,2516,0.8939896417000001 2011,1,2517,0.8939896417000001 2011,1,2518,0.8959591936 2011,1,2519,0.8959591936 -2011,1,2520,0.8979287454999999 -2011,1,2521,0.8979287454999999 -2011,1,2522,0.8979287454999999 +2011,1,2520,0.8979287455 +2011,1,2521,0.8979287455 +2011,1,2522,0.8979287455 2011,1,2523,0.8990000001999999 2011,1,2524,0.8990000001999999 2011,1,2525,0.8990000001999999 -2011,1,2526,0.8979287454999999 +2011,1,2526,0.8979287455 2011,1,2527,0.8959591936 2011,1,2528,0.8939896417000001 2011,1,2529,0.8900505372999999 -2011,1,2530,0.8841418812999998 -2011,1,2531,0.8802027765999999 -2011,1,2532,0.8782332246999999 +2011,1,2530,0.8841418812999999 +2011,1,2531,0.8802027766 +2011,1,2532,0.8782332247 2011,1,2533,0.8758363572 2011,1,2534,0.8738668047 2011,1,2535,0.8762636728 2011,1,2536,0.8762636728 -2011,1,2537,0.8782332246999999 -2011,1,2538,0.8841418812999998 +2011,1,2537,0.8782332247 +2011,1,2538,0.8841418812999999 2011,1,2539,0.8880809851 2011,1,2540,0.8900505372999999 2011,1,2541,0.8920200892 @@ -11307,20 +11307,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2546,0.8959591936 2011,1,2547,0.8959591936 2011,1,2548,0.8959591936 -2011,1,2549,0.8979287454999999 +2011,1,2549,0.8979287455 2011,1,2550,0.8959591936 2011,1,2551,0.8939896417000001 2011,1,2552,0.8900505372999999 2011,1,2553,0.8861114332 -2011,1,2554,0.8821723288 -2011,1,2555,0.8802027765999999 -2011,1,2556,0.8782332246999999 +2011,1,2554,0.8821723288000001 +2011,1,2555,0.8802027766 +2011,1,2556,0.8782332247 2011,1,2557,0.8758363572 2011,1,2558,0.8742941203 2011,1,2559,0.8742941203 2011,1,2560,0.8762636728 -2011,1,2561,0.8782332246999999 -2011,1,2562,0.8821723288 +2011,1,2561,0.8782332247 +2011,1,2562,0.8821723288000001 2011,1,2563,0.8880809851 2011,1,2564,0.8880809851 2011,1,2565,0.8900505372999999 @@ -11330,20 +11330,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2569,0.8939896417000001 2011,1,2570,0.8959591936 2011,1,2571,0.8959591936 -2011,1,2572,0.8979287454999999 -2011,1,2573,0.8979287454999999 -2011,1,2574,0.8979287454999999 +2011,1,2572,0.8979287455 +2011,1,2573,0.8979287455 +2011,1,2574,0.8979287455 2011,1,2575,0.8959591936 2011,1,2576,0.8920200892 2011,1,2577,0.8880809851 -2011,1,2578,0.8841418812999998 -2011,1,2579,0.8802027765999999 -2011,1,2580,0.8782332246999999 +2011,1,2578,0.8841418812999999 +2011,1,2579,0.8802027766 +2011,1,2580,0.8782332247 2011,1,2581,0.8762636728 2011,1,2582,0.8762636728 2011,1,2583,0.8762636728 -2011,1,2584,0.8782332246999999 -2011,1,2585,0.8802027765999999 +2011,1,2584,0.8782332247 +2011,1,2585,0.8802027766 2011,1,2586,0.8861114332 2011,1,2587,0.8900505372999999 2011,1,2588,0.8920200892 @@ -11351,75 +11351,75 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2590,0.8959591936 2011,1,2591,0.8959591936 2011,1,2592,0.8959591936 -2011,1,2593,0.8979287454999999 -2011,1,2594,0.8979287454999999 -2011,1,2595,0.8979287454999999 -2011,1,2596,0.8979287454999999 -2011,1,2597,0.8979287454999999 -2011,1,2598,0.8979287454999999 +2011,1,2593,0.8979287455 +2011,1,2594,0.8979287455 +2011,1,2595,0.8979287455 +2011,1,2596,0.8979287455 +2011,1,2597,0.8979287455 +2011,1,2598,0.8979287455 2011,1,2599,0.8939896417000001 2011,1,2600,0.8900505372999999 2011,1,2601,0.8861114332 -2011,1,2602,0.8821723288 -2011,1,2603,0.8802027765999999 -2011,1,2604,0.8782332246999999 +2011,1,2602,0.8821723288000001 +2011,1,2603,0.8802027766 +2011,1,2604,0.8782332247 2011,1,2605,0.8762636728 2011,1,2606,0.8762636728 2011,1,2607,0.8762636728 -2011,1,2608,0.8782332246999999 -2011,1,2609,0.8802027765999999 -2011,1,2610,0.8841418812999998 +2011,1,2608,0.8782332247 +2011,1,2609,0.8802027766 +2011,1,2610,0.8841418812999999 2011,1,2611,0.8880809851 2011,1,2612,0.8920200892 2011,1,2613,0.8939896417000001 2011,1,2614,0.8939896417000001 2011,1,2615,0.8959591936 -2011,1,2616,0.8979287454999999 -2011,1,2617,0.8979287454999999 -2011,1,2618,0.8979287454999999 -2011,1,2619,0.8979287454999999 +2011,1,2616,0.8979287455 +2011,1,2617,0.8979287455 +2011,1,2618,0.8979287455 +2011,1,2619,0.8979287455 2011,1,2620,0.8990000001999999 2011,1,2621,0.8990000001999999 -2011,1,2622,0.8979287454999999 +2011,1,2622,0.8979287455 2011,1,2623,0.8939896417000001 2011,1,2624,0.8880809851 -2011,1,2625,0.8841418812999998 -2011,1,2626,0.8802027765999999 -2011,1,2627,0.8782332246999999 +2011,1,2625,0.8841418812999999 +2011,1,2626,0.8802027766 +2011,1,2627,0.8782332247 2011,1,2628,0.8762636728 2011,1,2629,0.8742941203 2011,1,2630,0.8742941203 2011,1,2631,0.8762636728 -2011,1,2632,0.8782332246999999 -2011,1,2633,0.8821723288 +2011,1,2632,0.8782332247 +2011,1,2633,0.8821723288000001 2011,1,2634,0.8861114332 2011,1,2635,0.8900505372999999 2011,1,2636,0.8939896417000001 2011,1,2637,0.8939896417000001 2011,1,2638,0.8959591936 2011,1,2639,0.8959591936 -2011,1,2640,0.8979287454999999 -2011,1,2641,0.8979287454999999 -2011,1,2642,0.8979287454999999 -2011,1,2643,0.8979287454999999 -2011,1,2644,0.8979287454999999 -2011,1,2645,0.8979287454999999 -2011,1,2646,0.8979287454999999 +2011,1,2640,0.8979287455 +2011,1,2641,0.8979287455 +2011,1,2642,0.8979287455 +2011,1,2643,0.8979287455 +2011,1,2644,0.8979287455 +2011,1,2645,0.8979287455 +2011,1,2646,0.8979287455 2011,1,2647,0.8959591936 2011,1,2648,0.8920200892 2011,1,2649,0.8880809851 -2011,1,2650,0.8841418812999998 -2011,1,2651,0.8821723288 -2011,1,2652,0.8802027765999999 -2011,1,2653,0.8782332246999999 -2011,1,2654,0.8782332246999999 -2011,1,2655,0.8782332246999999 -2011,1,2656,0.8802027765999999 -2011,1,2657,0.8821723288 +2011,1,2650,0.8841418812999999 +2011,1,2651,0.8821723288000001 +2011,1,2652,0.8802027766 +2011,1,2653,0.8782332247 +2011,1,2654,0.8782332247 +2011,1,2655,0.8782332247 +2011,1,2656,0.8802027766 +2011,1,2657,0.8821723288000001 2011,1,2658,0.8880809851 2011,1,2659,0.8920200892 2011,1,2660,0.8959591936 -2011,1,2661,0.8979287454999999 +2011,1,2661,0.8979287455 2011,1,2662,0.8990000001999999 2011,1,2663,0.8990000001999999 2011,1,2664,0.8990000001999999 @@ -11433,17 +11433,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2672,0.8939896417000001 2011,1,2673,0.8900505372999999 2011,1,2674,0.8861114332 -2011,1,2675,0.8841418812999998 -2011,1,2676,0.8821723288 -2011,1,2677,0.8802027765999999 -2011,1,2678,0.8802027765999999 -2011,1,2679,0.8802027765999999 -2011,1,2680,0.8821723288 +2011,1,2675,0.8841418812999999 +2011,1,2676,0.8821723288000001 +2011,1,2677,0.8802027766 +2011,1,2678,0.8802027766 +2011,1,2679,0.8802027766 +2011,1,2680,0.8821723288000001 2011,1,2681,0.8861114332 2011,1,2682,0.8900505372999999 2011,1,2683,0.8939896417000001 2011,1,2684,0.8959591936 -2011,1,2685,0.8979287454999999 +2011,1,2685,0.8979287455 2011,1,2686,0.8990000001999999 2011,1,2687,0.8990000001999999 2011,1,2688,0.8990000001999999 @@ -11457,41 +11457,41 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2696,0.8939896417000001 2011,1,2697,0.8900505372999999 2011,1,2698,0.8880809851 -2011,1,2699,0.8841418812999998 -2011,1,2700,0.8821723288 -2011,1,2701,0.8821723288 -2011,1,2702,0.8802027765999999 -2011,1,2703,0.8802027765999999 -2011,1,2704,0.8821723288 -2011,1,2705,0.8841418812999998 +2011,1,2699,0.8841418812999999 +2011,1,2700,0.8821723288000001 +2011,1,2701,0.8821723288000001 +2011,1,2702,0.8802027766 +2011,1,2703,0.8802027766 +2011,1,2704,0.8821723288000001 +2011,1,2705,0.8841418812999999 2011,1,2706,0.8880809851 2011,1,2707,0.8920200892 2011,1,2708,0.8959591936 2011,1,2709,0.8959591936 -2011,1,2710,0.8979287454999999 -2011,1,2711,0.8979287454999999 +2011,1,2710,0.8979287455 +2011,1,2711,0.8979287455 2011,1,2712,0.8990000001999999 2011,1,2713,0.8990000001999999 2011,1,2714,0.8990000001999999 -2011,1,2715,0.8979287454999999 -2011,1,2716,0.8979287454999999 -2011,1,2717,0.8979287454999999 -2011,1,2718,0.8979287454999999 +2011,1,2715,0.8979287455 +2011,1,2716,0.8979287455 +2011,1,2717,0.8979287455 +2011,1,2718,0.8979287455 2011,1,2719,0.8959591936 2011,1,2720,0.8939896417000001 2011,1,2721,0.8900505372999999 2011,1,2722,0.8880809851 2011,1,2723,0.8861114332 -2011,1,2724,0.8841418812999998 -2011,1,2725,0.8821723288 -2011,1,2726,0.8802027765999999 -2011,1,2727,0.8821723288 -2011,1,2728,0.8841418812999998 +2011,1,2724,0.8841418812999999 +2011,1,2725,0.8821723288000001 +2011,1,2726,0.8802027766 +2011,1,2727,0.8821723288000001 +2011,1,2728,0.8841418812999999 2011,1,2729,0.8861114332 2011,1,2730,0.8900505372999999 2011,1,2731,0.8939896417000001 2011,1,2732,0.8959591936 -2011,1,2733,0.8979287454999999 +2011,1,2733,0.8979287455 2011,1,2734,0.8990000001999999 2011,1,2735,0.8990000001999999 2011,1,2736,0.8990000001999999 @@ -11501,22 +11501,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2740,0.8990000001999999 2011,1,2741,0.8990000001999999 2011,1,2742,0.8990000001999999 -2011,1,2743,0.8979287454999999 +2011,1,2743,0.8979287455 2011,1,2744,0.8939896417000001 2011,1,2745,0.8880809851 2011,1,2746,0.8861114332 -2011,1,2747,0.8821723288 -2011,1,2748,0.8802027765999999 -2011,1,2749,0.8782332246999999 +2011,1,2747,0.8821723288000001 +2011,1,2748,0.8802027766 +2011,1,2749,0.8782332247 2011,1,2750,0.8762636728 -2011,1,2751,0.8782332246999999 -2011,1,2752,0.8802027765999999 -2011,1,2753,0.8821723288 -2011,1,2754,0.8841418812999998 +2011,1,2751,0.8782332247 +2011,1,2752,0.8802027766 +2011,1,2753,0.8821723288000001 +2011,1,2754,0.8841418812999999 2011,1,2755,0.8880809851 2011,1,2756,0.8920200892 2011,1,2757,0.8959591936 -2011,1,2758,0.8979287454999999 +2011,1,2758,0.8979287455 2011,1,2759,0.8990000001999999 2011,1,2760,0.8990000001999999 2011,1,2761,0.8990000001999999 @@ -11526,20 +11526,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2765,0.8990000001999999 2011,1,2766,0.8990000001999999 2011,1,2767,0.8990000001999999 -2011,1,2768,0.8979287454999999 +2011,1,2768,0.8979287455 2011,1,2769,0.8920200892 2011,1,2770,0.8880809851 2011,1,2771,0.8861114332 -2011,1,2772,0.8821723288 -2011,1,2773,0.8802027765999999 -2011,1,2774,0.8802027765999999 -2011,1,2775,0.8782332246999999 -2011,1,2776,0.8802027765999999 -2011,1,2777,0.8821723288 +2011,1,2772,0.8821723288000001 +2011,1,2773,0.8802027766 +2011,1,2774,0.8802027766 +2011,1,2775,0.8782332247 +2011,1,2776,0.8802027766 +2011,1,2777,0.8821723288000001 2011,1,2778,0.8880809851 2011,1,2779,0.8920200892 2011,1,2780,0.8959591936 -2011,1,2781,0.8979287454999999 +2011,1,2781,0.8979287455 2011,1,2782,0.8990000001999999 2011,1,2783,0.8990000001999999 2011,1,2784,0.8990000001999999 @@ -11552,31 +11552,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2791,0.8990000001999999 2011,1,2792,0.8939896417000001 2011,1,2793,0.8900505372999999 -2011,1,2794,0.8841418812999998 -2011,1,2795,0.8821723288 -2011,1,2796,0.8782332246999999 +2011,1,2794,0.8841418812999999 +2011,1,2795,0.8821723288000001 +2011,1,2796,0.8782332247 2011,1,2797,0.8762636728 2011,1,2798,0.8742941203 2011,1,2799,0.8742941203 2011,1,2800,0.8762636728 -2011,1,2801,0.8782332246999999 -2011,1,2802,0.8841418812999998 +2011,1,2801,0.8782332247 +2011,1,2802,0.8841418812999999 2011,1,2803,0.8880809851 2011,1,2804,0.8900505372999999 2011,1,2805,0.8920200892 2011,1,2806,0.8939896417000001 2011,1,2807,0.8959591936 -2011,1,2808,0.8979287454999999 +2011,1,2808,0.8979287455 2011,1,2809,0.8990000001999999 2011,1,2810,0.8990000001999999 2011,1,2811,0.8990000001999999 2011,1,2812,0.8990000001999999 2011,1,2813,0.8990000001999999 -2011,1,2814,0.8979287454999999 +2011,1,2814,0.8979287455 2011,1,2815,0.8920200892 2011,1,2816,0.8861114332 -2011,1,2817,0.8821723288 -2011,1,2818,0.8782332246999999 +2011,1,2817,0.8821723288000001 +2011,1,2818,0.8782332247 2011,1,2819,0.8762636728 2011,1,2820,0.8742941203 2011,1,2821,0.8723245680999999 @@ -11584,11 +11584,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2823,0.8723245680999999 2011,1,2824,0.8742941203 2011,1,2825,0.8762636728 -2011,1,2826,0.8821723288 +2011,1,2826,0.8821723288000001 2011,1,2827,0.8880809851 2011,1,2828,0.8920200892 2011,1,2829,0.8939896417000001 -2011,1,2830,0.8979287454999999 +2011,1,2830,0.8979287455 2011,1,2831,0.8990000001999999 2011,1,2832,0.8990000001999999 2011,1,2833,0.8990000001999999 @@ -11603,10 +11603,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2842,0.8900505372999999 2011,1,2843,0.8880809851 2011,1,2844,0.8861114332 -2011,1,2845,0.8841418812999998 -2011,1,2846,0.8821723288 -2011,1,2847,0.8821723288 -2011,1,2848,0.8841418812999998 +2011,1,2845,0.8841418812999999 +2011,1,2846,0.8821723288000001 +2011,1,2847,0.8821723288000001 +2011,1,2848,0.8841418812999999 2011,1,2849,0.8861114332 2011,1,2850,0.8920200892 2011,1,2851,0.8959591936 @@ -11624,17 +11624,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2863,0.8990000001999999 2011,1,2864,0.8920200892 2011,1,2865,0.8861114332 -2011,1,2866,0.8821723288 -2011,1,2867,0.8802027765999999 -2011,1,2868,0.8782332246999999 -2011,1,2869,0.8782332246999999 +2011,1,2866,0.8821723288000001 +2011,1,2867,0.8802027766 +2011,1,2868,0.8782332247 +2011,1,2869,0.8782332247 2011,1,2870,0.8762636728 -2011,1,2871,0.8782332246999999 -2011,1,2872,0.8802027765999999 -2011,1,2873,0.8821723288 +2011,1,2871,0.8782332247 +2011,1,2872,0.8802027766 +2011,1,2873,0.8821723288000001 2011,1,2874,0.8880809851 2011,1,2875,0.8939896417000001 -2011,1,2876,0.8979287454999999 +2011,1,2876,0.8979287455 2011,1,2877,0.8990000001999999 2011,1,2878,0.8990000001999999 2011,1,2879,0.8990000001999999 @@ -11647,16 +11647,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2886,0.8990000001999999 2011,1,2887,0.8939896417000001 2011,1,2888,0.8861114332 -2011,1,2889,0.8802027765999999 +2011,1,2889,0.8802027766 2011,1,2890,0.8762636728 2011,1,2891,0.8742941203 2011,1,2892,0.8723245680999999 -2011,1,2893,0.8703550161999999 -2011,1,2894,0.8703550161999999 -2011,1,2895,0.8703550161999999 +2011,1,2893,0.8703550162 +2011,1,2894,0.8703550162 +2011,1,2895,0.8703550162 2011,1,2896,0.8723245680999999 2011,1,2897,0.8762636728 -2011,1,2898,0.8821723288 +2011,1,2898,0.8821723288000001 2011,1,2899,0.8880809851 2011,1,2900,0.8880809851 2011,1,2901,0.8900505372999999 @@ -11667,21 +11667,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2906,0.8939896417000001 2011,1,2907,0.8959591936 2011,1,2908,0.8959591936 -2011,1,2909,0.8979287454999999 +2011,1,2909,0.8979287455 2011,1,2910,0.8959591936 2011,1,2911,0.8880809851 -2011,1,2912,0.8821723288 +2011,1,2912,0.8821723288000001 2011,1,2913,0.8762636728 -2011,1,2914,0.8703550161999999 -2011,1,2915,0.8683854642999999 +2011,1,2914,0.8703550162 +2011,1,2915,0.8683854643 2011,1,2916,0.8664159117999999 2011,1,2917,0.8644463599 2011,1,2918,0.8644463599 2011,1,2919,0.8644463599 2011,1,2920,0.8664159117999999 -2011,1,2921,0.8703550161999999 -2011,1,2922,0.8782332246999999 -2011,1,2923,0.8841418812999998 +2011,1,2921,0.8703550162 +2011,1,2922,0.8782332247 +2011,1,2923,0.8841418812999999 2011,1,2924,0.8861114332 2011,1,2925,0.8861114332 2011,1,2926,0.8880809851 @@ -11689,23 +11689,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2928,0.8920200892 2011,1,2929,0.8939896417000001 2011,1,2930,0.8959591936 -2011,1,2931,0.8979287454999999 +2011,1,2931,0.8979287455 2011,1,2932,0.8990000001999999 2011,1,2933,0.8990000001999999 2011,1,2934,0.8959591936 2011,1,2935,0.8900505372999999 2011,1,2936,0.8861114332 -2011,1,2937,0.8802027765999999 +2011,1,2937,0.8802027766 2011,1,2938,0.8742941203 -2011,1,2939,0.8703550161999999 -2011,1,2940,0.8683854642999999 +2011,1,2939,0.8703550162 +2011,1,2940,0.8683854643 2011,1,2941,0.8664159117999999 2011,1,2942,0.8644463599 2011,1,2943,0.8644463599 2011,1,2944,0.8664159117999999 -2011,1,2945,0.8703550161999999 +2011,1,2945,0.8703550162 2011,1,2946,0.8762636728 -2011,1,2947,0.8821723288 +2011,1,2947,0.8821723288000001 2011,1,2948,0.8861114332 2011,1,2949,0.8880809851 2011,1,2950,0.8900505372999999 @@ -11718,30 +11718,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2957,0.8959591936 2011,1,2958,0.8939896417000001 2011,1,2959,0.8880809851 -2011,1,2960,0.8802027765999999 +2011,1,2960,0.8802027766 2011,1,2961,0.8742941203 -2011,1,2962,0.8683854642999999 +2011,1,2962,0.8683854643 2011,1,2963,0.8620494920999999 -2011,1,2964,0.8593799401999999 +2011,1,2964,0.8593799402 2011,1,2965,0.8574103882999999 2011,1,2966,0.8537913319 2011,1,2967,0.8544913318999999 2011,1,2968,0.8581103883 2011,1,2969,0.8624768076999999 -2011,1,2970,0.8683854642999999 +2011,1,2970,0.8683854643 2011,1,2971,0.8742941203 -2011,1,2972,0.8782332246999999 -2011,1,2973,0.8782332246999999 -2011,1,2974,0.8802027765999999 -2011,1,2975,0.8821723288 -2011,1,2976,0.8841418812999998 +2011,1,2972,0.8782332247 +2011,1,2973,0.8782332247 +2011,1,2974,0.8802027766 +2011,1,2975,0.8821723288000001 +2011,1,2976,0.8841418812999999 2011,1,2977,0.8861114332 2011,1,2978,0.8861114332 2011,1,2979,0.8880809851 2011,1,2980,0.8880809851 2011,1,2981,0.8880809851 2011,1,2982,0.8861114332 -2011,1,2983,0.8782332246999999 +2011,1,2983,0.8782332247 2011,1,2984,0.8723245680999999 2011,1,2985,0.8664159117999999 2011,1,2986,0.8600799401999999 @@ -11752,11 +11752,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,2991,0.8481913319 2011,1,2992,0.8551913319 2011,1,2993,0.8624768076999999 -2011,1,2994,0.8703550161999999 +2011,1,2994,0.8703550162 2011,1,2995,0.8762636728 -2011,1,2996,0.8802027765999999 -2011,1,2997,0.8841418812999998 -2011,1,2998,0.8841418812999998 +2011,1,2996,0.8802027766 +2011,1,2997,0.8841418812999999 +2011,1,2998,0.8841418812999999 2011,1,2999,0.8861114332 2011,1,3000,0.8861114332 2011,1,3001,0.8861114332 @@ -11765,20 +11765,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3004,0.8900505372999999 2011,1,3005,0.8900505372999999 2011,1,3006,0.8880809851 -2011,1,3007,0.8821723288 -2011,1,3008,0.8782332246999999 +2011,1,3007,0.8821723288000001 +2011,1,3008,0.8782332247 2011,1,3009,0.8723245680999999 2011,1,3010,0.8664159117999999 2011,1,3011,0.8640190443 2011,1,3012,0.8613494920999999 -2011,1,3013,0.8593799401999999 +2011,1,3013,0.8593799402 2011,1,3014,0.8574103882999999 2011,1,3015,0.8600799401999999 2011,1,3016,0.8624768076999999 2011,1,3017,0.8664159117999999 2011,1,3018,0.8723245680999999 -2011,1,3019,0.8802027765999999 -2011,1,3020,0.8841418812999998 +2011,1,3019,0.8802027766 +2011,1,3020,0.8841418812999999 2011,1,3021,0.8880809851 2011,1,3022,0.8900505372999999 2011,1,3023,0.8920200892 @@ -11786,22 +11786,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3025,0.8939896417000001 2011,1,3026,0.8959591936 2011,1,3027,0.8959591936 -2011,1,3028,0.8979287454999999 -2011,1,3029,0.8979287454999999 +2011,1,3028,0.8979287455 +2011,1,3029,0.8979287455 2011,1,3030,0.8959591936 2011,1,3031,0.8920200892 2011,1,3032,0.8880809851 -2011,1,3033,0.8841418812999998 -2011,1,3034,0.8802027765999999 +2011,1,3033,0.8841418812999999 +2011,1,3034,0.8802027766 2011,1,3035,0.8762636728 2011,1,3036,0.8742941203 2011,1,3037,0.8723245680999999 -2011,1,3038,0.8703550161999999 -2011,1,3039,0.8703550161999999 +2011,1,3038,0.8703550162 +2011,1,3039,0.8703550162 2011,1,3040,0.8723245680999999 2011,1,3041,0.8742941203 -2011,1,3042,0.8782332246999999 -2011,1,3043,0.8841418812999998 +2011,1,3042,0.8782332247 +2011,1,3043,0.8841418812999999 2011,1,3044,0.8880809851 2011,1,3045,0.8920200892 2011,1,3046,0.8939896417000001 @@ -11809,20 +11809,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3048,0.8959591936 2011,1,3049,0.8959591936 2011,1,3050,0.8959591936 -2011,1,3051,0.8979287454999999 -2011,1,3052,0.8979287454999999 -2011,1,3053,0.8979287454999999 -2011,1,3054,0.8979287454999999 -2011,1,3055,0.8979287454999999 +2011,1,3051,0.8979287455 +2011,1,3052,0.8979287455 +2011,1,3053,0.8979287455 +2011,1,3054,0.8979287455 +2011,1,3055,0.8979287455 2011,1,3056,0.8959591936 2011,1,3057,0.8920200892 2011,1,3058,0.8900505372999999 2011,1,3059,0.8861114332 -2011,1,3060,0.8841418812999998 -2011,1,3061,0.8821723288 -2011,1,3062,0.8821723288 -2011,1,3063,0.8821723288 -2011,1,3064,0.8841418812999998 +2011,1,3060,0.8841418812999999 +2011,1,3061,0.8821723288000001 +2011,1,3062,0.8821723288000001 +2011,1,3063,0.8821723288000001 +2011,1,3064,0.8841418812999999 2011,1,3065,0.8861114332 2011,1,3066,0.8880809851 2011,1,3067,0.8920200892 @@ -11838,19 +11838,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3077,0.8990000001999999 2011,1,3078,0.8990000001999999 2011,1,3079,0.8990000001999999 -2011,1,3080,0.8979287454999999 +2011,1,3080,0.8979287455 2011,1,3081,0.8939896417000001 2011,1,3082,0.8920200892 2011,1,3083,0.8880809851 2011,1,3084,0.8861114332 -2011,1,3085,0.8841418812999998 -2011,1,3086,0.8841418812999998 -2011,1,3087,0.8841418812999998 +2011,1,3085,0.8841418812999999 +2011,1,3086,0.8841418812999999 +2011,1,3087,0.8841418812999999 2011,1,3088,0.8861114332 2011,1,3089,0.8880809851 2011,1,3090,0.8920200892 2011,1,3091,0.8959591936 -2011,1,3092,0.8979287454999999 +2011,1,3092,0.8979287455 2011,1,3093,0.8990000001999999 2011,1,3094,0.8990000001999999 2011,1,3095,0.8990000001999999 @@ -11864,66 +11864,66 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3103,0.8990000001999999 2011,1,3104,0.8939896417000001 2011,1,3105,0.8880809851 -2011,1,3106,0.8841418812999998 -2011,1,3107,0.8802027765999999 -2011,1,3108,0.8782332246999999 +2011,1,3106,0.8841418812999999 +2011,1,3107,0.8802027766 +2011,1,3108,0.8782332247 2011,1,3109,0.8762636728 2011,1,3110,0.8742941203 2011,1,3111,0.8742941203 2011,1,3112,0.8762636728 -2011,1,3113,0.8782332246999999 -2011,1,3114,0.8821723288 +2011,1,3113,0.8782332247 +2011,1,3114,0.8821723288000001 2011,1,3115,0.8880809851 2011,1,3116,0.8920200892 2011,1,3117,0.8939896417000001 2011,1,3118,0.8959591936 -2011,1,3119,0.8979287454999999 +2011,1,3119,0.8979287455 2011,1,3120,0.8990000001999999 2011,1,3121,0.8990000001999999 2011,1,3122,0.8990000001999999 2011,1,3123,0.8990000001999999 2011,1,3124,0.8990000001999999 2011,1,3125,0.8990000001999999 -2011,1,3126,0.8979287454999999 +2011,1,3126,0.8979287455 2011,1,3127,0.8920200892 2011,1,3128,0.8880809851 -2011,1,3129,0.8821723288 -2011,1,3130,0.8782332246999999 +2011,1,3129,0.8821723288000001 +2011,1,3130,0.8782332247 2011,1,3131,0.8742941203 2011,1,3132,0.8723245680999999 -2011,1,3133,0.8703550161999999 -2011,1,3134,0.8683854642999999 -2011,1,3135,0.8683854642999999 -2011,1,3136,0.8703550161999999 +2011,1,3133,0.8703550162 +2011,1,3134,0.8683854643 +2011,1,3135,0.8683854643 +2011,1,3136,0.8703550162 2011,1,3137,0.8723245680999999 2011,1,3138,0.8762636728 -2011,1,3139,0.8841418812999998 +2011,1,3139,0.8841418812999999 2011,1,3140,0.8861114332 2011,1,3141,0.8880809851 2011,1,3142,0.8920200892 2011,1,3143,0.8939896417000001 2011,1,3144,0.8959591936 2011,1,3145,0.8959591936 -2011,1,3146,0.8979287454999999 +2011,1,3146,0.8979287455 2011,1,3147,0.8990000001999999 2011,1,3148,0.8990000001999999 2011,1,3149,0.8990000001999999 -2011,1,3150,0.8979287454999999 +2011,1,3150,0.8979287455 2011,1,3151,0.8920200892 2011,1,3152,0.8861114332 -2011,1,3153,0.8821723288 -2011,1,3154,0.8782332246999999 +2011,1,3153,0.8821723288000001 +2011,1,3154,0.8782332247 2011,1,3155,0.8723245680999999 -2011,1,3156,0.8703550161999999 -2011,1,3157,0.8683854642999999 +2011,1,3156,0.8703550162 +2011,1,3157,0.8683854643 2011,1,3158,0.8664159117999999 2011,1,3159,0.8644463599 2011,1,3160,0.8664159117999999 -2011,1,3161,0.8683854642999999 +2011,1,3161,0.8683854643 2011,1,3162,0.8742941203 -2011,1,3163,0.8802027765999999 -2011,1,3164,0.8841418812999998 -2011,1,3165,0.8841418812999998 +2011,1,3163,0.8802027766 +2011,1,3164,0.8841418812999999 +2011,1,3165,0.8841418812999999 2011,1,3166,0.8861114332 2011,1,3167,0.8880809851 2011,1,3168,0.8900505372999999 @@ -11934,25 +11934,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3173,0.8959591936 2011,1,3174,0.8939896417000001 2011,1,3175,0.8880809851 -2011,1,3176,0.8821723288 +2011,1,3176,0.8821723288000001 2011,1,3177,0.8762636728 -2011,1,3178,0.8703550161999999 -2011,1,3179,0.8683854642999999 +2011,1,3178,0.8703550162 +2011,1,3179,0.8683854643 2011,1,3180,0.8659885961999999 2011,1,3181,0.8659885961999999 2011,1,3182,0.8664159117999999 -2011,1,3183,0.8683854642999999 -2011,1,3184,0.8703550161999999 +2011,1,3183,0.8683854643 +2011,1,3184,0.8703550162 2011,1,3185,0.8723245680999999 -2011,1,3186,0.8782332246999999 -2011,1,3187,0.8821723288 +2011,1,3186,0.8782332247 +2011,1,3187,0.8821723288000001 2011,1,3188,0.8861114332 2011,1,3189,0.8900505372999999 2011,1,3190,0.8920200892 2011,1,3191,0.8939896417000001 2011,1,3192,0.8959591936 2011,1,3193,0.8959591936 -2011,1,3194,0.8979287454999999 +2011,1,3194,0.8979287455 2011,1,3195,0.8990000001999999 2011,1,3196,0.8990000001999999 2011,1,3197,0.8990000001999999 @@ -11960,17 +11960,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3199,0.8959591936 2011,1,3200,0.8920200892 2011,1,3201,0.8880809851 -2011,1,3202,0.8841418812999998 -2011,1,3203,0.8821723288 -2011,1,3204,0.8802027765999999 -2011,1,3205,0.8782332246999999 +2011,1,3202,0.8841418812999999 +2011,1,3203,0.8821723288000001 +2011,1,3204,0.8802027766 +2011,1,3205,0.8782332247 2011,1,3206,0.8762636728 -2011,1,3207,0.8782332246999999 -2011,1,3208,0.8802027765999999 -2011,1,3209,0.8821723288 +2011,1,3207,0.8782332247 +2011,1,3208,0.8802027766 +2011,1,3209,0.8821723288000001 2011,1,3210,0.8880809851 2011,1,3211,0.8939896417000001 -2011,1,3212,0.8979287454999999 +2011,1,3212,0.8979287455 2011,1,3213,0.8990000001999999 2011,1,3214,0.8990000001999999 2011,1,3215,0.8990000001999999 @@ -11982,7 +11982,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3221,0.8990000001999999 2011,1,3222,0.8990000001999999 2011,1,3223,0.8990000001999999 -2011,1,3224,0.8979287454999999 +2011,1,3224,0.8979287455 2011,1,3225,0.8959591936 2011,1,3226,0.8939896417000001 2011,1,3227,0.8920200892 @@ -12017,7 +12017,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3256,0.8900505372999999 2011,1,3257,0.8939896417000001 2011,1,3258,0.8959591936 -2011,1,3259,0.8979287454999999 +2011,1,3259,0.8979287455 2011,1,3260,0.8990000001999999 2011,1,3261,0.8990000001999999 2011,1,3262,0.8990000001999999 @@ -12029,21 +12029,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3268,0.8990000001999999 2011,1,3269,0.8990000001999999 2011,1,3270,0.8990000001999999 -2011,1,3271,0.8979287454999999 +2011,1,3271,0.8979287455 2011,1,3272,0.8959591936 2011,1,3273,0.8920200892 2011,1,3274,0.8900505372999999 2011,1,3275,0.8880809851 2011,1,3276,0.8861114332 -2011,1,3277,0.8841418812999998 -2011,1,3278,0.8841418812999998 -2011,1,3279,0.8841418812999998 +2011,1,3277,0.8841418812999999 +2011,1,3278,0.8841418812999999 +2011,1,3279,0.8841418812999999 2011,1,3280,0.8861114332 2011,1,3281,0.8880809851 2011,1,3282,0.8920200892 2011,1,3283,0.8959591936 -2011,1,3284,0.8979287454999999 -2011,1,3285,0.8979287454999999 +2011,1,3284,0.8979287455 +2011,1,3285,0.8979287455 2011,1,3286,0.8990000001999999 2011,1,3287,0.8990000001999999 2011,1,3288,0.8990000001999999 @@ -12054,19 +12054,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3293,0.8990000001999999 2011,1,3294,0.8990000001999999 2011,1,3295,0.8990000001999999 -2011,1,3296,0.8979287454999999 +2011,1,3296,0.8979287455 2011,1,3297,0.8939896417000001 2011,1,3298,0.8920200892 2011,1,3299,0.8900505372999999 2011,1,3300,0.8880809851 2011,1,3301,0.8861114332 -2011,1,3302,0.8841418812999998 -2011,1,3303,0.8841418812999998 +2011,1,3302,0.8841418812999999 +2011,1,3303,0.8841418812999999 2011,1,3304,0.8861114332 2011,1,3305,0.8880809851 2011,1,3306,0.8900505372999999 2011,1,3307,0.8939896417000001 -2011,1,3308,0.8979287454999999 +2011,1,3308,0.8979287455 2011,1,3309,0.8990000001999999 2011,1,3310,0.8990000001999999 2011,1,3311,0.8990000001999999 @@ -12077,43 +12077,43 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3316,0.8990000001999999 2011,1,3317,0.8990000001999999 2011,1,3318,0.8990000001999999 -2011,1,3319,0.8979287454999999 +2011,1,3319,0.8979287455 2011,1,3320,0.8920200892 2011,1,3321,0.8880809851 -2011,1,3322,0.8841418812999998 -2011,1,3323,0.8821723288 -2011,1,3324,0.8782332246999999 +2011,1,3322,0.8841418812999999 +2011,1,3323,0.8821723288000001 +2011,1,3324,0.8782332247 2011,1,3325,0.8762636728 2011,1,3326,0.8762636728 2011,1,3327,0.8762636728 2011,1,3328,0.8762636728 -2011,1,3329,0.8782332246999999 -2011,1,3330,0.8841418812999998 +2011,1,3329,0.8782332247 +2011,1,3330,0.8841418812999999 2011,1,3331,0.8880809851 2011,1,3332,0.8900505372999999 2011,1,3333,0.8920200892 2011,1,3334,0.8939896417000001 2011,1,3335,0.8959591936 -2011,1,3336,0.8979287454999999 -2011,1,3337,0.8979287454999999 +2011,1,3336,0.8979287455 +2011,1,3337,0.8979287455 2011,1,3338,0.8990000001999999 2011,1,3339,0.8990000001999999 2011,1,3340,0.8990000001999999 2011,1,3341,0.8990000001999999 -2011,1,3342,0.8979287454999999 +2011,1,3342,0.8979287455 2011,1,3343,0.8920200892 2011,1,3344,0.8861114332 -2011,1,3345,0.8821723288 +2011,1,3345,0.8821723288000001 2011,1,3346,0.8762636728 2011,1,3347,0.8723245680999999 -2011,1,3348,0.8703550161999999 -2011,1,3349,0.8683854642999999 +2011,1,3348,0.8703550162 +2011,1,3349,0.8683854643 2011,1,3350,0.8664159117999999 2011,1,3351,0.8664159117999999 -2011,1,3352,0.8683854642999999 -2011,1,3353,0.8703550161999999 +2011,1,3352,0.8683854643 +2011,1,3353,0.8703550162 2011,1,3354,0.8762636728 -2011,1,3355,0.8821723288 +2011,1,3355,0.8821723288000001 2011,1,3356,0.8861114332 2011,1,3357,0.8880809851 2011,1,3358,0.8900505372999999 @@ -12127,22 +12127,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3366,0.8939896417000001 2011,1,3367,0.8900505372999999 2011,1,3368,0.8861114332 -2011,1,3369,0.8802027765999999 +2011,1,3369,0.8802027766 2011,1,3370,0.8762636728 2011,1,3371,0.8742941203 2011,1,3372,0.8723245680999999 -2011,1,3373,0.8703550161999999 -2011,1,3374,0.8703550161999999 -2011,1,3375,0.8683854642999999 -2011,1,3376,0.8703550161999999 +2011,1,3373,0.8703550162 +2011,1,3374,0.8703550162 +2011,1,3375,0.8683854643 +2011,1,3376,0.8703550162 2011,1,3377,0.8723245680999999 2011,1,3378,0.8762636728 -2011,1,3379,0.8821723288 +2011,1,3379,0.8821723288000001 2011,1,3380,0.8861114332 2011,1,3381,0.8880809851 2011,1,3382,0.8920200892 2011,1,3383,0.8939896417000001 -2011,1,3384,0.8979287454999999 +2011,1,3384,0.8979287455 2011,1,3385,0.8990000001999999 2011,1,3386,0.8990000001999999 2011,1,3387,0.8990000001999999 @@ -12152,19 +12152,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3391,0.8939896417000001 2011,1,3392,0.8900505372999999 2011,1,3393,0.8861114332 -2011,1,3394,0.8821723288 -2011,1,3395,0.8782332246999999 +2011,1,3394,0.8821723288000001 +2011,1,3395,0.8782332247 2011,1,3396,0.8762636728 2011,1,3397,0.8742941203 2011,1,3398,0.8723245680999999 2011,1,3399,0.8723245680999999 2011,1,3400,0.8742941203 2011,1,3401,0.8762636728 -2011,1,3402,0.8821723288 +2011,1,3402,0.8821723288000001 2011,1,3403,0.8880809851 2011,1,3404,0.8920200892 2011,1,3405,0.8959591936 -2011,1,3406,0.8979287454999999 +2011,1,3406,0.8979287455 2011,1,3407,0.8990000001999999 2011,1,3408,0.8990000001999999 2011,1,3409,0.8990000001999999 @@ -12173,21 +12173,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3412,0.8990000001999999 2011,1,3413,0.8990000001999999 2011,1,3414,0.8990000001999999 -2011,1,3415,0.8979287454999999 +2011,1,3415,0.8979287455 2011,1,3416,0.8939896417000001 2011,1,3417,0.8900505372999999 2011,1,3418,0.8880809851 -2011,1,3419,0.8841418812999998 -2011,1,3420,0.8821723288 -2011,1,3421,0.8802027765999999 -2011,1,3422,0.8782332246999999 -2011,1,3423,0.8782332246999999 -2011,1,3424,0.8802027765999999 -2011,1,3425,0.8821723288 +2011,1,3419,0.8841418812999999 +2011,1,3420,0.8821723288000001 +2011,1,3421,0.8802027766 +2011,1,3422,0.8782332247 +2011,1,3423,0.8782332247 +2011,1,3424,0.8802027766 +2011,1,3425,0.8821723288000001 2011,1,3426,0.8861114332 2011,1,3427,0.8920200892 2011,1,3428,0.8959591936 -2011,1,3429,0.8979287454999999 +2011,1,3429,0.8979287455 2011,1,3430,0.8990000001999999 2011,1,3431,0.8990000001999999 2011,1,3432,0.8990000001999999 @@ -12197,47 +12197,47 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3436,0.8990000001999999 2011,1,3437,0.8990000001999999 2011,1,3438,0.8990000001999999 -2011,1,3439,0.8979287454999999 +2011,1,3439,0.8979287455 2011,1,3440,0.8920200892 2011,1,3441,0.8880809851 -2011,1,3442,0.8821723288 -2011,1,3443,0.8802027765999999 +2011,1,3442,0.8821723288000001 +2011,1,3443,0.8802027766 2011,1,3444,0.8762636728 2011,1,3445,0.8742941203 2011,1,3446,0.8723245680999999 2011,1,3447,0.8723245680999999 2011,1,3448,0.8723245680999999 2011,1,3449,0.8742941203 -2011,1,3450,0.8802027765999999 +2011,1,3450,0.8802027766 2011,1,3451,0.8861114332 2011,1,3452,0.8900505372999999 2011,1,3453,0.8900505372999999 2011,1,3454,0.8920200892 2011,1,3455,0.8939896417000001 2011,1,3456,0.8959591936 -2011,1,3457,0.8979287454999999 +2011,1,3457,0.8979287455 2011,1,3458,0.8990000001999999 2011,1,3459,0.8990000001999999 2011,1,3460,0.8990000001999999 2011,1,3461,0.8990000001999999 2011,1,3462,0.8959591936 2011,1,3463,0.8900505372999999 -2011,1,3464,0.8841418812999998 -2011,1,3465,0.8802027765999999 +2011,1,3464,0.8841418812999999 +2011,1,3465,0.8802027766 2011,1,3466,0.8742941203 -2011,1,3467,0.8703550161999999 -2011,1,3468,0.8683854642999999 +2011,1,3467,0.8703550162 +2011,1,3468,0.8683854643 2011,1,3469,0.8664159117999999 -2011,1,3470,0.8683854642999999 -2011,1,3471,0.8703550161999999 +2011,1,3470,0.8683854643 +2011,1,3471,0.8703550162 2011,1,3472,0.8742941203 -2011,1,3473,0.8782332246999999 -2011,1,3474,0.8841418812999998 +2011,1,3473,0.8782332247 +2011,1,3474,0.8841418812999999 2011,1,3475,0.8880809851 2011,1,3476,0.8920200892 2011,1,3477,0.8939896417000001 2011,1,3478,0.8959591936 -2011,1,3479,0.8979287454999999 +2011,1,3479,0.8979287455 2011,1,3480,0.8990000001999999 2011,1,3481,0.8990000001999999 2011,1,3482,0.8990000001999999 @@ -12245,24 +12245,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3484,0.8990000001999999 2011,1,3485,0.8990000001999999 2011,1,3486,0.8990000001999999 -2011,1,3487,0.8979287454999999 +2011,1,3487,0.8979287455 2011,1,3488,0.8939896417000001 2011,1,3489,0.8880809851 -2011,1,3490,0.8841418812999998 -2011,1,3491,0.8802027765999999 -2011,1,3492,0.8782332246999999 +2011,1,3490,0.8841418812999999 +2011,1,3491,0.8802027766 +2011,1,3492,0.8782332247 2011,1,3493,0.8762636728 2011,1,3494,0.8742941203 2011,1,3495,0.8742941203 2011,1,3496,0.8742941203 2011,1,3497,0.8762636728 -2011,1,3498,0.8802027765999999 +2011,1,3498,0.8802027766 2011,1,3499,0.8880809851 2011,1,3500,0.8920200892 2011,1,3501,0.8939896417000001 2011,1,3502,0.8959591936 -2011,1,3503,0.8979287454999999 -2011,1,3504,0.8979287454999999 +2011,1,3503,0.8979287455 +2011,1,3504,0.8979287455 2011,1,3505,0.8990000001999999 2011,1,3506,0.8990000001999999 2011,1,3507,0.8990000001999999 @@ -12271,22 +12271,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3510,0.8990000001999999 2011,1,3511,0.8939896417000001 2011,1,3512,0.8880809851 -2011,1,3513,0.8841418812999998 -2011,1,3514,0.8802027765999999 +2011,1,3513,0.8841418812999999 +2011,1,3514,0.8802027766 2011,1,3515,0.8762636728 2011,1,3516,0.8742941203 2011,1,3517,0.8718972524999999 -2011,1,3518,0.8703550161999999 -2011,1,3519,0.8683854642999999 -2011,1,3520,0.8703550161999999 +2011,1,3518,0.8703550162 +2011,1,3519,0.8683854643 +2011,1,3520,0.8703550162 2011,1,3521,0.8723245680999999 2011,1,3522,0.8762636728 -2011,1,3523,0.8841418812999998 +2011,1,3523,0.8841418812999999 2011,1,3524,0.8880809851 2011,1,3525,0.8900505372999999 2011,1,3526,0.8939896417000001 2011,1,3527,0.8959591936 -2011,1,3528,0.8979287454999999 +2011,1,3528,0.8979287455 2011,1,3529,0.8990000001999999 2011,1,3530,0.8990000001999999 2011,1,3531,0.8990000001999999 @@ -12296,20 +12296,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3535,0.8959591936 2011,1,3536,0.8920200892 2011,1,3537,0.8861114332 -2011,1,3538,0.8821723288 -2011,1,3539,0.8802027765999999 +2011,1,3538,0.8821723288000001 +2011,1,3539,0.8802027766 2011,1,3540,0.8762636728 2011,1,3541,0.8742941203 2011,1,3542,0.8742941203 2011,1,3543,0.8742941203 2011,1,3544,0.8762636728 -2011,1,3545,0.8782332246999999 -2011,1,3546,0.8841418812999998 +2011,1,3545,0.8782332247 +2011,1,3546,0.8841418812999999 2011,1,3547,0.8900505372999999 2011,1,3548,0.8939896417000001 2011,1,3549,0.8959591936 2011,1,3550,0.8959591936 -2011,1,3551,0.8979287454999999 +2011,1,3551,0.8979287455 2011,1,3552,0.8990000001999999 2011,1,3553,0.8990000001999999 2011,1,3554,0.8990000001999999 @@ -12324,13 +12324,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3563,0.8900505372999999 2011,1,3564,0.8880809851 2011,1,3565,0.8861114332 -2011,1,3566,0.8841418812999998 -2011,1,3567,0.8821723288 -2011,1,3568,0.8821723288 -2011,1,3569,0.8841418812999998 +2011,1,3566,0.8841418812999999 +2011,1,3567,0.8821723288000001 +2011,1,3568,0.8821723288000001 +2011,1,3569,0.8841418812999999 2011,1,3570,0.8880809851 2011,1,3571,0.8939896417000001 -2011,1,3572,0.8979287454999999 +2011,1,3572,0.8979287455 2011,1,3573,0.8990000001999999 2011,1,3574,0.8990000001999999 2011,1,3575,0.8990000001999999 @@ -12344,20 +12344,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3583,0.8959591936 2011,1,3584,0.8920200892 2011,1,3585,0.8861114332 -2011,1,3586,0.8821723288 -2011,1,3587,0.8782332246999999 +2011,1,3586,0.8821723288000001 +2011,1,3587,0.8782332247 2011,1,3588,0.8762636728 2011,1,3589,0.8742941203 2011,1,3590,0.8723245680999999 -2011,1,3591,0.8703550161999999 +2011,1,3591,0.8703550162 2011,1,3592,0.8723245680999999 2011,1,3593,0.8742941203 -2011,1,3594,0.8782332246999999 +2011,1,3594,0.8782332247 2011,1,3595,0.8861114332 2011,1,3596,0.8900505372999999 2011,1,3597,0.8920200892 2011,1,3598,0.8959591936 -2011,1,3599,0.8979287454999999 +2011,1,3599,0.8979287455 2011,1,3600,0.8990000001999999 2011,1,3601,0.8990000001999999 2011,1,3602,0.8990000001999999 @@ -12367,20 +12367,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3606,0.8990000001999999 2011,1,3607,0.8959591936 2011,1,3608,0.8900505372999999 -2011,1,3609,0.8841418812999998 -2011,1,3610,0.8782332246999999 +2011,1,3609,0.8841418812999999 +2011,1,3610,0.8782332247 2011,1,3611,0.8742941203 -2011,1,3612,0.8703550161999999 -2011,1,3613,0.8683854642999999 -2011,1,3614,0.8683854642999999 -2011,1,3615,0.8703550161999999 +2011,1,3612,0.8703550162 +2011,1,3613,0.8683854643 +2011,1,3614,0.8683854643 +2011,1,3615,0.8703550162 2011,1,3616,0.8723245680999999 -2011,1,3617,0.8782332246999999 -2011,1,3618,0.8841418812999998 +2011,1,3617,0.8782332247 +2011,1,3618,0.8841418812999999 2011,1,3619,0.8900505372999999 2011,1,3620,0.8939896417000001 2011,1,3621,0.8959591936 -2011,1,3622,0.8979287454999999 +2011,1,3622,0.8979287455 2011,1,3623,0.8990000001999999 2011,1,3624,0.8990000001999999 2011,1,3625,0.8990000001999999 @@ -12389,21 +12389,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3628,0.8990000001999999 2011,1,3629,0.8990000001999999 2011,1,3630,0.8990000001999999 -2011,1,3631,0.8979287454999999 +2011,1,3631,0.8979287455 2011,1,3632,0.8939896417000001 2011,1,3633,0.8900505372999999 2011,1,3634,0.8861114332 -2011,1,3635,0.8821723288 -2011,1,3636,0.8802027765999999 -2011,1,3637,0.8782332246999999 +2011,1,3635,0.8821723288000001 +2011,1,3636,0.8802027766 +2011,1,3637,0.8782332247 2011,1,3638,0.8762636728 -2011,1,3639,0.8782332246999999 -2011,1,3640,0.8802027765999999 -2011,1,3641,0.8821723288 +2011,1,3639,0.8782332247 +2011,1,3640,0.8802027766 +2011,1,3641,0.8821723288000001 2011,1,3642,0.8861114332 2011,1,3643,0.8920200892 2011,1,3644,0.8959591936 -2011,1,3645,0.8979287454999999 +2011,1,3645,0.8979287455 2011,1,3646,0.8990000001999999 2011,1,3647,0.8990000001999999 2011,1,3648,0.8990000001999999 @@ -12413,23 +12413,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3652,0.8990000001999999 2011,1,3653,0.8990000001999999 2011,1,3654,0.8990000001999999 -2011,1,3655,0.8979287454999999 +2011,1,3655,0.8979287455 2011,1,3656,0.8920200892 2011,1,3657,0.8880809851 -2011,1,3658,0.8841418812999998 -2011,1,3659,0.8802027765999999 -2011,1,3660,0.8782332246999999 +2011,1,3658,0.8841418812999999 +2011,1,3659,0.8802027766 +2011,1,3660,0.8782332247 2011,1,3661,0.8762636728 2011,1,3662,0.8762636728 2011,1,3663,0.8742941203 2011,1,3664,0.8762636728 -2011,1,3665,0.8782332246999999 -2011,1,3666,0.8821723288 +2011,1,3665,0.8782332247 +2011,1,3666,0.8821723288000001 2011,1,3667,0.8880809851 2011,1,3668,0.8920200892 2011,1,3669,0.8939896417000001 2011,1,3670,0.8959591936 -2011,1,3671,0.8979287454999999 +2011,1,3671,0.8979287455 2011,1,3672,0.8990000001999999 2011,1,3673,0.8990000001999999 2011,1,3674,0.8990000001999999 @@ -12439,95 +12439,95 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3678,0.8990000001999999 2011,1,3679,0.8939896417000001 2011,1,3680,0.8900505372999999 -2011,1,3681,0.8841418812999998 -2011,1,3682,0.8782332246999999 +2011,1,3681,0.8841418812999999 +2011,1,3682,0.8782332247 2011,1,3683,0.8742941203 2011,1,3684,0.8723245680999999 -2011,1,3685,0.8703550161999999 -2011,1,3686,0.8703550161999999 +2011,1,3685,0.8703550162 +2011,1,3686,0.8703550162 2011,1,3687,0.8723245680999999 2011,1,3688,0.8742941203 -2011,1,3689,0.8802027765999999 -2011,1,3690,0.8841418812999998 +2011,1,3689,0.8802027766 +2011,1,3690,0.8841418812999999 2011,1,3691,0.8880809851 2011,1,3692,0.8920200892 2011,1,3693,0.8939896417000001 2011,1,3694,0.8959591936 -2011,1,3695,0.8979287454999999 -2011,1,3696,0.8979287454999999 -2011,1,3697,0.8979287454999999 -2011,1,3698,0.8979287454999999 -2011,1,3699,0.8979287454999999 -2011,1,3700,0.8979287454999999 -2011,1,3701,0.8979287454999999 +2011,1,3695,0.8979287455 +2011,1,3696,0.8979287455 +2011,1,3697,0.8979287455 +2011,1,3698,0.8979287455 +2011,1,3699,0.8979287455 +2011,1,3700,0.8979287455 +2011,1,3701,0.8979287455 2011,1,3702,0.8959591936 2011,1,3703,0.8920200892 2011,1,3704,0.8900505372999999 2011,1,3705,0.8861114332 -2011,1,3706,0.8841418812999998 -2011,1,3707,0.8821723288 -2011,1,3708,0.8802027765999999 -2011,1,3709,0.8782332246999999 -2011,1,3710,0.8782332246999999 -2011,1,3711,0.8782332246999999 -2011,1,3712,0.8802027765999999 -2011,1,3713,0.8821723288 -2011,1,3714,0.8841418812999998 +2011,1,3706,0.8841418812999999 +2011,1,3707,0.8821723288000001 +2011,1,3708,0.8802027766 +2011,1,3709,0.8782332247 +2011,1,3710,0.8782332247 +2011,1,3711,0.8782332247 +2011,1,3712,0.8802027766 +2011,1,3713,0.8821723288000001 +2011,1,3714,0.8841418812999999 2011,1,3715,0.8880809851 2011,1,3716,0.8920200892 2011,1,3717,0.8939896417000001 2011,1,3718,0.8959591936 2011,1,3719,0.8959591936 -2011,1,3720,0.8979287454999999 -2011,1,3721,0.8979287454999999 -2011,1,3722,0.8979287454999999 -2011,1,3723,0.8979287454999999 -2011,1,3724,0.8979287454999999 -2011,1,3725,0.8979287454999999 +2011,1,3720,0.8979287455 +2011,1,3721,0.8979287455 +2011,1,3722,0.8979287455 +2011,1,3723,0.8979287455 +2011,1,3724,0.8979287455 +2011,1,3725,0.8979287455 2011,1,3726,0.8959591936 2011,1,3727,0.8920200892 2011,1,3728,0.8880809851 -2011,1,3729,0.8841418812999998 -2011,1,3730,0.8821723288 -2011,1,3731,0.8782332246999999 +2011,1,3729,0.8841418812999999 +2011,1,3730,0.8821723288000001 +2011,1,3731,0.8782332247 2011,1,3732,0.8762636728 2011,1,3733,0.8742941203 2011,1,3734,0.8742941203 2011,1,3735,0.8762636728 -2011,1,3736,0.8782332246999999 -2011,1,3737,0.8802027765999999 -2011,1,3738,0.8841418812999998 +2011,1,3736,0.8782332247 +2011,1,3737,0.8802027766 +2011,1,3738,0.8841418812999999 2011,1,3739,0.8900505372999999 2011,1,3740,0.8939896417000001 -2011,1,3741,0.8979287454999999 -2011,1,3742,0.8979287454999999 -2011,1,3743,0.8979287454999999 +2011,1,3741,0.8979287455 +2011,1,3742,0.8979287455 +2011,1,3743,0.8979287455 2011,1,3744,0.8990000001999999 2011,1,3745,0.8990000001999999 2011,1,3746,0.8990000001999999 2011,1,3747,0.8990000001999999 2011,1,3748,0.8990000001999999 2011,1,3749,0.8990000001999999 -2011,1,3750,0.8979287454999999 +2011,1,3750,0.8979287455 2011,1,3751,0.8939896417000001 2011,1,3752,0.8900505372999999 2011,1,3753,0.8861114332 -2011,1,3754,0.8821723288 -2011,1,3755,0.8802027765999999 -2011,1,3756,0.8782332246999999 +2011,1,3754,0.8821723288000001 +2011,1,3755,0.8802027766 +2011,1,3756,0.8782332247 2011,1,3757,0.8762636728 2011,1,3758,0.8742941203 2011,1,3759,0.8742941203 2011,1,3760,0.8762636728 -2011,1,3761,0.8782332246999999 -2011,1,3762,0.8802027765999999 +2011,1,3761,0.8782332247 +2011,1,3762,0.8802027766 2011,1,3763,0.8861114332 2011,1,3764,0.8920200892 2011,1,3765,0.8939896417000001 2011,1,3766,0.8939896417000001 2011,1,3767,0.8959591936 -2011,1,3768,0.8979287454999999 -2011,1,3769,0.8979287454999999 +2011,1,3768,0.8979287455 +2011,1,3769,0.8979287455 2011,1,3770,0.8990000001999999 2011,1,3771,0.8990000001999999 2011,1,3772,0.8990000001999999 @@ -12535,17 +12535,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3774,0.8959591936 2011,1,3775,0.8920200892 2011,1,3776,0.8880809851 -2011,1,3777,0.8821723288 -2011,1,3778,0.8782332246999999 +2011,1,3777,0.8821723288000001 +2011,1,3778,0.8782332247 2011,1,3779,0.8762636728 2011,1,3780,0.8742941203 2011,1,3781,0.8723245680999999 -2011,1,3782,0.8703550161999999 -2011,1,3783,0.8703550161999999 -2011,1,3784,0.8703550161999999 +2011,1,3782,0.8703550162 +2011,1,3783,0.8703550162 +2011,1,3784,0.8703550162 2011,1,3785,0.8723245680999999 2011,1,3786,0.8762636728 -2011,1,3787,0.8821723288 +2011,1,3787,0.8821723288000001 2011,1,3788,0.8861114332 2011,1,3789,0.8880809851 2011,1,3790,0.8900505372999999 @@ -12553,24 +12553,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3792,0.8939896417000001 2011,1,3793,0.8939896417000001 2011,1,3794,0.8959591936 -2011,1,3795,0.8979287454999999 -2011,1,3796,0.8979287454999999 -2011,1,3797,0.8979287454999999 +2011,1,3795,0.8979287455 +2011,1,3796,0.8979287455 +2011,1,3797,0.8979287455 2011,1,3798,0.8939896417000001 2011,1,3799,0.8880809851 -2011,1,3800,0.8841418812999998 -2011,1,3801,0.8782332246999999 +2011,1,3800,0.8841418812999999 +2011,1,3801,0.8782332247 2011,1,3802,0.8742941203 -2011,1,3803,0.8703550161999999 -2011,1,3804,0.8683854642999999 +2011,1,3803,0.8703550162 +2011,1,3804,0.8683854643 2011,1,3805,0.8664159117999999 2011,1,3806,0.8644463599 2011,1,3807,0.8644463599 2011,1,3808,0.8664159117999999 -2011,1,3809,0.8683854642999999 +2011,1,3809,0.8683854643 2011,1,3810,0.8723245680999999 -2011,1,3811,0.8802027765999999 -2011,1,3812,0.8841418812999998 +2011,1,3811,0.8802027766 +2011,1,3812,0.8841418812999999 2011,1,3813,0.8880809851 2011,1,3814,0.8900505372999999 2011,1,3815,0.8920200892 @@ -12582,19 +12582,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3821,0.8959591936 2011,1,3822,0.8920200892 2011,1,3823,0.8861114332 -2011,1,3824,0.8802027765999999 +2011,1,3824,0.8802027766 2011,1,3825,0.8762636728 2011,1,3826,0.8723245680999999 -2011,1,3827,0.8683854642999999 +2011,1,3827,0.8683854643 2011,1,3828,0.8664159117999999 2011,1,3829,0.8640190443 2011,1,3830,0.8620494920999999 2011,1,3831,0.8624768076999999 2011,1,3832,0.8624768076999999 2011,1,3833,0.8644463599 -2011,1,3834,0.8703550161999999 +2011,1,3834,0.8703550162 2011,1,3835,0.8762636728 -2011,1,3836,0.8821723288 +2011,1,3836,0.8821723288000001 2011,1,3837,0.8861114332 2011,1,3838,0.8880809851 2011,1,3839,0.8900505372999999 @@ -12605,10 +12605,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3844,0.8939896417000001 2011,1,3845,0.8939896417000001 2011,1,3846,0.8900505372999999 -2011,1,3847,0.8841418812999998 -2011,1,3848,0.8782332246999999 +2011,1,3847,0.8841418812999999 +2011,1,3848,0.8782332247 2011,1,3849,0.8742941203 -2011,1,3850,0.8703550161999999 +2011,1,3850,0.8703550162 2011,1,3851,0.8664159117999999 2011,1,3852,0.8640190443 2011,1,3853,0.8613494920999999 @@ -12616,33 +12616,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3855,0.8624768076999999 2011,1,3856,0.8624768076999999 2011,1,3857,0.8644463599 -2011,1,3858,0.8703550161999999 -2011,1,3859,0.8782332246999999 -2011,1,3860,0.8841418812999998 +2011,1,3858,0.8703550162 +2011,1,3859,0.8782332247 +2011,1,3860,0.8841418812999999 2011,1,3861,0.8861114332 2011,1,3862,0.8900505372999999 2011,1,3863,0.8939896417000001 2011,1,3864,0.8959591936 2011,1,3865,0.8959591936 -2011,1,3866,0.8979287454999999 +2011,1,3866,0.8979287455 2011,1,3867,0.8990000001999999 2011,1,3868,0.8990000001999999 2011,1,3869,0.8990000001999999 2011,1,3870,0.8959591936 2011,1,3871,0.8920200892 2011,1,3872,0.8880809851 -2011,1,3873,0.8821723288 -2011,1,3874,0.8782332246999999 +2011,1,3873,0.8821723288000001 +2011,1,3874,0.8782332247 2011,1,3875,0.8742941203 -2011,1,3876,0.8703550161999999 -2011,1,3877,0.8683854642999999 -2011,1,3878,0.8683854642999999 +2011,1,3876,0.8703550162 +2011,1,3877,0.8683854643 +2011,1,3878,0.8683854643 2011,1,3879,0.8664159117999999 -2011,1,3880,0.8683854642999999 -2011,1,3881,0.8703550161999999 +2011,1,3880,0.8683854643 +2011,1,3881,0.8703550162 2011,1,3882,0.8762636728 -2011,1,3883,0.8802027765999999 -2011,1,3884,0.8841418812999998 +2011,1,3883,0.8802027766 +2011,1,3884,0.8841418812999999 2011,1,3885,0.8880809851 2011,1,3886,0.8900505372999999 2011,1,3887,0.8920200892 @@ -12655,19 +12655,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3894,0.8939896417000001 2011,1,3895,0.8900505372999999 2011,1,3896,0.8861114332 -2011,1,3897,0.8821723288 +2011,1,3897,0.8821723288000001 2011,1,3898,0.8762636728 2011,1,3899,0.8723245680999999 -2011,1,3900,0.8703550161999999 -2011,1,3901,0.8683854642999999 +2011,1,3900,0.8703550162 +2011,1,3901,0.8683854643 2011,1,3902,0.8664159117999999 2011,1,3903,0.8644463599 2011,1,3904,0.8664159117999999 -2011,1,3905,0.8683854642999999 +2011,1,3905,0.8683854643 2011,1,3906,0.8723245680999999 -2011,1,3907,0.8782332246999999 -2011,1,3908,0.8802027765999999 -2011,1,3909,0.8821723288 +2011,1,3907,0.8782332247 +2011,1,3908,0.8802027766 +2011,1,3909,0.8821723288000001 2011,1,3910,0.8861114332 2011,1,3911,0.8880809851 2011,1,3912,0.8900505372999999 @@ -12678,32 +12678,32 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3917,0.8939896417000001 2011,1,3918,0.8900505372999999 2011,1,3919,0.8861114332 -2011,1,3920,0.8802027765999999 +2011,1,3920,0.8802027766 2011,1,3921,0.8762636728 -2011,1,3922,0.8703550161999999 +2011,1,3922,0.8703550162 2011,1,3923,0.8664159117999999 2011,1,3924,0.8640190443 -2011,1,3925,0.8593799401999999 +2011,1,3925,0.8593799402 2011,1,3926,0.8574103882999999 2011,1,3927,0.8574103882999999 2011,1,3928,0.8581103883 -2011,1,3929,0.8605072557999999 +2011,1,3929,0.8605072558 2011,1,3930,0.8664159117999999 2011,1,3931,0.8723245680999999 2011,1,3932,0.8762636728 -2011,1,3933,0.8782332246999999 -2011,1,3934,0.8802027765999999 -2011,1,3935,0.8821723288 -2011,1,3936,0.8841418812999998 +2011,1,3933,0.8782332247 +2011,1,3934,0.8802027766 +2011,1,3935,0.8821723288000001 +2011,1,3936,0.8841418812999999 2011,1,3937,0.8861114332 2011,1,3938,0.8861114332 2011,1,3939,0.8880809851 2011,1,3940,0.8880809851 2011,1,3941,0.8880809851 -2011,1,3942,0.8841418812999998 -2011,1,3943,0.8782332246999999 +2011,1,3942,0.8841418812999999 +2011,1,3943,0.8782332247 2011,1,3944,0.8742941203 -2011,1,3945,0.8672581486999998 +2011,1,3945,0.8672581487 2011,1,3946,0.8599494920999999 2011,1,3947,0.8553103883 2011,1,3948,0.8453913318999999 @@ -12714,19 +12714,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3953,0.8404913319 2011,1,3954,0.8581103883 2011,1,3955,0.8664159117999999 -2011,1,3956,0.8703550161999999 +2011,1,3956,0.8703550162 2011,1,3957,0.8723245680999999 2011,1,3958,0.8742941203 2011,1,3959,0.8762636728 -2011,1,3960,0.8782332246999999 -2011,1,3961,0.8802027765999999 -2011,1,3962,0.8821723288 -2011,1,3963,0.8841418812999998 -2011,1,3964,0.8841418812999998 -2011,1,3965,0.8841418812999998 -2011,1,3966,0.8802027765999999 +2011,1,3960,0.8782332247 +2011,1,3961,0.8802027766 +2011,1,3962,0.8821723288000001 +2011,1,3963,0.8841418812999999 +2011,1,3964,0.8841418812999999 +2011,1,3965,0.8841418812999999 +2011,1,3966,0.8802027766 2011,1,3967,0.8742941203 -2011,1,3968,0.8683854642999999 +2011,1,3968,0.8683854643 2011,1,3969,0.8613494920999999 2011,1,3970,0.8560103883 2011,1,3971,0.8523913318999999 @@ -12736,32 +12736,32 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,3975,0.8334913318999999 2011,1,3976,0.8404913319 2011,1,3977,0.8488913319 -2011,1,3978,0.8605072557999999 -2011,1,3979,0.8683854642999999 +2011,1,3978,0.8605072558 +2011,1,3979,0.8683854643 2011,1,3980,0.8742941203 -2011,1,3981,0.8782332246999999 -2011,1,3982,0.8802027765999999 -2011,1,3983,0.8821723288 -2011,1,3984,0.8841418812999998 -2011,1,3985,0.8841418812999998 +2011,1,3981,0.8782332247 +2011,1,3982,0.8802027766 +2011,1,3983,0.8821723288000001 +2011,1,3984,0.8841418812999999 +2011,1,3985,0.8841418812999999 2011,1,3986,0.8861114332 2011,1,3987,0.8861114332 2011,1,3988,0.8880809851 2011,1,3989,0.8880809851 -2011,1,3990,0.8841418812999998 -2011,1,3991,0.8802027765999999 +2011,1,3990,0.8841418812999999 +2011,1,3991,0.8802027766 2011,1,3992,0.8742941203 -2011,1,3993,0.8703550161999999 +2011,1,3993,0.8703550162 2011,1,3994,0.8664159117999999 2011,1,3995,0.8644463599 2011,1,3996,0.8624768076999999 -2011,1,3997,0.8605072557999999 -2011,1,3998,0.8605072557999999 +2011,1,3997,0.8605072558 +2011,1,3998,0.8605072558 2011,1,3999,0.8624768076999999 2011,1,4000,0.8644463599 -2011,1,4001,0.8683854642999999 +2011,1,4001,0.8683854643 2011,1,4002,0.8742941203 -2011,1,4003,0.8821723288 +2011,1,4003,0.8821723288000001 2011,1,4004,0.8861114332 2011,1,4005,0.8880809851 2011,1,4006,0.8900505372999999 @@ -12773,21 +12773,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4012,0.8939896417000001 2011,1,4013,0.8939896417000001 2011,1,4014,0.8900505372999999 -2011,1,4015,0.8841418812999998 -2011,1,4016,0.8782332246999999 +2011,1,4015,0.8841418812999999 +2011,1,4016,0.8782332247 2011,1,4017,0.8723245680999999 -2011,1,4018,0.8683854642999999 +2011,1,4018,0.8683854643 2011,1,4019,0.8644463599 2011,1,4020,0.8624768076999999 -2011,1,4021,0.8605072557999999 +2011,1,4021,0.8605072558 2011,1,4022,0.8585377039 -2011,1,4023,0.8605072557999999 +2011,1,4023,0.8605072558 2011,1,4024,0.8624768076999999 2011,1,4025,0.8644463599 -2011,1,4026,0.8683854642999999 +2011,1,4026,0.8683854643 2011,1,4027,0.8762636728 -2011,1,4028,0.8802027765999999 -2011,1,4029,0.8841418812999998 +2011,1,4028,0.8802027766 +2011,1,4029,0.8841418812999999 2011,1,4030,0.8880809851 2011,1,4031,0.8880809851 2011,1,4032,0.8900505372999999 @@ -12797,21 +12797,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4036,0.8920200892 2011,1,4037,0.8920200892 2011,1,4038,0.8880809851 -2011,1,4039,0.8821723288 +2011,1,4039,0.8821723288000001 2011,1,4040,0.8762636728 -2011,1,4041,0.8703550161999999 -2011,1,4042,0.8683854642999999 +2011,1,4041,0.8703550162 +2011,1,4042,0.8683854643 2011,1,4043,0.8640190443 -2011,1,4044,0.8593799401999999 +2011,1,4044,0.8593799402 2011,1,4045,0.8567103883 2011,1,4046,0.8574103882999999 2011,1,4047,0.8581103883 2011,1,4048,0.8585377039 -2011,1,4049,0.8605072557999999 +2011,1,4049,0.8605072558 2011,1,4050,0.8664159117999999 2011,1,4051,0.8742941203 -2011,1,4052,0.8802027765999999 -2011,1,4053,0.8841418812999998 +2011,1,4052,0.8802027766 +2011,1,4053,0.8841418812999999 2011,1,4054,0.8861114332 2011,1,4055,0.8880809851 2011,1,4056,0.8880809851 @@ -12821,102 +12821,102 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4060,0.8900505372999999 2011,1,4061,0.8900505372999999 2011,1,4062,0.8861114332 -2011,1,4063,0.8821723288 -2011,1,4064,0.8782332246999999 +2011,1,4063,0.8821723288000001 +2011,1,4064,0.8782332247 2011,1,4065,0.8742941203 -2011,1,4066,0.8703550161999999 -2011,1,4067,0.8683854642999999 +2011,1,4066,0.8703550162 +2011,1,4067,0.8683854643 2011,1,4068,0.8644463599 2011,1,4069,0.8624768076999999 2011,1,4070,0.8600799401999999 -2011,1,4071,0.8593799401999999 +2011,1,4071,0.8593799402 2011,1,4072,0.8600799401999999 2011,1,4073,0.8624768076999999 2011,1,4074,0.8664159117999999 2011,1,4075,0.8723245680999999 2011,1,4076,0.8762636728 -2011,1,4077,0.8782332246999999 -2011,1,4078,0.8802027765999999 -2011,1,4079,0.8821723288 -2011,1,4080,0.8841418812999998 -2011,1,4081,0.8841418812999998 +2011,1,4077,0.8782332247 +2011,1,4078,0.8802027766 +2011,1,4079,0.8821723288000001 +2011,1,4080,0.8841418812999999 +2011,1,4081,0.8841418812999999 2011,1,4082,0.8861114332 2011,1,4083,0.8861114332 2011,1,4084,0.8861114332 2011,1,4085,0.8861114332 -2011,1,4086,0.8821723288 +2011,1,4086,0.8821723288000001 2011,1,4087,0.8762636728 -2011,1,4088,0.8683854642999999 +2011,1,4088,0.8683854643 2011,1,4089,0.8620494920999999 2011,1,4090,0.8537913319 2011,1,4091,0.8341913318999999 2011,1,4092,0.8271913318999999 -2011,1,4093,0.8201913318999998 +2011,1,4093,0.8201913318999999 2011,1,4094,0.8194913318999999 2011,1,4095,0.8194913318999999 2011,1,4096,0.8264913319 2011,1,4097,0.8341913318999999 2011,1,4098,0.8551913319 2011,1,4099,0.8644463599 -2011,1,4100,0.8703550161999999 +2011,1,4100,0.8703550162 2011,1,4101,0.8723245680999999 2011,1,4102,0.8742941203 2011,1,4103,0.8762636728 -2011,1,4104,0.8782332246999999 -2011,1,4105,0.8782332246999999 -2011,1,4106,0.8782332246999999 -2011,1,4107,0.8782332246999999 -2011,1,4108,0.8782332246999999 -2011,1,4109,0.8782332246999999 +2011,1,4104,0.8782332247 +2011,1,4105,0.8782332247 +2011,1,4106,0.8782332247 +2011,1,4107,0.8782332247 +2011,1,4108,0.8782332247 +2011,1,4109,0.8782332247 2011,1,4110,0.8742941203 -2011,1,4111,0.8703550161999999 +2011,1,4111,0.8703550162 2011,1,4112,0.8633190443 2011,1,4113,0.8553103883 2011,1,4114,0.8390913319 2011,1,4115,0.8194913318999999 2011,1,4116,0.8124913319 -2011,1,4117,0.8054913318999999 +2011,1,4117,0.8054913319 2011,1,4118,0.7991913318999999 -2011,1,4119,0.8054913318999999 +2011,1,4119,0.8054913319 2011,1,4120,0.8124913319 -2011,1,4121,0.8201913318999998 -2011,1,4122,0.8411913319000001 -2011,1,4123,0.8605072557999999 +2011,1,4121,0.8201913318999999 +2011,1,4122,0.8411913319 +2011,1,4123,0.8605072558 2011,1,4124,0.8664159117999999 -2011,1,4125,0.8703550161999999 +2011,1,4125,0.8703550162 2011,1,4126,0.8723245680999999 2011,1,4127,0.8742941203 2011,1,4128,0.8762636728 2011,1,4129,0.8762636728 -2011,1,4130,0.8782332246999999 -2011,1,4131,0.8802027765999999 -2011,1,4132,0.8802027765999999 -2011,1,4133,0.8802027765999999 +2011,1,4130,0.8782332247 +2011,1,4131,0.8802027766 +2011,1,4132,0.8802027766 +2011,1,4133,0.8802027766 2011,1,4134,0.8762636728 -2011,1,4135,0.8703550161999999 +2011,1,4135,0.8703550162 2011,1,4136,0.8606494921 2011,1,4137,0.8516913318999999 2011,1,4138,0.8320913319 -2011,1,4139,0.8187913318999999 -2011,1,4140,0.8117913319000001 +2011,1,4139,0.8187913319 +2011,1,4140,0.8117913319 2011,1,4141,0.8047913319 -2011,1,4142,0.8054913318999999 +2011,1,4142,0.8054913319 2011,1,4143,0.8124913319 2011,1,4144,0.8194913318999999 2011,1,4145,0.8271913318999999 2011,1,4146,0.8481913319 2011,1,4147,0.8624768076999999 -2011,1,4148,0.8683854642999999 +2011,1,4148,0.8683854643 2011,1,4149,0.8723245680999999 2011,1,4150,0.8742941203 2011,1,4151,0.8742941203 2011,1,4152,0.8762636728 -2011,1,4153,0.8782332246999999 -2011,1,4154,0.8782332246999999 -2011,1,4155,0.8802027765999999 -2011,1,4156,0.8821723288 -2011,1,4157,0.8821723288 -2011,1,4158,0.8782332246999999 +2011,1,4153,0.8782332247 +2011,1,4154,0.8782332247 +2011,1,4155,0.8802027766 +2011,1,4156,0.8821723288000001 +2011,1,4157,0.8821723288000001 +2011,1,4158,0.8782332247 2011,1,4159,0.8742941203 2011,1,4160,0.8679581486999999 2011,1,4161,0.8599494920999999 @@ -12932,18 +12932,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4171,0.8664159117999999 2011,1,4172,0.8723245680999999 2011,1,4173,0.8762636728 -2011,1,4174,0.8802027765999999 -2011,1,4175,0.8821723288 -2011,1,4176,0.8841418812999998 +2011,1,4174,0.8802027766 +2011,1,4175,0.8821723288000001 +2011,1,4176,0.8841418812999999 2011,1,4177,0.8861114332 2011,1,4178,0.8861114332 2011,1,4179,0.8880809851 2011,1,4180,0.8880809851 2011,1,4181,0.8880809851 -2011,1,4182,0.8841418812999998 -2011,1,4183,0.8782332246999999 +2011,1,4182,0.8841418812999999 +2011,1,4183,0.8782332247 2011,1,4184,0.8742941203 -2011,1,4185,0.8672581486999998 +2011,1,4185,0.8672581487 2011,1,4186,0.8599494920999999 2011,1,4187,0.8523913318999999 2011,1,4188,0.8453913318999999 @@ -12954,22 +12954,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4193,0.8556186474999999 2011,1,4194,0.8624768076999999 2011,1,4195,0.8723245680999999 -2011,1,4196,0.8782332246999999 -2011,1,4197,0.8821723288 -2011,1,4198,0.8841418812999998 -2011,1,4199,0.8841418812999998 -2011,1,4200,0.8841418812999998 +2011,1,4196,0.8782332247 +2011,1,4197,0.8821723288000001 +2011,1,4198,0.8841418812999999 +2011,1,4199,0.8841418812999999 +2011,1,4200,0.8841418812999999 2011,1,4201,0.8861114332 2011,1,4202,0.8861114332 2011,1,4203,0.8880809851 2011,1,4204,0.8880809851 2011,1,4205,0.8880809851 -2011,1,4206,0.8841418812999998 -2011,1,4207,0.8802027765999999 +2011,1,4206,0.8841418812999999 +2011,1,4207,0.8802027766 2011,1,4208,0.8762636728 2011,1,4209,0.8699277005999999 2011,1,4210,0.8619190443 -2011,1,4211,0.8572799401999999 +2011,1,4211,0.8572799402 2011,1,4212,0.8516913318999999 2011,1,4213,0.8453913318999999 2011,1,4214,0.8460913319 @@ -12977,10 +12977,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4216,0.8474913319 2011,1,4217,0.8556186474999999 2011,1,4218,0.8624768076999999 -2011,1,4219,0.8703550161999999 -2011,1,4220,0.8782332246999999 -2011,1,4221,0.8821723288 -2011,1,4222,0.8841418812999998 +2011,1,4219,0.8703550162 +2011,1,4220,0.8782332247 +2011,1,4221,0.8821723288000001 +2011,1,4222,0.8841418812999999 2011,1,4223,0.8861114332 2011,1,4224,0.8880809851 2011,1,4225,0.8880809851 @@ -12989,34 +12989,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4228,0.8920200892 2011,1,4229,0.8900505372999999 2011,1,4230,0.8861114332 -2011,1,4231,0.8821723288 +2011,1,4231,0.8821723288000001 2011,1,4232,0.8762636728 2011,1,4233,0.8685277006 2011,1,4234,0.8619190443 -2011,1,4235,0.8565799401999998 +2011,1,4235,0.8565799402 2011,1,4236,0.8509913319 2011,1,4237,0.8446913319 2011,1,4238,0.8383913319 2011,1,4239,0.8390913319 2011,1,4240,0.8460913319 2011,1,4241,0.8537913319 -2011,1,4242,0.8605072557999999 -2011,1,4243,0.8683854642999999 +2011,1,4242,0.8605072558 +2011,1,4243,0.8683854643 2011,1,4244,0.8723245680999999 2011,1,4245,0.8742941203 2011,1,4246,0.8762636728 -2011,1,4247,0.8802027765999999 -2011,1,4248,0.8821723288 -2011,1,4249,0.8841418812999998 +2011,1,4247,0.8802027766 +2011,1,4248,0.8821723288000001 +2011,1,4249,0.8841418812999999 2011,1,4250,0.8861114332 2011,1,4251,0.8861114332 2011,1,4252,0.8880809851 2011,1,4253,0.8880809851 -2011,1,4254,0.8841418812999998 -2011,1,4255,0.8782332246999999 +2011,1,4254,0.8841418812999999 +2011,1,4255,0.8782332247 2011,1,4256,0.8711972524999999 2011,1,4257,0.8631885961999999 -2011,1,4258,0.8565799401999998 +2011,1,4258,0.8565799402 2011,1,4259,0.8446913319 2011,1,4260,0.8376913319 2011,1,4261,0.8306913319 @@ -13028,16 +13028,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4267,0.8664159117999999 2011,1,4268,0.8723245680999999 2011,1,4269,0.8762636728 -2011,1,4270,0.8782332246999999 -2011,1,4271,0.8802027765999999 -2011,1,4272,0.8821723288 -2011,1,4273,0.8821723288 -2011,1,4274,0.8841418812999998 +2011,1,4270,0.8782332247 +2011,1,4271,0.8802027766 +2011,1,4272,0.8821723288000001 +2011,1,4273,0.8821723288000001 +2011,1,4274,0.8841418812999999 2011,1,4275,0.8861114332 2011,1,4276,0.8880809851 2011,1,4277,0.8880809851 -2011,1,4278,0.8841418812999998 -2011,1,4279,0.8802027765999999 +2011,1,4278,0.8841418812999999 +2011,1,4279,0.8802027766 2011,1,4280,0.8738668047 2011,1,4281,0.8658581486999999 2011,1,4282,0.8592494920999999 @@ -13048,10 +13048,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4287,0.8460913319 2011,1,4288,0.8567103883 2011,1,4289,0.8620494920999999 -2011,1,4290,0.8683854642999999 +2011,1,4290,0.8683854643 2011,1,4291,0.8742941203 -2011,1,4292,0.8802027765999999 -2011,1,4293,0.8841418812999998 +2011,1,4292,0.8802027766 +2011,1,4293,0.8841418812999999 2011,1,4294,0.8861114332 2011,1,4295,0.8861114332 2011,1,4296,0.8880809851 @@ -13062,18 +13062,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4301,0.8900505372999999 2011,1,4302,0.8880809851 2011,1,4303,0.8861114332 -2011,1,4304,0.8841418812999998 -2011,1,4305,0.8802027765999999 +2011,1,4304,0.8841418812999999 +2011,1,4305,0.8802027766 2011,1,4306,0.8762636728 2011,1,4307,0.8738668047 2011,1,4308,0.8699277005999999 2011,1,4309,0.8679581486999999 -2011,1,4310,0.8683854642999999 -2011,1,4311,0.8683854642999999 -2011,1,4312,0.8703550161999999 +2011,1,4310,0.8683854643 +2011,1,4311,0.8683854643 +2011,1,4312,0.8703550162 2011,1,4313,0.8723245680999999 2011,1,4314,0.8762636728 -2011,1,4315,0.8821723288 +2011,1,4315,0.8821723288000001 2011,1,4316,0.8861114332 2011,1,4317,0.8880809851 2011,1,4318,0.8900505372999999 @@ -13086,30 +13086,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4325,0.8939896417000001 2011,1,4326,0.8900505372999999 2011,1,4327,0.8861114332 -2011,1,4328,0.8802027765999999 +2011,1,4328,0.8802027766 2011,1,4329,0.8762636728 2011,1,4330,0.8718972524999999 2011,1,4331,0.8645885962 2011,1,4332,0.8599494920999999 -2011,1,4333,0.8572799401999999 +2011,1,4333,0.8572799402 2011,1,4334,0.8546103883 2011,1,4335,0.8546103883 2011,1,4336,0.8553103883 2011,1,4337,0.8579799401999999 2011,1,4338,0.8659885961999999 2011,1,4339,0.8723245680999999 -2011,1,4340,0.8782332246999999 -2011,1,4341,0.8802027765999999 -2011,1,4342,0.8802027765999999 -2011,1,4343,0.8821723288 -2011,1,4344,0.8841418812999998 +2011,1,4340,0.8782332247 +2011,1,4341,0.8802027766 +2011,1,4342,0.8802027766 +2011,1,4343,0.8821723288000001 +2011,1,4344,0.8841418812999999 2011,1,4345,0.8861114332 2011,1,4346,0.8861114332 2011,1,4347,0.8880809851 2011,1,4348,0.8900505372999999 2011,1,4349,0.8880809851 -2011,1,4350,0.8841418812999998 -2011,1,4351,0.8802027765999999 +2011,1,4350,0.8841418812999999 +2011,1,4351,0.8802027766 2011,1,4352,0.8731668047 2011,1,4353,0.8658581486999999 2011,1,4354,0.8605190442999999 @@ -13117,62 +13117,62 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4356,0.8376913319 2011,1,4357,0.8243913319 2011,1,4358,0.8173913318999999 -2011,1,4359,0.8180913318999998 +2011,1,4359,0.8180913318999999 2011,1,4360,0.8250913319 2011,1,4361,0.8320913319 2011,1,4362,0.8530913319 2011,1,4363,0.8644463599 -2011,1,4364,0.8703550161999999 -2011,1,4365,0.8703550161999999 +2011,1,4364,0.8703550162 +2011,1,4365,0.8703550162 2011,1,4366,0.8723245680999999 2011,1,4367,0.8742941203 2011,1,4368,0.8762636728 -2011,1,4369,0.8782332246999999 -2011,1,4370,0.8802027765999999 -2011,1,4371,0.8802027765999999 -2011,1,4372,0.8821723288 -2011,1,4373,0.8821723288 +2011,1,4369,0.8782332247 +2011,1,4370,0.8802027766 +2011,1,4371,0.8802027766 +2011,1,4372,0.8821723288000001 +2011,1,4373,0.8821723288000001 2011,1,4374,0.8762636728 2011,1,4375,0.8699277005999999 2011,1,4376,0.8619190443 2011,1,4377,0.8539103883 2011,1,4378,0.8369913319 2011,1,4379,0.8173913318999999 -2011,1,4380,0.8040913318999999 +2011,1,4380,0.8040913319 2011,1,4381,0.7977913319 2011,1,4382,0.7914913319 2011,1,4383,0.7914913319 2011,1,4384,0.7984913319 -2011,1,4385,0.8061913318999999 +2011,1,4385,0.8061913319 2011,1,4386,0.8334913318999999 2011,1,4387,0.8581103883 2011,1,4388,0.8644463599 -2011,1,4389,0.8683854642999999 -2011,1,4390,0.8703550161999999 +2011,1,4389,0.8683854643 +2011,1,4390,0.8703550162 2011,1,4391,0.8742941203 2011,1,4392,0.8742941203 2011,1,4393,0.8762636728 -2011,1,4394,0.8782332246999999 -2011,1,4395,0.8782332246999999 -2011,1,4396,0.8802027765999999 -2011,1,4397,0.8782332246999999 +2011,1,4394,0.8782332247 +2011,1,4395,0.8782332247 +2011,1,4396,0.8802027766 +2011,1,4397,0.8782332247 2011,1,4398,0.8742941203 -2011,1,4399,0.8683854642999999 +2011,1,4399,0.8683854643 2011,1,4400,0.8613494920999999 2011,1,4401,0.8467913319 2011,1,4402,0.8264913319 2011,1,4403,0.8131913319 -2011,1,4404,0.8061913318999999 +2011,1,4404,0.8061913319 2011,1,4405,0.7991913318999999 2011,1,4406,0.7935913319 2011,1,4407,0.7935913319 2011,1,4408,0.8005913319 -2011,1,4409,0.8082913318999999 +2011,1,4409,0.8082913319 2011,1,4410,0.8348913319 2011,1,4411,0.8585377039 2011,1,4412,0.8644463599 2011,1,4413,0.8664159117999999 -2011,1,4414,0.8703550161999999 +2011,1,4414,0.8703550162 2011,1,4415,0.8723245680999999 2011,1,4416,0.8723245680999999 2011,1,4417,0.8742941203 @@ -13180,12 +13180,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4419,0.8742941203 2011,1,4420,0.8762636728 2011,1,4421,0.8742941203 -2011,1,4422,0.8703550161999999 +2011,1,4422,0.8703550162 2011,1,4423,0.8644463599 2011,1,4424,0.8585377039 2011,1,4425,0.8425913319 -2011,1,4426,0.8229913318999998 -2011,1,4427,0.8159913319000001 +2011,1,4426,0.8229913319 +2011,1,4427,0.8159913319 2011,1,4428,0.8089913318999999 2011,1,4429,0.8026913319 2011,1,4430,0.7963913319 @@ -13195,40 +13195,40 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4434,0.8362913318999999 2011,1,4435,0.8585377039 2011,1,4436,0.8644463599 -2011,1,4437,0.8683854642999999 -2011,1,4438,0.8683854642999999 -2011,1,4439,0.8683854642999999 -2011,1,4440,0.8683854642999999 -2011,1,4441,0.8683854642999999 -2011,1,4442,0.8703550161999999 -2011,1,4443,0.8703550161999999 +2011,1,4437,0.8683854643 +2011,1,4438,0.8683854643 +2011,1,4439,0.8683854643 +2011,1,4440,0.8683854643 +2011,1,4441,0.8683854643 +2011,1,4442,0.8703550162 +2011,1,4443,0.8703550162 2011,1,4444,0.8723245680999999 2011,1,4445,0.8723245680999999 -2011,1,4446,0.8683854642999999 +2011,1,4446,0.8683854643 2011,1,4447,0.8624768076999999 2011,1,4448,0.8544913318999999 -2011,1,4449,0.8411913319000001 +2011,1,4449,0.8411913319 2011,1,4450,0.8278913319 -2011,1,4451,0.8208913318999999 +2011,1,4451,0.8208913319 2011,1,4452,0.8145913319 -2011,1,4453,0.8082913318999999 +2011,1,4453,0.8082913319 2011,1,4454,0.8026913319 2011,1,4455,0.8089913318999999 -2011,1,4456,0.8159913319000001 +2011,1,4456,0.8159913319 2011,1,4457,0.8222913318999999 2011,1,4458,0.8425913319 2011,1,4459,0.8585377039 2011,1,4460,0.8624768076999999 2011,1,4461,0.8664159117999999 -2011,1,4462,0.8683854642999999 -2011,1,4463,0.8683854642999999 -2011,1,4464,0.8703550161999999 -2011,1,4465,0.8703550161999999 -2011,1,4466,0.8703550161999999 +2011,1,4462,0.8683854643 +2011,1,4463,0.8683854643 +2011,1,4464,0.8703550162 +2011,1,4465,0.8703550162 +2011,1,4466,0.8703550162 2011,1,4467,0.8723245680999999 2011,1,4468,0.8723245680999999 2011,1,4469,0.8723245680999999 -2011,1,4470,0.8683854642999999 +2011,1,4470,0.8683854643 2011,1,4471,0.8624768076999999 2011,1,4472,0.8556186474999999 2011,1,4473,0.8418913319 @@ -13236,7 +13236,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4475,0.8215913318999999 2011,1,4476,0.8145913319 2011,1,4477,0.8089913318999999 -2011,1,4478,0.8159913319000001 +2011,1,4478,0.8159913319 2011,1,4479,0.8166913319 2011,1,4480,0.8236913318999999 2011,1,4481,0.8304186474999999 @@ -13244,8 +13244,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4483,0.8585377039 2011,1,4484,0.8624768076999999 2011,1,4485,0.8664159117999999 -2011,1,4486,0.8703550161999999 -2011,1,4487,0.8703550161999999 +2011,1,4486,0.8703550162 +2011,1,4487,0.8703550162 2011,1,4488,0.8723245680999999 2011,1,4489,0.8742941203 2011,1,4490,0.8742941203 @@ -13257,10 +13257,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4496,0.8600799401999999 2011,1,4497,0.8474913319 2011,1,4498,0.8334913318999999 -2011,1,4499,0.8201913318999998 -2011,1,4500,0.8138913319000001 -2011,1,4501,0.8075913318999999 -2011,1,4502,0.8082913318999999 +2011,1,4499,0.8201913318999999 +2011,1,4500,0.8138913319 +2011,1,4501,0.8075913319 +2011,1,4502,0.8082913319 2011,1,4503,0.8145913319 2011,1,4504,0.8215913318999999 2011,1,4505,0.8285913319 @@ -13268,8 +13268,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4507,0.8585377039 2011,1,4508,0.8624768076999999 2011,1,4509,0.8664159117999999 -2011,1,4510,0.8703550161999999 -2011,1,4511,0.8703550161999999 +2011,1,4510,0.8703550162 +2011,1,4511,0.8703550162 2011,1,4512,0.8723245680999999 2011,1,4513,0.8742941203 2011,1,4514,0.8742941203 @@ -13281,91 +13281,91 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4520,0.8600799401999999 2011,1,4521,0.8467913319 2011,1,4522,0.8334913318999999 -2011,1,4523,0.8201913318999998 +2011,1,4523,0.8201913318999999 2011,1,4524,0.8131913319 2011,1,4525,0.8131913319 -2011,1,4526,0.8075913318999999 -2011,1,4527,0.8138913319000001 -2011,1,4528,0.8208913318999999 +2011,1,4526,0.8075913319 +2011,1,4527,0.8138913319 +2011,1,4528,0.8208913319 2011,1,4529,0.8278913319 2011,1,4530,0.8425913319 2011,1,4531,0.8585377039 2011,1,4532,0.8644463599 -2011,1,4533,0.8683854642999999 +2011,1,4533,0.8683854643 2011,1,4534,0.8723245680999999 2011,1,4535,0.8742941203 2011,1,4536,0.8762636728 2011,1,4537,0.8762636728 -2011,1,4538,0.8782332246999999 -2011,1,4539,0.8802027765999999 -2011,1,4540,0.8821723288 -2011,1,4541,0.8821723288 -2011,1,4542,0.8782332246999999 +2011,1,4538,0.8782332247 +2011,1,4539,0.8802027766 +2011,1,4540,0.8821723288000001 +2011,1,4541,0.8821723288000001 +2011,1,4542,0.8782332247 2011,1,4543,0.8723245680999999 -2011,1,4544,0.8672581486999998 +2011,1,4544,0.8672581487 2011,1,4545,0.8599494920999999 2011,1,4546,0.8516913318999999 2011,1,4547,0.8320913319 2011,1,4548,0.8257913319 2011,1,4549,0.8194913318999999 2011,1,4550,0.8131913319 -2011,1,4551,0.8201913318999998 +2011,1,4551,0.8201913318999999 2011,1,4552,0.8271913318999999 2011,1,4553,0.8341913318999999 2011,1,4554,0.8551913319 2011,1,4555,0.8644463599 -2011,1,4556,0.8703550161999999 +2011,1,4556,0.8703550162 2011,1,4557,0.8742941203 -2011,1,4558,0.8782332246999999 -2011,1,4559,0.8802027765999999 -2011,1,4560,0.8821723288 -2011,1,4561,0.8821723288 -2011,1,4562,0.8841418812999998 -2011,1,4563,0.8841418812999998 +2011,1,4558,0.8782332247 +2011,1,4559,0.8802027766 +2011,1,4560,0.8821723288000001 +2011,1,4561,0.8821723288000001 +2011,1,4562,0.8841418812999999 +2011,1,4563,0.8841418812999999 2011,1,4564,0.8861114332 -2011,1,4565,0.8841418812999998 -2011,1,4566,0.8802027765999999 +2011,1,4565,0.8841418812999999 +2011,1,4566,0.8802027766 2011,1,4567,0.8762636728 2011,1,4568,0.8699277005999999 -2011,1,4569,0.8626190443 +2011,1,4569,0.8626190442999999 2011,1,4570,0.8560103883 2011,1,4571,0.8460913319 2011,1,4572,0.8327913319 2011,1,4573,0.8264913319 -2011,1,4574,0.8201913318999998 +2011,1,4574,0.8201913318999999 2011,1,4575,0.8271913318999999 2011,1,4576,0.8341913318999999 -2011,1,4577,0.8411913319000001 +2011,1,4577,0.8411913319 2011,1,4578,0.8585377039 2011,1,4579,0.8664159117999999 2011,1,4580,0.8723245680999999 2011,1,4581,0.8762636728 -2011,1,4582,0.8782332246999999 -2011,1,4583,0.8802027765999999 -2011,1,4584,0.8821723288 -2011,1,4585,0.8841418812999998 +2011,1,4582,0.8782332247 +2011,1,4583,0.8802027766 +2011,1,4584,0.8821723288000001 +2011,1,4585,0.8841418812999999 2011,1,4586,0.8861114332 2011,1,4587,0.8880809851 2011,1,4588,0.8880809851 2011,1,4589,0.8880809851 -2011,1,4590,0.8841418812999998 -2011,1,4591,0.8802027765999999 +2011,1,4590,0.8841418812999999 +2011,1,4591,0.8802027766 2011,1,4592,0.8762636728 -2011,1,4593,0.8703550161999999 +2011,1,4593,0.8703550162 2011,1,4594,0.8652885961999999 2011,1,4595,0.8586799401999999 2011,1,4596,0.8530913319 2011,1,4597,0.8467913319 2011,1,4598,0.8404913319 -2011,1,4599,0.8411913319000001 +2011,1,4599,0.8411913319 2011,1,4600,0.8481913319 2011,1,4601,0.8585377039 2011,1,4602,0.8624768076999999 -2011,1,4603,0.8703550161999999 +2011,1,4603,0.8703550162 2011,1,4604,0.8742941203 -2011,1,4605,0.8782332246999999 -2011,1,4606,0.8821723288 -2011,1,4607,0.8841418812999998 +2011,1,4605,0.8782332247 +2011,1,4606,0.8821723288000001 +2011,1,4607,0.8841418812999999 2011,1,4608,0.8861114332 2011,1,4609,0.8861114332 2011,1,4610,0.8880809851 @@ -13373,7 +13373,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4612,0.8900505372999999 2011,1,4613,0.8900505372999999 2011,1,4614,0.8861114332 -2011,1,4615,0.8821723288 +2011,1,4615,0.8821723288000001 2011,1,4616,0.8762636728 2011,1,4617,0.8723245680999999 2011,1,4618,0.8659885961999999 @@ -13385,34 +13385,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4624,0.8556186474999999 2011,1,4625,0.8585377039 2011,1,4626,0.8644463599 -2011,1,4627,0.8703550161999999 +2011,1,4627,0.8703550162 2011,1,4628,0.8742941203 -2011,1,4629,0.8782332246999999 -2011,1,4630,0.8821723288 -2011,1,4631,0.8841418812999998 -2011,1,4632,0.8841418812999998 +2011,1,4629,0.8782332247 +2011,1,4630,0.8821723288000001 +2011,1,4631,0.8841418812999999 +2011,1,4632,0.8841418812999999 2011,1,4633,0.8861114332 2011,1,4634,0.8880809851 2011,1,4635,0.8880809851 2011,1,4636,0.8900505372999999 2011,1,4637,0.8900505372999999 2011,1,4638,0.8861114332 -2011,1,4639,0.8821723288 +2011,1,4639,0.8821723288000001 2011,1,4640,0.8762636728 2011,1,4641,0.8723245680999999 -2011,1,4642,0.8683854642999999 +2011,1,4642,0.8683854643 2011,1,4643,0.8644463599 2011,1,4644,0.8600799401999999 2011,1,4645,0.8581103883 2011,1,4646,0.8581103883 -2011,1,4647,0.8605072557999999 +2011,1,4647,0.8605072558 2011,1,4648,0.8624768076999999 2011,1,4649,0.8644463599 -2011,1,4650,0.8683854642999999 +2011,1,4650,0.8683854643 2011,1,4651,0.8742941203 -2011,1,4652,0.8782332246999999 -2011,1,4653,0.8821723288 -2011,1,4654,0.8841418812999998 +2011,1,4652,0.8782332247 +2011,1,4653,0.8821723288000001 +2011,1,4654,0.8841418812999999 2011,1,4655,0.8861114332 2011,1,4656,0.8861114332 2011,1,4657,0.8880809851 @@ -13421,21 +13421,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4660,0.8920200892 2011,1,4661,0.8920200892 2011,1,4662,0.8880809851 -2011,1,4663,0.8841418812999998 -2011,1,4664,0.8802027765999999 +2011,1,4663,0.8841418812999999 +2011,1,4664,0.8802027766 2011,1,4665,0.8742941203 -2011,1,4666,0.8703550161999999 +2011,1,4666,0.8703550162 2011,1,4667,0.8664159117999999 2011,1,4668,0.8644463599 2011,1,4669,0.8620494920999999 -2011,1,4670,0.8605072557999999 -2011,1,4671,0.8605072557999999 +2011,1,4670,0.8605072558 +2011,1,4671,0.8605072558 2011,1,4672,0.8624768076999999 2011,1,4673,0.8644463599 -2011,1,4674,0.8683854642999999 +2011,1,4674,0.8683854643 2011,1,4675,0.8742941203 -2011,1,4676,0.8802027765999999 -2011,1,4677,0.8841418812999998 +2011,1,4676,0.8802027766 +2011,1,4677,0.8841418812999999 2011,1,4678,0.8880809851 2011,1,4679,0.8900505372999999 2011,1,4680,0.8900505372999999 @@ -13446,21 +13446,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4685,0.8959591936 2011,1,4686,0.8920200892 2011,1,4687,0.8861114332 -2011,1,4688,0.8821723288 +2011,1,4688,0.8821723288000001 2011,1,4689,0.8762636728 2011,1,4690,0.8723245680999999 2011,1,4691,0.8664159117999999 2011,1,4692,0.8640190443 2011,1,4693,0.8620494920999999 2011,1,4694,0.8600799401999999 -2011,1,4695,0.8605072557999999 +2011,1,4695,0.8605072558 2011,1,4696,0.8624768076999999 2011,1,4697,0.8644463599 -2011,1,4698,0.8683854642999999 +2011,1,4698,0.8683854643 2011,1,4699,0.8742941203 -2011,1,4700,0.8802027765999999 -2011,1,4701,0.8821723288 -2011,1,4702,0.8841418812999998 +2011,1,4700,0.8802027766 +2011,1,4701,0.8821723288000001 +2011,1,4702,0.8841418812999999 2011,1,4703,0.8861114332 2011,1,4704,0.8880809851 2011,1,4705,0.8900505372999999 @@ -13469,10 +13469,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4708,0.8920200892 2011,1,4709,0.8920200892 2011,1,4710,0.8880809851 -2011,1,4711,0.8841418812999998 -2011,1,4712,0.8802027765999999 +2011,1,4711,0.8841418812999999 +2011,1,4712,0.8802027766 2011,1,4713,0.8742941203 -2011,1,4714,0.8703550161999999 +2011,1,4714,0.8703550162 2011,1,4715,0.8640190443 2011,1,4716,0.8613494920999999 2011,1,4717,0.8586799401999999 @@ -13482,9 +13482,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4721,0.8624768076999999 2011,1,4722,0.8664159117999999 2011,1,4723,0.8723245680999999 -2011,1,4724,0.8782332246999999 -2011,1,4725,0.8821723288 -2011,1,4726,0.8841418812999998 +2011,1,4724,0.8782332247 +2011,1,4725,0.8821723288000001 +2011,1,4726,0.8841418812999999 2011,1,4727,0.8861114332 2011,1,4728,0.8880809851 2011,1,4729,0.8900505372999999 @@ -13493,8 +13493,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4732,0.8920200892 2011,1,4733,0.8920200892 2011,1,4734,0.8880809851 -2011,1,4735,0.8841418812999998 -2011,1,4736,0.8802027765999999 +2011,1,4735,0.8841418812999999 +2011,1,4736,0.8802027766 2011,1,4737,0.8738668047 2011,1,4738,0.8658581486999999 2011,1,4739,0.8592494920999999 @@ -13505,19 +13505,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4744,0.8460913319 2011,1,4745,0.8537913319 2011,1,4746,0.8624768076999999 -2011,1,4747,0.8683854642999999 +2011,1,4747,0.8683854643 2011,1,4748,0.8742941203 -2011,1,4749,0.8782332246999999 -2011,1,4750,0.8802027765999999 -2011,1,4751,0.8821723288 -2011,1,4752,0.8841418812999998 +2011,1,4749,0.8782332247 +2011,1,4750,0.8802027766 +2011,1,4751,0.8821723288000001 +2011,1,4752,0.8841418812999999 2011,1,4753,0.8861114332 2011,1,4754,0.8880809851 2011,1,4755,0.8900505372999999 2011,1,4756,0.8900505372999999 2011,1,4757,0.8900505372999999 2011,1,4758,0.8861114332 -2011,1,4759,0.8802027765999999 +2011,1,4759,0.8802027766 2011,1,4760,0.8738668047 2011,1,4761,0.8658581486999999 2011,1,4762,0.8585494920999999 @@ -13532,20 +13532,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4771,0.8664159117999999 2011,1,4772,0.8723245680999999 2011,1,4773,0.8762636728 -2011,1,4774,0.8802027765999999 -2011,1,4775,0.8821723288 -2011,1,4776,0.8841418812999998 +2011,1,4774,0.8802027766 +2011,1,4775,0.8821723288000001 +2011,1,4776,0.8841418812999999 2011,1,4777,0.8861114332 2011,1,4778,0.8861114332 2011,1,4779,0.8880809851 2011,1,4780,0.8900505372999999 2011,1,4781,0.8900505372999999 2011,1,4782,0.8861114332 -2011,1,4783,0.8821723288 +2011,1,4783,0.8821723288000001 2011,1,4784,0.8751363571999999 2011,1,4785,0.8690972524999999 2011,1,4786,0.8617885961999999 -2011,1,4787,0.8551799401999999 +2011,1,4787,0.8551799402 2011,1,4788,0.8432913318999999 2011,1,4789,0.8369913319 2011,1,4790,0.8306913319 @@ -13558,13 +13558,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4797,0.8742941203 2011,1,4798,0.8742941203 2011,1,4799,0.8762636728 -2011,1,4800,0.8782332246999999 -2011,1,4801,0.8802027765999999 -2011,1,4802,0.8821723288 -2011,1,4803,0.8841418812999998 -2011,1,4804,0.8841418812999998 -2011,1,4805,0.8841418812999998 -2011,1,4806,0.8802027765999999 +2011,1,4800,0.8782332247 +2011,1,4801,0.8802027766 +2011,1,4802,0.8821723288000001 +2011,1,4803,0.8841418812999999 +2011,1,4804,0.8841418812999999 +2011,1,4805,0.8841418812999999 +2011,1,4806,0.8802027766 2011,1,4807,0.8762636728 2011,1,4808,0.8699277005999999 2011,1,4809,0.8619190443 @@ -13578,19 +13578,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4817,0.8404913319 2011,1,4818,0.8551913319 2011,1,4819,0.8644463599 -2011,1,4820,0.8703550161999999 +2011,1,4820,0.8703550162 2011,1,4821,0.8742941203 2011,1,4822,0.8762636728 -2011,1,4823,0.8782332246999999 -2011,1,4824,0.8802027765999999 -2011,1,4825,0.8802027765999999 -2011,1,4826,0.8821723288 -2011,1,4827,0.8821723288 -2011,1,4828,0.8841418812999998 -2011,1,4829,0.8841418812999998 -2011,1,4830,0.8802027765999999 +2011,1,4823,0.8782332247 +2011,1,4824,0.8802027766 +2011,1,4825,0.8802027766 +2011,1,4826,0.8821723288000001 +2011,1,4827,0.8821723288000001 +2011,1,4828,0.8841418812999999 +2011,1,4829,0.8841418812999999 +2011,1,4830,0.8802027766 2011,1,4831,0.8742941203 -2011,1,4832,0.8683854642999999 +2011,1,4832,0.8683854643 2011,1,4833,0.8613494920999999 2011,1,4834,0.8523913318999999 2011,1,4835,0.8390913319 @@ -13604,17 +13604,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4843,0.8664159117999999 2011,1,4844,0.8723245680999999 2011,1,4845,0.8762636728 -2011,1,4846,0.8802027765999999 -2011,1,4847,0.8821723288 -2011,1,4848,0.8821723288 -2011,1,4849,0.8841418812999998 -2011,1,4850,0.8841418812999998 +2011,1,4846,0.8802027766 +2011,1,4847,0.8821723288000001 +2011,1,4848,0.8821723288000001 +2011,1,4849,0.8841418812999999 +2011,1,4850,0.8841418812999999 2011,1,4851,0.8861114332 2011,1,4852,0.8861114332 2011,1,4853,0.8861114332 -2011,1,4854,0.8841418812999998 -2011,1,4855,0.8782332246999999 -2011,1,4856,0.8703550161999999 +2011,1,4854,0.8841418812999999 +2011,1,4855,0.8782332247 +2011,1,4856,0.8703550162 2011,1,4857,0.8633190443 2011,1,4858,0.8579799401999999 2011,1,4859,0.8523913318999999 @@ -13628,87 +13628,87 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4867,0.8664159117999999 2011,1,4868,0.8723245680999999 2011,1,4869,0.8762636728 -2011,1,4870,0.8782332246999999 -2011,1,4871,0.8802027765999999 -2011,1,4872,0.8802027765999999 -2011,1,4873,0.8802027765999999 -2011,1,4874,0.8821723288 -2011,1,4875,0.8841418812999998 -2011,1,4876,0.8841418812999998 -2011,1,4877,0.8841418812999998 -2011,1,4878,0.8821723288 +2011,1,4870,0.8782332247 +2011,1,4871,0.8802027766 +2011,1,4872,0.8802027766 +2011,1,4873,0.8802027766 +2011,1,4874,0.8821723288000001 +2011,1,4875,0.8841418812999999 +2011,1,4876,0.8841418812999999 +2011,1,4877,0.8841418812999999 +2011,1,4878,0.8821723288000001 2011,1,4879,0.8762636728 -2011,1,4880,0.8703550161999999 -2011,1,4881,0.8626190443 +2011,1,4880,0.8703550162 +2011,1,4881,0.8626190442999999 2011,1,4882,0.8553103883 2011,1,4883,0.8390913319 2011,1,4884,0.8320913319 2011,1,4885,0.8250913319 2011,1,4886,0.8194913318999999 -2011,1,4887,0.8201913318999998 +2011,1,4887,0.8201913318999999 2011,1,4888,0.8271913318999999 2011,1,4889,0.8341913318999999 2011,1,4890,0.8551913319 2011,1,4891,0.8644463599 -2011,1,4892,0.8703550161999999 +2011,1,4892,0.8703550162 2011,1,4893,0.8742941203 2011,1,4894,0.8762636728 -2011,1,4895,0.8782332246999999 -2011,1,4896,0.8802027765999999 -2011,1,4897,0.8802027765999999 -2011,1,4898,0.8821723288 -2011,1,4899,0.8841418812999998 -2011,1,4900,0.8841418812999998 -2011,1,4901,0.8841418812999998 -2011,1,4902,0.8821723288 +2011,1,4895,0.8782332247 +2011,1,4896,0.8802027766 +2011,1,4897,0.8802027766 +2011,1,4898,0.8821723288000001 +2011,1,4899,0.8841418812999999 +2011,1,4900,0.8841418812999999 +2011,1,4901,0.8841418812999999 +2011,1,4902,0.8821723288000001 2011,1,4903,0.8762636728 2011,1,4904,0.8699277005999999 2011,1,4905,0.8638885961999999 -2011,1,4906,0.8572799401999999 +2011,1,4906,0.8572799402 2011,1,4907,0.8453913318999999 2011,1,4908,0.8257913319 2011,1,4909,0.8194913318999999 -2011,1,4910,0.8138913319000001 -2011,1,4911,0.8138913319000001 -2011,1,4912,0.8208913318999999 +2011,1,4910,0.8138913319 +2011,1,4911,0.8138913319 +2011,1,4912,0.8208913319 2011,1,4913,0.8285913319 2011,1,4914,0.8488913319 2011,1,4915,0.8624768076999999 -2011,1,4916,0.8703550161999999 +2011,1,4916,0.8703550162 2011,1,4917,0.8742941203 2011,1,4918,0.8762636728 -2011,1,4919,0.8782332246999999 -2011,1,4920,0.8802027765999999 -2011,1,4921,0.8821723288 -2011,1,4922,0.8841418812999998 -2011,1,4923,0.8841418812999998 +2011,1,4919,0.8782332247 +2011,1,4920,0.8802027766 +2011,1,4921,0.8821723288000001 +2011,1,4922,0.8841418812999999 +2011,1,4923,0.8841418812999999 2011,1,4924,0.8861114332 2011,1,4925,0.8861114332 -2011,1,4926,0.8821723288 +2011,1,4926,0.8821723288000001 2011,1,4927,0.8762636728 -2011,1,4928,0.8703550161999999 +2011,1,4928,0.8703550162 2011,1,4929,0.8664159117999999 -2011,1,4930,0.8605072557999999 +2011,1,4930,0.8605072558 2011,1,4931,0.8481913319 2011,1,4932,0.8341913318999999 2011,1,4933,0.8271913318999999 -2011,1,4934,0.8201913318999998 -2011,1,4935,0.8208913318999999 +2011,1,4934,0.8201913318999999 +2011,1,4935,0.8208913319 2011,1,4936,0.8278913319 2011,1,4937,0.8348913319 2011,1,4938,0.8488913319 2011,1,4939,0.8624768076999999 -2011,1,4940,0.8683854642999999 -2011,1,4941,0.8703550161999999 +2011,1,4940,0.8683854643 +2011,1,4941,0.8703550162 2011,1,4942,0.8742941203 2011,1,4943,0.8762636728 -2011,1,4944,0.8782332246999999 -2011,1,4945,0.8802027765999999 -2011,1,4946,0.8802027765999999 -2011,1,4947,0.8821723288 -2011,1,4948,0.8841418812999998 -2011,1,4949,0.8841418812999998 -2011,1,4950,0.8802027765999999 +2011,1,4944,0.8782332247 +2011,1,4945,0.8802027766 +2011,1,4946,0.8802027766 +2011,1,4947,0.8821723288000001 +2011,1,4948,0.8841418812999999 +2011,1,4949,0.8841418812999999 +2011,1,4950,0.8802027766 2011,1,4951,0.8742941203 2011,1,4952,0.8679581486999999 2011,1,4953,0.8606494921 @@ -13716,25 +13716,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4955,0.8397913319 2011,1,4956,0.8327913319 2011,1,4957,0.8257913319 -2011,1,4958,0.8201913318999998 +2011,1,4958,0.8201913318999999 2011,1,4959,0.8271913318999999 2011,1,4960,0.8341913318999999 -2011,1,4961,0.8411913319000001 +2011,1,4961,0.8411913319 2011,1,4962,0.8585377039 2011,1,4963,0.8644463599 -2011,1,4964,0.8703550161999999 +2011,1,4964,0.8703550162 2011,1,4965,0.8742941203 2011,1,4966,0.8762636728 -2011,1,4967,0.8782332246999999 -2011,1,4968,0.8782332246999999 -2011,1,4969,0.8802027765999999 -2011,1,4970,0.8821723288 -2011,1,4971,0.8821723288 -2011,1,4972,0.8821723288 -2011,1,4973,0.8821723288 -2011,1,4974,0.8802027765999999 +2011,1,4967,0.8782332247 +2011,1,4968,0.8782332247 +2011,1,4969,0.8802027766 +2011,1,4970,0.8821723288000001 +2011,1,4971,0.8821723288000001 +2011,1,4972,0.8821723288000001 +2011,1,4973,0.8821723288000001 +2011,1,4974,0.8802027766 2011,1,4975,0.8742941203 -2011,1,4976,0.8683854642999999 +2011,1,4976,0.8683854643 2011,1,4977,0.8613494920999999 2011,1,4978,0.8560103883 2011,1,4979,0.8397913319 @@ -13743,94 +13743,94 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,4982,0.8194913318999999 2011,1,4983,0.8264913319 2011,1,4984,0.8334913318999999 -2011,1,4985,0.8411913319000001 +2011,1,4985,0.8411913319 2011,1,4986,0.8556186474999999 2011,1,4987,0.8644463599 -2011,1,4988,0.8703550161999999 +2011,1,4988,0.8703550162 2011,1,4989,0.8723245680999999 2011,1,4990,0.8762636728 -2011,1,4991,0.8782332246999999 -2011,1,4992,0.8782332246999999 -2011,1,4993,0.8802027765999999 -2011,1,4994,0.8802027765999999 -2011,1,4995,0.8821723288 -2011,1,4996,0.8821723288 -2011,1,4997,0.8821723288 -2011,1,4998,0.8802027765999999 +2011,1,4991,0.8782332247 +2011,1,4992,0.8782332247 +2011,1,4993,0.8802027766 +2011,1,4994,0.8802027766 +2011,1,4995,0.8821723288000001 +2011,1,4996,0.8821723288000001 +2011,1,4997,0.8821723288000001 +2011,1,4998,0.8802027766 2011,1,4999,0.8742941203 -2011,1,5000,0.8683854642999999 +2011,1,5000,0.8683854643 2011,1,5001,0.8620494920999999 2011,1,5002,0.8567103883 2011,1,5003,0.8404913319 2011,1,5004,0.8271913318999999 -2011,1,5005,0.8201913318999998 +2011,1,5005,0.8201913318999999 2011,1,5006,0.8131913319 -2011,1,5007,0.8138913319000001 -2011,1,5008,0.8208913318999999 +2011,1,5007,0.8138913319 +2011,1,5008,0.8208913319 2011,1,5009,0.8278913319 2011,1,5010,0.8488913319 2011,1,5011,0.8624768076999999 -2011,1,5012,0.8683854642999999 +2011,1,5012,0.8683854643 2011,1,5013,0.8723245680999999 2011,1,5014,0.8742941203 2011,1,5015,0.8762636728 -2011,1,5016,0.8782332246999999 -2011,1,5017,0.8782332246999999 -2011,1,5018,0.8802027765999999 -2011,1,5019,0.8802027765999999 -2011,1,5020,0.8821723288 -2011,1,5021,0.8821723288 -2011,1,5022,0.8802027765999999 +2011,1,5016,0.8782332247 +2011,1,5017,0.8782332247 +2011,1,5018,0.8802027766 +2011,1,5019,0.8802027766 +2011,1,5020,0.8821723288000001 +2011,1,5021,0.8821723288000001 +2011,1,5022,0.8802027766 2011,1,5023,0.8742941203 -2011,1,5024,0.8683854642999999 -2011,1,5025,0.8626190443 +2011,1,5024,0.8683854643 +2011,1,5025,0.8626190442999999 2011,1,5026,0.8553103883 2011,1,5027,0.8390913319 2011,1,5028,0.8264913319 2011,1,5029,0.8194913318999999 2011,1,5030,0.8131913319 -2011,1,5031,0.8138913319000001 -2011,1,5032,0.8208913318999999 +2011,1,5031,0.8138913319 +2011,1,5032,0.8208913319 2011,1,5033,0.8341913318999999 2011,1,5034,0.8551913319 2011,1,5035,0.8624768076999999 -2011,1,5036,0.8703550161999999 +2011,1,5036,0.8703550162 2011,1,5037,0.8742941203 2011,1,5038,0.8762636728 2011,1,5039,0.8762636728 -2011,1,5040,0.8782332246999999 -2011,1,5041,0.8802027765999999 -2011,1,5042,0.8802027765999999 -2011,1,5043,0.8821723288 -2011,1,5044,0.8821723288 -2011,1,5045,0.8821723288 -2011,1,5046,0.8802027765999999 +2011,1,5040,0.8782332247 +2011,1,5041,0.8802027766 +2011,1,5042,0.8802027766 +2011,1,5043,0.8821723288000001 +2011,1,5044,0.8821723288000001 +2011,1,5045,0.8821723288000001 +2011,1,5046,0.8802027766 2011,1,5047,0.8762636728 2011,1,5048,0.8723245680999999 2011,1,5049,0.8645885962 -2011,1,5050,0.8572799401999999 +2011,1,5050,0.8572799402 2011,1,5051,0.8460913319 2011,1,5052,0.8334913318999999 2011,1,5053,0.8215913318999999 -2011,1,5054,0.8159913319000001 +2011,1,5054,0.8159913319 2011,1,5055,0.8166913319 2011,1,5056,0.8236913318999999 2011,1,5057,0.8304186474999999 2011,1,5058,0.8493186475 2011,1,5059,0.8624768076999999 2011,1,5060,0.8664159117999999 -2011,1,5061,0.8703550161999999 +2011,1,5061,0.8703550162 2011,1,5062,0.8742941203 2011,1,5063,0.8742941203 2011,1,5064,0.8742941203 2011,1,5065,0.8762636728 -2011,1,5066,0.8782332246999999 -2011,1,5067,0.8782332246999999 -2011,1,5068,0.8802027765999999 -2011,1,5069,0.8802027765999999 -2011,1,5070,0.8782332246999999 +2011,1,5066,0.8782332247 +2011,1,5067,0.8782332247 +2011,1,5068,0.8802027766 +2011,1,5069,0.8802027766 +2011,1,5070,0.8782332247 2011,1,5071,0.8742941203 -2011,1,5072,0.8703550161999999 +2011,1,5072,0.8703550162 2011,1,5073,0.8640190443 2011,1,5074,0.8574103882999999 2011,1,5075,0.8474913319 @@ -13846,88 +13846,88 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5085,0.8742941203 2011,1,5086,0.8762636728 2011,1,5087,0.8762636728 -2011,1,5088,0.8782332246999999 -2011,1,5089,0.8802027765999999 -2011,1,5090,0.8821723288 -2011,1,5091,0.8821723288 -2011,1,5092,0.8841418812999998 -2011,1,5093,0.8841418812999998 -2011,1,5094,0.8802027765999999 +2011,1,5088,0.8782332247 +2011,1,5089,0.8802027766 +2011,1,5090,0.8821723288000001 +2011,1,5091,0.8821723288000001 +2011,1,5092,0.8841418812999999 +2011,1,5093,0.8841418812999999 +2011,1,5094,0.8802027766 2011,1,5095,0.8742941203 -2011,1,5096,0.8672581486999998 +2011,1,5096,0.8672581487 2011,1,5097,0.8606494921 2011,1,5098,0.8523913318999999 2011,1,5099,0.8327913319 2011,1,5100,0.8194913318999999 2011,1,5101,0.8131913319 2011,1,5102,0.8068913319 -2011,1,5103,0.8138913319000001 +2011,1,5103,0.8138913319 2011,1,5104,0.8215913318999999 2011,1,5105,0.8348913319 2011,1,5106,0.8551913319 2011,1,5107,0.8644463599 -2011,1,5108,0.8703550161999999 +2011,1,5108,0.8703550162 2011,1,5109,0.8742941203 2011,1,5110,0.8762636728 -2011,1,5111,0.8782332246999999 -2011,1,5112,0.8802027765999999 -2011,1,5113,0.8821723288 -2011,1,5114,0.8841418812999998 -2011,1,5115,0.8841418812999998 -2011,1,5116,0.8841418812999998 -2011,1,5117,0.8841418812999998 -2011,1,5118,0.8802027765999999 +2011,1,5111,0.8782332247 +2011,1,5112,0.8802027766 +2011,1,5113,0.8821723288000001 +2011,1,5114,0.8841418812999999 +2011,1,5115,0.8841418812999999 +2011,1,5116,0.8841418812999999 +2011,1,5117,0.8841418812999999 +2011,1,5118,0.8802027766 2011,1,5119,0.8742941203 2011,1,5120,0.8645885962 -2011,1,5121,0.8572799401999999 +2011,1,5121,0.8572799402 2011,1,5122,0.8446913319 2011,1,5123,0.8250913319 -2011,1,5124,0.8117913319000001 -2011,1,5125,0.8054913318999999 -2011,1,5126,0.8061913318999999 +2011,1,5124,0.8117913319 +2011,1,5125,0.8054913319 +2011,1,5126,0.8061913319 2011,1,5127,0.8124913319 2011,1,5128,0.8194913318999999 2011,1,5129,0.8264913319 2011,1,5130,0.8537913319 2011,1,5131,0.8644463599 -2011,1,5132,0.8683854642999999 +2011,1,5132,0.8683854643 2011,1,5133,0.8723245680999999 2011,1,5134,0.8742941203 2011,1,5135,0.8742941203 2011,1,5136,0.8762636728 -2011,1,5137,0.8782332246999999 -2011,1,5138,0.8802027765999999 -2011,1,5139,0.8802027765999999 -2011,1,5140,0.8821723288 -2011,1,5141,0.8821723288 -2011,1,5142,0.8802027765999999 +2011,1,5137,0.8782332247 +2011,1,5138,0.8802027766 +2011,1,5139,0.8802027766 +2011,1,5140,0.8821723288000001 +2011,1,5141,0.8821723288000001 +2011,1,5142,0.8802027766 2011,1,5143,0.8723245680999999 2011,1,5144,0.8645885962 -2011,1,5145,0.8565799401999998 +2011,1,5145,0.8565799402 2011,1,5146,0.8446913319 2011,1,5147,0.8250913319 -2011,1,5148,0.8180913318999998 +2011,1,5148,0.8180913318999999 2011,1,5149,0.8110913319 -2011,1,5150,0.8117913319000001 -2011,1,5151,0.8187913318999999 +2011,1,5150,0.8117913319 +2011,1,5151,0.8187913319 2011,1,5152,0.8264913319 2011,1,5153,0.8467913319 2011,1,5154,0.8600799401999999 -2011,1,5155,0.8683854642999999 +2011,1,5155,0.8683854643 2011,1,5156,0.8742941203 -2011,1,5157,0.8782332246999999 -2011,1,5158,0.8802027765999999 -2011,1,5159,0.8821723288 -2011,1,5160,0.8841418812999998 +2011,1,5157,0.8782332247 +2011,1,5158,0.8802027766 +2011,1,5159,0.8821723288000001 +2011,1,5160,0.8841418812999999 2011,1,5161,0.8861114332 2011,1,5162,0.8880809851 2011,1,5163,0.8880809851 2011,1,5164,0.8900505372999999 2011,1,5165,0.8900505372999999 2011,1,5166,0.8861114332 -2011,1,5167,0.8821723288 +2011,1,5167,0.8821723288000001 2011,1,5168,0.8751363571999999 -2011,1,5169,0.8671277005999999 +2011,1,5169,0.8671277006 2011,1,5170,0.8585494920999999 2011,1,5171,0.8509913319 2011,1,5172,0.8376913319 @@ -13935,21 +13935,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5174,0.8250913319 2011,1,5175,0.8257913319 2011,1,5176,0.8327913319 -2011,1,5177,0.8411913319000001 +2011,1,5177,0.8411913319 2011,1,5178,0.8585377039 2011,1,5179,0.8664159117999999 2011,1,5180,0.8723245680999999 2011,1,5181,0.8742941203 -2011,1,5182,0.8782332246999999 -2011,1,5183,0.8802027765999999 -2011,1,5184,0.8821723288 -2011,1,5185,0.8841418812999998 -2011,1,5186,0.8841418812999998 +2011,1,5182,0.8782332247 +2011,1,5183,0.8802027766 +2011,1,5184,0.8821723288000001 +2011,1,5185,0.8841418812999999 +2011,1,5186,0.8841418812999999 2011,1,5187,0.8861114332 2011,1,5188,0.8861114332 2011,1,5189,0.8861114332 -2011,1,5190,0.8841418812999998 -2011,1,5191,0.8782332246999999 +2011,1,5190,0.8841418812999999 +2011,1,5191,0.8782332247 2011,1,5192,0.8723245680999999 2011,1,5193,0.8652885961999999 2011,1,5194,0.8579799401999999 @@ -13964,16 +13964,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5203,0.8664159117999999 2011,1,5204,0.8723245680999999 2011,1,5205,0.8762636728 -2011,1,5206,0.8782332246999999 -2011,1,5207,0.8802027765999999 -2011,1,5208,0.8802027765999999 -2011,1,5209,0.8821723288 -2011,1,5210,0.8841418812999998 -2011,1,5211,0.8841418812999998 +2011,1,5206,0.8782332247 +2011,1,5207,0.8802027766 +2011,1,5208,0.8802027766 +2011,1,5209,0.8821723288000001 +2011,1,5210,0.8841418812999999 +2011,1,5211,0.8841418812999999 2011,1,5212,0.8861114332 2011,1,5213,0.8861114332 -2011,1,5214,0.8841418812999998 -2011,1,5215,0.8782332246999999 +2011,1,5214,0.8841418812999999 +2011,1,5215,0.8782332247 2011,1,5216,0.8742941203 2011,1,5217,0.8679581486999999 2011,1,5218,0.8599494920999999 @@ -13988,16 +13988,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5227,0.8664159117999999 2011,1,5228,0.8723245680999999 2011,1,5229,0.8762636728 -2011,1,5230,0.8782332246999999 -2011,1,5231,0.8802027765999999 -2011,1,5232,0.8821723288 -2011,1,5233,0.8841418812999998 -2011,1,5234,0.8841418812999998 +2011,1,5230,0.8782332247 +2011,1,5231,0.8802027766 +2011,1,5232,0.8821723288000001 +2011,1,5233,0.8841418812999999 +2011,1,5234,0.8841418812999999 2011,1,5235,0.8861114332 2011,1,5236,0.8880809851 2011,1,5237,0.8880809851 -2011,1,5238,0.8841418812999998 -2011,1,5239,0.8802027765999999 +2011,1,5238,0.8841418812999999 +2011,1,5239,0.8802027766 2011,1,5240,0.8742941203 2011,1,5241,0.8665581486999999 2011,1,5242,0.8592494920999999 @@ -14010,43 +14010,43 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5249,0.8341913318999999 2011,1,5250,0.8585377039 2011,1,5251,0.8664159117999999 -2011,1,5252,0.8703550161999999 +2011,1,5252,0.8703550162 2011,1,5253,0.8723245680999999 2011,1,5254,0.8742941203 -2011,1,5255,0.8782332246999999 -2011,1,5256,0.8802027765999999 -2011,1,5257,0.8821723288 -2011,1,5258,0.8841418812999998 +2011,1,5255,0.8782332247 +2011,1,5256,0.8802027766 +2011,1,5257,0.8821723288000001 +2011,1,5258,0.8841418812999999 2011,1,5259,0.8861114332 2011,1,5260,0.8861114332 2011,1,5261,0.8861114332 -2011,1,5262,0.8841418812999998 -2011,1,5263,0.8782332246999999 +2011,1,5262,0.8841418812999999 +2011,1,5263,0.8782332247 2011,1,5264,0.8723245680999999 2011,1,5265,0.8645885962 -2011,1,5266,0.8565799401999998 +2011,1,5266,0.8565799402 2011,1,5267,0.8446913319 2011,1,5268,0.8313913318999999 2011,1,5269,0.8243913319 -2011,1,5270,0.8180913318999998 -2011,1,5271,0.8187913318999999 +2011,1,5270,0.8180913318999999 +2011,1,5271,0.8187913319 2011,1,5272,0.8264913319 2011,1,5273,0.8404913319 2011,1,5274,0.8585377039 2011,1,5275,0.8664159117999999 -2011,1,5276,0.8703550161999999 +2011,1,5276,0.8703550162 2011,1,5277,0.8742941203 -2011,1,5278,0.8782332246999999 -2011,1,5279,0.8802027765999999 -2011,1,5280,0.8802027765999999 -2011,1,5281,0.8821723288 -2011,1,5282,0.8841418812999998 +2011,1,5278,0.8782332247 +2011,1,5279,0.8802027766 +2011,1,5280,0.8802027766 +2011,1,5281,0.8821723288000001 +2011,1,5282,0.8841418812999999 2011,1,5283,0.8861114332 2011,1,5284,0.8861114332 2011,1,5285,0.8861114332 -2011,1,5286,0.8841418812999998 -2011,1,5287,0.8782332246999999 -2011,1,5288,0.8703550161999999 +2011,1,5286,0.8841418812999999 +2011,1,5287,0.8782332247 +2011,1,5288,0.8703550162 2011,1,5289,0.8640190443 2011,1,5290,0.8560103883 2011,1,5291,0.8397913319 @@ -14055,22 +14055,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5294,0.8194913318999999 2011,1,5295,0.8264913319 2011,1,5296,0.8334913318999999 -2011,1,5297,0.8411913319000001 -2011,1,5298,0.8605072557999999 -2011,1,5299,0.8683854642999999 +2011,1,5297,0.8411913319 +2011,1,5298,0.8605072558 +2011,1,5299,0.8683854643 2011,1,5300,0.8723245680999999 2011,1,5301,0.8762636728 -2011,1,5302,0.8802027765999999 -2011,1,5303,0.8802027765999999 -2011,1,5304,0.8821723288 -2011,1,5305,0.8821723288 -2011,1,5306,0.8821723288 -2011,1,5307,0.8841418812999998 -2011,1,5308,0.8841418812999998 -2011,1,5309,0.8841418812999998 -2011,1,5310,0.8821723288 +2011,1,5302,0.8802027766 +2011,1,5303,0.8802027766 +2011,1,5304,0.8821723288000001 +2011,1,5305,0.8821723288000001 +2011,1,5306,0.8821723288000001 +2011,1,5307,0.8841418812999999 +2011,1,5308,0.8841418812999999 +2011,1,5309,0.8841418812999999 +2011,1,5310,0.8821723288000001 2011,1,5311,0.8762636728 -2011,1,5312,0.8703550161999999 +2011,1,5312,0.8703550162 2011,1,5313,0.8644463599 2011,1,5314,0.8574103882999999 2011,1,5315,0.8537913319 @@ -14081,22 +14081,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5320,0.8474913319 2011,1,5321,0.8556186474999999 2011,1,5322,0.8624768076999999 -2011,1,5323,0.8703550161999999 +2011,1,5323,0.8703550162 2011,1,5324,0.8762636728 -2011,1,5325,0.8782332246999999 -2011,1,5326,0.8802027765999999 -2011,1,5327,0.8821723288 -2011,1,5328,0.8821723288 -2011,1,5329,0.8841418812999998 -2011,1,5330,0.8841418812999998 +2011,1,5325,0.8782332247 +2011,1,5326,0.8802027766 +2011,1,5327,0.8821723288000001 +2011,1,5328,0.8821723288000001 +2011,1,5329,0.8841418812999999 +2011,1,5330,0.8841418812999999 2011,1,5331,0.8861114332 2011,1,5332,0.8861114332 2011,1,5333,0.8861114332 -2011,1,5334,0.8841418812999998 -2011,1,5335,0.8782332246999999 +2011,1,5334,0.8841418812999999 +2011,1,5335,0.8782332247 2011,1,5336,0.8723245680999999 2011,1,5337,0.8664159117999999 -2011,1,5338,0.8593799401999999 +2011,1,5338,0.8593799402 2011,1,5339,0.8530913319 2011,1,5340,0.8460913319 2011,1,5341,0.8397913319 @@ -14105,20 +14105,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5344,0.8474913319 2011,1,5345,0.8551913319 2011,1,5346,0.8624768076999999 -2011,1,5347,0.8703550161999999 +2011,1,5347,0.8703550162 2011,1,5348,0.8742941203 2011,1,5349,0.8762636728 -2011,1,5350,0.8782332246999999 -2011,1,5351,0.8802027765999999 -2011,1,5352,0.8821723288 -2011,1,5353,0.8821723288 -2011,1,5354,0.8841418812999998 -2011,1,5355,0.8841418812999998 -2011,1,5356,0.8841418812999998 -2011,1,5357,0.8841418812999998 -2011,1,5358,0.8821723288 +2011,1,5350,0.8782332247 +2011,1,5351,0.8802027766 +2011,1,5352,0.8821723288000001 +2011,1,5353,0.8821723288000001 +2011,1,5354,0.8841418812999999 +2011,1,5355,0.8841418812999999 +2011,1,5356,0.8841418812999999 +2011,1,5357,0.8841418812999999 +2011,1,5358,0.8821723288000001 2011,1,5359,0.8762636728 -2011,1,5360,0.8703550161999999 +2011,1,5360,0.8703550162 2011,1,5361,0.8659885961999999 2011,1,5362,0.8579799401999999 2011,1,5363,0.8516913318999999 @@ -14128,19 +14128,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5367,0.8327913319 2011,1,5368,0.8397913319 2011,1,5369,0.8474913319 -2011,1,5370,0.8605072557999999 +2011,1,5370,0.8605072558 2011,1,5371,0.8664159117999999 -2011,1,5372,0.8703550161999999 +2011,1,5372,0.8703550162 2011,1,5373,0.8723245680999999 2011,1,5374,0.8742941203 2011,1,5375,0.8742941203 2011,1,5376,0.8762636728 2011,1,5377,0.8762636728 -2011,1,5378,0.8782332246999999 -2011,1,5379,0.8782332246999999 -2011,1,5380,0.8802027765999999 -2011,1,5381,0.8802027765999999 -2011,1,5382,0.8782332246999999 +2011,1,5378,0.8782332247 +2011,1,5379,0.8782332247 +2011,1,5380,0.8802027766 +2011,1,5381,0.8802027766 +2011,1,5382,0.8782332247 2011,1,5383,0.8723245680999999 2011,1,5384,0.8679581486999999 2011,1,5385,0.8599494920999999 @@ -14149,46 +14149,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5388,0.8320913319 2011,1,5389,0.8194913318999999 2011,1,5390,0.8131913319 -2011,1,5391,0.8138913319000001 -2011,1,5392,0.8208913318999999 +2011,1,5391,0.8138913319 +2011,1,5392,0.8208913319 2011,1,5393,0.8348913319 2011,1,5394,0.8551913319 2011,1,5395,0.8644463599 -2011,1,5396,0.8683854642999999 +2011,1,5396,0.8683854643 2011,1,5397,0.8723245680999999 2011,1,5398,0.8742941203 2011,1,5399,0.8742941203 2011,1,5400,0.8762636728 -2011,1,5401,0.8782332246999999 -2011,1,5402,0.8802027765999999 -2011,1,5403,0.8821723288 -2011,1,5404,0.8821723288 -2011,1,5405,0.8821723288 -2011,1,5406,0.8802027765999999 +2011,1,5401,0.8782332247 +2011,1,5402,0.8802027766 +2011,1,5403,0.8821723288000001 +2011,1,5404,0.8821723288000001 +2011,1,5405,0.8821723288000001 +2011,1,5406,0.8802027766 2011,1,5407,0.8742941203 2011,1,5408,0.8679581486999999 2011,1,5409,0.8599494920999999 2011,1,5410,0.8516913318999999 2011,1,5411,0.8383913319 2011,1,5412,0.8250913319 -2011,1,5413,0.8180913318999998 -2011,1,5414,0.8117913319000001 -2011,1,5415,0.8187913318999999 +2011,1,5413,0.8180913318999999 +2011,1,5414,0.8117913319 +2011,1,5415,0.8187913319 2011,1,5416,0.8264913319 2011,1,5417,0.8334913318999999 2011,1,5418,0.8544913318999999 2011,1,5419,0.8644463599 -2011,1,5420,0.8683854642999999 +2011,1,5420,0.8683854643 2011,1,5421,0.8723245680999999 2011,1,5422,0.8742941203 2011,1,5423,0.8762636728 -2011,1,5424,0.8782332246999999 -2011,1,5425,0.8802027765999999 -2011,1,5426,0.8821723288 -2011,1,5427,0.8841418812999998 -2011,1,5428,0.8841418812999998 -2011,1,5429,0.8841418812999998 -2011,1,5430,0.8821723288 +2011,1,5424,0.8782332247 +2011,1,5425,0.8802027766 +2011,1,5426,0.8821723288000001 +2011,1,5427,0.8841418812999999 +2011,1,5428,0.8841418812999999 +2011,1,5429,0.8841418812999999 +2011,1,5430,0.8821723288000001 2011,1,5431,0.8762636728 2011,1,5432,0.8699277005999999 2011,1,5433,0.8619190443 @@ -14196,48 +14196,48 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5435,0.8383913319 2011,1,5436,0.8313913318999999 2011,1,5437,0.8250913319 -2011,1,5438,0.8187913318999999 +2011,1,5438,0.8187913319 2011,1,5439,0.8194913318999999 2011,1,5440,0.8264913319 2011,1,5441,0.8348913319 2011,1,5442,0.8585377039 2011,1,5443,0.8664159117999999 -2011,1,5444,0.8703550161999999 +2011,1,5444,0.8703550162 2011,1,5445,0.8742941203 2011,1,5446,0.8762636728 -2011,1,5447,0.8782332246999999 -2011,1,5448,0.8802027765999999 -2011,1,5449,0.8821723288 -2011,1,5450,0.8841418812999998 -2011,1,5451,0.8841418812999998 +2011,1,5447,0.8782332247 +2011,1,5448,0.8802027766 +2011,1,5449,0.8821723288000001 +2011,1,5450,0.8841418812999999 +2011,1,5451,0.8841418812999999 2011,1,5452,0.8861114332 2011,1,5453,0.8861114332 -2011,1,5454,0.8841418812999998 -2011,1,5455,0.8782332246999999 -2011,1,5456,0.8703550161999999 -2011,1,5457,0.8626190443 +2011,1,5454,0.8841418812999999 +2011,1,5455,0.8782332247 +2011,1,5456,0.8703550162 +2011,1,5457,0.8626190442999999 2011,1,5458,0.8546103883 2011,1,5459,0.8446913319 2011,1,5460,0.8313913318999999 2011,1,5461,0.8243913319 -2011,1,5462,0.8187913318999999 +2011,1,5462,0.8187913319 2011,1,5463,0.8257913319 2011,1,5464,0.8327913319 2011,1,5465,0.8404913319 -2011,1,5466,0.8605072557999999 +2011,1,5466,0.8605072558 2011,1,5467,0.8664159117999999 -2011,1,5468,0.8703550161999999 +2011,1,5468,0.8703550162 2011,1,5469,0.8723245680999999 2011,1,5470,0.8742941203 2011,1,5471,0.8762636728 -2011,1,5472,0.8782332246999999 -2011,1,5473,0.8802027765999999 -2011,1,5474,0.8821723288 -2011,1,5475,0.8841418812999998 -2011,1,5476,0.8841418812999998 +2011,1,5472,0.8782332247 +2011,1,5473,0.8802027766 +2011,1,5474,0.8821723288000001 +2011,1,5475,0.8841418812999999 +2011,1,5476,0.8841418812999999 2011,1,5477,0.8861114332 -2011,1,5478,0.8841418812999998 -2011,1,5479,0.8782332246999999 +2011,1,5478,0.8841418812999999 +2011,1,5479,0.8782332247 2011,1,5480,0.8704972525 2011,1,5481,0.8624885962 2011,1,5482,0.8558799401999999 @@ -14248,44 +14248,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5487,0.8250913319 2011,1,5488,0.8320913319 2011,1,5489,0.8390913319 -2011,1,5490,0.8593799401999999 +2011,1,5490,0.8593799402 2011,1,5491,0.8664159117999999 -2011,1,5492,0.8703550161999999 +2011,1,5492,0.8703550162 2011,1,5493,0.8723245680999999 2011,1,5494,0.8762636728 -2011,1,5495,0.8782332246999999 -2011,1,5496,0.8802027765999999 -2011,1,5497,0.8802027765999999 -2011,1,5498,0.8821723288 -2011,1,5499,0.8841418812999998 -2011,1,5500,0.8841418812999998 -2011,1,5501,0.8841418812999998 -2011,1,5502,0.8821723288 +2011,1,5495,0.8782332247 +2011,1,5496,0.8802027766 +2011,1,5497,0.8802027766 +2011,1,5498,0.8821723288000001 +2011,1,5499,0.8841418812999999 +2011,1,5500,0.8841418812999999 +2011,1,5501,0.8841418812999999 +2011,1,5502,0.8821723288000001 2011,1,5503,0.8762636728 -2011,1,5504,0.8692277005999999 +2011,1,5504,0.8692277006 2011,1,5505,0.8612190443 2011,1,5506,0.8539103883 2011,1,5507,0.8376913319 2011,1,5508,0.8306913319 2011,1,5509,0.8243913319 -2011,1,5510,0.8180913318999998 -2011,1,5511,0.8187913318999999 +2011,1,5510,0.8180913318999999 +2011,1,5511,0.8187913319 2011,1,5512,0.8264913319 2011,1,5513,0.8341913318999999 2011,1,5514,0.8585377039 2011,1,5515,0.8664159117999999 -2011,1,5516,0.8703550161999999 +2011,1,5516,0.8703550162 2011,1,5517,0.8742941203 2011,1,5518,0.8762636728 -2011,1,5519,0.8782332246999999 -2011,1,5520,0.8821723288 -2011,1,5521,0.8821723288 -2011,1,5522,0.8841418812999998 +2011,1,5519,0.8782332247 +2011,1,5520,0.8821723288000001 +2011,1,5521,0.8821723288000001 +2011,1,5522,0.8841418812999999 2011,1,5523,0.8861114332 2011,1,5524,0.8861114332 2011,1,5525,0.8861114332 -2011,1,5526,0.8841418812999998 -2011,1,5527,0.8782332246999999 +2011,1,5526,0.8841418812999999 +2011,1,5527,0.8782332247 2011,1,5528,0.8723245680999999 2011,1,5529,0.8659885961999999 2011,1,5530,0.8599494920999999 @@ -14299,18 +14299,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5538,0.8644463599 2011,1,5539,0.8723245680999999 2011,1,5540,0.8762636728 -2011,1,5541,0.8802027765999999 -2011,1,5542,0.8821723288 -2011,1,5543,0.8841418812999998 -2011,1,5544,0.8841418812999998 +2011,1,5541,0.8802027766 +2011,1,5542,0.8821723288000001 +2011,1,5543,0.8841418812999999 +2011,1,5544,0.8841418812999999 2011,1,5545,0.8861114332 2011,1,5546,0.8861114332 2011,1,5547,0.8880809851 2011,1,5548,0.8880809851 2011,1,5549,0.8900505372999999 2011,1,5550,0.8880809851 -2011,1,5551,0.8841418812999998 -2011,1,5552,0.8782332246999999 +2011,1,5551,0.8841418812999999 +2011,1,5552,0.8782332247 2011,1,5553,0.8723245680999999 2011,1,5554,0.8652885961999999 2011,1,5555,0.8579799401999999 @@ -14319,12 +14319,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5558,0.8404913319 2011,1,5559,0.8474913319 2011,1,5560,0.8544913318999999 -2011,1,5561,0.8605072557999999 +2011,1,5561,0.8605072558 2011,1,5562,0.8664159117999999 2011,1,5563,0.8742941203 -2011,1,5564,0.8782332246999999 -2011,1,5565,0.8821723288 -2011,1,5566,0.8841418812999998 +2011,1,5564,0.8782332247 +2011,1,5565,0.8821723288000001 +2011,1,5566,0.8841418812999999 2011,1,5567,0.8861114332 2011,1,5568,0.8861114332 2011,1,5569,0.8880809851 @@ -14333,11 +14333,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5572,0.8900505372999999 2011,1,5573,0.8900505372999999 2011,1,5574,0.8880809851 -2011,1,5575,0.8841418812999998 -2011,1,5576,0.8782332246999999 +2011,1,5575,0.8841418812999999 +2011,1,5576,0.8782332247 2011,1,5577,0.8711972524999999 2011,1,5578,0.8638885961999999 -2011,1,5579,0.8572799401999999 +2011,1,5579,0.8572799402 2011,1,5580,0.8516913318999999 2011,1,5581,0.8453913318999999 2011,1,5582,0.8397913319 @@ -14347,20 +14347,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5586,0.8644463599 2011,1,5587,0.8723245680999999 2011,1,5588,0.8762636728 -2011,1,5589,0.8802027765999999 -2011,1,5590,0.8821723288 -2011,1,5591,0.8821723288 -2011,1,5592,0.8841418812999998 -2011,1,5593,0.8841418812999998 -2011,1,5594,0.8841418812999998 +2011,1,5589,0.8802027766 +2011,1,5590,0.8821723288000001 +2011,1,5591,0.8821723288000001 +2011,1,5592,0.8841418812999999 +2011,1,5593,0.8841418812999999 +2011,1,5594,0.8841418812999999 2011,1,5595,0.8861114332 2011,1,5596,0.8861114332 2011,1,5597,0.8861114332 -2011,1,5598,0.8841418812999998 -2011,1,5599,0.8821723288 +2011,1,5598,0.8841418812999999 +2011,1,5599,0.8821723288000001 2011,1,5600,0.8778059090999999 2011,1,5601,0.8697972525 -2011,1,5602,0.8644581486999998 +2011,1,5602,0.8644581486999999 2011,1,5603,0.8578494920999999 2011,1,5604,0.8502913319 2011,1,5605,0.8432913318999999 @@ -14368,19 +14368,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5607,0.8376913319 2011,1,5608,0.8453913318999999 2011,1,5609,0.8530913319 -2011,1,5610,0.8605072557999999 -2011,1,5611,0.8683854642999999 +2011,1,5610,0.8605072558 +2011,1,5611,0.8683854643 2011,1,5612,0.8723245680999999 2011,1,5613,0.8742941203 2011,1,5614,0.8762636728 -2011,1,5615,0.8782332246999999 -2011,1,5616,0.8802027765999999 -2011,1,5617,0.8821723288 -2011,1,5618,0.8821723288 -2011,1,5619,0.8821723288 -2011,1,5620,0.8841418812999998 -2011,1,5621,0.8841418812999998 -2011,1,5622,0.8821723288 +2011,1,5615,0.8782332247 +2011,1,5616,0.8802027766 +2011,1,5617,0.8821723288000001 +2011,1,5618,0.8821723288000001 +2011,1,5619,0.8821723288000001 +2011,1,5620,0.8841418812999999 +2011,1,5621,0.8841418812999999 +2011,1,5622,0.8821723288000001 2011,1,5623,0.8762636728 2011,1,5624,0.8665581486999999 2011,1,5625,0.8585494920999999 @@ -14388,80 +14388,80 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5627,0.8306913319 2011,1,5628,0.8173913318999999 2011,1,5629,0.8103913319 -2011,1,5630,0.8040913318999999 +2011,1,5630,0.8040913319 2011,1,5631,0.8047913319 -2011,1,5632,0.8117913319000001 +2011,1,5632,0.8117913319 2011,1,5633,0.8257913319 2011,1,5634,0.8474913319 2011,1,5635,0.8624768076999999 2011,1,5636,0.8664159117999999 -2011,1,5637,0.8683854642999999 -2011,1,5638,0.8703550161999999 +2011,1,5637,0.8683854643 +2011,1,5638,0.8703550162 2011,1,5639,0.8723245680999999 2011,1,5640,0.8742941203 2011,1,5641,0.8762636728 2011,1,5642,0.8762636728 -2011,1,5643,0.8782332246999999 -2011,1,5644,0.8802027765999999 -2011,1,5645,0.8802027765999999 -2011,1,5646,0.8782332246999999 +2011,1,5643,0.8782332247 +2011,1,5644,0.8802027766 +2011,1,5645,0.8802027766 +2011,1,5646,0.8782332247 2011,1,5647,0.8699277005999999 2011,1,5648,0.8619190443 2011,1,5649,0.8539103883 2011,1,5650,0.8369913319 2011,1,5651,0.8236913319 2011,1,5652,0.8103913319 -2011,1,5653,0.8033913318999999 -2011,1,5654,0.8040913318999999 +2011,1,5653,0.8033913319 +2011,1,5654,0.8040913319 2011,1,5655,0.8047913319 -2011,1,5656,0.8117913319000001 +2011,1,5656,0.8117913319 2011,1,5657,0.8257913319 2011,1,5658,0.8530913319 2011,1,5659,0.8644463599 -2011,1,5660,0.8683854642999999 -2011,1,5661,0.8703550161999999 +2011,1,5660,0.8683854643 +2011,1,5661,0.8703550162 2011,1,5662,0.8742941203 2011,1,5663,0.8762636728 -2011,1,5664,0.8782332246999999 -2011,1,5665,0.8782332246999999 -2011,1,5666,0.8802027765999999 -2011,1,5667,0.8802027765999999 -2011,1,5668,0.8821723288 -2011,1,5669,0.8821723288 -2011,1,5670,0.8802027765999999 +2011,1,5664,0.8782332247 +2011,1,5665,0.8782332247 +2011,1,5666,0.8802027766 +2011,1,5667,0.8802027766 +2011,1,5668,0.8821723288000001 +2011,1,5669,0.8821723288000001 +2011,1,5670,0.8802027766 2011,1,5671,0.8738668047 -2011,1,5672,0.8671277005999999 +2011,1,5672,0.8671277006 2011,1,5673,0.8591190443 2011,1,5674,0.8518103883 2011,1,5675,0.8355913319 -2011,1,5676,0.8159913318999998 -2011,1,5677,0.8096913319000001 -2011,1,5678,0.8040913318999999 +2011,1,5676,0.8159913319 +2011,1,5677,0.8096913319 +2011,1,5678,0.8040913319 2011,1,5679,0.8047913319 -2011,1,5680,0.8117913319000001 +2011,1,5680,0.8117913319 2011,1,5681,0.8250913319 2011,1,5682,0.8530913319 2011,1,5683,0.8620494920999999 2011,1,5684,0.8664159117999999 -2011,1,5685,0.8703550161999999 +2011,1,5685,0.8703550162 2011,1,5686,0.8723245680999999 2011,1,5687,0.8762636728 2011,1,5688,0.8762636728 -2011,1,5689,0.8782332246999999 -2011,1,5690,0.8802027765999999 -2011,1,5691,0.8802027765999999 -2011,1,5692,0.8802027765999999 -2011,1,5693,0.8802027765999999 -2011,1,5694,0.8782332246999999 +2011,1,5689,0.8782332247 +2011,1,5690,0.8802027766 +2011,1,5691,0.8802027766 +2011,1,5692,0.8802027766 +2011,1,5693,0.8802027766 +2011,1,5694,0.8782332247 2011,1,5695,0.8731668047 -2011,1,5696,0.8651581486999999 -2011,1,5697,0.8551799401999999 +2011,1,5696,0.8651581487 +2011,1,5697,0.8551799402 2011,1,5698,0.8425913319 2011,1,5699,0.8229913319 2011,1,5700,0.8103913319 -2011,1,5701,0.8040913318999999 +2011,1,5701,0.8040913319 2011,1,5702,0.7984913319 -2011,1,5703,0.8054913318999999 +2011,1,5703,0.8054913319 2011,1,5704,0.8124913319 2011,1,5705,0.8194913318999999 2011,1,5706,0.8404913319 @@ -14469,9 +14469,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5708,0.8620494920999999 2011,1,5709,0.8640190443 2011,1,5710,0.8664159117999999 -2011,1,5711,0.8683854642999999 -2011,1,5712,0.8703550161999999 -2011,1,5713,0.8703550161999999 +2011,1,5711,0.8683854643 +2011,1,5712,0.8703550162 +2011,1,5713,0.8703550162 2011,1,5714,0.8723245680999999 2011,1,5715,0.8742941203 2011,1,5716,0.8742941203 @@ -14482,18 +14482,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5721,0.8532103883 2011,1,5722,0.8369913319 2011,1,5723,0.8173913318999999 -2011,1,5724,0.8040913318999999 +2011,1,5724,0.8040913319 2011,1,5725,0.7977913319 2011,1,5726,0.7921913319 2011,1,5727,0.7991913318999999 -2011,1,5728,0.8061913318999999 +2011,1,5728,0.8061913319 2011,1,5729,0.8131913319 2011,1,5730,0.8404913319 -2011,1,5731,0.8593799401999999 +2011,1,5731,0.8593799402 2011,1,5732,0.8644463599 2011,1,5733,0.8664159117999999 -2011,1,5734,0.8703550161999999 -2011,1,5735,0.8703550161999999 +2011,1,5734,0.8703550162 +2011,1,5735,0.8703550162 2011,1,5736,0.8723245680999999 2011,1,5737,0.8723245680999999 2011,1,5738,0.8742941203 @@ -14501,55 +14501,55 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5740,0.8762636728 2011,1,5741,0.8762636728 2011,1,5742,0.8742941203 -2011,1,5743,0.8683854642999999 +2011,1,5743,0.8683854643 2011,1,5744,0.8606494921 2011,1,5745,0.8453913318999999 2011,1,5746,0.8250913319 -2011,1,5747,0.8117913319000001 +2011,1,5747,0.8117913319 2011,1,5748,0.7984913319 2011,1,5749,0.7921913319 2011,1,5750,0.7921913319 2011,1,5751,0.7928913318999999 2011,1,5752,0.7998913319 -2011,1,5753,0.8138913319000001 +2011,1,5753,0.8138913319 2011,1,5754,0.8404913319 2011,1,5755,0.8600799401999999 2011,1,5756,0.8644463599 -2011,1,5757,0.8683854642999999 -2011,1,5758,0.8703550161999999 +2011,1,5757,0.8683854643 +2011,1,5758,0.8703550162 2011,1,5759,0.8723245680999999 2011,1,5760,0.8742941203 2011,1,5761,0.8762636728 2011,1,5762,0.8762636728 -2011,1,5763,0.8782332246999999 -2011,1,5764,0.8782332246999999 -2011,1,5765,0.8802027765999999 -2011,1,5766,0.8782332246999999 +2011,1,5763,0.8782332247 +2011,1,5764,0.8782332247 +2011,1,5765,0.8802027766 +2011,1,5766,0.8782332247 2011,1,5767,0.8723245680999999 2011,1,5768,0.8638885961999999 2011,1,5769,0.8558799401999999 2011,1,5770,0.8432913318999999 2011,1,5771,0.8236913319 2011,1,5772,0.8110913319 -2011,1,5773,0.8040913318999999 +2011,1,5773,0.8040913319 2011,1,5774,0.7984913319 -2011,1,5775,0.8054913318999999 +2011,1,5775,0.8054913319 2011,1,5776,0.8124913319 2011,1,5777,0.8264913319 2011,1,5778,0.8537913319 2011,1,5779,0.8644463599 -2011,1,5780,0.8683854642999999 -2011,1,5781,0.8703550161999999 +2011,1,5780,0.8683854643 +2011,1,5781,0.8703550162 2011,1,5782,0.8742941203 2011,1,5783,0.8762636728 -2011,1,5784,0.8782332246999999 -2011,1,5785,0.8821723288 -2011,1,5786,0.8821723288 -2011,1,5787,0.8841418812999998 +2011,1,5784,0.8782332247 +2011,1,5785,0.8821723288000001 +2011,1,5786,0.8821723288000001 +2011,1,5787,0.8841418812999999 2011,1,5788,0.8861114332 2011,1,5789,0.8861114332 -2011,1,5790,0.8841418812999998 -2011,1,5791,0.8782332246999999 +2011,1,5790,0.8841418812999999 +2011,1,5791,0.8782332247 2011,1,5792,0.8711972524999999 2011,1,5793,0.8631885961999999 2011,1,5794,0.8558799401999999 @@ -14563,17 +14563,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5802,0.8644463599 2011,1,5803,0.8723245680999999 2011,1,5804,0.8762636728 -2011,1,5805,0.8802027765999999 -2011,1,5806,0.8802027765999999 -2011,1,5807,0.8821723288 -2011,1,5808,0.8821723288 -2011,1,5809,0.8841418812999998 +2011,1,5805,0.8802027766 +2011,1,5806,0.8802027766 +2011,1,5807,0.8821723288000001 +2011,1,5808,0.8821723288000001 +2011,1,5809,0.8841418812999999 2011,1,5810,0.8861114332 2011,1,5811,0.8861114332 2011,1,5812,0.8880809851 2011,1,5813,0.8880809851 2011,1,5814,0.8861114332 -2011,1,5815,0.8821723288 +2011,1,5815,0.8821723288000001 2011,1,5816,0.8762636728 2011,1,5817,0.8699277005999999 2011,1,5818,0.8619190443 @@ -14586,18 +14586,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5825,0.8581103883 2011,1,5826,0.8664159117999999 2011,1,5827,0.8742941203 -2011,1,5828,0.8782332246999999 -2011,1,5829,0.8802027765999999 -2011,1,5830,0.8821723288 -2011,1,5831,0.8821723288 -2011,1,5832,0.8841418812999998 -2011,1,5833,0.8841418812999998 -2011,1,5834,0.8841418812999998 -2011,1,5835,0.8841418812999998 +2011,1,5828,0.8782332247 +2011,1,5829,0.8802027766 +2011,1,5830,0.8821723288000001 +2011,1,5831,0.8821723288000001 +2011,1,5832,0.8841418812999999 +2011,1,5833,0.8841418812999999 +2011,1,5834,0.8841418812999999 +2011,1,5835,0.8841418812999999 2011,1,5836,0.8861114332 2011,1,5837,0.8861114332 2011,1,5838,0.8861114332 -2011,1,5839,0.8821723288 +2011,1,5839,0.8821723288000001 2011,1,5840,0.8762636728 2011,1,5841,0.8665581486999999 2011,1,5842,0.8592494920999999 @@ -14609,18 +14609,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5848,0.8397913319 2011,1,5849,0.8481913319 2011,1,5850,0.8624768076999999 -2011,1,5851,0.8703550161999999 +2011,1,5851,0.8703550162 2011,1,5852,0.8742941203 2011,1,5853,0.8762636728 -2011,1,5854,0.8802027765999999 -2011,1,5855,0.8802027765999999 -2011,1,5856,0.8802027765999999 -2011,1,5857,0.8802027765999999 -2011,1,5858,0.8821723288 -2011,1,5859,0.8821723288 -2011,1,5860,0.8821723288 -2011,1,5861,0.8841418812999998 -2011,1,5862,0.8821723288 +2011,1,5854,0.8802027766 +2011,1,5855,0.8802027766 +2011,1,5856,0.8802027766 +2011,1,5857,0.8802027766 +2011,1,5858,0.8821723288000001 +2011,1,5859,0.8821723288000001 +2011,1,5860,0.8821723288000001 +2011,1,5861,0.8841418812999999 +2011,1,5862,0.8821723288000001 2011,1,5863,0.8762636728 2011,1,5864,0.8699277005999999 2011,1,5865,0.8599494920999999 @@ -14630,118 +14630,118 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5869,0.8124913319 2011,1,5870,0.8124913319 2011,1,5871,0.8131913319 -2011,1,5872,0.8201913318999998 -2011,1,5873,0.8411913319000001 -2011,1,5874,0.8605072557999999 -2011,1,5875,0.8683854642999999 +2011,1,5872,0.8201913318999999 +2011,1,5873,0.8411913319 +2011,1,5874,0.8605072558 +2011,1,5875,0.8683854643 2011,1,5876,0.8723245680999999 2011,1,5877,0.8762636728 -2011,1,5878,0.8782332246999999 -2011,1,5879,0.8782332246999999 -2011,1,5880,0.8802027765999999 -2011,1,5881,0.8802027765999999 -2011,1,5882,0.8802027765999999 -2011,1,5883,0.8802027765999999 -2011,1,5884,0.8821723288 -2011,1,5885,0.8821723288 -2011,1,5886,0.8802027765999999 +2011,1,5878,0.8782332247 +2011,1,5879,0.8782332247 +2011,1,5880,0.8802027766 +2011,1,5881,0.8802027766 +2011,1,5882,0.8802027766 +2011,1,5883,0.8802027766 +2011,1,5884,0.8821723288000001 +2011,1,5885,0.8821723288000001 +2011,1,5886,0.8802027766 2011,1,5887,0.8762636728 2011,1,5888,0.8699277005999999 2011,1,5889,0.8599494920999999 2011,1,5890,0.8516913318999999 2011,1,5891,0.8320913319 -2011,1,5892,0.8187913318999999 +2011,1,5892,0.8187913319 2011,1,5893,0.8124913319 2011,1,5894,0.8124913319 2011,1,5895,0.8194913318999999 2011,1,5896,0.8264913319 2011,1,5897,0.8404913319 -2011,1,5898,0.8605072557999999 -2011,1,5899,0.8683854642999999 +2011,1,5898,0.8605072558 +2011,1,5899,0.8683854643 2011,1,5900,0.8723245680999999 2011,1,5901,0.8742941203 2011,1,5902,0.8762636728 2011,1,5903,0.8762636728 -2011,1,5904,0.8782332246999999 -2011,1,5905,0.8782332246999999 -2011,1,5906,0.8802027765999999 -2011,1,5907,0.8821723288 -2011,1,5908,0.8841418812999998 -2011,1,5909,0.8841418812999998 -2011,1,5910,0.8821723288 -2011,1,5911,0.8782332246999999 +2011,1,5904,0.8782332247 +2011,1,5905,0.8782332247 +2011,1,5906,0.8802027766 +2011,1,5907,0.8821723288000001 +2011,1,5908,0.8841418812999999 +2011,1,5909,0.8841418812999999 +2011,1,5910,0.8821723288000001 +2011,1,5911,0.8782332247 2011,1,5912,0.8718972524999999 2011,1,5913,0.8619190443 2011,1,5914,0.8546103883 2011,1,5915,0.8383913319 2011,1,5916,0.8250913319 -2011,1,5917,0.8180913318999998 -2011,1,5918,0.8117913319000001 -2011,1,5919,0.8187913318999999 +2011,1,5917,0.8180913318999999 +2011,1,5918,0.8117913319 +2011,1,5919,0.8187913319 2011,1,5920,0.8257913319 2011,1,5921,0.8397913319 -2011,1,5922,0.8593799401999999 +2011,1,5922,0.8593799402 2011,1,5923,0.8664159117999999 -2011,1,5924,0.8703550161999999 +2011,1,5924,0.8703550162 2011,1,5925,0.8742941203 2011,1,5926,0.8762636728 -2011,1,5927,0.8782332246999999 -2011,1,5928,0.8802027765999999 -2011,1,5929,0.8821723288 -2011,1,5930,0.8841418812999998 +2011,1,5927,0.8782332247 +2011,1,5928,0.8802027766 +2011,1,5929,0.8821723288000001 +2011,1,5930,0.8841418812999999 2011,1,5931,0.8861114332 2011,1,5932,0.8861114332 2011,1,5933,0.8861114332 -2011,1,5934,0.8841418812999998 -2011,1,5935,0.8782332246999999 +2011,1,5934,0.8841418812999999 +2011,1,5935,0.8782332247 2011,1,5936,0.8723245680999999 2011,1,5937,0.8644463599 2011,1,5938,0.8585377039 2011,1,5939,0.8430186475 2011,1,5940,0.8299913319 -2011,1,5941,0.8229913318999998 -2011,1,5942,0.8229913318999998 -2011,1,5943,0.8229913318999998 +2011,1,5941,0.8229913319 +2011,1,5942,0.8229913319 +2011,1,5943,0.8229913319 2011,1,5944,0.8299913319 2011,1,5945,0.8430186475 -2011,1,5946,0.8605072557999999 +2011,1,5946,0.8605072558 2011,1,5947,0.8664159117999999 -2011,1,5948,0.8703550161999999 +2011,1,5948,0.8703550162 2011,1,5949,0.8723245680999999 2011,1,5950,0.8723245680999999 2011,1,5951,0.8742941203 2011,1,5952,0.8742941203 2011,1,5953,0.8762636728 -2011,1,5954,0.8782332246999999 -2011,1,5955,0.8782332246999999 -2011,1,5956,0.8802027765999999 -2011,1,5957,0.8802027765999999 -2011,1,5958,0.8782332246999999 +2011,1,5954,0.8782332247 +2011,1,5955,0.8782332247 +2011,1,5956,0.8802027766 +2011,1,5957,0.8802027766 +2011,1,5958,0.8782332247 2011,1,5959,0.8742941203 2011,1,5960,0.8664159117999999 -2011,1,5961,0.8593799401999999 +2011,1,5961,0.8593799402 2011,1,5962,0.8474913319 2011,1,5963,0.8278913319 -2011,1,5964,0.8208913318999999 -2011,1,5965,0.8138913319000001 -2011,1,5966,0.8075913318999999 -2011,1,5967,0.8138913319000001 -2011,1,5968,0.8208913318999999 +2011,1,5964,0.8208913319 +2011,1,5965,0.8138913319 +2011,1,5966,0.8075913319 +2011,1,5967,0.8138913319 +2011,1,5968,0.8208913319 2011,1,5969,0.8341913318999999 2011,1,5970,0.8581103883 2011,1,5971,0.8644463599 -2011,1,5972,0.8683854642999999 -2011,1,5973,0.8683854642999999 -2011,1,5974,0.8703550161999999 -2011,1,5975,0.8703550161999999 +2011,1,5972,0.8683854643 +2011,1,5973,0.8683854643 +2011,1,5974,0.8703550162 +2011,1,5975,0.8703550162 2011,1,5976,0.8723245680999999 2011,1,5977,0.8742941203 2011,1,5978,0.8762636728 2011,1,5979,0.8762636728 -2011,1,5980,0.8782332246999999 -2011,1,5981,0.8782332246999999 +2011,1,5980,0.8782332247 +2011,1,5981,0.8782332247 2011,1,5982,0.8762636728 -2011,1,5983,0.8703550161999999 +2011,1,5983,0.8703550162 2011,1,5984,0.8613494920999999 2011,1,5985,0.8460913319 2011,1,5986,0.8264913319 @@ -14751,59 +14751,59 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,5990,0.7928913318999999 2011,1,5991,0.7998913319 2011,1,5992,0.8068913319 -2011,1,5993,0.8208913318999999 +2011,1,5993,0.8208913319 2011,1,5994,0.8481913319 -2011,1,5995,0.8605072557999999 +2011,1,5995,0.8605072558 2011,1,5996,0.8644463599 2011,1,5997,0.8664159117999999 -2011,1,5998,0.8683854642999999 -2011,1,5999,0.8703550161999999 +2011,1,5998,0.8683854643 +2011,1,5999,0.8703550162 2011,1,6000,0.8723245680999999 2011,1,6001,0.8742941203 2011,1,6002,0.8742941203 2011,1,6003,0.8762636728 -2011,1,6004,0.8782332246999999 -2011,1,6005,0.8782332246999999 +2011,1,6004,0.8782332247 +2011,1,6005,0.8782332247 2011,1,6006,0.8762636728 2011,1,6007,0.8723245680999999 2011,1,6008,0.8645885962 -2011,1,6009,0.8572799401999999 +2011,1,6009,0.8572799402 2011,1,6010,0.8446913319 2011,1,6011,0.8313913318999999 2011,1,6012,0.8243913319 -2011,1,6013,0.8180913318999998 -2011,1,6014,0.8187913318999999 +2011,1,6013,0.8180913318999999 +2011,1,6014,0.8187913319 2011,1,6015,0.8194913318999999 2011,1,6016,0.8264913319 -2011,1,6017,0.8411913319000001 -2011,1,6018,0.8605072557999999 +2011,1,6017,0.8411913319 +2011,1,6018,0.8605072558 2011,1,6019,0.8664159117999999 -2011,1,6020,0.8703550161999999 +2011,1,6020,0.8703550162 2011,1,6021,0.8742941203 2011,1,6022,0.8762636728 -2011,1,6023,0.8782332246999999 -2011,1,6024,0.8802027765999999 -2011,1,6025,0.8802027765999999 -2011,1,6026,0.8821723288 -2011,1,6027,0.8821723288 -2011,1,6028,0.8821723288 -2011,1,6029,0.8821723288 -2011,1,6030,0.8802027765999999 +2011,1,6023,0.8782332247 +2011,1,6024,0.8802027766 +2011,1,6025,0.8802027766 +2011,1,6026,0.8821723288000001 +2011,1,6027,0.8821723288000001 +2011,1,6028,0.8821723288000001 +2011,1,6029,0.8821723288000001 +2011,1,6030,0.8802027766 2011,1,6031,0.8762636728 -2011,1,6032,0.8703550161999999 -2011,1,6033,0.8626190443 +2011,1,6032,0.8703550162 +2011,1,6033,0.8626190442999999 2011,1,6034,0.8553103883 2011,1,6035,0.8453913318999999 2011,1,6036,0.8257913319 2011,1,6037,0.8194913318999999 2011,1,6038,0.8131913319 -2011,1,6039,0.8138913319000001 -2011,1,6040,0.8208913318999999 -2011,1,6041,0.8355913318999999 +2011,1,6039,0.8138913319 +2011,1,6040,0.8208913319 +2011,1,6041,0.8355913319 2011,1,6042,0.8556186474999999 2011,1,6043,0.8644463599 -2011,1,6044,0.8683854642999999 -2011,1,6045,0.8703550161999999 +2011,1,6044,0.8683854643 +2011,1,6045,0.8703550162 2011,1,6046,0.8723245680999999 2011,1,6047,0.8723245680999999 2011,1,6048,0.8742941203 @@ -14814,8 +14814,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6053,0.8762636728 2011,1,6054,0.8762636728 2011,1,6055,0.8742941203 -2011,1,6056,0.8703550161999999 -2011,1,6057,0.8683854642999999 +2011,1,6056,0.8703550162 +2011,1,6057,0.8683854643 2011,1,6058,0.8664159117999999 2011,1,6059,0.8659885961999999 2011,1,6060,0.8633190443 @@ -14824,46 +14824,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6063,0.8613494920999999 2011,1,6064,0.8640190443 2011,1,6065,0.8664159117999999 -2011,1,6066,0.8703550161999999 +2011,1,6066,0.8703550162 2011,1,6067,0.8742941203 2011,1,6068,0.8742941203 2011,1,6069,0.8762636728 -2011,1,6070,0.8782332246999999 -2011,1,6071,0.8782332246999999 -2011,1,6072,0.8802027765999999 -2011,1,6073,0.8802027765999999 -2011,1,6074,0.8821723288 -2011,1,6075,0.8821723288 -2011,1,6076,0.8821723288 -2011,1,6077,0.8821723288 -2011,1,6078,0.8821723288 -2011,1,6079,0.8821723288 -2011,1,6080,0.8782332246999999 +2011,1,6070,0.8782332247 +2011,1,6071,0.8782332247 +2011,1,6072,0.8802027766 +2011,1,6073,0.8802027766 +2011,1,6074,0.8821723288000001 +2011,1,6075,0.8821723288000001 +2011,1,6076,0.8821723288000001 +2011,1,6077,0.8821723288000001 +2011,1,6078,0.8821723288000001 +2011,1,6079,0.8821723288000001 +2011,1,6080,0.8782332247 2011,1,6081,0.8742941203 -2011,1,6082,0.8683854642999999 +2011,1,6082,0.8683854643 2011,1,6083,0.8644463599 2011,1,6084,0.8585377039 2011,1,6085,0.8551913319 2011,1,6086,0.8488913319 2011,1,6087,0.8488913319 2011,1,6088,0.8556186474999999 -2011,1,6089,0.8605072557999999 +2011,1,6089,0.8605072558 2011,1,6090,0.8664159117999999 -2011,1,6091,0.8703550161999999 +2011,1,6091,0.8703550162 2011,1,6092,0.8742941203 -2011,1,6093,0.8782332246999999 -2011,1,6094,0.8802027765999999 -2011,1,6095,0.8802027765999999 -2011,1,6096,0.8821723288 -2011,1,6097,0.8821723288 -2011,1,6098,0.8821723288 -2011,1,6099,0.8841418812999998 -2011,1,6100,0.8841418812999998 +2011,1,6093,0.8782332247 +2011,1,6094,0.8802027766 +2011,1,6095,0.8802027766 +2011,1,6096,0.8821723288000001 +2011,1,6097,0.8821723288000001 +2011,1,6098,0.8821723288000001 +2011,1,6099,0.8841418812999999 +2011,1,6100,0.8841418812999999 2011,1,6101,0.8861114332 -2011,1,6102,0.8841418812999998 -2011,1,6103,0.8802027765999999 +2011,1,6102,0.8841418812999999 +2011,1,6103,0.8802027766 2011,1,6104,0.8762636728 -2011,1,6105,0.8683854642999999 +2011,1,6105,0.8683854643 2011,1,6106,0.8620494920999999 2011,1,6107,0.8544913318999999 2011,1,6108,0.8474913319 @@ -14873,22 +14873,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6112,0.8488913319 2011,1,6113,0.8585377039 2011,1,6114,0.8644463599 -2011,1,6115,0.8703550161999999 +2011,1,6115,0.8703550162 2011,1,6116,0.8723245680999999 2011,1,6117,0.8742941203 2011,1,6118,0.8762636728 -2011,1,6119,0.8782332246999999 -2011,1,6120,0.8782332246999999 -2011,1,6121,0.8802027765999999 -2011,1,6122,0.8821723288 -2011,1,6123,0.8821723288 -2011,1,6124,0.8841418812999998 -2011,1,6125,0.8841418812999998 -2011,1,6126,0.8841418812999998 -2011,1,6127,0.8802027765999999 +2011,1,6119,0.8782332247 +2011,1,6120,0.8782332247 +2011,1,6121,0.8802027766 +2011,1,6122,0.8821723288000001 +2011,1,6123,0.8821723288000001 +2011,1,6124,0.8841418812999999 +2011,1,6125,0.8841418812999999 +2011,1,6126,0.8841418812999999 +2011,1,6127,0.8802027766 2011,1,6128,0.8742941203 2011,1,6129,0.8664159117999999 -2011,1,6130,0.8605072557999999 +2011,1,6130,0.8605072558 2011,1,6131,0.8493186475 2011,1,6132,0.8430186475 2011,1,6133,0.8367186474999999 @@ -14897,19 +14897,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6136,0.8493186475 2011,1,6137,0.8585377039 2011,1,6138,0.8644463599 -2011,1,6139,0.8683854642999999 +2011,1,6139,0.8683854643 2011,1,6140,0.8723245680999999 2011,1,6141,0.8762636728 2011,1,6142,0.8762636728 -2011,1,6143,0.8782332246999999 -2011,1,6144,0.8782332246999999 -2011,1,6145,0.8802027765999999 -2011,1,6146,0.8802027765999999 -2011,1,6147,0.8821723288 -2011,1,6148,0.8821723288 -2011,1,6149,0.8821723288 -2011,1,6150,0.8821723288 -2011,1,6151,0.8782332246999999 +2011,1,6143,0.8782332247 +2011,1,6144,0.8782332247 +2011,1,6145,0.8802027766 +2011,1,6146,0.8802027766 +2011,1,6147,0.8821723288000001 +2011,1,6148,0.8821723288000001 +2011,1,6149,0.8821723288000001 +2011,1,6150,0.8821723288000001 +2011,1,6151,0.8782332247 2011,1,6152,0.8723245680999999 2011,1,6153,0.8664159117999999 2011,1,6154,0.8624768076999999 @@ -14919,37 +14919,37 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6158,0.8430186475 2011,1,6159,0.8493186475 2011,1,6160,0.8556186474999999 -2011,1,6161,0.8605072557999999 +2011,1,6161,0.8605072558 2011,1,6162,0.8664159117999999 -2011,1,6163,0.8703550161999999 +2011,1,6163,0.8703550162 2011,1,6164,0.8742941203 -2011,1,6165,0.8782332246999999 -2011,1,6166,0.8782332246999999 -2011,1,6167,0.8802027765999999 -2011,1,6168,0.8821723288 -2011,1,6169,0.8821723288 -2011,1,6170,0.8841418812999998 -2011,1,6171,0.8841418812999998 +2011,1,6165,0.8782332247 +2011,1,6166,0.8782332247 +2011,1,6167,0.8802027766 +2011,1,6168,0.8821723288000001 +2011,1,6169,0.8821723288000001 +2011,1,6170,0.8841418812999999 +2011,1,6171,0.8841418812999999 2011,1,6172,0.8861114332 2011,1,6173,0.8861114332 2011,1,6174,0.8861114332 -2011,1,6175,0.8821723288 +2011,1,6175,0.8821723288000001 2011,1,6176,0.8762636728 -2011,1,6177,0.8703550161999999 +2011,1,6177,0.8703550162 2011,1,6178,0.8664159117999999 -2011,1,6179,0.8605072557999999 +2011,1,6179,0.8605072558 2011,1,6180,0.8551913319 2011,1,6181,0.8481913319 2011,1,6182,0.8488913319 2011,1,6183,0.8556186474999999 2011,1,6184,0.8585377039 2011,1,6185,0.8624768076999999 -2011,1,6186,0.8683854642999999 +2011,1,6186,0.8683854643 2011,1,6187,0.8762636728 -2011,1,6188,0.8802027765999999 -2011,1,6189,0.8821723288 -2011,1,6190,0.8821723288 -2011,1,6191,0.8841418812999998 +2011,1,6188,0.8802027766 +2011,1,6189,0.8821723288000001 +2011,1,6190,0.8821723288000001 +2011,1,6191,0.8841418812999999 2011,1,6192,0.8861114332 2011,1,6193,0.8861114332 2011,1,6194,0.8861114332 @@ -14957,20 +14957,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6196,0.8880809851 2011,1,6197,0.8900505372999999 2011,1,6198,0.8880809851 -2011,1,6199,0.8841418812999998 -2011,1,6200,0.8802027765999999 +2011,1,6199,0.8841418812999999 +2011,1,6200,0.8802027766 2011,1,6201,0.8742941203 -2011,1,6202,0.8683854642999999 +2011,1,6202,0.8683854643 2011,1,6203,0.8644463599 2011,1,6204,0.8624768076999999 -2011,1,6205,0.8605072557999999 -2011,1,6206,0.8605072557999999 +2011,1,6205,0.8605072558 +2011,1,6206,0.8605072558 2011,1,6207,0.8624768076999999 2011,1,6208,0.8644463599 -2011,1,6209,0.8683854642999999 +2011,1,6209,0.8683854643 2011,1,6210,0.8742941203 -2011,1,6211,0.8802027765999999 -2011,1,6212,0.8821723288 +2011,1,6211,0.8802027766 +2011,1,6212,0.8821723288000001 2011,1,6213,0.8861114332 2011,1,6214,0.8861114332 2011,1,6215,0.8880809851 @@ -14982,31 +14982,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6221,0.8939896417000001 2011,1,6222,0.8939896417000001 2011,1,6223,0.8900505372999999 -2011,1,6224,0.8841418812999998 -2011,1,6225,0.8782332246999999 +2011,1,6224,0.8841418812999999 +2011,1,6225,0.8782332247 2011,1,6226,0.8723245680999999 -2011,1,6227,0.8683854642999999 +2011,1,6227,0.8683854643 2011,1,6228,0.8644463599 2011,1,6229,0.8620494920999999 2011,1,6230,0.8600799401999999 -2011,1,6231,0.8605072557999999 +2011,1,6231,0.8605072558 2011,1,6232,0.8624768076999999 2011,1,6233,0.8664159117999999 2011,1,6234,0.8723245680999999 -2011,1,6235,0.8782332246999999 -2011,1,6236,0.8802027765999999 -2011,1,6237,0.8821723288 -2011,1,6238,0.8821723288 -2011,1,6239,0.8841418812999998 -2011,1,6240,0.8841418812999998 +2011,1,6235,0.8782332247 +2011,1,6236,0.8802027766 +2011,1,6237,0.8821723288000001 +2011,1,6238,0.8821723288000001 +2011,1,6239,0.8841418812999999 +2011,1,6240,0.8841418812999999 2011,1,6241,0.8861114332 2011,1,6242,0.8861114332 2011,1,6243,0.8880809851 2011,1,6244,0.8880809851 2011,1,6245,0.8900505372999999 2011,1,6246,0.8880809851 -2011,1,6247,0.8841418812999998 -2011,1,6248,0.8782332246999999 +2011,1,6247,0.8841418812999999 +2011,1,6248,0.8782332247 2011,1,6249,0.8723245680999999 2011,1,6250,0.8640190443 2011,1,6251,0.8574103882999999 @@ -15019,112 +15019,112 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6258,0.8664159117999999 2011,1,6259,0.8723245680999999 2011,1,6260,0.8762636728 -2011,1,6261,0.8782332246999999 -2011,1,6262,0.8782332246999999 -2011,1,6263,0.8802027765999999 -2011,1,6264,0.8802027765999999 -2011,1,6265,0.8802027765999999 -2011,1,6266,0.8821723288 -2011,1,6267,0.8821723288 -2011,1,6268,0.8841418812999998 -2011,1,6269,0.8841418812999998 -2011,1,6270,0.8841418812999998 -2011,1,6271,0.8782332246999999 -2011,1,6272,0.8703550161999999 +2011,1,6261,0.8782332247 +2011,1,6262,0.8782332247 +2011,1,6263,0.8802027766 +2011,1,6264,0.8802027766 +2011,1,6265,0.8802027766 +2011,1,6266,0.8821723288000001 +2011,1,6267,0.8821723288000001 +2011,1,6268,0.8841418812999999 +2011,1,6269,0.8841418812999999 +2011,1,6270,0.8841418812999999 +2011,1,6271,0.8782332247 +2011,1,6272,0.8703550162 2011,1,6273,0.8640190443 2011,1,6274,0.8574103882999999 -2011,1,6275,0.8411913319000001 +2011,1,6275,0.8411913319 2011,1,6276,0.8278913319 -2011,1,6277,0.8208913318999999 -2011,1,6278,0.8208913318999999 +2011,1,6277,0.8208913319 +2011,1,6278,0.8208913319 2011,1,6279,0.8215913318999999 2011,1,6280,0.8285913319 2011,1,6281,0.8493186475 2011,1,6282,0.8624768076999999 -2011,1,6283,0.8683854642999999 +2011,1,6283,0.8683854643 2011,1,6284,0.8723245680999999 2011,1,6285,0.8742941203 2011,1,6286,0.8762636728 -2011,1,6287,0.8782332246999999 -2011,1,6288,0.8782332246999999 -2011,1,6289,0.8802027765999999 -2011,1,6290,0.8802027765999999 -2011,1,6291,0.8821723288 -2011,1,6292,0.8821723288 -2011,1,6293,0.8821723288 -2011,1,6294,0.8821723288 -2011,1,6295,0.8782332246999999 -2011,1,6296,0.8703550161999999 +2011,1,6287,0.8782332247 +2011,1,6288,0.8782332247 +2011,1,6289,0.8802027766 +2011,1,6290,0.8802027766 +2011,1,6291,0.8821723288000001 +2011,1,6292,0.8821723288000001 +2011,1,6293,0.8821723288000001 +2011,1,6294,0.8821723288000001 +2011,1,6295,0.8782332247 +2011,1,6296,0.8703550162 2011,1,6297,0.8640190443 2011,1,6298,0.8567103883 2011,1,6299,0.8404913319 2011,1,6300,0.8334913318999999 2011,1,6301,0.8264913319 -2011,1,6302,0.8201913318999998 +2011,1,6302,0.8201913318999999 2011,1,6303,0.8271913318999999 2011,1,6304,0.8341913318999999 2011,1,6305,0.8488913319 2011,1,6306,0.8624768076999999 -2011,1,6307,0.8683854642999999 +2011,1,6307,0.8683854643 2011,1,6308,0.8723245680999999 2011,1,6309,0.8742941203 2011,1,6310,0.8762636728 2011,1,6311,0.8762636728 -2011,1,6312,0.8782332246999999 -2011,1,6313,0.8782332246999999 -2011,1,6314,0.8782332246999999 -2011,1,6315,0.8802027765999999 -2011,1,6316,0.8802027765999999 -2011,1,6317,0.8802027765999999 -2011,1,6318,0.8802027765999999 +2011,1,6312,0.8782332247 +2011,1,6313,0.8782332247 +2011,1,6314,0.8782332247 +2011,1,6315,0.8802027766 +2011,1,6316,0.8802027766 +2011,1,6317,0.8802027766 +2011,1,6318,0.8802027766 2011,1,6319,0.8762636728 -2011,1,6320,0.8683854642999999 +2011,1,6320,0.8683854643 2011,1,6321,0.8620494920999999 2011,1,6322,0.8537913319 2011,1,6323,0.8397913319 2011,1,6324,0.8264913319 -2011,1,6325,0.8201913318999998 -2011,1,6326,0.8201913318999998 -2011,1,6327,0.8208913318999999 +2011,1,6325,0.8201913318999999 +2011,1,6326,0.8201913318999999 +2011,1,6327,0.8208913319 2011,1,6328,0.8278913319 2011,1,6329,0.8493186475 2011,1,6330,0.8624768076999999 -2011,1,6331,0.8683854642999999 +2011,1,6331,0.8683854643 2011,1,6332,0.8723245680999999 2011,1,6333,0.8742941203 2011,1,6334,0.8762636728 2011,1,6335,0.8762636728 -2011,1,6336,0.8782332246999999 -2011,1,6337,0.8782332246999999 -2011,1,6338,0.8802027765999999 -2011,1,6339,0.8802027765999999 -2011,1,6340,0.8821723288 -2011,1,6341,0.8821723288 -2011,1,6342,0.8821723288 +2011,1,6336,0.8782332247 +2011,1,6337,0.8782332247 +2011,1,6338,0.8802027766 +2011,1,6339,0.8802027766 +2011,1,6340,0.8821723288000001 +2011,1,6341,0.8821723288000001 +2011,1,6342,0.8821723288000001 2011,1,6343,0.8762636728 -2011,1,6344,0.8703550161999999 -2011,1,6345,0.8626190443 +2011,1,6344,0.8703550162 +2011,1,6345,0.8626190442999999 2011,1,6346,0.8530913319 2011,1,6347,0.8334913318999999 -2011,1,6348,0.8201913318999998 -2011,1,6349,0.8138913319000001 -2011,1,6350,0.8075913318999999 -2011,1,6351,0.8082913318999999 +2011,1,6348,0.8201913318999999 +2011,1,6349,0.8138913319 +2011,1,6350,0.8075913319 +2011,1,6351,0.8082913319 2011,1,6352,0.8152913319 -2011,1,6353,0.8355913318999999 +2011,1,6353,0.8355913319 2011,1,6354,0.8585377039 2011,1,6355,0.8644463599 -2011,1,6356,0.8683854642999999 -2011,1,6357,0.8683854642999999 -2011,1,6358,0.8703550161999999 -2011,1,6359,0.8703550161999999 +2011,1,6356,0.8683854643 +2011,1,6357,0.8683854643 +2011,1,6358,0.8703550162 +2011,1,6359,0.8703550162 2011,1,6360,0.8723245680999999 2011,1,6361,0.8742941203 2011,1,6362,0.8742941203 2011,1,6363,0.8762636728 -2011,1,6364,0.8782332246999999 -2011,1,6365,0.8782332246999999 -2011,1,6366,0.8782332246999999 +2011,1,6364,0.8782332247 +2011,1,6365,0.8782332247 +2011,1,6366,0.8782332247 2011,1,6367,0.8723245680999999 2011,1,6368,0.8664159117999999 2011,1,6369,0.8567103883 @@ -15132,13 +15132,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6371,0.8264913319 2011,1,6372,0.8194913318999999 2011,1,6373,0.8131913319 -2011,1,6374,0.8075913318999999 +2011,1,6374,0.8075913319 2011,1,6375,0.8145913319 2011,1,6376,0.8215913318999999 2011,1,6377,0.8425913319 -2011,1,6378,0.8605072557999999 +2011,1,6378,0.8605072558 2011,1,6379,0.8664159117999999 -2011,1,6380,0.8703550161999999 +2011,1,6380,0.8703550162 2011,1,6381,0.8723245680999999 2011,1,6382,0.8742941203 2011,1,6383,0.8742941203 @@ -15146,26 +15146,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6385,0.8742941203 2011,1,6386,0.8742941203 2011,1,6387,0.8762636728 -2011,1,6388,0.8782332246999999 -2011,1,6389,0.8802027765999999 -2011,1,6390,0.8802027765999999 +2011,1,6388,0.8782332247 +2011,1,6389,0.8802027766 +2011,1,6390,0.8802027766 2011,1,6391,0.8762636728 2011,1,6392,0.8723245680999999 -2011,1,6393,0.8683854642999999 +2011,1,6393,0.8683854643 2011,1,6394,0.8640190443 -2011,1,6395,0.8593799401999999 +2011,1,6395,0.8593799402 2011,1,6396,0.8537913319 2011,1,6397,0.8474913319 2011,1,6398,0.8481913319 2011,1,6399,0.8551913319 -2011,1,6400,0.8605072557999999 +2011,1,6400,0.8605072558 2011,1,6401,0.8644463599 -2011,1,6402,0.8703550161999999 +2011,1,6402,0.8703550162 2011,1,6403,0.8762636728 -2011,1,6404,0.8782332246999999 -2011,1,6405,0.8821723288 -2011,1,6406,0.8821723288 -2011,1,6407,0.8841418812999998 +2011,1,6404,0.8782332247 +2011,1,6405,0.8821723288000001 +2011,1,6406,0.8821723288000001 +2011,1,6407,0.8841418812999999 2011,1,6408,0.8861114332 2011,1,6409,0.8880809851 2011,1,6410,0.8880809851 @@ -15174,19 +15174,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6413,0.8920200892 2011,1,6414,0.8920200892 2011,1,6415,0.8880809851 -2011,1,6416,0.8841418812999998 -2011,1,6417,0.8802027765999999 +2011,1,6416,0.8841418812999999 +2011,1,6417,0.8802027766 2011,1,6418,0.8762636728 2011,1,6419,0.8723245680999999 -2011,1,6420,0.8703550161999999 +2011,1,6420,0.8703550162 2011,1,6421,0.8679581486999999 2011,1,6422,0.8659885961999999 -2011,1,6423,0.8683854642999999 -2011,1,6424,0.8703550161999999 +2011,1,6423,0.8683854643 +2011,1,6424,0.8703550162 2011,1,6425,0.8723245680999999 -2011,1,6426,0.8782332246999999 -2011,1,6427,0.8821723288 -2011,1,6428,0.8841418812999998 +2011,1,6426,0.8782332247 +2011,1,6427,0.8821723288000001 +2011,1,6428,0.8841418812999999 2011,1,6429,0.8861114332 2011,1,6430,0.8861114332 2011,1,6431,0.8880809851 @@ -15198,23 +15198,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6437,0.8920200892 2011,1,6438,0.8920200892 2011,1,6439,0.8880809851 -2011,1,6440,0.8841418812999998 -2011,1,6441,0.8782332246999999 +2011,1,6440,0.8841418812999999 +2011,1,6441,0.8782332247 2011,1,6442,0.8742941203 -2011,1,6443,0.8703550161999999 +2011,1,6443,0.8703550162 2011,1,6444,0.8679581486999999 2011,1,6445,0.8633190443 2011,1,6446,0.8613494920999999 2011,1,6447,0.8613494920999999 2011,1,6448,0.8640190443 -2011,1,6449,0.8683854642999999 +2011,1,6449,0.8683854643 2011,1,6450,0.8742941203 -2011,1,6451,0.8782332246999999 -2011,1,6452,0.8802027765999999 -2011,1,6453,0.8802027765999999 -2011,1,6454,0.8821723288 -2011,1,6455,0.8841418812999998 -2011,1,6456,0.8841418812999998 +2011,1,6451,0.8782332247 +2011,1,6452,0.8802027766 +2011,1,6453,0.8802027766 +2011,1,6454,0.8821723288000001 +2011,1,6455,0.8841418812999999 +2011,1,6456,0.8841418812999999 2011,1,6457,0.8861114332 2011,1,6458,0.8880809851 2011,1,6459,0.8880809851 @@ -15222,7 +15222,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6461,0.8900505372999999 2011,1,6462,0.8900505372999999 2011,1,6463,0.8861114332 -2011,1,6464,0.8802027765999999 +2011,1,6464,0.8802027766 2011,1,6465,0.8723245680999999 2011,1,6466,0.8633190443 2011,1,6467,0.8567103883 @@ -15230,52 +15230,52 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6469,0.8341913318999999 2011,1,6470,0.8278913319 2011,1,6471,0.8285913319 -2011,1,6472,0.8355913318999999 +2011,1,6472,0.8355913319 2011,1,6473,0.8556186474999999 2011,1,6474,0.8644463599 -2011,1,6475,0.8703550161999999 +2011,1,6475,0.8703550162 2011,1,6476,0.8742941203 2011,1,6477,0.8762636728 -2011,1,6478,0.8782332246999999 -2011,1,6479,0.8802027765999999 -2011,1,6480,0.8802027765999999 -2011,1,6481,0.8821723288 -2011,1,6482,0.8821723288 -2011,1,6483,0.8841418812999998 -2011,1,6484,0.8841418812999998 -2011,1,6485,0.8841418812999998 -2011,1,6486,0.8841418812999998 -2011,1,6487,0.8782332246999999 +2011,1,6478,0.8782332247 +2011,1,6479,0.8802027766 +2011,1,6480,0.8802027766 +2011,1,6481,0.8821723288000001 +2011,1,6482,0.8821723288000001 +2011,1,6483,0.8841418812999999 +2011,1,6484,0.8841418812999999 +2011,1,6485,0.8841418812999999 +2011,1,6486,0.8841418812999999 +2011,1,6487,0.8782332247 2011,1,6488,0.8723245680999999 2011,1,6489,0.8659885961999999 2011,1,6490,0.8560103883 2011,1,6491,0.8397913319 2011,1,6492,0.8264913319 -2011,1,6493,0.8201913318999998 -2011,1,6494,0.8201913318999998 -2011,1,6495,0.8208913318999999 +2011,1,6493,0.8201913318999999 +2011,1,6494,0.8201913318999999 +2011,1,6495,0.8208913319 2011,1,6496,0.8285913319 2011,1,6497,0.8493186475 2011,1,6498,0.8624768076999999 -2011,1,6499,0.8683854642999999 -2011,1,6500,0.8703550161999999 +2011,1,6499,0.8683854643 +2011,1,6500,0.8703550162 2011,1,6501,0.8723245680999999 2011,1,6502,0.8742941203 2011,1,6503,0.8762636728 -2011,1,6504,0.8782332246999999 -2011,1,6505,0.8782332246999999 -2011,1,6506,0.8802027765999999 -2011,1,6507,0.8802027765999999 -2011,1,6508,0.8821723288 -2011,1,6509,0.8821723288 -2011,1,6510,0.8821723288 -2011,1,6511,0.8782332246999999 +2011,1,6504,0.8782332247 +2011,1,6505,0.8782332247 +2011,1,6506,0.8802027766 +2011,1,6507,0.8802027766 +2011,1,6508,0.8821723288000001 +2011,1,6509,0.8821723288000001 +2011,1,6510,0.8821723288000001 +2011,1,6511,0.8782332247 2011,1,6512,0.8723245680999999 2011,1,6513,0.8640190443 2011,1,6514,0.8567103883 2011,1,6515,0.8404913319 2011,1,6516,0.8271913318999999 -2011,1,6517,0.8201913318999998 +2011,1,6517,0.8201913318999999 2011,1,6518,0.8145913319 2011,1,6519,0.8215913318999999 2011,1,6520,0.8348913319 @@ -15283,18 +15283,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6522,0.8664159117999999 2011,1,6523,0.8723245680999999 2011,1,6524,0.8762636728 -2011,1,6525,0.8802027765999999 -2011,1,6526,0.8802027765999999 -2011,1,6527,0.8821723288 -2011,1,6528,0.8821723288 -2011,1,6529,0.8841418812999998 -2011,1,6530,0.8841418812999998 +2011,1,6525,0.8802027766 +2011,1,6526,0.8802027766 +2011,1,6527,0.8821723288000001 +2011,1,6528,0.8821723288000001 +2011,1,6529,0.8841418812999999 +2011,1,6530,0.8841418812999999 2011,1,6531,0.8861114332 2011,1,6532,0.8861114332 2011,1,6533,0.8861114332 2011,1,6534,0.8861114332 -2011,1,6535,0.8841418812999998 -2011,1,6536,0.8782332246999999 +2011,1,6535,0.8841418812999999 +2011,1,6536,0.8782332247 2011,1,6537,0.8723245680999999 2011,1,6538,0.8659885961999999 2011,1,6539,0.8586799401999999 @@ -15304,23 +15304,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6543,0.8418913319 2011,1,6544,0.8488913319 2011,1,6545,0.8624768076999999 -2011,1,6546,0.8703550161999999 +2011,1,6546,0.8703550162 2011,1,6547,0.8742941203 -2011,1,6548,0.8782332246999999 -2011,1,6549,0.8802027765999999 -2011,1,6550,0.8821723288 -2011,1,6551,0.8821723288 -2011,1,6552,0.8841418812999998 -2011,1,6553,0.8841418812999998 +2011,1,6548,0.8782332247 +2011,1,6549,0.8802027766 +2011,1,6550,0.8821723288000001 +2011,1,6551,0.8821723288000001 +2011,1,6552,0.8841418812999999 +2011,1,6553,0.8841418812999999 2011,1,6554,0.8861114332 2011,1,6555,0.8861114332 2011,1,6556,0.8880809851 2011,1,6557,0.8880809851 2011,1,6558,0.8880809851 2011,1,6559,0.8861114332 -2011,1,6560,0.8802027765999999 +2011,1,6560,0.8802027766 2011,1,6561,0.8742941203 -2011,1,6562,0.8672581486999998 +2011,1,6562,0.8672581487 2011,1,6563,0.8606494921 2011,1,6564,0.8560103883 2011,1,6565,0.8523913318999999 @@ -15328,21 +15328,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6567,0.8537913319 2011,1,6568,0.8574103882999999 2011,1,6569,0.8624768076999999 -2011,1,6570,0.8703550161999999 +2011,1,6570,0.8703550162 2011,1,6571,0.8742941203 2011,1,6572,0.8762636728 -2011,1,6573,0.8802027765999999 -2011,1,6574,0.8802027765999999 -2011,1,6575,0.8821723288 -2011,1,6576,0.8821723288 -2011,1,6577,0.8841418812999998 -2011,1,6578,0.8841418812999998 +2011,1,6573,0.8802027766 +2011,1,6574,0.8802027766 +2011,1,6575,0.8821723288000001 +2011,1,6576,0.8821723288000001 +2011,1,6577,0.8841418812999999 +2011,1,6578,0.8841418812999999 2011,1,6579,0.8861114332 2011,1,6580,0.8880809851 2011,1,6581,0.8880809851 2011,1,6582,0.8880809851 2011,1,6583,0.8861114332 -2011,1,6584,0.8821723288 +2011,1,6584,0.8821723288000001 2011,1,6585,0.8762636728 2011,1,6586,0.8699277005999999 2011,1,6587,0.8652885961999999 @@ -15350,12 +15350,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6589,0.8586799401999999 2011,1,6590,0.8574103882999999 2011,1,6591,0.8581103883 -2011,1,6592,0.8605072557999999 +2011,1,6592,0.8605072558 2011,1,6593,0.8664159117999999 2011,1,6594,0.8723245680999999 2011,1,6595,0.8762636728 -2011,1,6596,0.8802027765999999 -2011,1,6597,0.8841418812999998 +2011,1,6596,0.8802027766 +2011,1,6597,0.8841418812999999 2011,1,6598,0.8861114332 2011,1,6599,0.8880809851 2011,1,6600,0.8900505372999999 @@ -15367,16 +15367,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6606,0.8959591936 2011,1,6607,0.8920200892 2011,1,6608,0.8861114332 -2011,1,6609,0.8802027765999999 +2011,1,6609,0.8802027766 2011,1,6610,0.8742941203 -2011,1,6611,0.8683854642999999 +2011,1,6611,0.8683854643 2011,1,6612,0.8644463599 2011,1,6613,0.8624768076999999 2011,1,6614,0.8644463599 2011,1,6615,0.8664159117999999 2011,1,6616,0.8723245680999999 -2011,1,6617,0.8782332246999999 -2011,1,6618,0.8841418812999998 +2011,1,6617,0.8782332247 +2011,1,6618,0.8841418812999999 2011,1,6619,0.8880809851 2011,1,6620,0.8880809851 2011,1,6621,0.8900505372999999 @@ -15392,14 +15392,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6631,0.8939896417000001 2011,1,6632,0.8900505372999999 2011,1,6633,0.8861114332 -2011,1,6634,0.8841418812999998 -2011,1,6635,0.8821723288 -2011,1,6636,0.8802027765999999 -2011,1,6637,0.8802027765999999 -2011,1,6638,0.8802027765999999 -2011,1,6639,0.8782332246999999 -2011,1,6640,0.8802027765999999 -2011,1,6641,0.8841418812999998 +2011,1,6634,0.8841418812999999 +2011,1,6635,0.8821723288000001 +2011,1,6636,0.8802027766 +2011,1,6637,0.8802027766 +2011,1,6638,0.8802027766 +2011,1,6639,0.8782332247 +2011,1,6640,0.8802027766 +2011,1,6641,0.8841418812999999 2011,1,6642,0.8861114332 2011,1,6643,0.8900505372999999 2011,1,6644,0.8920200892 @@ -15418,16 +15418,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6657,0.8861114332 2011,1,6658,0.8861114332 2011,1,6659,0.8861114332 -2011,1,6660,0.8841418812999998 -2011,1,6661,0.8841418812999998 -2011,1,6662,0.8841418812999998 +2011,1,6660,0.8841418812999999 +2011,1,6661,0.8841418812999999 +2011,1,6662,0.8841418812999999 2011,1,6663,0.8861114332 2011,1,6664,0.8880809851 2011,1,6665,0.8900505372999999 2011,1,6666,0.8939896417000001 2011,1,6667,0.8959591936 -2011,1,6668,0.8979287454999999 -2011,1,6669,0.8979287454999999 +2011,1,6668,0.8979287455 +2011,1,6669,0.8979287455 2011,1,6670,0.8990000001999999 2011,1,6671,0.8990000001999999 2011,1,6672,0.8990000001999999 @@ -15443,15 +15443,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6682,0.8900505372999999 2011,1,6683,0.8880809851 2011,1,6684,0.8861114332 -2011,1,6685,0.8841418812999998 +2011,1,6685,0.8841418812999999 2011,1,6686,0.8861114332 2011,1,6687,0.8861114332 2011,1,6688,0.8880809851 2011,1,6689,0.8900505372999999 2011,1,6690,0.8939896417000001 2011,1,6691,0.8959591936 -2011,1,6692,0.8979287454999999 -2011,1,6693,0.8979287454999999 +2011,1,6692,0.8979287455 +2011,1,6693,0.8979287455 2011,1,6694,0.8990000001999999 2011,1,6695,0.8990000001999999 2011,1,6696,0.8990000001999999 @@ -15465,12 +15465,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6704,0.8959591936 2011,1,6705,0.8920200892 2011,1,6706,0.8880809851 -2011,1,6707,0.8841418812999998 -2011,1,6708,0.8821723288 -2011,1,6709,0.8802027765999999 -2011,1,6710,0.8782332246999999 -2011,1,6711,0.8802027765999999 -2011,1,6712,0.8821723288 +2011,1,6707,0.8841418812999999 +2011,1,6708,0.8821723288000001 +2011,1,6709,0.8802027766 +2011,1,6710,0.8782332247 +2011,1,6711,0.8802027766 +2011,1,6712,0.8821723288000001 2011,1,6713,0.8861114332 2011,1,6714,0.8900505372999999 2011,1,6715,0.8939896417000001 @@ -15479,7 +15479,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6718,0.8959591936 2011,1,6719,0.8959591936 2011,1,6720,0.8959591936 -2011,1,6721,0.8979287454999999 +2011,1,6721,0.8979287455 2011,1,6722,0.8990000001999999 2011,1,6723,0.8990000001999999 2011,1,6724,0.8990000001999999 @@ -15488,14 +15488,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6727,0.8990000001999999 2011,1,6728,0.8939896417000001 2011,1,6729,0.8861114332 -2011,1,6730,0.8802027765999999 +2011,1,6730,0.8802027766 2011,1,6731,0.8742941203 2011,1,6732,0.8723245680999999 -2011,1,6733,0.8703550161999999 -2011,1,6734,0.8683854642999999 -2011,1,6735,0.8703550161999999 +2011,1,6733,0.8703550162 +2011,1,6734,0.8683854643 +2011,1,6735,0.8703550162 2011,1,6736,0.8723245680999999 -2011,1,6737,0.8782332246999999 +2011,1,6737,0.8782332247 2011,1,6738,0.8861114332 2011,1,6739,0.8880809851 2011,1,6740,0.8880809851 @@ -15511,16 +15511,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6750,0.8959591936 2011,1,6751,0.8939896417000001 2011,1,6752,0.8880809851 -2011,1,6753,0.8802027765999999 +2011,1,6753,0.8802027766 2011,1,6754,0.8742941203 -2011,1,6755,0.8703550161999999 -2011,1,6756,0.8683854642999999 +2011,1,6755,0.8703550162 +2011,1,6756,0.8683854643 2011,1,6757,0.8664159117999999 2011,1,6758,0.8644463599 2011,1,6759,0.8664159117999999 -2011,1,6760,0.8683854642999999 +2011,1,6760,0.8683854643 2011,1,6761,0.8762636728 -2011,1,6762,0.8841418812999998 +2011,1,6762,0.8841418812999999 2011,1,6763,0.8880809851 2011,1,6764,0.8880809851 2011,1,6765,0.8880809851 @@ -15535,17 +15535,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6774,0.8959591936 2011,1,6775,0.8939896417000001 2011,1,6776,0.8880809851 -2011,1,6777,0.8841418812999998 -2011,1,6778,0.8782332246999999 +2011,1,6777,0.8841418812999999 +2011,1,6778,0.8782332247 2011,1,6779,0.8742941203 2011,1,6780,0.8723245680999999 2011,1,6781,0.8742941203 2011,1,6782,0.8742941203 2011,1,6783,0.8742941203 2011,1,6784,0.8762636728 -2011,1,6785,0.8802027765999999 -2011,1,6786,0.8841418812999998 -2011,1,6787,0.8841418812999998 +2011,1,6785,0.8802027766 +2011,1,6786,0.8841418812999999 +2011,1,6787,0.8841418812999999 2011,1,6788,0.8861114332 2011,1,6789,0.8861114332 2011,1,6790,0.8880809851 @@ -15558,18 +15558,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6797,0.8920200892 2011,1,6798,0.8920200892 2011,1,6799,0.8900505372999999 -2011,1,6800,0.8841418812999998 -2011,1,6801,0.8802027765999999 +2011,1,6800,0.8841418812999999 +2011,1,6801,0.8802027766 2011,1,6802,0.8762636728 2011,1,6803,0.8723245680999999 -2011,1,6804,0.8703550161999999 +2011,1,6804,0.8703550162 2011,1,6805,0.8679581486999999 2011,1,6806,0.8652885961999999 2011,1,6807,0.8659885961999999 -2011,1,6808,0.8683854642999999 +2011,1,6808,0.8683854643 2011,1,6809,0.8742941203 -2011,1,6810,0.8802027765999999 -2011,1,6811,0.8841418812999998 +2011,1,6810,0.8802027766 +2011,1,6811,0.8841418812999999 2011,1,6812,0.8861114332 2011,1,6813,0.8880809851 2011,1,6814,0.8880809851 @@ -15583,22 +15583,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6822,0.8939896417000001 2011,1,6823,0.8920200892 2011,1,6824,0.8861114332 -2011,1,6825,0.8802027765999999 +2011,1,6825,0.8802027766 2011,1,6826,0.8738668047 -2011,1,6827,0.8672581486999998 -2011,1,6828,0.8626190443 +2011,1,6827,0.8672581487 +2011,1,6828,0.8626190442999999 2011,1,6829,0.8599494920999999 2011,1,6830,0.8579799401999999 2011,1,6831,0.8586799401999999 2011,1,6832,0.8640190443 2011,1,6833,0.8723245680999999 -2011,1,6834,0.8782332246999999 -2011,1,6835,0.8821723288 -2011,1,6836,0.8841418812999998 -2011,1,6837,0.8841418812999998 -2011,1,6838,0.8841418812999998 -2011,1,6839,0.8841418812999998 -2011,1,6840,0.8841418812999998 +2011,1,6834,0.8782332247 +2011,1,6835,0.8821723288000001 +2011,1,6836,0.8841418812999999 +2011,1,6837,0.8841418812999999 +2011,1,6838,0.8841418812999999 +2011,1,6839,0.8841418812999999 +2011,1,6840,0.8841418812999999 2011,1,6841,0.8861114332 2011,1,6842,0.8861114332 2011,1,6843,0.8861114332 @@ -15606,7 +15606,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6845,0.8880809851 2011,1,6846,0.8880809851 2011,1,6847,0.8861114332 -2011,1,6848,0.8802027765999999 +2011,1,6848,0.8802027766 2011,1,6849,0.8723245680999999 2011,1,6850,0.8652885961999999 2011,1,6851,0.8586799401999999 @@ -15619,19 +15619,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6858,0.8723245680999999 2011,1,6859,0.8742941203 2011,1,6860,0.8762636728 -2011,1,6861,0.8782332246999999 -2011,1,6862,0.8802027765999999 -2011,1,6863,0.8821723288 -2011,1,6864,0.8821723288 -2011,1,6865,0.8821723288 -2011,1,6866,0.8821723288 -2011,1,6867,0.8821723288 -2011,1,6868,0.8821723288 -2011,1,6869,0.8821723288 -2011,1,6870,0.8821723288 -2011,1,6871,0.8802027765999999 +2011,1,6861,0.8782332247 +2011,1,6862,0.8802027766 +2011,1,6863,0.8821723288000001 +2011,1,6864,0.8821723288000001 +2011,1,6865,0.8821723288000001 +2011,1,6866,0.8821723288000001 +2011,1,6867,0.8821723288000001 +2011,1,6868,0.8821723288000001 +2011,1,6869,0.8821723288000001 +2011,1,6870,0.8821723288000001 +2011,1,6871,0.8802027766 2011,1,6872,0.8742941203 -2011,1,6873,0.8683854642999999 +2011,1,6873,0.8683854643 2011,1,6874,0.8613494920999999 2011,1,6875,0.8537913319 2011,1,6876,0.8467913319 @@ -15640,37 +15640,37 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6879,0.8474913319 2011,1,6880,0.8600799401999999 2011,1,6881,0.8664159117999999 -2011,1,6882,0.8703550161999999 +2011,1,6882,0.8703550162 2011,1,6883,0.8742941203 2011,1,6884,0.8762636728 -2011,1,6885,0.8782332246999999 -2011,1,6886,0.8802027765999999 -2011,1,6887,0.8821723288 -2011,1,6888,0.8821723288 -2011,1,6889,0.8841418812999998 -2011,1,6890,0.8841418812999998 +2011,1,6885,0.8782332247 +2011,1,6886,0.8802027766 +2011,1,6887,0.8821723288000001 +2011,1,6888,0.8821723288000001 +2011,1,6889,0.8841418812999999 +2011,1,6890,0.8841418812999999 2011,1,6891,0.8861114332 2011,1,6892,0.8861114332 2011,1,6893,0.8861114332 2011,1,6894,0.8861114332 -2011,1,6895,0.8841418812999998 -2011,1,6896,0.8802027765999999 +2011,1,6895,0.8841418812999999 +2011,1,6896,0.8802027766 2011,1,6897,0.8742941203 -2011,1,6898,0.8703550161999999 +2011,1,6898,0.8703550162 2011,1,6899,0.8679581486999999 2011,1,6900,0.8652885961999999 -2011,1,6901,0.8626190443 +2011,1,6901,0.8626190442999999 2011,1,6902,0.8606494921 2011,1,6903,0.8613494920999999 2011,1,6904,0.8644463599 -2011,1,6905,0.8703550161999999 +2011,1,6905,0.8703550162 2011,1,6906,0.8762636728 -2011,1,6907,0.8802027765999999 -2011,1,6908,0.8802027765999999 -2011,1,6909,0.8821723288 -2011,1,6910,0.8821723288 -2011,1,6911,0.8841418812999998 -2011,1,6912,0.8841418812999998 +2011,1,6907,0.8802027766 +2011,1,6908,0.8802027766 +2011,1,6909,0.8821723288000001 +2011,1,6910,0.8821723288000001 +2011,1,6911,0.8841418812999999 +2011,1,6912,0.8841418812999999 2011,1,6913,0.8861114332 2011,1,6914,0.8861114332 2011,1,6915,0.8880809851 @@ -15678,21 +15678,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6917,0.8900505372999999 2011,1,6918,0.8900505372999999 2011,1,6919,0.8880809851 -2011,1,6920,0.8841418812999998 -2011,1,6921,0.8782332246999999 +2011,1,6920,0.8841418812999999 +2011,1,6921,0.8782332247 2011,1,6922,0.8723245680999999 2011,1,6923,0.8679581486999999 2011,1,6924,0.8633190443 2011,1,6925,0.8606494921 -2011,1,6926,0.8593799401999999 +2011,1,6926,0.8593799402 2011,1,6927,0.8620494920999999 2011,1,6928,0.8644463599 -2011,1,6929,0.8703550161999999 +2011,1,6929,0.8703550162 2011,1,6930,0.8762636728 -2011,1,6931,0.8802027765999999 -2011,1,6932,0.8821723288 -2011,1,6933,0.8841418812999998 -2011,1,6934,0.8841418812999998 +2011,1,6931,0.8802027766 +2011,1,6932,0.8821723288000001 +2011,1,6933,0.8841418812999999 +2011,1,6934,0.8841418812999999 2011,1,6935,0.8861114332 2011,1,6936,0.8861114332 2011,1,6937,0.8880809851 @@ -15702,8 +15702,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6941,0.8900505372999999 2011,1,6942,0.8900505372999999 2011,1,6943,0.8880809851 -2011,1,6944,0.8841418812999998 -2011,1,6945,0.8782332246999999 +2011,1,6944,0.8841418812999999 +2011,1,6945,0.8782332247 2011,1,6946,0.8723245680999999 2011,1,6947,0.8659885961999999 2011,1,6948,0.8633190443 @@ -15713,11 +15713,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6952,0.8664159117999999 2011,1,6953,0.8723245680999999 2011,1,6954,0.8762636728 -2011,1,6955,0.8802027765999999 -2011,1,6956,0.8802027765999999 -2011,1,6957,0.8821723288 -2011,1,6958,0.8841418812999998 -2011,1,6959,0.8841418812999998 +2011,1,6955,0.8802027766 +2011,1,6956,0.8802027766 +2011,1,6957,0.8821723288000001 +2011,1,6958,0.8841418812999999 +2011,1,6959,0.8841418812999999 2011,1,6960,0.8861114332 2011,1,6961,0.8861114332 2011,1,6962,0.8861114332 @@ -15726,7 +15726,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6965,0.8880809851 2011,1,6966,0.8880809851 2011,1,6967,0.8861114332 -2011,1,6968,0.8802027765999999 +2011,1,6968,0.8802027766 2011,1,6969,0.8723245680999999 2011,1,6970,0.8644463599 2011,1,6971,0.8585377039 @@ -15734,11 +15734,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6973,0.8481913319 2011,1,6974,0.8481913319 2011,1,6975,0.8551913319 -2011,1,6976,0.8605072557999999 -2011,1,6977,0.8683854642999999 +2011,1,6976,0.8605072558 +2011,1,6977,0.8683854643 2011,1,6978,0.8762636728 -2011,1,6979,0.8802027765999999 -2011,1,6980,0.8841418812999998 +2011,1,6979,0.8802027766 +2011,1,6980,0.8841418812999999 2011,1,6981,0.8861114332 2011,1,6982,0.8880809851 2011,1,6983,0.8900505372999999 @@ -15751,16 +15751,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,6990,0.8939896417000001 2011,1,6991,0.8920200892 2011,1,6992,0.8880809851 -2011,1,6993,0.8841418812999998 -2011,1,6994,0.8782332246999999 +2011,1,6993,0.8841418812999999 +2011,1,6994,0.8782332247 2011,1,6995,0.8742941203 2011,1,6996,0.8723245680999999 2011,1,6997,0.8699277005999999 2011,1,6998,0.8679581486999999 -2011,1,6999,0.8683854642999999 -2011,1,7000,0.8703550161999999 +2011,1,6999,0.8683854643 +2011,1,7000,0.8703550162 2011,1,7001,0.8762636728 -2011,1,7002,0.8821723288 +2011,1,7002,0.8821723288000001 2011,1,7003,0.8861114332 2011,1,7004,0.8861114332 2011,1,7005,0.8880809851 @@ -15775,17 +15775,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7014,0.8959591936 2011,1,7015,0.8939896417000001 2011,1,7016,0.8880809851 -2011,1,7017,0.8841418812999998 -2011,1,7018,0.8802027765999999 +2011,1,7017,0.8841418812999999 +2011,1,7018,0.8802027766 2011,1,7019,0.8742941203 -2011,1,7020,0.8703550161999999 +2011,1,7020,0.8703550162 2011,1,7021,0.8679581486999999 2011,1,7022,0.8664159117999999 2011,1,7023,0.8664159117999999 -2011,1,7024,0.8683854642999999 +2011,1,7024,0.8683854643 2011,1,7025,0.8762636728 -2011,1,7026,0.8821723288 -2011,1,7027,0.8841418812999998 +2011,1,7026,0.8821723288000001 +2011,1,7027,0.8841418812999999 2011,1,7028,0.8861114332 2011,1,7029,0.8861114332 2011,1,7030,0.8880809851 @@ -15795,20 +15795,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7034,0.8939896417000001 2011,1,7035,0.8959591936 2011,1,7036,0.8959591936 -2011,1,7037,0.8979287454999999 -2011,1,7038,0.8979287454999999 +2011,1,7037,0.8979287455 +2011,1,7038,0.8979287455 2011,1,7039,0.8959591936 2011,1,7040,0.8900505372999999 2011,1,7041,0.8861114332 -2011,1,7042,0.8802027765999999 +2011,1,7042,0.8802027766 2011,1,7043,0.8762636728 2011,1,7044,0.8723245680999999 -2011,1,7045,0.8703550161999999 -2011,1,7046,0.8683854642999999 -2011,1,7047,0.8683854642999999 -2011,1,7048,0.8703550161999999 -2011,1,7049,0.8782332246999999 -2011,1,7050,0.8841418812999998 +2011,1,7045,0.8703550162 +2011,1,7046,0.8683854643 +2011,1,7047,0.8683854643 +2011,1,7048,0.8703550162 +2011,1,7049,0.8782332247 +2011,1,7050,0.8841418812999999 2011,1,7051,0.8861114332 2011,1,7052,0.8880809851 2011,1,7053,0.8900505372999999 @@ -15822,9 +15822,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7061,0.8959591936 2011,1,7062,0.8959591936 2011,1,7063,0.8920200892 -2011,1,7064,0.8841418812999998 +2011,1,7064,0.8841418812999999 2011,1,7065,0.8762636728 -2011,1,7066,0.8683854642999999 +2011,1,7066,0.8683854643 2011,1,7067,0.8624768076999999 2011,1,7068,0.8581103883 2011,1,7069,0.8544913318999999 @@ -15832,10 +15832,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7071,0.8585377039 2011,1,7072,0.8624768076999999 2011,1,7073,0.8723245680999999 -2011,1,7074,0.8782332246999999 -2011,1,7075,0.8802027765999999 -2011,1,7076,0.8821723288 -2011,1,7077,0.8841418812999998 +2011,1,7074,0.8782332247 +2011,1,7075,0.8802027766 +2011,1,7076,0.8821723288000001 +2011,1,7077,0.8841418812999999 2011,1,7078,0.8861114332 2011,1,7079,0.8861114332 2011,1,7080,0.8880809851 @@ -15845,8 +15845,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7084,0.8880809851 2011,1,7085,0.8861114332 2011,1,7086,0.8861114332 -2011,1,7087,0.8841418812999998 -2011,1,7088,0.8782332246999999 +2011,1,7087,0.8841418812999999 +2011,1,7088,0.8782332247 2011,1,7089,0.8723245680999999 2011,1,7090,0.8644463599 2011,1,7091,0.8585377039 @@ -15854,14 +15854,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7093,0.8481913319 2011,1,7094,0.8481913319 2011,1,7095,0.8551913319 -2011,1,7096,0.8605072557999999 -2011,1,7097,0.8683854642999999 +2011,1,7096,0.8605072558 +2011,1,7097,0.8683854643 2011,1,7098,0.8742941203 -2011,1,7099,0.8782332246999999 -2011,1,7100,0.8802027765999999 -2011,1,7101,0.8821723288 -2011,1,7102,0.8841418812999998 -2011,1,7103,0.8841418812999998 +2011,1,7099,0.8782332247 +2011,1,7100,0.8802027766 +2011,1,7101,0.8821723288000001 +2011,1,7102,0.8841418812999999 +2011,1,7103,0.8841418812999999 2011,1,7104,0.8861114332 2011,1,7105,0.8861114332 2011,1,7106,0.8861114332 @@ -15870,17 +15870,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7109,0.8880809851 2011,1,7110,0.8880809851 2011,1,7111,0.8880809851 -2011,1,7112,0.8841418812999998 -2011,1,7113,0.8782332246999999 +2011,1,7112,0.8841418812999999 +2011,1,7113,0.8782332247 2011,1,7114,0.8742941203 -2011,1,7115,0.8683854642999999 +2011,1,7115,0.8683854643 2011,1,7116,0.8664159117999999 2011,1,7117,0.8644463599 2011,1,7118,0.8644463599 2011,1,7119,0.8664159117999999 -2011,1,7120,0.8683854642999999 +2011,1,7120,0.8683854643 2011,1,7121,0.8762636728 -2011,1,7122,0.8821723288 +2011,1,7122,0.8821723288000001 2011,1,7123,0.8861114332 2011,1,7124,0.8880809851 2011,1,7125,0.8900505372999999 @@ -15895,22 +15895,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7134,0.8939896417000001 2011,1,7135,0.8920200892 2011,1,7136,0.8880809851 -2011,1,7137,0.8841418812999998 -2011,1,7138,0.8802027765999999 +2011,1,7137,0.8841418812999999 +2011,1,7138,0.8802027766 2011,1,7139,0.8762636728 2011,1,7140,0.8742941203 2011,1,7141,0.8723245680999999 2011,1,7142,0.8723245680999999 2011,1,7143,0.8742941203 2011,1,7144,0.8762636728 -2011,1,7145,0.8821723288 +2011,1,7145,0.8821723288000001 2011,1,7146,0.8880809851 2011,1,7147,0.8920200892 2011,1,7148,0.8939896417000001 2011,1,7149,0.8959591936 -2011,1,7150,0.8979287454999999 -2011,1,7151,0.8979287454999999 -2011,1,7152,0.8979287454999999 +2011,1,7150,0.8979287455 +2011,1,7151,0.8979287455 +2011,1,7152,0.8979287455 2011,1,7153,0.8990000001999999 2011,1,7154,0.8990000001999999 2011,1,7155,0.8990000001999999 @@ -15920,20 +15920,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7159,0.8990000001999999 2011,1,7160,0.8939896417000001 2011,1,7161,0.8880809851 -2011,1,7162,0.8841418812999998 -2011,1,7163,0.8821723288 -2011,1,7164,0.8782332246999999 +2011,1,7162,0.8841418812999999 +2011,1,7163,0.8821723288000001 +2011,1,7164,0.8782332247 2011,1,7165,0.8762636728 2011,1,7166,0.8762636728 2011,1,7167,0.8762636728 -2011,1,7168,0.8782332246999999 -2011,1,7169,0.8841418812999998 +2011,1,7168,0.8782332247 +2011,1,7169,0.8841418812999999 2011,1,7170,0.8900505372999999 2011,1,7171,0.8920200892 2011,1,7172,0.8939896417000001 2011,1,7173,0.8959591936 -2011,1,7174,0.8979287454999999 -2011,1,7175,0.8979287454999999 +2011,1,7174,0.8979287455 +2011,1,7175,0.8979287455 2011,1,7176,0.8990000001999999 2011,1,7177,0.8990000001999999 2011,1,7178,0.8990000001999999 @@ -15943,15 +15943,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7182,0.8990000001999999 2011,1,7183,0.8990000001999999 2011,1,7184,0.8920200892 -2011,1,7185,0.8841418812999998 -2011,1,7186,0.8782332246999999 +2011,1,7185,0.8841418812999999 +2011,1,7186,0.8782332247 2011,1,7187,0.8723245680999999 -2011,1,7188,0.8703550161999999 -2011,1,7189,0.8703550161999999 -2011,1,7190,0.8683854642999999 -2011,1,7191,0.8703550161999999 +2011,1,7188,0.8703550162 +2011,1,7189,0.8703550162 +2011,1,7190,0.8683854643 +2011,1,7191,0.8703550162 2011,1,7192,0.8742941203 -2011,1,7193,0.8821723288 +2011,1,7193,0.8821723288000001 2011,1,7194,0.8880809851 2011,1,7195,0.8900505372999999 2011,1,7196,0.8900505372999999 @@ -15967,15 +15967,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7206,0.8959591936 2011,1,7207,0.8959591936 2011,1,7208,0.8900505372999999 -2011,1,7209,0.8821723288 +2011,1,7209,0.8821723288000001 2011,1,7210,0.8762636728 -2011,1,7211,0.8703550161999999 -2011,1,7212,0.8683854642999999 +2011,1,7211,0.8703550162 +2011,1,7212,0.8683854643 2011,1,7213,0.8664159117999999 2011,1,7214,0.8664159117999999 -2011,1,7215,0.8683854642999999 +2011,1,7215,0.8683854643 2011,1,7216,0.8723245680999999 -2011,1,7217,0.8821723288 +2011,1,7217,0.8821723288000001 2011,1,7218,0.8880809851 2011,1,7219,0.8900505372999999 2011,1,7220,0.8900505372999999 @@ -15985,21 +15985,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7224,0.8939896417000001 2011,1,7225,0.8939896417000001 2011,1,7226,0.8959591936 -2011,1,7227,0.8979287454999999 -2011,1,7228,0.8979287454999999 +2011,1,7227,0.8979287455 +2011,1,7228,0.8979287455 2011,1,7229,0.8990000001999999 2011,1,7230,0.8990000001999999 -2011,1,7231,0.8979287454999999 +2011,1,7231,0.8979287455 2011,1,7232,0.8920200892 2011,1,7233,0.8861114332 -2011,1,7234,0.8802027765999999 +2011,1,7234,0.8802027766 2011,1,7235,0.8742941203 -2011,1,7236,0.8703550161999999 -2011,1,7237,0.8683854642999999 -2011,1,7238,0.8683854642999999 -2011,1,7239,0.8683854642999999 +2011,1,7236,0.8703550162 +2011,1,7237,0.8683854643 +2011,1,7238,0.8683854643 +2011,1,7239,0.8683854643 2011,1,7240,0.8723245680999999 -2011,1,7241,0.8821723288 +2011,1,7241,0.8821723288000001 2011,1,7242,0.8880809851 2011,1,7243,0.8900505372999999 2011,1,7244,0.8900505372999999 @@ -16015,18 +16015,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7254,0.8959591936 2011,1,7255,0.8939896417000001 2011,1,7256,0.8861114332 -2011,1,7257,0.8782332246999999 -2011,1,7258,0.8703550161999999 +2011,1,7257,0.8782332247 +2011,1,7258,0.8703550162 2011,1,7259,0.8644463599 2011,1,7260,0.8624768076999999 -2011,1,7261,0.8605072557999999 -2011,1,7262,0.8605072557999999 +2011,1,7261,0.8605072558 +2011,1,7262,0.8605072558 2011,1,7263,0.8624768076999999 -2011,1,7264,0.8683854642999999 +2011,1,7264,0.8683854643 2011,1,7265,0.8762636728 -2011,1,7266,0.8802027765999999 -2011,1,7267,0.8821723288 -2011,1,7268,0.8841418812999998 +2011,1,7266,0.8802027766 +2011,1,7267,0.8821723288000001 +2011,1,7268,0.8841418812999999 2011,1,7269,0.8861114332 2011,1,7270,0.8880809851 2011,1,7271,0.8900505372999999 @@ -16039,16 +16039,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7278,0.8939896417000001 2011,1,7279,0.8939896417000001 2011,1,7280,0.8880809851 -2011,1,7281,0.8821723288 +2011,1,7281,0.8821723288000001 2011,1,7282,0.8762636728 -2011,1,7283,0.8703550161999999 -2011,1,7284,0.8683854642999999 +2011,1,7283,0.8703550162 +2011,1,7284,0.8683854643 2011,1,7285,0.8664159117999999 2011,1,7286,0.8664159117999999 -2011,1,7287,0.8683854642999999 +2011,1,7287,0.8683854643 2011,1,7288,0.8723245680999999 -2011,1,7289,0.8782332246999999 -2011,1,7290,0.8841418812999998 +2011,1,7289,0.8782332247 +2011,1,7290,0.8841418812999999 2011,1,7291,0.8861114332 2011,1,7292,0.8880809851 2011,1,7293,0.8900505372999999 @@ -16059,25 +16059,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7298,0.8939896417000001 2011,1,7299,0.8959591936 2011,1,7300,0.8959591936 -2011,1,7301,0.8979287454999999 +2011,1,7301,0.8979287455 2011,1,7302,0.8990000001999999 -2011,1,7303,0.8979287454999999 +2011,1,7303,0.8979287455 2011,1,7304,0.8939896417000001 2011,1,7305,0.8880809851 -2011,1,7306,0.8821723288 -2011,1,7307,0.8782332246999999 +2011,1,7306,0.8821723288000001 +2011,1,7307,0.8782332247 2011,1,7308,0.8762636728 2011,1,7309,0.8742941203 2011,1,7310,0.8742941203 2011,1,7311,0.8762636728 -2011,1,7312,0.8782332246999999 -2011,1,7313,0.8841418812999998 +2011,1,7312,0.8782332247 +2011,1,7313,0.8841418812999999 2011,1,7314,0.8900505372999999 2011,1,7315,0.8920200892 2011,1,7316,0.8939896417000001 2011,1,7317,0.8959591936 -2011,1,7318,0.8979287454999999 -2011,1,7319,0.8979287454999999 +2011,1,7318,0.8979287455 +2011,1,7319,0.8979287455 2011,1,7320,0.8990000001999999 2011,1,7321,0.8990000001999999 2011,1,7322,0.8990000001999999 @@ -16085,23 +16085,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7324,0.8990000001999999 2011,1,7325,0.8990000001999999 2011,1,7326,0.8990000001999999 -2011,1,7327,0.8979287454999999 +2011,1,7327,0.8979287455 2011,1,7328,0.8920200892 2011,1,7329,0.8861114332 -2011,1,7330,0.8802027765999999 +2011,1,7330,0.8802027766 2011,1,7331,0.8742941203 2011,1,7332,0.8723245680999999 -2011,1,7333,0.8703550161999999 -2011,1,7334,0.8703550161999999 +2011,1,7333,0.8703550162 +2011,1,7334,0.8703550162 2011,1,7335,0.8723245680999999 2011,1,7336,0.8762636728 -2011,1,7337,0.8841418812999998 +2011,1,7337,0.8841418812999999 2011,1,7338,0.8900505372999999 2011,1,7339,0.8939896417000001 2011,1,7340,0.8959591936 2011,1,7341,0.8959591936 -2011,1,7342,0.8979287454999999 -2011,1,7343,0.8979287454999999 +2011,1,7342,0.8979287455 +2011,1,7343,0.8979287455 2011,1,7344,0.8990000001999999 2011,1,7345,0.8990000001999999 2011,1,7346,0.8990000001999999 @@ -16112,19 +16112,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7351,0.8990000001999999 2011,1,7352,0.8939896417000001 2011,1,7353,0.8861114332 -2011,1,7354,0.8802027765999999 +2011,1,7354,0.8802027766 2011,1,7355,0.8762636728 2011,1,7356,0.8742941203 2011,1,7357,0.8723245680999999 2011,1,7358,0.8742941203 -2011,1,7359,0.8782332246999999 -2011,1,7360,0.8841418812999998 +2011,1,7359,0.8782332247 +2011,1,7360,0.8841418812999999 2011,1,7361,0.8900505372999999 2011,1,7362,0.8939896417000001 2011,1,7363,0.8959591936 -2011,1,7364,0.8979287454999999 -2011,1,7365,0.8979287454999999 -2011,1,7366,0.8979287454999999 +2011,1,7364,0.8979287455 +2011,1,7365,0.8979287455 +2011,1,7366,0.8979287455 2011,1,7367,0.8990000001999999 2011,1,7368,0.8990000001999999 2011,1,7369,0.8990000001999999 @@ -16139,9 +16139,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7378,0.8990000001999999 2011,1,7379,0.8990000001999999 2011,1,7380,0.8990000001999999 -2011,1,7381,0.8979287454999999 -2011,1,7382,0.8979287454999999 -2011,1,7383,0.8979287454999999 +2011,1,7381,0.8979287455 +2011,1,7382,0.8979287455 +2011,1,7383,0.8979287455 2011,1,7384,0.8990000001999999 2011,1,7385,0.8990000001999999 2011,1,7386,0.8990000001999999 @@ -16160,7 +16160,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7399,0.8990000001999999 2011,1,7400,0.8990000001999999 2011,1,7401,0.8990000001999999 -2011,1,7402,0.8979287454999999 +2011,1,7402,0.8979287455 2011,1,7403,0.8959591936 2011,1,7404,0.8939896417000001 2011,1,7405,0.8920200892 @@ -16184,13 +16184,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7423,0.8990000001999999 2011,1,7424,0.8990000001999999 2011,1,7425,0.8990000001999999 -2011,1,7426,0.8979287454999999 +2011,1,7426,0.8979287455 2011,1,7427,0.8959591936 2011,1,7428,0.8939896417000001 2011,1,7429,0.8939896417000001 2011,1,7430,0.8959591936 2011,1,7431,0.8959591936 -2011,1,7432,0.8979287454999999 +2011,1,7432,0.8979287455 2011,1,7433,0.8990000001999999 2011,1,7434,0.8990000001999999 2011,1,7435,0.8990000001999999 @@ -16235,9 +16235,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7474,0.8939896417000001 2011,1,7475,0.8880809851 2011,1,7476,0.8861114332 -2011,1,7477,0.8841418812999998 -2011,1,7478,0.8841418812999998 -2011,1,7479,0.8841418812999998 +2011,1,7477,0.8841418812999999 +2011,1,7478,0.8841418812999999 +2011,1,7479,0.8841418812999999 2011,1,7480,0.8880809851 2011,1,7481,0.8959591936 2011,1,7482,0.8990000001999999 @@ -16257,16 +16257,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7496,0.8990000001999999 2011,1,7497,0.8939896417000001 2011,1,7498,0.8880809851 -2011,1,7499,0.8821723288 -2011,1,7500,0.8782332246999999 +2011,1,7499,0.8821723288000001 +2011,1,7500,0.8782332247 2011,1,7501,0.8762636728 2011,1,7502,0.8762636728 -2011,1,7503,0.8782332246999999 -2011,1,7504,0.8841418812999998 +2011,1,7503,0.8782332247 +2011,1,7504,0.8841418812999999 2011,1,7505,0.8920200892 2011,1,7506,0.8959591936 -2011,1,7507,0.8979287454999999 -2011,1,7508,0.8979287454999999 +2011,1,7507,0.8979287455 +2011,1,7508,0.8979287455 2011,1,7509,0.8990000001999999 2011,1,7510,0.8990000001999999 2011,1,7511,0.8990000001999999 @@ -16278,47 +16278,47 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7517,0.8990000001999999 2011,1,7518,0.8990000001999999 2011,1,7519,0.8990000001999999 -2011,1,7520,0.8979287454999999 +2011,1,7520,0.8979287455 2011,1,7521,0.8920200892 2011,1,7522,0.8900505372999999 2011,1,7523,0.8861114332 -2011,1,7524,0.8841418812999998 -2011,1,7525,0.8821723288 -2011,1,7526,0.8802027765999999 -2011,1,7527,0.8821723288 +2011,1,7524,0.8841418812999999 +2011,1,7525,0.8821723288000001 +2011,1,7526,0.8802027766 +2011,1,7527,0.8821723288000001 2011,1,7528,0.8861114332 2011,1,7529,0.8920200892 2011,1,7530,0.8959591936 2011,1,7531,0.8959591936 2011,1,7532,0.8959591936 -2011,1,7533,0.8979287454999999 -2011,1,7534,0.8979287454999999 -2011,1,7535,0.8979287454999999 -2011,1,7536,0.8979287454999999 -2011,1,7537,0.8979287454999999 -2011,1,7538,0.8979287454999999 -2011,1,7539,0.8979287454999999 -2011,1,7540,0.8979287454999999 -2011,1,7541,0.8979287454999999 -2011,1,7542,0.8979287454999999 -2011,1,7543,0.8979287454999999 +2011,1,7533,0.8979287455 +2011,1,7534,0.8979287455 +2011,1,7535,0.8979287455 +2011,1,7536,0.8979287455 +2011,1,7537,0.8979287455 +2011,1,7538,0.8979287455 +2011,1,7539,0.8979287455 +2011,1,7540,0.8979287455 +2011,1,7541,0.8979287455 +2011,1,7542,0.8979287455 +2011,1,7543,0.8979287455 2011,1,7544,0.8939896417000001 2011,1,7545,0.8880809851 -2011,1,7546,0.8821723288 -2011,1,7547,0.8782332246999999 +2011,1,7546,0.8821723288000001 +2011,1,7547,0.8782332247 2011,1,7548,0.8762636728 2011,1,7549,0.8762636728 2011,1,7550,0.8762636728 -2011,1,7551,0.8782332246999999 -2011,1,7552,0.8821723288 +2011,1,7551,0.8782332247 +2011,1,7552,0.8821723288000001 2011,1,7553,0.8880809851 2011,1,7554,0.8939896417000001 2011,1,7555,0.8959591936 -2011,1,7556,0.8979287454999999 -2011,1,7557,0.8979287454999999 -2011,1,7558,0.8979287454999999 -2011,1,7559,0.8979287454999999 -2011,1,7560,0.8979287454999999 +2011,1,7556,0.8979287455 +2011,1,7557,0.8979287455 +2011,1,7558,0.8979287455 +2011,1,7559,0.8979287455 +2011,1,7560,0.8979287455 2011,1,7561,0.8990000001999999 2011,1,7562,0.8990000001999999 2011,1,7563,0.8990000001999999 @@ -16354,19 +16354,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7593,0.8959591936 2011,1,7594,0.8900505372999999 2011,1,7595,0.8861114332 -2011,1,7596,0.8841418812999998 -2011,1,7597,0.8821723288 -2011,1,7598,0.8802027765999999 -2011,1,7599,0.8821723288 +2011,1,7596,0.8841418812999999 +2011,1,7597,0.8821723288000001 +2011,1,7598,0.8802027766 +2011,1,7599,0.8821723288000001 2011,1,7600,0.8861114332 2011,1,7601,0.8920200892 2011,1,7602,0.8939896417000001 2011,1,7603,0.8939896417000001 2011,1,7604,0.8959591936 2011,1,7605,0.8959591936 -2011,1,7606,0.8979287454999999 -2011,1,7607,0.8979287454999999 -2011,1,7608,0.8979287454999999 +2011,1,7606,0.8979287455 +2011,1,7607,0.8979287455 +2011,1,7608,0.8979287455 2011,1,7609,0.8990000001999999 2011,1,7610,0.8990000001999999 2011,1,7611,0.8990000001999999 @@ -16379,12 +16379,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7618,0.8900505372999999 2011,1,7619,0.8880809851 2011,1,7620,0.8861114332 -2011,1,7621,0.8841418812999998 -2011,1,7622,0.8841418812999998 +2011,1,7621,0.8841418812999999 +2011,1,7622,0.8841418812999999 2011,1,7623,0.8861114332 2011,1,7624,0.8900505372999999 2011,1,7625,0.8959591936 -2011,1,7626,0.8979287454999999 +2011,1,7626,0.8979287455 2011,1,7627,0.8990000001999999 2011,1,7628,0.8990000001999999 2011,1,7629,0.8990000001999999 @@ -16399,17 +16399,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7638,0.8990000001999999 2011,1,7639,0.8990000001999999 2011,1,7640,0.8990000001999999 -2011,1,7641,0.8979287454999999 +2011,1,7641,0.8979287455 2011,1,7642,0.8920200892 2011,1,7643,0.8880809851 2011,1,7644,0.8861114332 -2011,1,7645,0.8841418812999998 -2011,1,7646,0.8841418812999998 -2011,1,7647,0.8841418812999998 +2011,1,7645,0.8841418812999999 +2011,1,7646,0.8841418812999999 +2011,1,7647,0.8841418812999999 2011,1,7648,0.8880809851 2011,1,7649,0.8939896417000001 -2011,1,7650,0.8979287454999999 -2011,1,7651,0.8979287454999999 +2011,1,7650,0.8979287455 +2011,1,7651,0.8979287455 2011,1,7652,0.8990000001999999 2011,1,7653,0.8990000001999999 2011,1,7654,0.8990000001999999 @@ -16426,15 +16426,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7665,0.8959591936 2011,1,7666,0.8920200892 2011,1,7667,0.8861114332 -2011,1,7668,0.8821723288 -2011,1,7669,0.8802027765999999 -2011,1,7670,0.8802027765999999 -2011,1,7671,0.8821723288 +2011,1,7668,0.8821723288000001 +2011,1,7669,0.8802027766 +2011,1,7670,0.8802027766 +2011,1,7671,0.8821723288000001 2011,1,7672,0.8861114332 2011,1,7673,0.8939896417000001 -2011,1,7674,0.8979287454999999 -2011,1,7675,0.8979287454999999 -2011,1,7676,0.8979287454999999 +2011,1,7674,0.8979287455 +2011,1,7675,0.8979287455 +2011,1,7676,0.8979287455 2011,1,7677,0.8990000001999999 2011,1,7678,0.8990000001999999 2011,1,7679,0.8990000001999999 @@ -16450,15 +16450,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7689,0.8939896417000001 2011,1,7690,0.8900505372999999 2011,1,7691,0.8861114332 -2011,1,7692,0.8821723288 -2011,1,7693,0.8802027765999999 -2011,1,7694,0.8802027765999999 -2011,1,7695,0.8821723288 +2011,1,7692,0.8821723288000001 +2011,1,7693,0.8802027766 +2011,1,7694,0.8802027766 +2011,1,7695,0.8821723288000001 2011,1,7696,0.8861114332 2011,1,7697,0.8920200892 2011,1,7698,0.8959591936 -2011,1,7699,0.8979287454999999 -2011,1,7700,0.8979287454999999 +2011,1,7699,0.8979287455 +2011,1,7700,0.8979287455 2011,1,7701,0.8990000001999999 2011,1,7702,0.8990000001999999 2011,1,7703,0.8990000001999999 @@ -16479,7 +16479,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7718,0.8900505372999999 2011,1,7719,0.8920200892 2011,1,7720,0.8939896417000001 -2011,1,7721,0.8979287454999999 +2011,1,7721,0.8979287455 2011,1,7722,0.8990000001999999 2011,1,7723,0.8990000001999999 2011,1,7724,0.8990000001999999 @@ -16496,7 +16496,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7735,0.8990000001999999 2011,1,7736,0.8990000001999999 2011,1,7737,0.8990000001999999 -2011,1,7738,0.8979287454999999 +2011,1,7738,0.8979287455 2011,1,7739,0.8959591936 2011,1,7740,0.8939896417000001 2011,1,7741,0.8920200892 @@ -16521,12 +16521,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7760,0.8990000001999999 2011,1,7761,0.8990000001999999 2011,1,7762,0.8990000001999999 -2011,1,7763,0.8979287454999999 +2011,1,7763,0.8979287455 2011,1,7764,0.8959591936 2011,1,7765,0.8959591936 2011,1,7766,0.8939896417000001 2011,1,7767,0.8959591936 -2011,1,7768,0.8979287454999999 +2011,1,7768,0.8979287455 2011,1,7769,0.8990000001999999 2011,1,7770,0.8990000001999999 2011,1,7771,0.8990000001999999 @@ -16544,7 +16544,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7783,0.8990000001999999 2011,1,7784,0.8990000001999999 2011,1,7785,0.8990000001999999 -2011,1,7786,0.8979287454999999 +2011,1,7786,0.8979287455 2011,1,7787,0.8939896417000001 2011,1,7788,0.8920200892 2011,1,7789,0.8900505372999999 @@ -16572,13 +16572,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7811,0.8920200892 2011,1,7812,0.8880809851 2011,1,7813,0.8861114332 -2011,1,7814,0.8841418812999998 -2011,1,7815,0.8841418812999998 +2011,1,7814,0.8841418812999999 +2011,1,7815,0.8841418812999999 2011,1,7816,0.8880809851 2011,1,7817,0.8939896417000001 -2011,1,7818,0.8979287454999999 -2011,1,7819,0.8979287454999999 -2011,1,7820,0.8979287454999999 +2011,1,7818,0.8979287455 +2011,1,7819,0.8979287455 +2011,1,7820,0.8979287455 2011,1,7821,0.8990000001999999 2011,1,7822,0.8990000001999999 2011,1,7823,0.8990000001999999 @@ -16593,11 +16593,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7832,0.8990000001999999 2011,1,7833,0.8959591936 2011,1,7834,0.8880809851 -2011,1,7835,0.8821723288 -2011,1,7836,0.8802027765999999 -2011,1,7837,0.8782332246999999 -2011,1,7838,0.8782332246999999 -2011,1,7839,0.8802027765999999 +2011,1,7835,0.8821723288000001 +2011,1,7836,0.8802027766 +2011,1,7837,0.8782332247 +2011,1,7838,0.8782332247 +2011,1,7839,0.8802027766 2011,1,7840,0.8880809851 2011,1,7841,0.8959591936 2011,1,7842,0.8990000001999999 @@ -16623,7 +16623,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7862,0.8880809851 2011,1,7863,0.8900505372999999 2011,1,7864,0.8920200892 -2011,1,7865,0.8979287454999999 +2011,1,7865,0.8979287455 2011,1,7866,0.8990000001999999 2011,1,7867,0.8990000001999999 2011,1,7868,0.8990000001999999 @@ -16640,14 +16640,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7879,0.8990000001999999 2011,1,7880,0.8990000001999999 2011,1,7881,0.8990000001999999 -2011,1,7882,0.8979287454999999 +2011,1,7882,0.8979287455 2011,1,7883,0.8939896417000001 2011,1,7884,0.8920200892 2011,1,7885,0.8900505372999999 2011,1,7886,0.8880809851 2011,1,7887,0.8880809851 2011,1,7888,0.8920200892 -2011,1,7889,0.8979287454999999 +2011,1,7889,0.8979287455 2011,1,7890,0.8990000001999999 2011,1,7891,0.8990000001999999 2011,1,7892,0.8990000001999999 @@ -16664,23 +16664,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7903,0.8990000001999999 2011,1,7904,0.8990000001999999 2011,1,7905,0.8900505372999999 -2011,1,7906,0.8821723288 +2011,1,7906,0.8821723288000001 2011,1,7907,0.8762636728 2011,1,7908,0.8723245680999999 -2011,1,7909,0.8703550161999999 -2011,1,7910,0.8703550161999999 +2011,1,7909,0.8703550162 +2011,1,7910,0.8703550162 2011,1,7911,0.8723245680999999 -2011,1,7912,0.8782332246999999 -2011,1,7913,0.8841418812999998 +2011,1,7912,0.8782332247 +2011,1,7913,0.8841418812999999 2011,1,7914,0.8880809851 2011,1,7915,0.8920200892 2011,1,7916,0.8939896417000001 2011,1,7917,0.8959591936 2011,1,7918,0.8959591936 -2011,1,7919,0.8979287454999999 -2011,1,7920,0.8979287454999999 -2011,1,7921,0.8979287454999999 -2011,1,7922,0.8979287454999999 +2011,1,7919,0.8979287455 +2011,1,7920,0.8979287455 +2011,1,7921,0.8979287455 +2011,1,7922,0.8979287455 2011,1,7923,0.8990000001999999 2011,1,7924,0.8990000001999999 2011,1,7925,0.8990000001999999 @@ -16688,14 +16688,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7927,0.8990000001999999 2011,1,7928,0.8959591936 2011,1,7929,0.8861114332 -2011,1,7930,0.8802027765999999 +2011,1,7930,0.8802027766 2011,1,7931,0.8742941203 2011,1,7932,0.8723245680999999 -2011,1,7933,0.8703550161999999 -2011,1,7934,0.8703550161999999 +2011,1,7933,0.8703550162 +2011,1,7934,0.8703550162 2011,1,7935,0.8742941203 -2011,1,7936,0.8802027765999999 -2011,1,7937,0.8841418812999998 +2011,1,7936,0.8802027766 +2011,1,7937,0.8841418812999999 2011,1,7938,0.8880809851 2011,1,7939,0.8900505372999999 2011,1,7940,0.8920200892 @@ -16712,24 +16712,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7951,0.8959591936 2011,1,7952,0.8939896417000001 2011,1,7953,0.8900505372999999 -2011,1,7954,0.8841418812999998 -2011,1,7955,0.8821723288 -2011,1,7956,0.8802027765999999 -2011,1,7957,0.8782332246999999 -2011,1,7958,0.8782332246999999 -2011,1,7959,0.8802027765999999 +2011,1,7954,0.8841418812999999 +2011,1,7955,0.8821723288000001 +2011,1,7956,0.8802027766 +2011,1,7957,0.8782332247 +2011,1,7958,0.8782332247 +2011,1,7959,0.8802027766 2011,1,7960,0.8861114332 2011,1,7961,0.8920200892 2011,1,7962,0.8959591936 2011,1,7963,0.8959591936 -2011,1,7964,0.8979287454999999 -2011,1,7965,0.8979287454999999 -2011,1,7966,0.8979287454999999 -2011,1,7967,0.8979287454999999 -2011,1,7968,0.8979287454999999 -2011,1,7969,0.8979287454999999 -2011,1,7970,0.8979287454999999 -2011,1,7971,0.8979287454999999 +2011,1,7964,0.8979287455 +2011,1,7965,0.8979287455 +2011,1,7966,0.8979287455 +2011,1,7967,0.8979287455 +2011,1,7968,0.8979287455 +2011,1,7969,0.8979287455 +2011,1,7970,0.8979287455 +2011,1,7971,0.8979287455 2011,1,7972,0.8990000001999999 2011,1,7973,0.8990000001999999 2011,1,7974,0.8990000001999999 @@ -16737,11 +16737,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,7976,0.8990000001999999 2011,1,7977,0.8939896417000001 2011,1,7978,0.8880809851 -2011,1,7979,0.8821723288 -2011,1,7980,0.8782332246999999 +2011,1,7979,0.8821723288000001 +2011,1,7980,0.8782332247 2011,1,7981,0.8762636728 -2011,1,7982,0.8782332246999999 -2011,1,7983,0.8802027765999999 +2011,1,7982,0.8782332247 +2011,1,7983,0.8802027766 2011,1,7984,0.8880809851 2011,1,7985,0.8959591936 2011,1,7986,0.8990000001999999 @@ -16766,7 +16766,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8005,0.8939896417000001 2011,1,8006,0.8939896417000001 2011,1,8007,0.8939896417000001 -2011,1,8008,0.8979287454999999 +2011,1,8008,0.8979287455 2011,1,8009,0.8990000001999999 2011,1,8010,0.8990000001999999 2011,1,8011,0.8990000001999999 @@ -16807,7 +16807,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8046,0.8990000001999999 2011,1,8047,0.8990000001999999 2011,1,8048,0.8990000001999999 -2011,1,8049,0.8979287454999999 +2011,1,8049,0.8979287455 2011,1,8050,0.8920200892 2011,1,8051,0.8880809851 2011,1,8052,0.8861114332 @@ -16815,7 +16815,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8054,0.8861114332 2011,1,8055,0.8880809851 2011,1,8056,0.8920200892 -2011,1,8057,0.8979287454999999 +2011,1,8057,0.8979287455 2011,1,8058,0.8990000001999999 2011,1,8059,0.8990000001999999 2011,1,8060,0.8990000001999999 @@ -16832,13 +16832,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8071,0.8990000001999999 2011,1,8072,0.8990000001999999 2011,1,8073,0.8990000001999999 -2011,1,8074,0.8979287454999999 +2011,1,8074,0.8979287455 2011,1,8075,0.8920200892 2011,1,8076,0.8900505372999999 2011,1,8077,0.8900505372999999 2011,1,8078,0.8900505372999999 2011,1,8079,0.8920200892 -2011,1,8080,0.8979287454999999 +2011,1,8080,0.8979287455 2011,1,8081,0.8990000001999999 2011,1,8082,0.8990000001999999 2011,1,8083,0.8990000001999999 @@ -16856,13 +16856,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8095,0.8990000001999999 2011,1,8096,0.8990000001999999 2011,1,8097,0.8990000001999999 -2011,1,8098,0.8979287454999999 +2011,1,8098,0.8979287455 2011,1,8099,0.8939896417000001 2011,1,8100,0.8920200892 2011,1,8101,0.8900505372999999 2011,1,8102,0.8900505372999999 2011,1,8103,0.8920200892 -2011,1,8104,0.8979287454999999 +2011,1,8104,0.8979287455 2011,1,8105,0.8990000001999999 2011,1,8106,0.8990000001999999 2011,1,8107,0.8990000001999999 @@ -16904,7 +16904,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8143,0.8990000001999999 2011,1,8144,0.8990000001999999 2011,1,8145,0.8990000001999999 -2011,1,8146,0.8979287454999999 +2011,1,8146,0.8979287455 2011,1,8147,0.8920200892 2011,1,8148,0.8900505372999999 2011,1,8149,0.8880809851 @@ -16952,11 +16952,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8191,0.8990000001999999 2011,1,8192,0.8990000001999999 2011,1,8193,0.8990000001999999 -2011,1,8194,0.8979287454999999 +2011,1,8194,0.8979287455 2011,1,8195,0.8920200892 2011,1,8196,0.8861114332 -2011,1,8197,0.8841418812999998 -2011,1,8198,0.8841418812999998 +2011,1,8197,0.8841418812999999 +2011,1,8198,0.8841418812999999 2011,1,8199,0.8861114332 2011,1,8200,0.8939896417000001 2011,1,8201,0.8990000001999999 @@ -16975,17 +16975,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8214,0.8990000001999999 2011,1,8215,0.8990000001999999 2011,1,8216,0.8990000001999999 -2011,1,8217,0.8979287454999999 +2011,1,8217,0.8979287455 2011,1,8218,0.8920200892 2011,1,8219,0.8861114332 -2011,1,8220,0.8821723288 -2011,1,8221,0.8802027765999999 -2011,1,8222,0.8802027765999999 -2011,1,8223,0.8841418812999998 +2011,1,8220,0.8821723288000001 +2011,1,8221,0.8802027766 +2011,1,8222,0.8802027766 +2011,1,8223,0.8841418812999999 2011,1,8224,0.8900505372999999 2011,1,8225,0.8939896417000001 -2011,1,8226,0.8979287454999999 -2011,1,8227,0.8979287454999999 +2011,1,8226,0.8979287455 +2011,1,8227,0.8979287455 2011,1,8228,0.8990000001999999 2011,1,8229,0.8990000001999999 2011,1,8230,0.8990000001999999 @@ -16999,13 +16999,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8238,0.8990000001999999 2011,1,8239,0.8990000001999999 2011,1,8240,0.8990000001999999 -2011,1,8241,0.8979287454999999 +2011,1,8241,0.8979287455 2011,1,8242,0.8920200892 2011,1,8243,0.8880809851 -2011,1,8244,0.8841418812999998 -2011,1,8245,0.8821723288 -2011,1,8246,0.8821723288 -2011,1,8247,0.8841418812999998 +2011,1,8244,0.8841418812999999 +2011,1,8245,0.8821723288000001 +2011,1,8246,0.8821723288000001 +2011,1,8247,0.8841418812999999 2011,1,8248,0.8920200892 2011,1,8249,0.8990000001999999 2011,1,8250,0.8990000001999999 @@ -17024,7 +17024,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8263,0.8990000001999999 2011,1,8264,0.8990000001999999 2011,1,8265,0.8990000001999999 -2011,1,8266,0.8979287454999999 +2011,1,8266,0.8979287455 2011,1,8267,0.8939896417000001 2011,1,8268,0.8920200892 2011,1,8269,0.8900505372999999 @@ -17073,7 +17073,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8312,0.8990000001999999 2011,1,8313,0.8990000001999999 2011,1,8314,0.8990000001999999 -2011,1,8315,0.8979287454999999 +2011,1,8315,0.8979287455 2011,1,8316,0.8959591936 2011,1,8317,0.8939896417000001 2011,1,8318,0.8939896417000001 @@ -17167,15 +17167,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8406,0.8990000001999999 2011,1,8407,0.8990000001999999 2011,1,8408,0.8990000001999999 -2011,1,8409,0.8979287454999999 +2011,1,8409,0.8979287455 2011,1,8410,0.8920200892 2011,1,8411,0.8880809851 2011,1,8412,0.8861114332 -2011,1,8413,0.8841418812999998 -2011,1,8414,0.8841418812999998 +2011,1,8413,0.8841418812999999 +2011,1,8414,0.8841418812999999 2011,1,8415,0.8861114332 2011,1,8416,0.8920200892 -2011,1,8417,0.8979287454999999 +2011,1,8417,0.8979287455 2011,1,8418,0.8990000001999999 2011,1,8419,0.8990000001999999 2011,1,8420,0.8990000001999999 @@ -17222,7 +17222,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8461,0.8920200892 2011,1,8462,0.8920200892 2011,1,8463,0.8939896417000001 -2011,1,8464,0.8979287454999999 +2011,1,8464,0.8979287455 2011,1,8465,0.8990000001999999 2011,1,8466,0.8990000001999999 2011,1,8467,0.8990000001999999 @@ -17240,7 +17240,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8479,0.8990000001999999 2011,1,8480,0.8990000001999999 2011,1,8481,0.8990000001999999 -2011,1,8482,0.8979287454999999 +2011,1,8482,0.8979287455 2011,1,8483,0.8920200892 2011,1,8484,0.8900505372999999 2011,1,8485,0.8880809851 @@ -17264,7 +17264,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8503,0.8990000001999999 2011,1,8504,0.8990000001999999 2011,1,8505,0.8990000001999999 -2011,1,8506,0.8979287454999999 +2011,1,8506,0.8979287455 2011,1,8507,0.8920200892 2011,1,8508,0.8880809851 2011,1,8509,0.8861114332 @@ -17335,17 +17335,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8574,0.8990000001999999 2011,1,8575,0.8990000001999999 2011,1,8576,0.8990000001999999 -2011,1,8577,0.8979287454999999 +2011,1,8577,0.8979287455 2011,1,8578,0.8920200892 2011,1,8579,0.8861114332 -2011,1,8580,0.8841418812999998 -2011,1,8581,0.8821723288 -2011,1,8582,0.8821723288 -2011,1,8583,0.8841418812999998 +2011,1,8580,0.8841418812999999 +2011,1,8581,0.8821723288000001 +2011,1,8582,0.8821723288000001 +2011,1,8583,0.8841418812999999 2011,1,8584,0.8900505372999999 2011,1,8585,0.8959591936 2011,1,8586,0.8959591936 -2011,1,8587,0.8979287454999999 +2011,1,8587,0.8979287455 2011,1,8588,0.8990000001999999 2011,1,8589,0.8990000001999999 2011,1,8590,0.8990000001999999 @@ -17361,11 +17361,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8600,0.8990000001999999 2011,1,8601,0.8959591936 2011,1,8602,0.8900505372999999 -2011,1,8603,0.8841418812999998 -2011,1,8604,0.8802027765999999 -2011,1,8605,0.8782332246999999 -2011,1,8606,0.8802027765999999 -2011,1,8607,0.8841418812999998 +2011,1,8603,0.8841418812999999 +2011,1,8604,0.8802027766 +2011,1,8605,0.8782332247 +2011,1,8606,0.8802027766 +2011,1,8607,0.8841418812999999 2011,1,8608,0.8920200892 2011,1,8609,0.8990000001999999 2011,1,8610,0.8990000001999999 @@ -17386,9 +17386,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8625,0.8990000001999999 2011,1,8626,0.8939896417000001 2011,1,8627,0.8880809851 -2011,1,8628,0.8841418812999998 -2011,1,8629,0.8821723288 -2011,1,8630,0.8841418812999998 +2011,1,8628,0.8841418812999999 +2011,1,8629,0.8821723288000001 +2011,1,8630,0.8841418812999999 2011,1,8631,0.8861114332 2011,1,8632,0.8939896417000001 2011,1,8633,0.8990000001999999 @@ -17414,7 +17414,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8653,0.8880809851 2011,1,8654,0.8880809851 2011,1,8655,0.8900505372999999 -2011,1,8656,0.8979287454999999 +2011,1,8656,0.8979287455 2011,1,8657,0.8990000001999999 2011,1,8658,0.8990000001999999 2011,1,8659,0.8990000001999999 @@ -17455,7 +17455,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8694,0.8990000001999999 2011,1,8695,0.8990000001999999 2011,1,8696,0.8990000001999999 -2011,1,8697,0.8979287454999999 +2011,1,8697,0.8979287455 2011,1,8698,0.8939896417000001 2011,1,8699,0.8900505372999999 2011,1,8700,0.8880809851 @@ -17480,7 +17480,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8719,0.8990000001999999 2011,1,8720,0.8990000001999999 2011,1,8721,0.8990000001999999 -2011,1,8722,0.8979287454999999 +2011,1,8722,0.8979287455 2011,1,8723,0.8939896417000001 2011,1,8724,0.8920200892 2011,1,8725,0.8900505372999999 @@ -17506,12 +17506,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2011,1,8745,0.8990000001999999 2011,1,8746,0.8939896417000001 2011,1,8747,0.8880809851 -2011,1,8748,0.8821723288 -2011,1,8749,0.8802027765999999 -2011,1,8750,0.8802027765999999 -2011,1,8751,0.8821723288 -2011,1,8752,0.8841418812999998 -2011,1,8753,0.8979287454999999 +2011,1,8748,0.8821723288000001 +2011,1,8749,0.8802027766 +2011,1,8750,0.8802027766 +2011,1,8751,0.8821723288000001 +2011,1,8752,0.8841418812999999 +2011,1,8753,0.8979287455 2011,1,8754,0.8990000001999999 2011,1,8755,0.8990000001999999 2011,1,8756,0.8990000001999999 @@ -17531,11 +17531,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,10,0.8959591936 1,1,11,0.8900505372999999 1,1,12,0.8861114332 -1,1,13,0.8841418812999998 -1,1,14,0.8841418812999998 +1,1,13,0.8841418812999999 +1,1,14,0.8841418812999999 1,1,15,0.8861114332 1,1,16,0.8900505372999999 -1,1,17,0.8979287454999999 +1,1,17,0.8979287455 1,1,18,0.8990000001999999 1,1,19,0.8990000001999999 1,1,20,0.8990000001999999 @@ -17553,7 +17553,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,32,0.8990000001999999 1,1,33,0.8990000001999999 1,1,34,0.8990000001999999 -1,1,35,0.8979287454999999 +1,1,35,0.8979287455 1,1,36,0.8959591936 1,1,37,0.8939896417000001 1,1,38,0.8939896417000001 @@ -17577,7 +17577,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,56,0.8990000001999999 1,1,57,0.8990000001999999 1,1,58,0.8990000001999999 -1,1,59,0.8979287454999999 +1,1,59,0.8979287455 1,1,60,0.8959591936 1,1,61,0.8939896417000001 1,1,62,0.8939896417000001 @@ -17593,27 +17593,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,72,0.8990000001999999 1,1,73,0.8990000001999999 1,1,74,0.8990000001999999 -1,1,75,0.8979287454999999 -1,1,76,0.8979287454999999 +1,1,75,0.8979287455 +1,1,76,0.8979287455 1,1,77,0.8990000001999999 1,1,78,0.8990000001999999 1,1,79,0.8990000001999999 -1,1,80,0.8979287454999999 +1,1,80,0.8979287455 1,1,81,0.8920200892 1,1,82,0.8861114332 -1,1,83,0.8802027765999999 -1,1,84,0.8782332246999999 +1,1,83,0.8802027766 +1,1,84,0.8782332247 1,1,85,0.8762636728 1,1,86,0.8762636728 -1,1,87,0.8782332246999999 -1,1,88,0.8841418812999998 +1,1,87,0.8782332247 +1,1,88,0.8841418812999999 1,1,89,0.8900505372999999 1,1,90,0.8939896417000001 1,1,91,0.8959591936 -1,1,92,0.8979287454999999 -1,1,93,0.8979287454999999 -1,1,94,0.8979287454999999 -1,1,95,0.8979287454999999 +1,1,92,0.8979287455 +1,1,93,0.8979287455 +1,1,94,0.8979287455 +1,1,95,0.8979287455 1,1,96,0.8990000001999999 1,1,97,0.8990000001999999 1,1,98,0.8990000001999999 @@ -17623,7 +17623,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,102,0.8990000001999999 1,1,103,0.8990000001999999 1,1,104,0.8990000001999999 -1,1,105,0.8979287454999999 +1,1,105,0.8979287455 1,1,106,0.8939896417000001 1,1,107,0.8920200892 1,1,108,0.8900505372999999 @@ -17631,7 +17631,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,110,0.8880809851 1,1,111,0.8900505372999999 1,1,112,0.8939896417000001 -1,1,113,0.8979287454999999 +1,1,113,0.8979287455 1,1,114,0.8990000001999999 1,1,115,0.8990000001999999 1,1,116,0.8990000001999999 @@ -17649,11 +17649,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,128,0.8990000001999999 1,1,129,0.8939896417000001 1,1,130,0.8880809851 -1,1,131,0.8821723288 -1,1,132,0.8802027765999999 -1,1,133,0.8782332246999999 -1,1,134,0.8802027765999999 -1,1,135,0.8821723288 +1,1,131,0.8821723288000001 +1,1,132,0.8802027766 +1,1,133,0.8782332247 +1,1,134,0.8802027766 +1,1,135,0.8821723288000001 1,1,136,0.8861114332 1,1,137,0.8900505372999999 1,1,138,0.8920200892 @@ -17662,7 +17662,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,141,0.8959591936 1,1,142,0.8959591936 1,1,143,0.8959591936 -1,1,144,0.8979287454999999 +1,1,144,0.8979287455 1,1,145,0.8990000001999999 1,1,146,0.8990000001999999 1,1,147,0.8990000001999999 @@ -17673,11 +17673,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,152,0.8990000001999999 1,1,153,0.8939896417000001 1,1,154,0.8880809851 -1,1,155,0.8821723288 -1,1,156,0.8802027765999999 -1,1,157,0.8782332246999999 -1,1,158,0.8802027765999999 -1,1,159,0.8821723288 +1,1,155,0.8821723288000001 +1,1,156,0.8802027766 +1,1,157,0.8782332247 +1,1,158,0.8802027766 +1,1,159,0.8821723288000001 1,1,160,0.8861114332 1,1,161,0.8900505372999999 1,1,162,0.8920200892 @@ -17686,7 +17686,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,165,0.8959591936 1,1,166,0.8959591936 1,1,167,0.8959591936 -1,1,168,0.8979287454999999 +1,1,168,0.8979287455 1,1,169,0.8990000001999999 1,1,170,0.8990000001999999 1,1,171,0.8990000001999999 @@ -17695,7 +17695,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,174,0.8990000001999999 1,1,175,0.8990000001999999 1,1,176,0.8990000001999999 -1,1,177,0.8979287454999999 +1,1,177,0.8979287455 1,1,178,0.8939896417000001 1,1,179,0.8920200892 1,1,180,0.8900505372999999 @@ -17703,7 +17703,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,182,0.8880809851 1,1,183,0.8900505372999999 1,1,184,0.8939896417000001 -1,1,185,0.8979287454999999 +1,1,185,0.8979287455 1,1,186,0.8990000001999999 1,1,187,0.8990000001999999 1,1,188,0.8990000001999999 @@ -17719,7 +17719,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,198,0.8990000001999999 1,1,199,0.8990000001999999 1,1,200,0.8990000001999999 -1,1,201,0.8979287454999999 +1,1,201,0.8979287455 1,1,202,0.8939896417000001 1,1,203,0.8920200892 1,1,204,0.8900505372999999 @@ -17727,7 +17727,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,206,0.8880809851 1,1,207,0.8900505372999999 1,1,208,0.8939896417000001 -1,1,209,0.8979287454999999 +1,1,209,0.8979287455 1,1,210,0.8990000001999999 1,1,211,0.8990000001999999 1,1,212,0.8990000001999999 @@ -17743,7 +17743,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,222,0.8990000001999999 1,1,223,0.8990000001999999 1,1,224,0.8990000001999999 -1,1,225,0.8979287454999999 +1,1,225,0.8979287455 1,1,226,0.8939896417000001 1,1,227,0.8920200892 1,1,228,0.8900505372999999 @@ -17751,7 +17751,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,230,0.8880809851 1,1,231,0.8900505372999999 1,1,232,0.8939896417000001 -1,1,233,0.8979287454999999 +1,1,233,0.8979287455 1,1,234,0.8990000001999999 1,1,235,0.8990000001999999 1,1,236,0.8990000001999999 @@ -17767,7 +17767,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,246,0.8990000001999999 1,1,247,0.8990000001999999 1,1,248,0.8990000001999999 -1,1,249,0.8979287454999999 +1,1,249,0.8979287455 1,1,250,0.8939896417000001 1,1,251,0.8920200892 1,1,252,0.8900505372999999 @@ -17775,7 +17775,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,254,0.8880809851 1,1,255,0.8900505372999999 1,1,256,0.8939896417000001 -1,1,257,0.8979287454999999 +1,1,257,0.8979287455 1,1,258,0.8990000001999999 1,1,259,0.8990000001999999 1,1,260,0.8990000001999999 @@ -17793,7 +17793,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,272,0.8990000001999999 1,1,273,0.8990000001999999 1,1,274,0.8990000001999999 -1,1,275,0.8979287454999999 +1,1,275,0.8979287455 1,1,276,0.8959591936 1,1,277,0.8939896417000001 1,1,278,0.8939896417000001 @@ -17817,11 +17817,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,296,0.8990000001999999 1,1,297,0.8939896417000001 1,1,298,0.8880809851 -1,1,299,0.8821723288 -1,1,300,0.8802027765999999 -1,1,301,0.8782332246999999 -1,1,302,0.8802027765999999 -1,1,303,0.8821723288 +1,1,299,0.8821723288000001 +1,1,300,0.8802027766 +1,1,301,0.8782332247 +1,1,302,0.8802027766 +1,1,303,0.8821723288000001 1,1,304,0.8861114332 1,1,305,0.8900505372999999 1,1,306,0.8920200892 @@ -17830,30 +17830,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,309,0.8959591936 1,1,310,0.8959591936 1,1,311,0.8959591936 -1,1,312,0.8979287454999999 +1,1,312,0.8979287455 1,1,313,0.8990000001999999 1,1,314,0.8990000001999999 -1,1,315,0.8979287454999999 -1,1,316,0.8979287454999999 +1,1,315,0.8979287455 +1,1,316,0.8979287455 1,1,317,0.8990000001999999 1,1,318,0.8990000001999999 1,1,319,0.8990000001999999 -1,1,320,0.8979287454999999 +1,1,320,0.8979287455 1,1,321,0.8920200892 1,1,322,0.8861114332 -1,1,323,0.8802027765999999 -1,1,324,0.8782332246999999 +1,1,323,0.8802027766 +1,1,324,0.8782332247 1,1,325,0.8762636728 1,1,326,0.8762636728 -1,1,327,0.8782332246999999 -1,1,328,0.8841418812999998 +1,1,327,0.8782332247 +1,1,328,0.8841418812999999 1,1,329,0.8900505372999999 1,1,330,0.8939896417000001 1,1,331,0.8959591936 -1,1,332,0.8979287454999999 -1,1,333,0.8979287454999999 -1,1,334,0.8979287454999999 -1,1,335,0.8979287454999999 +1,1,332,0.8979287455 +1,1,333,0.8979287455 +1,1,334,0.8979287455 +1,1,335,0.8979287455 1,1,336,0.8990000001999999 1,1,337,0.8990000001999999 1,1,338,0.8990000001999999 @@ -17863,7 +17863,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,342,0.8990000001999999 1,1,343,0.8990000001999999 1,1,344,0.8990000001999999 -1,1,345,0.8979287454999999 +1,1,345,0.8979287455 1,1,346,0.8939896417000001 1,1,347,0.8920200892 1,1,348,0.8900505372999999 @@ -17871,7 +17871,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,350,0.8880809851 1,1,351,0.8900505372999999 1,1,352,0.8939896417000001 -1,1,353,0.8979287454999999 +1,1,353,0.8979287455 1,1,354,0.8990000001999999 1,1,355,0.8990000001999999 1,1,356,0.8990000001999999 @@ -17881,27 +17881,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,360,0.8990000001999999 1,1,361,0.8990000001999999 1,1,362,0.8990000001999999 -1,1,363,0.8979287454999999 -1,1,364,0.8979287454999999 +1,1,363,0.8979287455 +1,1,364,0.8979287455 1,1,365,0.8990000001999999 1,1,366,0.8990000001999999 1,1,367,0.8990000001999999 -1,1,368,0.8979287454999999 +1,1,368,0.8979287455 1,1,369,0.8920200892 1,1,370,0.8861114332 -1,1,371,0.8802027765999999 -1,1,372,0.8782332246999999 +1,1,371,0.8802027766 +1,1,372,0.8782332247 1,1,373,0.8762636728 1,1,374,0.8762636728 -1,1,375,0.8782332246999999 -1,1,376,0.8841418812999998 +1,1,375,0.8782332247 +1,1,376,0.8841418812999999 1,1,377,0.8900505372999999 1,1,378,0.8939896417000001 1,1,379,0.8959591936 -1,1,380,0.8979287454999999 -1,1,381,0.8979287454999999 -1,1,382,0.8979287454999999 -1,1,383,0.8979287454999999 +1,1,380,0.8979287455 +1,1,381,0.8979287455 +1,1,382,0.8979287455 +1,1,383,0.8979287455 1,1,384,0.8990000001999999 1,1,385,0.8990000001999999 1,1,386,0.8990000001999999 @@ -17913,11 +17913,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,392,0.8990000001999999 1,1,393,0.8939896417000001 1,1,394,0.8880809851 -1,1,395,0.8821723288 -1,1,396,0.8802027765999999 -1,1,397,0.8782332246999999 -1,1,398,0.8802027765999999 -1,1,399,0.8821723288 +1,1,395,0.8821723288000001 +1,1,396,0.8802027766 +1,1,397,0.8782332247 +1,1,398,0.8802027766 +1,1,399,0.8821723288000001 1,1,400,0.8861114332 1,1,401,0.8900505372999999 1,1,402,0.8920200892 @@ -17926,30 +17926,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,405,0.8959591936 1,1,406,0.8959591936 1,1,407,0.8959591936 -1,1,408,0.8979287454999999 +1,1,408,0.8979287455 1,1,409,0.8990000001999999 1,1,410,0.8990000001999999 -1,1,411,0.8979287454999999 -1,1,412,0.8979287454999999 +1,1,411,0.8979287455 +1,1,412,0.8979287455 1,1,413,0.8990000001999999 1,1,414,0.8990000001999999 1,1,415,0.8990000001999999 -1,1,416,0.8979287454999999 +1,1,416,0.8979287455 1,1,417,0.8920200892 1,1,418,0.8861114332 -1,1,419,0.8802027765999999 -1,1,420,0.8782332246999999 +1,1,419,0.8802027766 +1,1,420,0.8782332247 1,1,421,0.8762636728 1,1,422,0.8762636728 -1,1,423,0.8782332246999999 -1,1,424,0.8841418812999998 +1,1,423,0.8782332247 +1,1,424,0.8841418812999999 1,1,425,0.8900505372999999 1,1,426,0.8939896417000001 1,1,427,0.8959591936 -1,1,428,0.8979287454999999 -1,1,429,0.8979287454999999 -1,1,430,0.8979287454999999 -1,1,431,0.8979287454999999 +1,1,428,0.8979287455 +1,1,429,0.8979287455 +1,1,430,0.8979287455 +1,1,431,0.8979287455 1,1,432,0.8990000001999999 1,1,433,0.8990000001999999 1,1,434,0.8990000001999999 @@ -17961,11 +17961,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,440,0.8990000001999999 1,1,441,0.8939896417000001 1,1,442,0.8880809851 -1,1,443,0.8821723288 -1,1,444,0.8802027765999999 -1,1,445,0.8782332246999999 -1,1,446,0.8802027765999999 -1,1,447,0.8821723288 +1,1,443,0.8821723288000001 +1,1,444,0.8802027766 +1,1,445,0.8782332247 +1,1,446,0.8802027766 +1,1,447,0.8821723288000001 1,1,448,0.8861114332 1,1,449,0.8900505372999999 1,1,450,0.8920200892 @@ -17974,30 +17974,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,453,0.8959591936 1,1,454,0.8959591936 1,1,455,0.8959591936 -1,1,456,0.8979287454999999 +1,1,456,0.8979287455 1,1,457,0.8990000001999999 1,1,458,0.8990000001999999 -1,1,459,0.8979287454999999 -1,1,460,0.8979287454999999 +1,1,459,0.8979287455 +1,1,460,0.8979287455 1,1,461,0.8990000001999999 1,1,462,0.8990000001999999 1,1,463,0.8990000001999999 -1,1,464,0.8979287454999999 +1,1,464,0.8979287455 1,1,465,0.8920200892 1,1,466,0.8861114332 -1,1,467,0.8802027765999999 -1,1,468,0.8782332246999999 +1,1,467,0.8802027766 +1,1,468,0.8782332247 1,1,469,0.8762636728 1,1,470,0.8762636728 -1,1,471,0.8782332246999999 -1,1,472,0.8841418812999998 +1,1,471,0.8782332247 +1,1,472,0.8841418812999999 1,1,473,0.8900505372999999 1,1,474,0.8939896417000001 1,1,475,0.8959591936 -1,1,476,0.8979287454999999 -1,1,477,0.8979287454999999 -1,1,478,0.8979287454999999 -1,1,479,0.8979287454999999 +1,1,476,0.8979287455 +1,1,477,0.8979287455 +1,1,478,0.8979287455 +1,1,479,0.8979287455 1,1,480,0.8990000001999999 1,1,481,0.8990000001999999 1,1,482,0.8990000001999999 @@ -18009,11 +18009,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,488,0.8990000001999999 1,1,489,0.8939896417000001 1,1,490,0.8880809851 -1,1,491,0.8821723288 -1,1,492,0.8802027765999999 -1,1,493,0.8782332246999999 -1,1,494,0.8802027765999999 -1,1,495,0.8821723288 +1,1,491,0.8821723288000001 +1,1,492,0.8802027766 +1,1,493,0.8782332247 +1,1,494,0.8802027766 +1,1,495,0.8821723288000001 1,1,496,0.8861114332 1,1,497,0.8900505372999999 1,1,498,0.8920200892 @@ -18022,7 +18022,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,501,0.8959591936 1,1,502,0.8959591936 1,1,503,0.8959591936 -1,1,504,0.8979287454999999 +1,1,504,0.8979287455 1,1,505,0.8990000001999999 1,1,506,0.8990000001999999 1,1,507,0.8990000001999999 @@ -18031,7 +18031,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,510,0.8990000001999999 1,1,511,0.8990000001999999 1,1,512,0.8990000001999999 -1,1,513,0.8979287454999999 +1,1,513,0.8979287455 1,1,514,0.8939896417000001 1,1,515,0.8920200892 1,1,516,0.8900505372999999 @@ -18039,7 +18039,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,518,0.8880809851 1,1,519,0.8900505372999999 1,1,520,0.8939896417000001 -1,1,521,0.8979287454999999 +1,1,521,0.8979287455 1,1,522,0.8990000001999999 1,1,523,0.8990000001999999 1,1,524,0.8990000001999999 @@ -18049,27 +18049,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,528,0.8990000001999999 1,1,529,0.8990000001999999 1,1,530,0.8990000001999999 -1,1,531,0.8979287454999999 -1,1,532,0.8979287454999999 +1,1,531,0.8979287455 +1,1,532,0.8979287455 1,1,533,0.8990000001999999 1,1,534,0.8990000001999999 1,1,535,0.8990000001999999 -1,1,536,0.8979287454999999 +1,1,536,0.8979287455 1,1,537,0.8920200892 1,1,538,0.8861114332 -1,1,539,0.8802027765999999 -1,1,540,0.8782332246999999 +1,1,539,0.8802027766 +1,1,540,0.8782332247 1,1,541,0.8762636728 1,1,542,0.8762636728 -1,1,543,0.8782332246999999 -1,1,544,0.8841418812999998 +1,1,543,0.8782332247 +1,1,544,0.8841418812999999 1,1,545,0.8900505372999999 1,1,546,0.8939896417000001 1,1,547,0.8959591936 -1,1,548,0.8979287454999999 -1,1,549,0.8979287454999999 -1,1,550,0.8979287454999999 -1,1,551,0.8979287454999999 +1,1,548,0.8979287455 +1,1,549,0.8979287455 +1,1,550,0.8979287455 +1,1,551,0.8979287455 1,1,552,0.8990000001999999 1,1,553,0.8990000001999999 1,1,554,0.8990000001999999 @@ -18081,11 +18081,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,560,0.8990000001999999 1,1,561,0.8939896417000001 1,1,562,0.8880809851 -1,1,563,0.8821723288 -1,1,564,0.8802027765999999 -1,1,565,0.8782332246999999 -1,1,566,0.8802027765999999 -1,1,567,0.8821723288 +1,1,563,0.8821723288000001 +1,1,564,0.8802027766 +1,1,565,0.8782332247 +1,1,566,0.8802027766 +1,1,567,0.8821723288000001 1,1,568,0.8861114332 1,1,569,0.8900505372999999 1,1,570,0.8920200892 @@ -18094,7 +18094,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,573,0.8959591936 1,1,574,0.8959591936 1,1,575,0.8959591936 -1,1,576,0.8979287454999999 +1,1,576,0.8979287455 1,1,577,0.8990000001999999 1,1,578,0.8990000001999999 1,1,579,0.8990000001999999 @@ -18105,7 +18105,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,584,0.8990000001999999 1,1,585,0.8990000001999999 1,1,586,0.8990000001999999 -1,1,587,0.8979287454999999 +1,1,587,0.8979287455 1,1,588,0.8959591936 1,1,589,0.8939896417000001 1,1,590,0.8939896417000001 @@ -18129,7 +18129,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,608,0.8990000001999999 1,1,609,0.8990000001999999 1,1,610,0.8990000001999999 -1,1,611,0.8979287454999999 +1,1,611,0.8979287455 1,1,612,0.8959591936 1,1,613,0.8939896417000001 1,1,614,0.8939896417000001 @@ -18145,51 +18145,51 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,624,0.8990000001999999 1,1,625,0.8990000001999999 1,1,626,0.8990000001999999 -1,1,627,0.8979287454999999 -1,1,628,0.8979287454999999 +1,1,627,0.8979287455 +1,1,628,0.8979287455 1,1,629,0.8990000001999999 1,1,630,0.8990000001999999 1,1,631,0.8990000001999999 -1,1,632,0.8979287454999999 +1,1,632,0.8979287455 1,1,633,0.8920200892 1,1,634,0.8861114332 -1,1,635,0.8802027765999999 -1,1,636,0.8782332246999999 +1,1,635,0.8802027766 +1,1,636,0.8782332247 1,1,637,0.8762636728 1,1,638,0.8762636728 -1,1,639,0.8782332246999999 -1,1,640,0.8841418812999998 +1,1,639,0.8782332247 +1,1,640,0.8841418812999999 1,1,641,0.8900505372999999 1,1,642,0.8939896417000001 1,1,643,0.8959591936 -1,1,644,0.8979287454999999 -1,1,645,0.8979287454999999 -1,1,646,0.8979287454999999 -1,1,647,0.8979287454999999 +1,1,644,0.8979287455 +1,1,645,0.8979287455 +1,1,646,0.8979287455 +1,1,647,0.8979287455 1,1,648,0.8990000001999999 1,1,649,0.8990000001999999 1,1,650,0.8990000001999999 -1,1,651,0.8979287454999999 -1,1,652,0.8979287454999999 +1,1,651,0.8979287455 +1,1,652,0.8979287455 1,1,653,0.8990000001999999 1,1,654,0.8990000001999999 1,1,655,0.8990000001999999 -1,1,656,0.8979287454999999 +1,1,656,0.8979287455 1,1,657,0.8920200892 1,1,658,0.8861114332 -1,1,659,0.8802027765999999 -1,1,660,0.8782332246999999 +1,1,659,0.8802027766 +1,1,660,0.8782332247 1,1,661,0.8762636728 1,1,662,0.8762636728 -1,1,663,0.8782332246999999 -1,1,664,0.8841418812999998 +1,1,663,0.8782332247 +1,1,664,0.8841418812999999 1,1,665,0.8900505372999999 1,1,666,0.8939896417000001 1,1,667,0.8959591936 -1,1,668,0.8979287454999999 -1,1,669,0.8979287454999999 -1,1,670,0.8979287454999999 -1,1,671,0.8979287454999999 +1,1,668,0.8979287455 +1,1,669,0.8979287455 +1,1,670,0.8979287455 +1,1,671,0.8979287455 1,1,672,0.8990000001999999 1,1,673,0.8990000001999999 1,1,674,0.8990000001999999 @@ -18199,7 +18199,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,678,0.8990000001999999 1,1,679,0.8990000001999999 1,1,680,0.8990000001999999 -1,1,681,0.8979287454999999 +1,1,681,0.8979287455 1,1,682,0.8939896417000001 1,1,683,0.8920200892 1,1,684,0.8900505372999999 @@ -18207,7 +18207,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,686,0.8880809851 1,1,687,0.8900505372999999 1,1,688,0.8939896417000001 -1,1,689,0.8979287454999999 +1,1,689,0.8979287455 1,1,690,0.8990000001999999 1,1,691,0.8990000001999999 1,1,692,0.8990000001999999 @@ -18225,11 +18225,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,704,0.8990000001999999 1,1,705,0.8939896417000001 1,1,706,0.8880809851 -1,1,707,0.8821723288 -1,1,708,0.8802027765999999 -1,1,709,0.8782332246999999 -1,1,710,0.8802027765999999 -1,1,711,0.8821723288 +1,1,707,0.8821723288000001 +1,1,708,0.8802027766 +1,1,709,0.8782332247 +1,1,710,0.8802027766 +1,1,711,0.8821723288000001 1,1,712,0.8861114332 1,1,713,0.8900505372999999 1,1,714,0.8920200892 @@ -18238,30 +18238,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,717,0.8959591936 1,1,718,0.8959591936 1,1,719,0.8959591936 -1,1,720,0.8979287454999999 +1,1,720,0.8979287455 1,1,721,0.8990000001999999 1,1,722,0.8990000001999999 -1,1,723,0.8979287454999999 -1,1,724,0.8979287454999999 +1,1,723,0.8979287455 +1,1,724,0.8979287455 1,1,725,0.8990000001999999 1,1,726,0.8990000001999999 1,1,727,0.8990000001999999 -1,1,728,0.8979287454999999 +1,1,728,0.8979287455 1,1,729,0.8920200892 1,1,730,0.8861114332 -1,1,731,0.8802027765999999 -1,1,732,0.8782332246999999 +1,1,731,0.8802027766 +1,1,732,0.8782332247 1,1,733,0.8762636728 1,1,734,0.8762636728 -1,1,735,0.8782332246999999 -1,1,736,0.8841418812999998 +1,1,735,0.8782332247 +1,1,736,0.8841418812999999 1,1,737,0.8900505372999999 1,1,738,0.8939896417000001 1,1,739,0.8959591936 -1,1,740,0.8979287454999999 -1,1,741,0.8979287454999999 -1,1,742,0.8979287454999999 -1,1,743,0.8979287454999999 +1,1,740,0.8979287455 +1,1,741,0.8979287455 +1,1,742,0.8979287455 +1,1,743,0.8979287455 1,1,744,0.8990000001999999 1,1,745,0.8990000001999999 1,1,746,0.8990000001999999 @@ -18273,12 +18273,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,752,0.8990000001999999 1,1,753,0.8990000001999999 1,1,754,0.8990000001999999 -1,1,755,0.8979287454999999 +1,1,755,0.8979287455 1,1,756,0.8959591936 1,1,757,0.8959591936 1,1,758,0.8939896417000001 1,1,759,0.8959591936 -1,1,760,0.8979287454999999 +1,1,760,0.8979287455 1,1,761,0.8990000001999999 1,1,762,0.8990000001999999 1,1,763,0.8990000001999999 @@ -18294,23 +18294,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,773,0.8990000001999999 1,1,774,0.8990000001999999 1,1,775,0.8990000001999999 -1,1,776,0.8979287454999999 +1,1,776,0.8979287455 1,1,777,0.8900505372999999 -1,1,778,0.8841418812999998 -1,1,779,0.8802027765999999 -1,1,780,0.8782332246999999 +1,1,778,0.8841418812999999 +1,1,779,0.8802027766 +1,1,780,0.8782332247 1,1,781,0.8762636728 1,1,782,0.8762636728 1,1,783,0.8762636728 -1,1,784,0.8802027765999999 +1,1,784,0.8802027766 1,1,785,0.8861114332 1,1,786,0.8920200892 1,1,787,0.8939896417000001 1,1,788,0.8939896417000001 1,1,789,0.8939896417000001 1,1,790,0.8959591936 -1,1,791,0.8979287454999999 -1,1,792,0.8979287454999999 +1,1,791,0.8979287455 +1,1,792,0.8979287455 1,1,793,0.8990000001999999 1,1,794,0.8990000001999999 1,1,795,0.8990000001999999 @@ -18318,18 +18318,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,797,0.8990000001999999 1,1,798,0.8990000001999999 1,1,799,0.8990000001999999 -1,1,800,0.8979287454999999 +1,1,800,0.8979287455 1,1,801,0.8920200892 1,1,802,0.8861114332 -1,1,803,0.8802027765999999 -1,1,804,0.8782332246999999 -1,1,805,0.8782332246999999 -1,1,806,0.8802027765999999 -1,1,807,0.8821723288 +1,1,803,0.8802027766 +1,1,804,0.8782332247 +1,1,805,0.8782332247 +1,1,806,0.8802027766 +1,1,807,0.8821723288000001 1,1,808,0.8880809851 1,1,809,0.8939896417000001 -1,1,810,0.8979287454999999 -1,1,811,0.8979287454999999 +1,1,810,0.8979287455 +1,1,811,0.8979287455 1,1,812,0.8990000001999999 1,1,813,0.8990000001999999 1,1,814,0.8990000001999999 @@ -18352,8 +18352,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,831,0.8880809851 1,1,832,0.8900505372999999 1,1,833,0.8939896417000001 -1,1,834,0.8979287454999999 -1,1,835,0.8979287454999999 +1,1,834,0.8979287455 +1,1,835,0.8979287455 1,1,836,0.8990000001999999 1,1,837,0.8990000001999999 1,1,838,0.8990000001999999 @@ -18369,12 +18369,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,848,0.8990000001999999 1,1,849,0.8990000001999999 1,1,850,0.8990000001999999 -1,1,851,0.8979287454999999 +1,1,851,0.8979287455 1,1,852,0.8959591936 1,1,853,0.8959591936 1,1,854,0.8959591936 1,1,855,0.8959591936 -1,1,856,0.8979287454999999 +1,1,856,0.8979287455 1,1,857,0.8990000001999999 1,1,858,0.8990000001999999 1,1,859,0.8990000001999999 @@ -18390,18 +18390,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,869,0.8990000001999999 1,1,870,0.8990000001999999 1,1,871,0.8990000001999999 -1,1,872,0.8979287454999999 +1,1,872,0.8979287455 1,1,873,0.8920200892 1,1,874,0.8861114332 -1,1,875,0.8802027765999999 -1,1,876,0.8782332246999999 -1,1,877,0.8782332246999999 -1,1,878,0.8802027765999999 -1,1,879,0.8821723288 +1,1,875,0.8802027766 +1,1,876,0.8782332247 +1,1,877,0.8782332247 +1,1,878,0.8802027766 +1,1,879,0.8821723288000001 1,1,880,0.8880809851 1,1,881,0.8939896417000001 -1,1,882,0.8979287454999999 -1,1,883,0.8979287454999999 +1,1,882,0.8979287455 +1,1,883,0.8979287455 1,1,884,0.8990000001999999 1,1,885,0.8990000001999999 1,1,886,0.8990000001999999 @@ -18414,18 +18414,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,893,0.8990000001999999 1,1,894,0.8990000001999999 1,1,895,0.8990000001999999 -1,1,896,0.8979287454999999 +1,1,896,0.8979287455 1,1,897,0.8920200892 1,1,898,0.8861114332 -1,1,899,0.8802027765999999 -1,1,900,0.8782332246999999 -1,1,901,0.8782332246999999 -1,1,902,0.8802027765999999 -1,1,903,0.8821723288 +1,1,899,0.8802027766 +1,1,900,0.8782332247 +1,1,901,0.8782332247 +1,1,902,0.8802027766 +1,1,903,0.8821723288000001 1,1,904,0.8880809851 1,1,905,0.8939896417000001 -1,1,906,0.8979287454999999 -1,1,907,0.8979287454999999 +1,1,906,0.8979287455 +1,1,907,0.8979287455 1,1,908,0.8990000001999999 1,1,909,0.8990000001999999 1,1,910,0.8990000001999999 @@ -18439,7 +18439,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,918,0.8990000001999999 1,1,919,0.8990000001999999 1,1,920,0.8990000001999999 -1,1,921,0.8979287454999999 +1,1,921,0.8979287455 1,1,922,0.8939896417000001 1,1,923,0.8900505372999999 1,1,924,0.8880809851 @@ -18447,7 +18447,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,926,0.8880809851 1,1,927,0.8900505372999999 1,1,928,0.8920200892 -1,1,929,0.8979287454999999 +1,1,929,0.8979287455 1,1,930,0.8990000001999999 1,1,931,0.8990000001999999 1,1,932,0.8990000001999999 @@ -18462,23 +18462,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,941,0.8990000001999999 1,1,942,0.8990000001999999 1,1,943,0.8990000001999999 -1,1,944,0.8979287454999999 +1,1,944,0.8979287455 1,1,945,0.8900505372999999 -1,1,946,0.8841418812999998 -1,1,947,0.8802027765999999 -1,1,948,0.8782332246999999 +1,1,946,0.8841418812999999 +1,1,947,0.8802027766 +1,1,948,0.8782332247 1,1,949,0.8762636728 1,1,950,0.8762636728 1,1,951,0.8762636728 -1,1,952,0.8802027765999999 +1,1,952,0.8802027766 1,1,953,0.8861114332 1,1,954,0.8920200892 1,1,955,0.8939896417000001 1,1,956,0.8939896417000001 1,1,957,0.8939896417000001 1,1,958,0.8959591936 -1,1,959,0.8979287454999999 -1,1,960,0.8979287454999999 +1,1,959,0.8979287455 +1,1,960,0.8979287455 1,1,961,0.8990000001999999 1,1,962,0.8990000001999999 1,1,963,0.8990000001999999 @@ -18487,12 +18487,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,966,0.8990000001999999 1,1,967,0.8990000001999999 1,1,968,0.8990000001999999 -1,1,969,0.8979287454999999 -1,1,970,0.8979287454999999 -1,1,971,0.8979287454999999 +1,1,969,0.8979287455 +1,1,970,0.8979287455 +1,1,971,0.8979287455 1,1,972,0.8959591936 1,1,973,0.8959591936 -1,1,974,0.8979287454999999 +1,1,974,0.8979287455 1,1,975,0.8990000001999999 1,1,976,0.8990000001999999 1,1,977,0.8990000001999999 @@ -18510,18 +18510,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,989,0.8990000001999999 1,1,990,0.8990000001999999 1,1,991,0.8990000001999999 -1,1,992,0.8979287454999999 +1,1,992,0.8979287455 1,1,993,0.8920200892 1,1,994,0.8861114332 -1,1,995,0.8802027765999999 -1,1,996,0.8782332246999999 -1,1,997,0.8782332246999999 -1,1,998,0.8802027765999999 -1,1,999,0.8821723288 +1,1,995,0.8802027766 +1,1,996,0.8782332247 +1,1,997,0.8782332247 +1,1,998,0.8802027766 +1,1,999,0.8821723288000001 1,1,1000,0.8880809851 1,1,1001,0.8939896417000001 -1,1,1002,0.8979287454999999 -1,1,1003,0.8979287454999999 +1,1,1002,0.8979287455 +1,1,1003,0.8979287455 1,1,1004,0.8990000001999999 1,1,1005,0.8990000001999999 1,1,1006,0.8990000001999999 @@ -18534,23 +18534,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1013,0.8990000001999999 1,1,1014,0.8990000001999999 1,1,1015,0.8990000001999999 -1,1,1016,0.8979287454999999 +1,1,1016,0.8979287455 1,1,1017,0.8900505372999999 -1,1,1018,0.8841418812999998 -1,1,1019,0.8802027765999999 -1,1,1020,0.8782332246999999 +1,1,1018,0.8841418812999999 +1,1,1019,0.8802027766 +1,1,1020,0.8782332247 1,1,1021,0.8762636728 1,1,1022,0.8762636728 1,1,1023,0.8762636728 -1,1,1024,0.8802027765999999 +1,1,1024,0.8802027766 1,1,1025,0.8861114332 1,1,1026,0.8920200892 1,1,1027,0.8939896417000001 1,1,1028,0.8939896417000001 1,1,1029,0.8939896417000001 1,1,1030,0.8959591936 -1,1,1031,0.8979287454999999 -1,1,1032,0.8979287454999999 +1,1,1031,0.8979287455 +1,1,1032,0.8979287455 1,1,1033,0.8990000001999999 1,1,1034,0.8990000001999999 1,1,1035,0.8990000001999999 @@ -18560,7 +18560,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1039,0.8990000001999999 1,1,1040,0.8990000001999999 1,1,1041,0.8990000001999999 -1,1,1042,0.8979287454999999 +1,1,1042,0.8979287455 1,1,1043,0.8939896417000001 1,1,1044,0.8920200892 1,1,1045,0.8900505372999999 @@ -18582,23 +18582,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1061,0.8990000001999999 1,1,1062,0.8990000001999999 1,1,1063,0.8990000001999999 -1,1,1064,0.8979287454999999 +1,1,1064,0.8979287455 1,1,1065,0.8900505372999999 -1,1,1066,0.8841418812999998 -1,1,1067,0.8802027765999999 -1,1,1068,0.8782332246999999 +1,1,1066,0.8841418812999999 +1,1,1067,0.8802027766 +1,1,1068,0.8782332247 1,1,1069,0.8762636728 1,1,1070,0.8762636728 1,1,1071,0.8762636728 -1,1,1072,0.8802027765999999 +1,1,1072,0.8802027766 1,1,1073,0.8861114332 1,1,1074,0.8920200892 1,1,1075,0.8939896417000001 1,1,1076,0.8939896417000001 1,1,1077,0.8939896417000001 1,1,1078,0.8959591936 -1,1,1079,0.8979287454999999 -1,1,1080,0.8979287454999999 +1,1,1079,0.8979287455 +1,1,1080,0.8979287455 1,1,1081,0.8990000001999999 1,1,1082,0.8990000001999999 1,1,1083,0.8990000001999999 @@ -18609,12 +18609,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1088,0.8990000001999999 1,1,1089,0.8990000001999999 1,1,1090,0.8990000001999999 -1,1,1091,0.8979287454999999 +1,1,1091,0.8979287455 1,1,1092,0.8959591936 1,1,1093,0.8959591936 1,1,1094,0.8939896417000001 1,1,1095,0.8959591936 -1,1,1096,0.8979287454999999 +1,1,1096,0.8979287455 1,1,1097,0.8990000001999999 1,1,1098,0.8990000001999999 1,1,1099,0.8990000001999999 @@ -18632,7 +18632,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1111,0.8990000001999999 1,1,1112,0.8990000001999999 1,1,1113,0.8990000001999999 -1,1,1114,0.8979287454999999 +1,1,1114,0.8979287455 1,1,1115,0.8939896417000001 1,1,1116,0.8920200892 1,1,1117,0.8900505372999999 @@ -18657,12 +18657,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1136,0.8990000001999999 1,1,1137,0.8990000001999999 1,1,1138,0.8990000001999999 -1,1,1139,0.8979287454999999 +1,1,1139,0.8979287455 1,1,1140,0.8959591936 1,1,1141,0.8959591936 1,1,1142,0.8939896417000001 1,1,1143,0.8959591936 -1,1,1144,0.8979287454999999 +1,1,1144,0.8979287455 1,1,1145,0.8990000001999999 1,1,1146,0.8990000001999999 1,1,1147,0.8990000001999999 @@ -18678,18 +18678,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1157,0.8990000001999999 1,1,1158,0.8990000001999999 1,1,1159,0.8990000001999999 -1,1,1160,0.8979287454999999 +1,1,1160,0.8979287455 1,1,1161,0.8920200892 1,1,1162,0.8861114332 -1,1,1163,0.8802027765999999 -1,1,1164,0.8782332246999999 -1,1,1165,0.8782332246999999 -1,1,1166,0.8802027765999999 -1,1,1167,0.8821723288 +1,1,1163,0.8802027766 +1,1,1164,0.8782332247 +1,1,1165,0.8782332247 +1,1,1166,0.8802027766 +1,1,1167,0.8821723288000001 1,1,1168,0.8880809851 1,1,1169,0.8939896417000001 -1,1,1170,0.8979287454999999 -1,1,1171,0.8979287454999999 +1,1,1170,0.8979287455 +1,1,1171,0.8979287455 1,1,1172,0.8990000001999999 1,1,1173,0.8990000001999999 1,1,1174,0.8990000001999999 @@ -18704,7 +18704,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1183,0.8990000001999999 1,1,1184,0.8990000001999999 1,1,1185,0.8990000001999999 -1,1,1186,0.8979287454999999 +1,1,1186,0.8979287455 1,1,1187,0.8959591936 1,1,1188,0.8939896417000001 1,1,1189,0.8920200892 @@ -18729,12 +18729,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1208,0.8990000001999999 1,1,1209,0.8990000001999999 1,1,1210,0.8990000001999999 -1,1,1211,0.8979287454999999 +1,1,1211,0.8979287455 1,1,1212,0.8959591936 1,1,1213,0.8959591936 1,1,1214,0.8959591936 1,1,1215,0.8959591936 -1,1,1216,0.8979287454999999 +1,1,1216,0.8979287455 1,1,1217,0.8990000001999999 1,1,1218,0.8990000001999999 1,1,1219,0.8990000001999999 @@ -18752,7 +18752,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1231,0.8990000001999999 1,1,1232,0.8990000001999999 1,1,1233,0.8990000001999999 -1,1,1234,0.8979287454999999 +1,1,1234,0.8979287455 1,1,1235,0.8939896417000001 1,1,1236,0.8920200892 1,1,1237,0.8900505372999999 @@ -18775,12 +18775,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1254,0.8990000001999999 1,1,1255,0.8990000001999999 1,1,1256,0.8990000001999999 -1,1,1257,0.8979287454999999 -1,1,1258,0.8979287454999999 -1,1,1259,0.8979287454999999 +1,1,1257,0.8979287455 +1,1,1258,0.8979287455 +1,1,1259,0.8979287455 1,1,1260,0.8959591936 1,1,1261,0.8959591936 -1,1,1262,0.8979287454999999 +1,1,1262,0.8979287455 1,1,1263,0.8990000001999999 1,1,1264,0.8990000001999999 1,1,1265,0.8990000001999999 @@ -18798,18 +18798,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1277,0.8990000001999999 1,1,1278,0.8990000001999999 1,1,1279,0.8990000001999999 -1,1,1280,0.8979287454999999 +1,1,1280,0.8979287455 1,1,1281,0.8920200892 1,1,1282,0.8861114332 -1,1,1283,0.8802027765999999 -1,1,1284,0.8782332246999999 -1,1,1285,0.8782332246999999 -1,1,1286,0.8802027765999999 -1,1,1287,0.8821723288 +1,1,1283,0.8802027766 +1,1,1284,0.8782332247 +1,1,1285,0.8782332247 +1,1,1286,0.8802027766 +1,1,1287,0.8821723288000001 1,1,1288,0.8880809851 1,1,1289,0.8939896417000001 -1,1,1290,0.8979287454999999 -1,1,1291,0.8979287454999999 +1,1,1290,0.8979287455 +1,1,1291,0.8979287455 1,1,1292,0.8990000001999999 1,1,1293,0.8990000001999999 1,1,1294,0.8990000001999999 @@ -18822,18 +18822,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1301,0.8990000001999999 1,1,1302,0.8990000001999999 1,1,1303,0.8990000001999999 -1,1,1304,0.8979287454999999 +1,1,1304,0.8979287455 1,1,1305,0.8920200892 1,1,1306,0.8861114332 -1,1,1307,0.8802027765999999 -1,1,1308,0.8782332246999999 -1,1,1309,0.8782332246999999 -1,1,1310,0.8802027765999999 -1,1,1311,0.8821723288 +1,1,1307,0.8802027766 +1,1,1308,0.8782332247 +1,1,1309,0.8782332247 +1,1,1310,0.8802027766 +1,1,1311,0.8821723288000001 1,1,1312,0.8880809851 1,1,1313,0.8939896417000001 -1,1,1314,0.8979287454999999 -1,1,1315,0.8979287454999999 +1,1,1314,0.8979287455 +1,1,1315,0.8979287455 1,1,1316,0.8990000001999999 1,1,1317,0.8990000001999999 1,1,1318,0.8990000001999999 @@ -18849,12 +18849,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1328,0.8990000001999999 1,1,1329,0.8990000001999999 1,1,1330,0.8990000001999999 -1,1,1331,0.8979287454999999 +1,1,1331,0.8979287455 1,1,1332,0.8959591936 1,1,1333,0.8959591936 1,1,1334,0.8939896417000001 1,1,1335,0.8959591936 -1,1,1336,0.8979287454999999 +1,1,1336,0.8979287455 1,1,1337,0.8990000001999999 1,1,1338,0.8990000001999999 1,1,1339,0.8990000001999999 @@ -18871,12 +18871,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1350,0.8990000001999999 1,1,1351,0.8990000001999999 1,1,1352,0.8990000001999999 -1,1,1353,0.8979287454999999 -1,1,1354,0.8979287454999999 -1,1,1355,0.8979287454999999 +1,1,1353,0.8979287455 +1,1,1354,0.8979287455 +1,1,1355,0.8979287455 1,1,1356,0.8959591936 1,1,1357,0.8959591936 -1,1,1358,0.8979287454999999 +1,1,1358,0.8979287455 1,1,1359,0.8990000001999999 1,1,1360,0.8990000001999999 1,1,1361,0.8990000001999999 @@ -18894,23 +18894,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1373,0.8990000001999999 1,1,1374,0.8990000001999999 1,1,1375,0.8990000001999999 -1,1,1376,0.8979287454999999 +1,1,1376,0.8979287455 1,1,1377,0.8900505372999999 -1,1,1378,0.8841418812999998 -1,1,1379,0.8802027765999999 -1,1,1380,0.8782332246999999 +1,1,1378,0.8841418812999999 +1,1,1379,0.8802027766 +1,1,1380,0.8782332247 1,1,1381,0.8762636728 1,1,1382,0.8762636728 1,1,1383,0.8762636728 -1,1,1384,0.8802027765999999 +1,1,1384,0.8802027766 1,1,1385,0.8861114332 1,1,1386,0.8920200892 1,1,1387,0.8939896417000001 1,1,1388,0.8939896417000001 1,1,1389,0.8939896417000001 1,1,1390,0.8959591936 -1,1,1391,0.8979287454999999 -1,1,1392,0.8979287454999999 +1,1,1391,0.8979287455 +1,1,1392,0.8979287455 1,1,1393,0.8990000001999999 1,1,1394,0.8990000001999999 1,1,1395,0.8990000001999999 @@ -18918,18 +18918,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1397,0.8990000001999999 1,1,1398,0.8990000001999999 1,1,1399,0.8990000001999999 -1,1,1400,0.8979287454999999 +1,1,1400,0.8979287455 1,1,1401,0.8920200892 1,1,1402,0.8861114332 -1,1,1403,0.8802027765999999 -1,1,1404,0.8782332246999999 -1,1,1405,0.8782332246999999 -1,1,1406,0.8802027765999999 -1,1,1407,0.8821723288 +1,1,1403,0.8802027766 +1,1,1404,0.8782332247 +1,1,1405,0.8782332247 +1,1,1406,0.8802027766 +1,1,1407,0.8821723288000001 1,1,1408,0.8880809851 1,1,1409,0.8939896417000001 -1,1,1410,0.8979287454999999 -1,1,1411,0.8979287454999999 +1,1,1410,0.8979287455 +1,1,1411,0.8979287455 1,1,1412,0.8990000001999999 1,1,1413,0.8990000001999999 1,1,1414,0.8990000001999999 @@ -18944,14 +18944,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1423,0.8990000001999999 1,1,1424,0.8990000001999999 1,1,1425,0.8990000001999999 -1,1,1426,0.8979287454999999 +1,1,1426,0.8979287455 1,1,1427,0.8959591936 1,1,1428,0.8939896417000001 1,1,1429,0.8939896417000001 1,1,1430,0.8920200892 1,1,1431,0.8939896417000001 1,1,1432,0.8959591936 -1,1,1433,0.8979287454999999 +1,1,1433,0.8979287455 1,1,1434,0.8990000001999999 1,1,1435,0.8990000001999999 1,1,1436,0.8990000001999999 @@ -18972,7 +18972,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1451,0.8990000001999999 1,1,1452,0.8990000001999999 1,1,1453,0.8990000001999999 -1,1,1454,0.8979287454999999 +1,1,1454,0.8979287455 1,1,1455,0.8990000001999999 1,1,1456,0.8990000001999999 1,1,1457,0.8990000001999999 @@ -18994,10 +18994,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1473,0.8990000001999999 1,1,1474,0.8990000001999999 1,1,1475,0.8990000001999999 -1,1,1476,0.8979287454999999 -1,1,1477,0.8979287454999999 -1,1,1478,0.8979287454999999 -1,1,1479,0.8979287454999999 +1,1,1476,0.8979287455 +1,1,1477,0.8979287455 +1,1,1478,0.8979287455 +1,1,1479,0.8979287455 1,1,1480,0.8990000001999999 1,1,1481,0.8990000001999999 1,1,1482,0.8990000001999999 @@ -19016,14 +19016,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1495,0.8990000001999999 1,1,1496,0.8990000001999999 1,1,1497,0.8990000001999999 -1,1,1498,0.8979287454999999 +1,1,1498,0.8979287455 1,1,1499,0.8959591936 1,1,1500,0.8939896417000001 1,1,1501,0.8939896417000001 1,1,1502,0.8920200892 1,1,1503,0.8939896417000001 1,1,1504,0.8959591936 -1,1,1505,0.8979287454999999 +1,1,1505,0.8979287455 1,1,1506,0.8990000001999999 1,1,1507,0.8990000001999999 1,1,1508,0.8990000001999999 @@ -19043,9 +19043,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1522,0.8990000001999999 1,1,1523,0.8990000001999999 1,1,1524,0.8990000001999999 -1,1,1525,0.8979287454999999 +1,1,1525,0.8979287455 1,1,1526,0.8959591936 -1,1,1527,0.8979287454999999 +1,1,1527,0.8979287455 1,1,1528,0.8990000001999999 1,1,1529,0.8990000001999999 1,1,1530,0.8990000001999999 @@ -19063,16 +19063,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1542,0.8990000001999999 1,1,1543,0.8990000001999999 1,1,1544,0.8990000001999999 -1,1,1545,0.8979287454999999 +1,1,1545,0.8979287455 1,1,1546,0.8939896417000001 1,1,1547,0.8900505372999999 1,1,1548,0.8880809851 1,1,1549,0.8861114332 -1,1,1550,0.8841418812999998 +1,1,1550,0.8841418812999999 1,1,1551,0.8861114332 1,1,1552,0.8880809851 1,1,1553,0.8920200892 -1,1,1554,0.8979287454999999 +1,1,1554,0.8979287455 1,1,1555,0.8990000001999999 1,1,1556,0.8990000001999999 1,1,1557,0.8990000001999999 @@ -19091,9 +19091,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1570,0.8990000001999999 1,1,1571,0.8990000001999999 1,1,1572,0.8990000001999999 -1,1,1573,0.8979287454999999 +1,1,1573,0.8979287455 1,1,1574,0.8959591936 -1,1,1575,0.8979287454999999 +1,1,1575,0.8979287455 1,1,1576,0.8990000001999999 1,1,1577,0.8990000001999999 1,1,1578,0.8990000001999999 @@ -19138,11 +19138,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1617,0.8990000001999999 1,1,1618,0.8990000001999999 1,1,1619,0.8990000001999999 -1,1,1620,0.8979287454999999 +1,1,1620,0.8979287455 1,1,1621,0.8959591936 1,1,1622,0.8959591936 1,1,1623,0.8959591936 -1,1,1624,0.8979287454999999 +1,1,1624,0.8979287455 1,1,1625,0.8990000001999999 1,1,1626,0.8990000001999999 1,1,1627,0.8990000001999999 @@ -19164,7 +19164,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1643,0.8990000001999999 1,1,1644,0.8990000001999999 1,1,1645,0.8990000001999999 -1,1,1646,0.8979287454999999 +1,1,1646,0.8979287455 1,1,1647,0.8990000001999999 1,1,1648,0.8990000001999999 1,1,1649,0.8990000001999999 @@ -19208,20 +19208,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1687,0.8990000001999999 1,1,1688,0.8939896417000001 1,1,1689,0.8880809851 -1,1,1690,0.8821723288 -1,1,1691,0.8782332246999999 +1,1,1690,0.8821723288000001 +1,1,1691,0.8782332247 1,1,1692,0.8762636728 1,1,1693,0.8742941203 1,1,1694,0.8742941203 1,1,1695,0.8742941203 1,1,1696,0.8762636728 -1,1,1697,0.8821723288 +1,1,1697,0.8821723288000001 1,1,1698,0.8900505372999999 1,1,1699,0.8920200892 1,1,1700,0.8920200892 1,1,1701,0.8939896417000001 1,1,1702,0.8959591936 -1,1,1703,0.8979287454999999 +1,1,1703,0.8979287455 1,1,1704,0.8990000001999999 1,1,1705,0.8990000001999999 1,1,1706,0.8990000001999999 @@ -19232,14 +19232,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1711,0.8990000001999999 1,1,1712,0.8990000001999999 1,1,1713,0.8990000001999999 -1,1,1714,0.8979287454999999 +1,1,1714,0.8979287455 1,1,1715,0.8959591936 1,1,1716,0.8939896417000001 1,1,1717,0.8920200892 1,1,1718,0.8920200892 1,1,1719,0.8939896417000001 1,1,1720,0.8959591936 -1,1,1721,0.8979287454999999 +1,1,1721,0.8979287455 1,1,1722,0.8990000001999999 1,1,1723,0.8990000001999999 1,1,1724,0.8990000001999999 @@ -19259,8 +19259,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1738,0.8990000001999999 1,1,1739,0.8990000001999999 1,1,1740,0.8990000001999999 -1,1,1741,0.8979287454999999 -1,1,1742,0.8979287454999999 +1,1,1741,0.8979287455 +1,1,1742,0.8979287455 1,1,1743,0.8990000001999999 1,1,1744,0.8990000001999999 1,1,1745,0.8990000001999999 @@ -19283,8 +19283,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1762,0.8990000001999999 1,1,1763,0.8990000001999999 1,1,1764,0.8990000001999999 -1,1,1765,0.8979287454999999 -1,1,1766,0.8979287454999999 +1,1,1765,0.8979287455 +1,1,1766,0.8979287455 1,1,1767,0.8990000001999999 1,1,1768,0.8990000001999999 1,1,1769,0.8990000001999999 @@ -19304,7 +19304,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1783,0.8990000001999999 1,1,1784,0.8990000001999999 1,1,1785,0.8990000001999999 -1,1,1786,0.8979287454999999 +1,1,1786,0.8979287455 1,1,1787,0.8959591936 1,1,1788,0.8939896417000001 1,1,1789,0.8920200892 @@ -19330,10 +19330,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1809,0.8990000001999999 1,1,1810,0.8990000001999999 1,1,1811,0.8990000001999999 -1,1,1812,0.8979287454999999 -1,1,1813,0.8979287454999999 -1,1,1814,0.8979287454999999 -1,1,1815,0.8979287454999999 +1,1,1812,0.8979287455 +1,1,1813,0.8979287455 +1,1,1814,0.8979287455 +1,1,1815,0.8979287455 1,1,1816,0.8990000001999999 1,1,1817,0.8990000001999999 1,1,1818,0.8990000001999999 @@ -19354,10 +19354,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1833,0.8990000001999999 1,1,1834,0.8990000001999999 1,1,1835,0.8990000001999999 -1,1,1836,0.8979287454999999 -1,1,1837,0.8979287454999999 -1,1,1838,0.8979287454999999 -1,1,1839,0.8979287454999999 +1,1,1836,0.8979287455 +1,1,1837,0.8979287455 +1,1,1838,0.8979287455 +1,1,1839,0.8979287455 1,1,1840,0.8990000001999999 1,1,1841,0.8990000001999999 1,1,1842,0.8990000001999999 @@ -19376,10 +19376,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1855,0.8990000001999999 1,1,1856,0.8990000001999999 1,1,1857,0.8990000001999999 -1,1,1858,0.8979287454999999 +1,1,1858,0.8979287455 1,1,1859,0.8959591936 1,1,1860,0.8959591936 -1,1,1861,0.8979287454999999 +1,1,1861,0.8979287455 1,1,1862,0.8990000001999999 1,1,1863,0.8990000001999999 1,1,1864,0.8990000001999999 @@ -19400,7 +19400,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1879,0.8990000001999999 1,1,1880,0.8990000001999999 1,1,1881,0.8990000001999999 -1,1,1882,0.8979287454999999 +1,1,1882,0.8979287455 1,1,1883,0.8959591936 1,1,1884,0.8939896417000001 1,1,1885,0.8920200892 @@ -19425,12 +19425,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1904,0.8990000001999999 1,1,1905,0.8990000001999999 1,1,1906,0.8990000001999999 -1,1,1907,0.8979287454999999 -1,1,1908,0.8979287454999999 +1,1,1907,0.8979287455 +1,1,1908,0.8979287455 1,1,1909,0.8959591936 1,1,1910,0.8959591936 -1,1,1911,0.8979287454999999 -1,1,1912,0.8979287454999999 +1,1,1911,0.8979287455 +1,1,1912,0.8979287455 1,1,1913,0.8990000001999999 1,1,1914,0.8990000001999999 1,1,1915,0.8990000001999999 @@ -19451,8 +19451,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1930,0.8990000001999999 1,1,1931,0.8990000001999999 1,1,1932,0.8990000001999999 -1,1,1933,0.8979287454999999 -1,1,1934,0.8979287454999999 +1,1,1933,0.8979287455 +1,1,1934,0.8979287455 1,1,1935,0.8990000001999999 1,1,1936,0.8990000001999999 1,1,1937,0.8990000001999999 @@ -19472,10 +19472,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1951,0.8990000001999999 1,1,1952,0.8990000001999999 1,1,1953,0.8990000001999999 -1,1,1954,0.8979287454999999 +1,1,1954,0.8979287455 1,1,1955,0.8959591936 1,1,1956,0.8959591936 -1,1,1957,0.8979287454999999 +1,1,1957,0.8979287455 1,1,1958,0.8990000001999999 1,1,1959,0.8990000001999999 1,1,1960,0.8990000001999999 @@ -19496,14 +19496,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,1975,0.8990000001999999 1,1,1976,0.8990000001999999 1,1,1977,0.8990000001999999 -1,1,1978,0.8979287454999999 +1,1,1978,0.8979287455 1,1,1979,0.8959591936 1,1,1980,0.8939896417000001 1,1,1981,0.8939896417000001 1,1,1982,0.8920200892 1,1,1983,0.8939896417000001 1,1,1984,0.8959591936 -1,1,1985,0.8979287454999999 +1,1,1985,0.8979287455 1,1,1986,0.8990000001999999 1,1,1987,0.8990000001999999 1,1,1988,0.8990000001999999 @@ -19523,9 +19523,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2002,0.8990000001999999 1,1,2003,0.8990000001999999 1,1,2004,0.8990000001999999 -1,1,2005,0.8979287454999999 -1,1,2006,0.8979287454999999 -1,1,2007,0.8979287454999999 +1,1,2005,0.8979287455 +1,1,2006,0.8979287455 +1,1,2007,0.8979287455 1,1,2008,0.8990000001999999 1,1,2009,0.8990000001999999 1,1,2010,0.8990000001999999 @@ -19547,8 +19547,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2026,0.8990000001999999 1,1,2027,0.8990000001999999 1,1,2028,0.8990000001999999 -1,1,2029,0.8979287454999999 -1,1,2030,0.8979287454999999 +1,1,2029,0.8979287455 +1,1,2030,0.8979287455 1,1,2031,0.8990000001999999 1,1,2032,0.8990000001999999 1,1,2033,0.8990000001999999 @@ -19568,10 +19568,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2047,0.8990000001999999 1,1,2048,0.8990000001999999 1,1,2049,0.8990000001999999 -1,1,2050,0.8979287454999999 +1,1,2050,0.8979287455 1,1,2051,0.8959591936 1,1,2052,0.8959591936 -1,1,2053,0.8979287454999999 +1,1,2053,0.8979287455 1,1,2054,0.8990000001999999 1,1,2055,0.8990000001999999 1,1,2056,0.8990000001999999 @@ -19596,7 +19596,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2075,0.8990000001999999 1,1,2076,0.8990000001999999 1,1,2077,0.8990000001999999 -1,1,2078,0.8979287454999999 +1,1,2078,0.8979287455 1,1,2079,0.8990000001999999 1,1,2080,0.8990000001999999 1,1,2081,0.8990000001999999 @@ -19617,12 +19617,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2096,0.8990000001999999 1,1,2097,0.8990000001999999 1,1,2098,0.8990000001999999 -1,1,2099,0.8979287454999999 -1,1,2100,0.8979287454999999 +1,1,2099,0.8979287455 +1,1,2100,0.8979287455 1,1,2101,0.8959591936 1,1,2102,0.8959591936 -1,1,2103,0.8979287454999999 -1,1,2104,0.8979287454999999 +1,1,2103,0.8979287455 +1,1,2104,0.8979287455 1,1,2105,0.8990000001999999 1,1,2106,0.8990000001999999 1,1,2107,0.8990000001999999 @@ -19640,10 +19640,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2119,0.8990000001999999 1,1,2120,0.8990000001999999 1,1,2121,0.8990000001999999 -1,1,2122,0.8979287454999999 +1,1,2122,0.8979287455 1,1,2123,0.8959591936 1,1,2124,0.8959591936 -1,1,2125,0.8979287454999999 +1,1,2125,0.8979287455 1,1,2126,0.8990000001999999 1,1,2127,0.8990000001999999 1,1,2128,0.8990000001999999 @@ -19668,7 +19668,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2147,0.8990000001999999 1,1,2148,0.8990000001999999 1,1,2149,0.8990000001999999 -1,1,2150,0.8979287454999999 +1,1,2150,0.8979287455 1,1,2151,0.8990000001999999 1,1,2152,0.8990000001999999 1,1,2153,0.8990000001999999 @@ -19687,13 +19687,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2166,0.8990000001999999 1,1,2167,0.8990000001999999 1,1,2168,0.8990000001999999 -1,1,2169,0.8979287454999999 +1,1,2169,0.8979287455 1,1,2170,0.8939896417000001 1,1,2171,0.8900505372999999 1,1,2172,0.8880809851 1,1,2173,0.8861114332 -1,1,2174,0.8841418812999998 -1,1,2175,0.8841418812999998 +1,1,2174,0.8841418812999999 +1,1,2175,0.8841418812999999 1,1,2176,0.8861114332 1,1,2177,0.8880809851 1,1,2178,0.8939896417000001 @@ -19712,18 +19712,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2191,0.8990000001999999 1,1,2192,0.8959591936 1,1,2193,0.8900505372999999 -1,1,2194,0.8841418812999998 -1,1,2195,0.8782332246999999 +1,1,2194,0.8841418812999999 +1,1,2195,0.8782332247 1,1,2196,0.8742941203 1,1,2197,0.8723245680999999 1,1,2198,0.8723245680999999 1,1,2199,0.8742941203 1,1,2200,0.8762636728 -1,1,2201,0.8802027765999999 +1,1,2201,0.8802027766 1,1,2202,0.8861114332 1,1,2203,0.8920200892 1,1,2204,0.8959591936 -1,1,2205,0.8979287454999999 +1,1,2205,0.8979287455 1,1,2206,0.8990000001999999 1,1,2207,0.8990000001999999 1,1,2208,0.8990000001999999 @@ -19737,15 +19737,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2216,0.8959591936 1,1,2217,0.8920200892 1,1,2218,0.8880809851 -1,1,2219,0.8841418812999998 -1,1,2220,0.8821723288 -1,1,2221,0.8802027765999999 -1,1,2222,0.8802027765999999 -1,1,2223,0.8821723288 -1,1,2224,0.8841418812999998 +1,1,2219,0.8841418812999999 +1,1,2220,0.8821723288000001 +1,1,2221,0.8802027766 +1,1,2222,0.8802027766 +1,1,2223,0.8821723288000001 +1,1,2224,0.8841418812999999 1,1,2225,0.8880809851 1,1,2226,0.8939896417000001 -1,1,2227,0.8979287454999999 +1,1,2227,0.8979287455 1,1,2228,0.8990000001999999 1,1,2229,0.8990000001999999 1,1,2230,0.8990000001999999 @@ -19767,7 +19767,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2246,0.8900505372999999 1,1,2247,0.8920200892 1,1,2248,0.8939896417000001 -1,1,2249,0.8979287454999999 +1,1,2249,0.8979287455 1,1,2250,0.8990000001999999 1,1,2251,0.8990000001999999 1,1,2252,0.8990000001999999 @@ -19784,17 +19784,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2263,0.8990000001999999 1,1,2264,0.8920200892 1,1,2265,0.8861114332 -1,1,2266,0.8821723288 -1,1,2267,0.8802027765999999 -1,1,2268,0.8782332246999999 -1,1,2269,0.8782332246999999 +1,1,2266,0.8821723288000001 +1,1,2267,0.8802027766 +1,1,2268,0.8782332247 +1,1,2269,0.8782332247 1,1,2270,0.8762636728 -1,1,2271,0.8782332246999999 -1,1,2272,0.8802027765999999 -1,1,2273,0.8821723288 +1,1,2271,0.8782332247 +1,1,2272,0.8802027766 +1,1,2273,0.8821723288000001 1,1,2274,0.8880809851 1,1,2275,0.8939896417000001 -1,1,2276,0.8979287454999999 +1,1,2276,0.8979287455 1,1,2277,0.8990000001999999 1,1,2278,0.8990000001999999 1,1,2279,0.8990000001999999 @@ -19811,9 +19811,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2290,0.8939896417000001 1,1,2291,0.8900505372999999 1,1,2292,0.8861114332 -1,1,2293,0.8841418812999998 -1,1,2294,0.8841418812999998 -1,1,2295,0.8841418812999998 +1,1,2293,0.8841418812999999 +1,1,2294,0.8841418812999999 +1,1,2295,0.8841418812999999 1,1,2296,0.8861114332 1,1,2297,0.8880809851 1,1,2298,0.8939896417000001 @@ -19831,21 +19831,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2310,0.8990000001999999 1,1,2311,0.8939896417000001 1,1,2312,0.8900505372999999 -1,1,2313,0.8841418812999998 -1,1,2314,0.8821723288 -1,1,2315,0.8782332246999999 +1,1,2313,0.8841418812999999 +1,1,2314,0.8821723288000001 +1,1,2315,0.8782332247 1,1,2316,0.8762636728 1,1,2317,0.8742941203 1,1,2318,0.8723245680999999 1,1,2319,0.8723245680999999 1,1,2320,0.8742941203 1,1,2321,0.8762636728 -1,1,2322,0.8841418812999998 +1,1,2322,0.8841418812999999 1,1,2323,0.8900505372999999 1,1,2324,0.8920200892 1,1,2325,0.8939896417000001 1,1,2326,0.8959591936 -1,1,2327,0.8979287454999999 +1,1,2327,0.8979287455 1,1,2328,0.8990000001999999 1,1,2329,0.8990000001999999 1,1,2330,0.8990000001999999 @@ -19856,14 +19856,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2335,0.8990000001999999 1,1,2336,0.8920200892 1,1,2337,0.8861114332 -1,1,2338,0.8802027765999999 +1,1,2338,0.8802027766 1,1,2339,0.8762636728 1,1,2340,0.8742941203 1,1,2341,0.8723245680999999 1,1,2342,0.8723245680999999 1,1,2343,0.8723245680999999 1,1,2344,0.8742941203 -1,1,2345,0.8782332246999999 +1,1,2345,0.8782332247 1,1,2346,0.8880809851 1,1,2347,0.8939896417000001 1,1,2348,0.8939896417000001 @@ -19880,21 +19880,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2359,0.8990000001999999 1,1,2360,0.8939896417000001 1,1,2361,0.8900505372999999 -1,1,2362,0.8841418812999998 -1,1,2363,0.8821723288 -1,1,2364,0.8782332246999999 +1,1,2362,0.8841418812999999 +1,1,2363,0.8821723288000001 +1,1,2364,0.8782332247 1,1,2365,0.8762636728 1,1,2366,0.8742941203 1,1,2367,0.8742941203 1,1,2368,0.8762636728 -1,1,2369,0.8782332246999999 -1,1,2370,0.8841418812999998 +1,1,2369,0.8782332247 +1,1,2370,0.8841418812999999 1,1,2371,0.8880809851 1,1,2372,0.8900505372999999 1,1,2373,0.8920200892 1,1,2374,0.8939896417000001 1,1,2375,0.8959591936 -1,1,2376,0.8979287454999999 +1,1,2376,0.8979287455 1,1,2377,0.8990000001999999 1,1,2378,0.8990000001999999 1,1,2379,0.8990000001999999 @@ -19912,7 +19912,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2391,0.8900505372999999 1,1,2392,0.8920200892 1,1,2393,0.8939896417000001 -1,1,2394,0.8979287454999999 +1,1,2394,0.8979287455 1,1,2395,0.8990000001999999 1,1,2396,0.8990000001999999 1,1,2397,0.8990000001999999 @@ -19927,7 +19927,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2406,0.8990000001999999 1,1,2407,0.8990000001999999 1,1,2408,0.8990000001999999 -1,1,2409,0.8979287454999999 +1,1,2409,0.8979287455 1,1,2410,0.8939896417000001 1,1,2411,0.8920200892 1,1,2412,0.8900505372999999 @@ -19959,7 +19959,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2438,0.8900505372999999 1,1,2439,0.8920200892 1,1,2440,0.8939896417000001 -1,1,2441,0.8979287454999999 +1,1,2441,0.8979287455 1,1,2442,0.8990000001999999 1,1,2443,0.8990000001999999 1,1,2444,0.8990000001999999 @@ -19975,7 +19975,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2454,0.8990000001999999 1,1,2455,0.8990000001999999 1,1,2456,0.8990000001999999 -1,1,2457,0.8979287454999999 +1,1,2457,0.8979287455 1,1,2458,0.8939896417000001 1,1,2459,0.8920200892 1,1,2460,0.8900505372999999 @@ -20004,8 +20004,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2483,0.8900505372999999 1,1,2484,0.8880809851 1,1,2485,0.8861114332 -1,1,2486,0.8841418812999998 -1,1,2487,0.8841418812999998 +1,1,2486,0.8841418812999999 +1,1,2487,0.8841418812999999 1,1,2488,0.8861114332 1,1,2489,0.8880809851 1,1,2490,0.8939896417000001 @@ -20025,18 +20025,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2504,0.8959591936 1,1,2505,0.8900505372999999 1,1,2506,0.8861114332 -1,1,2507,0.8841418812999998 -1,1,2508,0.8802027765999999 -1,1,2509,0.8782332246999999 +1,1,2507,0.8841418812999999 +1,1,2508,0.8802027766 +1,1,2509,0.8782332247 1,1,2510,0.8762636728 1,1,2511,0.8762636728 -1,1,2512,0.8782332246999999 -1,1,2513,0.8802027765999999 +1,1,2512,0.8782332247 +1,1,2513,0.8802027766 1,1,2514,0.8861114332 1,1,2515,0.8920200892 1,1,2516,0.8939896417000001 1,1,2517,0.8959591936 -1,1,2518,0.8979287454999999 +1,1,2518,0.8979287455 1,1,2519,0.8990000001999999 1,1,2520,0.8990000001999999 1,1,2521,0.8990000001999999 @@ -20052,8 +20052,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2531,0.8900505372999999 1,1,2532,0.8880809851 1,1,2533,0.8861114332 -1,1,2534,0.8841418812999998 -1,1,2535,0.8841418812999998 +1,1,2534,0.8841418812999999 +1,1,2535,0.8841418812999999 1,1,2536,0.8861114332 1,1,2537,0.8880809851 1,1,2538,0.8939896417000001 @@ -20075,9 +20075,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2554,0.8939896417000001 1,1,2555,0.8900505372999999 1,1,2556,0.8861114332 -1,1,2557,0.8841418812999998 -1,1,2558,0.8841418812999998 -1,1,2559,0.8841418812999998 +1,1,2557,0.8841418812999999 +1,1,2558,0.8841418812999999 +1,1,2559,0.8841418812999999 1,1,2560,0.8861114332 1,1,2561,0.8880809851 1,1,2562,0.8939896417000001 @@ -20095,7 +20095,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2574,0.8990000001999999 1,1,2575,0.8990000001999999 1,1,2576,0.8990000001999999 -1,1,2577,0.8979287454999999 +1,1,2577,0.8979287455 1,1,2578,0.8920200892 1,1,2579,0.8900505372999999 1,1,2580,0.8880809851 @@ -20119,7 +20119,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2598,0.8990000001999999 1,1,2599,0.8990000001999999 1,1,2600,0.8990000001999999 -1,1,2601,0.8979287454999999 +1,1,2601,0.8979287455 1,1,2602,0.8939896417000001 1,1,2603,0.8920200892 1,1,2604,0.8900505372999999 @@ -20168,14 +20168,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2647,0.8990000001999999 1,1,2648,0.8920200892 1,1,2649,0.8861114332 -1,1,2650,0.8802027765999999 +1,1,2650,0.8802027766 1,1,2651,0.8762636728 1,1,2652,0.8742941203 1,1,2653,0.8723245680999999 1,1,2654,0.8723245680999999 1,1,2655,0.8723245680999999 1,1,2656,0.8742941203 -1,1,2657,0.8782332246999999 +1,1,2657,0.8782332247 1,1,2658,0.8880809851 1,1,2659,0.8939896417000001 1,1,2660,0.8939896417000001 @@ -20201,7 +20201,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2680,0.8920200892 1,1,2681,0.8939896417000001 1,1,2682,0.8959591936 -1,1,2683,0.8979287454999999 +1,1,2683,0.8979287455 1,1,2684,0.8990000001999999 1,1,2685,0.8990000001999999 1,1,2686,0.8990000001999999 @@ -20239,13 +20239,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2718,0.8990000001999999 1,1,2719,0.8990000001999999 1,1,2720,0.8990000001999999 -1,1,2721,0.8979287454999999 +1,1,2721,0.8979287455 1,1,2722,0.8939896417000001 1,1,2723,0.8900505372999999 1,1,2724,0.8880809851 1,1,2725,0.8861114332 -1,1,2726,0.8841418812999998 -1,1,2727,0.8841418812999998 +1,1,2726,0.8841418812999999 +1,1,2727,0.8841418812999999 1,1,2728,0.8861114332 1,1,2729,0.8880809851 1,1,2730,0.8939896417000001 @@ -20265,15 +20265,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2744,0.8959591936 1,1,2745,0.8920200892 1,1,2746,0.8880809851 -1,1,2747,0.8841418812999998 -1,1,2748,0.8821723288 -1,1,2749,0.8802027765999999 -1,1,2750,0.8802027765999999 -1,1,2751,0.8821723288 -1,1,2752,0.8841418812999998 +1,1,2747,0.8841418812999999 +1,1,2748,0.8821723288000001 +1,1,2749,0.8802027766 +1,1,2750,0.8802027766 +1,1,2751,0.8821723288000001 +1,1,2752,0.8841418812999999 1,1,2753,0.8880809851 1,1,2754,0.8939896417000001 -1,1,2755,0.8979287454999999 +1,1,2755,0.8979287455 1,1,2756,0.8990000001999999 1,1,2757,0.8990000001999999 1,1,2758,0.8990000001999999 @@ -20289,15 +20289,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2768,0.8959591936 1,1,2769,0.8920200892 1,1,2770,0.8880809851 -1,1,2771,0.8841418812999998 -1,1,2772,0.8821723288 -1,1,2773,0.8802027765999999 -1,1,2774,0.8802027765999999 -1,1,2775,0.8821723288 -1,1,2776,0.8841418812999998 +1,1,2771,0.8841418812999999 +1,1,2772,0.8821723288000001 +1,1,2773,0.8802027766 +1,1,2774,0.8802027766 +1,1,2775,0.8821723288000001 +1,1,2776,0.8841418812999999 1,1,2777,0.8880809851 1,1,2778,0.8939896417000001 -1,1,2779,0.8979287454999999 +1,1,2779,0.8979287455 1,1,2780,0.8990000001999999 1,1,2781,0.8990000001999999 1,1,2782,0.8990000001999999 @@ -20312,18 +20312,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2791,0.8990000001999999 1,1,2792,0.8959591936 1,1,2793,0.8900505372999999 -1,1,2794,0.8841418812999998 -1,1,2795,0.8782332246999999 +1,1,2794,0.8841418812999999 +1,1,2795,0.8782332247 1,1,2796,0.8742941203 1,1,2797,0.8723245680999999 1,1,2798,0.8723245680999999 1,1,2799,0.8742941203 1,1,2800,0.8762636728 -1,1,2801,0.8802027765999999 +1,1,2801,0.8802027766 1,1,2802,0.8861114332 1,1,2803,0.8920200892 1,1,2804,0.8959591936 -1,1,2805,0.8979287454999999 +1,1,2805,0.8979287455 1,1,2806,0.8990000001999999 1,1,2807,0.8990000001999999 1,1,2808,0.8990000001999999 @@ -20360,21 +20360,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2839,0.8990000001999999 1,1,2840,0.8939896417000001 1,1,2841,0.8900505372999999 -1,1,2842,0.8841418812999998 -1,1,2843,0.8821723288 -1,1,2844,0.8782332246999999 +1,1,2842,0.8841418812999999 +1,1,2843,0.8821723288000001 +1,1,2844,0.8782332247 1,1,2845,0.8762636728 1,1,2846,0.8742941203 1,1,2847,0.8742941203 1,1,2848,0.8762636728 -1,1,2849,0.8782332246999999 -1,1,2850,0.8841418812999998 +1,1,2849,0.8782332247 +1,1,2850,0.8841418812999999 1,1,2851,0.8880809851 1,1,2852,0.8900505372999999 1,1,2853,0.8920200892 1,1,2854,0.8939896417000001 1,1,2855,0.8959591936 -1,1,2856,0.8979287454999999 +1,1,2856,0.8979287455 1,1,2857,0.8990000001999999 1,1,2858,0.8990000001999999 1,1,2859,0.8990000001999999 @@ -20385,18 +20385,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2864,0.8959591936 1,1,2865,0.8900505372999999 1,1,2866,0.8861114332 -1,1,2867,0.8841418812999998 -1,1,2868,0.8802027765999999 -1,1,2869,0.8782332246999999 +1,1,2867,0.8841418812999999 +1,1,2868,0.8802027766 +1,1,2869,0.8782332247 1,1,2870,0.8762636728 1,1,2871,0.8762636728 -1,1,2872,0.8782332246999999 -1,1,2873,0.8802027765999999 +1,1,2872,0.8782332247 +1,1,2873,0.8802027766 1,1,2874,0.8861114332 1,1,2875,0.8920200892 1,1,2876,0.8939896417000001 1,1,2877,0.8959591936 -1,1,2878,0.8979287454999999 +1,1,2878,0.8979287455 1,1,2879,0.8990000001999999 1,1,2880,0.8990000001999999 1,1,2881,0.8990000001999999 @@ -20404,20 +20404,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2883,0.8990000001999999 1,1,2884,0.8990000001999999 1,1,2885,0.8990000001999999 -1,1,2886,0.8979287454999999 +1,1,2886,0.8979287455 1,1,2887,0.8920200892 1,1,2888,0.8880809851 -1,1,2889,0.8821723288 -1,1,2890,0.8782332246999999 +1,1,2889,0.8821723288000001 +1,1,2890,0.8782332247 1,1,2891,0.8742941203 1,1,2892,0.8723245680999999 -1,1,2893,0.8703550161999999 -1,1,2894,0.8683854642999999 -1,1,2895,0.8683854642999999 -1,1,2896,0.8703550161999999 +1,1,2893,0.8703550162 +1,1,2894,0.8683854643 +1,1,2895,0.8683854643 +1,1,2896,0.8703550162 1,1,2897,0.8723245680999999 1,1,2898,0.8762636728 -1,1,2899,0.8841418812999998 +1,1,2899,0.8841418812999999 1,1,2900,0.8861114332 1,1,2901,0.8880809851 1,1,2902,0.8920200892 @@ -20428,20 +20428,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2907,0.8990000001999999 1,1,2908,0.8990000001999999 1,1,2909,0.8990000001999999 -1,1,2910,0.8979287454999999 +1,1,2910,0.8979287455 1,1,2911,0.8920200892 1,1,2912,0.8880809851 -1,1,2913,0.8821723288 -1,1,2914,0.8782332246999999 +1,1,2913,0.8821723288000001 +1,1,2914,0.8782332247 1,1,2915,0.8742941203 1,1,2916,0.8723245680999999 -1,1,2917,0.8703550161999999 -1,1,2918,0.8683854642999999 -1,1,2919,0.8683854642999999 -1,1,2920,0.8703550161999999 +1,1,2917,0.8703550162 +1,1,2918,0.8683854643 +1,1,2919,0.8683854643 +1,1,2920,0.8703550162 1,1,2921,0.8723245680999999 1,1,2922,0.8762636728 -1,1,2923,0.8841418812999998 +1,1,2923,0.8841418812999999 1,1,2924,0.8861114332 1,1,2925,0.8880809851 1,1,2926,0.8920200892 @@ -20456,20 +20456,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2935,0.8990000001999999 1,1,2936,0.8939896417000001 1,1,2937,0.8880809851 -1,1,2938,0.8841418812999998 -1,1,2939,0.8802027765999999 -1,1,2940,0.8782332246999999 +1,1,2938,0.8841418812999999 +1,1,2939,0.8802027766 +1,1,2940,0.8782332247 1,1,2941,0.8762636728 1,1,2942,0.8742941203 1,1,2943,0.8742941203 1,1,2944,0.8762636728 -1,1,2945,0.8782332246999999 -1,1,2946,0.8841418812999998 +1,1,2945,0.8782332247 +1,1,2946,0.8841418812999999 1,1,2947,0.8900505372999999 1,1,2948,0.8939896417000001 1,1,2949,0.8959591936 -1,1,2950,0.8979287454999999 -1,1,2951,0.8979287454999999 +1,1,2950,0.8979287455 +1,1,2951,0.8979287455 1,1,2952,0.8990000001999999 1,1,2953,0.8990000001999999 1,1,2954,0.8990000001999999 @@ -20480,20 +20480,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2959,0.8990000001999999 1,1,2960,0.8939896417000001 1,1,2961,0.8880809851 -1,1,2962,0.8841418812999998 -1,1,2963,0.8802027765999999 -1,1,2964,0.8782332246999999 +1,1,2962,0.8841418812999999 +1,1,2963,0.8802027766 +1,1,2964,0.8782332247 1,1,2965,0.8762636728 1,1,2966,0.8742941203 1,1,2967,0.8742941203 1,1,2968,0.8762636728 -1,1,2969,0.8782332246999999 -1,1,2970,0.8841418812999998 +1,1,2969,0.8782332247 +1,1,2970,0.8841418812999999 1,1,2971,0.8900505372999999 1,1,2972,0.8939896417000001 1,1,2973,0.8959591936 -1,1,2974,0.8979287454999999 -1,1,2975,0.8979287454999999 +1,1,2974,0.8979287455 +1,1,2975,0.8979287455 1,1,2976,0.8990000001999999 1,1,2977,0.8990000001999999 1,1,2978,0.8990000001999999 @@ -20502,20 +20502,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,2981,0.8990000001999999 1,1,2982,0.8990000001999999 1,1,2983,0.8990000001999999 -1,1,2984,0.8979287454999999 +1,1,2984,0.8979287455 1,1,2985,0.8939896417000001 1,1,2986,0.8900505372999999 1,1,2987,0.8861114332 -1,1,2988,0.8821723288 -1,1,2989,0.8802027765999999 -1,1,2990,0.8782332246999999 -1,1,2991,0.8782332246999999 -1,1,2992,0.8802027765999999 -1,1,2993,0.8821723288 +1,1,2988,0.8821723288000001 +1,1,2989,0.8802027766 +1,1,2990,0.8782332247 +1,1,2991,0.8782332247 +1,1,2992,0.8802027766 +1,1,2993,0.8821723288000001 1,1,2994,0.8861114332 1,1,2995,0.8920200892 1,1,2996,0.8959591936 -1,1,2997,0.8979287454999999 +1,1,2997,0.8979287455 1,1,2998,0.8990000001999999 1,1,2999,0.8990000001999999 1,1,3000,0.8990000001999999 @@ -20525,45 +20525,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3004,0.8990000001999999 1,1,3005,0.8990000001999999 1,1,3006,0.8990000001999999 -1,1,3007,0.8979287454999999 +1,1,3007,0.8979287455 1,1,3008,0.8920200892 1,1,3009,0.8880809851 -1,1,3010,0.8841418812999998 -1,1,3011,0.8802027765999999 +1,1,3010,0.8841418812999999 +1,1,3011,0.8802027766 1,1,3012,0.8762636728 1,1,3013,0.8742941203 1,1,3014,0.8742941203 1,1,3015,0.8742941203 1,1,3016,0.8762636728 -1,1,3017,0.8782332246999999 -1,1,3018,0.8841418812999998 +1,1,3017,0.8782332247 +1,1,3018,0.8841418812999999 1,1,3019,0.8920200892 1,1,3020,0.8959591936 -1,1,3021,0.8979287454999999 +1,1,3021,0.8979287455 1,1,3022,0.8990000001999999 1,1,3023,0.8990000001999999 1,1,3024,0.8990000001999999 1,1,3025,0.8959591936 -1,1,3026,0.8979287454999999 +1,1,3026,0.8979287455 1,1,3027,0.8990000001999999 1,1,3028,0.8990000001999999 1,1,3029,0.8990000001999999 -1,1,3030,0.8979287454999999 +1,1,3030,0.8979287455 1,1,3031,0.8920200892 1,1,3032,0.8861114332 -1,1,3033,0.8821723288 -1,1,3034,0.8782332246999999 +1,1,3033,0.8821723288000001 +1,1,3034,0.8782332247 1,1,3035,0.8723245680999999 -1,1,3036,0.8703550161999999 -1,1,3037,0.8683854642999999 +1,1,3036,0.8703550162 +1,1,3037,0.8683854643 1,1,3038,0.8664159117999999 1,1,3039,0.8644463599 1,1,3040,0.8664159117999999 -1,1,3041,0.8683854642999999 +1,1,3041,0.8683854643 1,1,3042,0.8742941203 -1,1,3043,0.8802027765999999 -1,1,3044,0.8841418812999998 -1,1,3045,0.8841418812999998 +1,1,3043,0.8802027766 +1,1,3044,0.8841418812999999 +1,1,3045,0.8841418812999999 1,1,3046,0.8861114332 1,1,3047,0.8880809851 1,1,3048,0.8900505372999999 @@ -20585,7 +20585,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3064,0.8900505372999999 1,1,3065,0.8939896417000001 1,1,3066,0.8959591936 -1,1,3067,0.8979287454999999 +1,1,3067,0.8979287455 1,1,3068,0.8990000001999999 1,1,3069,0.8990000001999999 1,1,3070,0.8990000001999999 @@ -20597,21 +20597,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3076,0.8990000001999999 1,1,3077,0.8990000001999999 1,1,3078,0.8990000001999999 -1,1,3079,0.8979287454999999 +1,1,3079,0.8979287455 1,1,3080,0.8920200892 1,1,3081,0.8880809851 -1,1,3082,0.8841418812999998 -1,1,3083,0.8802027765999999 +1,1,3082,0.8841418812999999 +1,1,3083,0.8802027766 1,1,3084,0.8762636728 1,1,3085,0.8742941203 1,1,3086,0.8742941203 1,1,3087,0.8742941203 1,1,3088,0.8762636728 -1,1,3089,0.8782332246999999 -1,1,3090,0.8841418812999998 +1,1,3089,0.8782332247 +1,1,3090,0.8841418812999999 1,1,3091,0.8920200892 1,1,3092,0.8959591936 -1,1,3093,0.8979287454999999 +1,1,3093,0.8979287455 1,1,3094,0.8990000001999999 1,1,3095,0.8990000001999999 1,1,3096,0.8990000001999999 @@ -20624,39 +20624,39 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3103,0.8959591936 1,1,3104,0.8920200892 1,1,3105,0.8861114332 -1,1,3106,0.8821723288 -1,1,3107,0.8782332246999999 +1,1,3106,0.8821723288000001 +1,1,3107,0.8782332247 1,1,3108,0.8762636728 1,1,3109,0.8742941203 1,1,3110,0.8723245680999999 -1,1,3111,0.8703550161999999 +1,1,3111,0.8703550162 1,1,3112,0.8723245680999999 1,1,3113,0.8742941203 -1,1,3114,0.8782332246999999 +1,1,3114,0.8782332247 1,1,3115,0.8861114332 1,1,3116,0.8900505372999999 1,1,3117,0.8920200892 1,1,3118,0.8959591936 -1,1,3119,0.8979287454999999 +1,1,3119,0.8979287455 1,1,3120,0.8990000001999999 -1,1,3121,0.8979287454999999 +1,1,3121,0.8979287455 1,1,3122,0.8990000001999999 1,1,3123,0.8990000001999999 1,1,3124,0.8990000001999999 1,1,3125,0.8990000001999999 -1,1,3126,0.8979287454999999 +1,1,3126,0.8979287455 1,1,3127,0.8920200892 1,1,3128,0.8880809851 -1,1,3129,0.8841418812999998 -1,1,3130,0.8802027765999999 +1,1,3129,0.8841418812999999 +1,1,3130,0.8802027766 1,1,3131,0.8762636728 1,1,3132,0.8742941203 1,1,3133,0.8723245680999999 -1,1,3134,0.8703550161999999 +1,1,3134,0.8703550162 1,1,3135,0.8723245680999999 1,1,3136,0.8742941203 1,1,3137,0.8762636728 -1,1,3138,0.8802027765999999 +1,1,3138,0.8802027766 1,1,3139,0.8880809851 1,1,3140,0.8920200892 1,1,3141,0.8939896417000001 @@ -20669,46 +20669,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3148,0.8990000001999999 1,1,3149,0.8990000001999999 1,1,3150,0.8990000001999999 -1,1,3151,0.8979287454999999 +1,1,3151,0.8979287455 1,1,3152,0.8920200892 1,1,3153,0.8880809851 -1,1,3154,0.8841418812999998 -1,1,3155,0.8821723288 -1,1,3156,0.8782332246999999 +1,1,3154,0.8841418812999999 +1,1,3155,0.8821723288000001 +1,1,3156,0.8782332247 1,1,3157,0.8762636728 1,1,3158,0.8762636728 1,1,3159,0.8762636728 1,1,3160,0.8762636728 -1,1,3161,0.8782332246999999 -1,1,3162,0.8841418812999998 +1,1,3161,0.8782332247 +1,1,3162,0.8841418812999999 1,1,3163,0.8880809851 1,1,3164,0.8900505372999999 1,1,3165,0.8920200892 1,1,3166,0.8939896417000001 1,1,3167,0.8959591936 -1,1,3168,0.8979287454999999 +1,1,3168,0.8979287455 1,1,3169,0.8990000001999999 1,1,3170,0.8990000001999999 1,1,3171,0.8990000001999999 1,1,3172,0.8990000001999999 1,1,3173,0.8990000001999999 1,1,3174,0.8990000001999999 -1,1,3175,0.8979287454999999 +1,1,3175,0.8979287455 1,1,3176,0.8939896417000001 1,1,3177,0.8900505372999999 1,1,3178,0.8861114332 -1,1,3179,0.8821723288 -1,1,3180,0.8802027765999999 -1,1,3181,0.8782332246999999 -1,1,3182,0.8782332246999999 -1,1,3183,0.8782332246999999 -1,1,3184,0.8802027765999999 -1,1,3185,0.8821723288 -1,1,3186,0.8841418812999998 +1,1,3179,0.8821723288000001 +1,1,3180,0.8802027766 +1,1,3181,0.8782332247 +1,1,3182,0.8782332247 +1,1,3183,0.8782332247 +1,1,3184,0.8802027766 +1,1,3185,0.8821723288000001 +1,1,3186,0.8841418812999999 1,1,3187,0.8900505372999999 1,1,3188,0.8959591936 1,1,3189,0.8959591936 -1,1,3190,0.8979287454999999 +1,1,3190,0.8979287455 1,1,3191,0.8990000001999999 1,1,3192,0.8990000001999999 1,1,3193,0.8990000001999999 @@ -20721,15 +20721,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3200,0.8959591936 1,1,3201,0.8920200892 1,1,3202,0.8880809851 -1,1,3203,0.8841418812999998 -1,1,3204,0.8821723288 -1,1,3205,0.8802027765999999 -1,1,3206,0.8802027765999999 -1,1,3207,0.8821723288 -1,1,3208,0.8841418812999998 +1,1,3203,0.8841418812999999 +1,1,3204,0.8821723288000001 +1,1,3205,0.8802027766 +1,1,3206,0.8802027766 +1,1,3207,0.8821723288000001 +1,1,3208,0.8841418812999999 1,1,3209,0.8880809851 1,1,3210,0.8939896417000001 -1,1,3211,0.8979287454999999 +1,1,3211,0.8979287455 1,1,3212,0.8990000001999999 1,1,3213,0.8990000001999999 1,1,3214,0.8990000001999999 @@ -20741,18 +20741,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3220,0.8990000001999999 1,1,3221,0.8990000001999999 1,1,3222,0.8990000001999999 -1,1,3223,0.8979287454999999 +1,1,3223,0.8979287455 1,1,3224,0.8920200892 1,1,3225,0.8880809851 -1,1,3226,0.8821723288 -1,1,3227,0.8802027765999999 +1,1,3226,0.8821723288000001 +1,1,3227,0.8802027766 1,1,3228,0.8762636728 1,1,3229,0.8742941203 1,1,3230,0.8723245680999999 1,1,3231,0.8723245680999999 1,1,3232,0.8723245680999999 1,1,3233,0.8742941203 -1,1,3234,0.8802027765999999 +1,1,3234,0.8802027766 1,1,3235,0.8861114332 1,1,3236,0.8900505372999999 1,1,3237,0.8900505372999999 @@ -20760,25 +20760,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3239,0.8939896417000001 1,1,3240,0.8959591936 1,1,3241,0.8959591936 -1,1,3242,0.8979287454999999 -1,1,3243,0.8979287454999999 -1,1,3244,0.8979287454999999 -1,1,3245,0.8979287454999999 +1,1,3242,0.8979287455 +1,1,3243,0.8979287455 +1,1,3244,0.8979287455 +1,1,3245,0.8979287455 1,1,3246,0.8959591936 1,1,3247,0.8900505372999999 1,1,3248,0.8861114332 -1,1,3249,0.8802027765999999 +1,1,3249,0.8802027766 1,1,3250,0.8762636728 1,1,3251,0.8723245680999999 -1,1,3252,0.8683854642999999 +1,1,3252,0.8683854643 1,1,3253,0.8664159117999999 1,1,3254,0.8644463599 1,1,3255,0.8644463599 1,1,3256,0.8664159117999999 -1,1,3257,0.8683854642999999 +1,1,3257,0.8683854643 1,1,3258,0.8723245680999999 -1,1,3259,0.8802027765999999 -1,1,3260,0.8841418812999998 +1,1,3259,0.8802027766 +1,1,3260,0.8841418812999999 1,1,3261,0.8861114332 1,1,3262,0.8880809851 1,1,3263,0.8900505372999999 @@ -20792,20 +20792,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3271,0.8959591936 1,1,3272,0.8920200892 1,1,3273,0.8861114332 -1,1,3274,0.8821723288 -1,1,3275,0.8782332246999999 +1,1,3274,0.8821723288000001 +1,1,3275,0.8782332247 1,1,3276,0.8762636728 1,1,3277,0.8742941203 1,1,3278,0.8723245680999999 -1,1,3279,0.8703550161999999 +1,1,3279,0.8703550162 1,1,3280,0.8723245680999999 1,1,3281,0.8742941203 -1,1,3282,0.8782332246999999 +1,1,3282,0.8782332247 1,1,3283,0.8861114332 1,1,3284,0.8900505372999999 1,1,3285,0.8920200892 1,1,3286,0.8959591936 -1,1,3287,0.8979287454999999 +1,1,3287,0.8979287455 1,1,3288,0.8990000001999999 1,1,3289,0.8990000001999999 1,1,3290,0.8990000001999999 @@ -20816,23 +20816,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3295,0.8959591936 1,1,3296,0.8920200892 1,1,3297,0.8861114332 -1,1,3298,0.8821723288 -1,1,3299,0.8782332246999999 +1,1,3298,0.8821723288000001 +1,1,3299,0.8782332247 1,1,3300,0.8762636728 1,1,3301,0.8742941203 1,1,3302,0.8723245680999999 -1,1,3303,0.8703550161999999 +1,1,3303,0.8703550162 1,1,3304,0.8723245680999999 1,1,3305,0.8742941203 -1,1,3306,0.8782332246999999 +1,1,3306,0.8782332247 1,1,3307,0.8861114332 1,1,3308,0.8900505372999999 1,1,3309,0.8920200892 1,1,3310,0.8959591936 -1,1,3311,0.8979287454999999 +1,1,3311,0.8979287455 1,1,3312,0.8990000001999999 1,1,3313,0.8959591936 -1,1,3314,0.8979287454999999 +1,1,3314,0.8979287455 1,1,3315,0.8990000001999999 1,1,3316,0.8990000001999999 1,1,3317,0.8990000001999999 @@ -20840,17 +20840,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3319,0.8959591936 1,1,3320,0.8920200892 1,1,3321,0.8880809851 -1,1,3322,0.8841418812999998 -1,1,3323,0.8821723288 -1,1,3324,0.8802027765999999 -1,1,3325,0.8782332246999999 +1,1,3322,0.8841418812999999 +1,1,3323,0.8821723288000001 +1,1,3324,0.8802027766 +1,1,3325,0.8782332247 1,1,3326,0.8762636728 -1,1,3327,0.8782332246999999 -1,1,3328,0.8802027765999999 -1,1,3329,0.8821723288 +1,1,3327,0.8782332247 +1,1,3328,0.8802027766 +1,1,3329,0.8821723288000001 1,1,3330,0.8880809851 1,1,3331,0.8939896417000001 -1,1,3332,0.8979287454999999 +1,1,3332,0.8979287455 1,1,3333,0.8990000001999999 1,1,3334,0.8990000001999999 1,1,3335,0.8990000001999999 @@ -20861,18 +20861,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3340,0.8990000001999999 1,1,3341,0.8990000001999999 1,1,3342,0.8990000001999999 -1,1,3343,0.8979287454999999 +1,1,3343,0.8979287455 1,1,3344,0.8920200892 1,1,3345,0.8880809851 -1,1,3346,0.8821723288 -1,1,3347,0.8802027765999999 +1,1,3346,0.8821723288000001 +1,1,3347,0.8802027766 1,1,3348,0.8762636728 1,1,3349,0.8742941203 1,1,3350,0.8723245680999999 1,1,3351,0.8723245680999999 1,1,3352,0.8723245680999999 1,1,3353,0.8742941203 -1,1,3354,0.8802027765999999 +1,1,3354,0.8802027766 1,1,3355,0.8861114332 1,1,3356,0.8900505372999999 1,1,3357,0.8900505372999999 @@ -20888,20 +20888,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3367,0.8990000001999999 1,1,3368,0.8939896417000001 1,1,3369,0.8880809851 -1,1,3370,0.8841418812999998 -1,1,3371,0.8802027765999999 -1,1,3372,0.8782332246999999 +1,1,3370,0.8841418812999999 +1,1,3371,0.8802027766 +1,1,3372,0.8782332247 1,1,3373,0.8762636728 1,1,3374,0.8742941203 1,1,3375,0.8742941203 1,1,3376,0.8762636728 -1,1,3377,0.8782332246999999 -1,1,3378,0.8821723288 +1,1,3377,0.8782332247 +1,1,3378,0.8821723288000001 1,1,3379,0.8880809851 1,1,3380,0.8920200892 1,1,3381,0.8939896417000001 1,1,3382,0.8959591936 -1,1,3383,0.8979287454999999 +1,1,3383,0.8979287455 1,1,3384,0.8990000001999999 1,1,3385,0.8990000001999999 1,1,3386,0.8990000001999999 @@ -20910,7 +20910,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3389,0.8990000001999999 1,1,3390,0.8990000001999999 1,1,3391,0.8990000001999999 -1,1,3392,0.8979287454999999 +1,1,3392,0.8979287455 1,1,3393,0.8959591936 1,1,3394,0.8939896417000001 1,1,3395,0.8920200892 @@ -20936,20 +20936,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3415,0.8990000001999999 1,1,3416,0.8939896417000001 1,1,3417,0.8880809851 -1,1,3418,0.8841418812999998 -1,1,3419,0.8802027765999999 -1,1,3420,0.8782332246999999 +1,1,3418,0.8841418812999999 +1,1,3419,0.8802027766 +1,1,3420,0.8782332247 1,1,3421,0.8762636728 1,1,3422,0.8742941203 1,1,3423,0.8742941203 1,1,3424,0.8762636728 -1,1,3425,0.8782332246999999 -1,1,3426,0.8821723288 +1,1,3425,0.8782332247 +1,1,3426,0.8821723288000001 1,1,3427,0.8880809851 1,1,3428,0.8920200892 1,1,3429,0.8939896417000001 1,1,3430,0.8959591936 -1,1,3431,0.8979287454999999 +1,1,3431,0.8979287455 1,1,3432,0.8990000001999999 1,1,3433,0.8990000001999999 1,1,3434,0.8990000001999999 @@ -20960,39 +20960,39 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3439,0.8990000001999999 1,1,3440,0.8939896417000001 1,1,3441,0.8880809851 -1,1,3442,0.8841418812999998 -1,1,3443,0.8802027765999999 -1,1,3444,0.8782332246999999 +1,1,3442,0.8841418812999999 +1,1,3443,0.8802027766 +1,1,3444,0.8782332247 1,1,3445,0.8762636728 1,1,3446,0.8742941203 1,1,3447,0.8742941203 1,1,3448,0.8762636728 -1,1,3449,0.8782332246999999 -1,1,3450,0.8821723288 +1,1,3449,0.8782332247 +1,1,3450,0.8821723288000001 1,1,3451,0.8880809851 1,1,3452,0.8920200892 1,1,3453,0.8939896417000001 1,1,3454,0.8959591936 -1,1,3455,0.8979287454999999 +1,1,3455,0.8979287455 1,1,3456,0.8990000001999999 -1,1,3457,0.8979287454999999 -1,1,3458,0.8979287454999999 -1,1,3459,0.8979287454999999 -1,1,3460,0.8979287454999999 -1,1,3461,0.8979287454999999 +1,1,3457,0.8979287455 +1,1,3458,0.8979287455 +1,1,3459,0.8979287455 +1,1,3460,0.8979287455 +1,1,3461,0.8979287455 1,1,3462,0.8959591936 1,1,3463,0.8939896417000001 1,1,3464,0.8900505372999999 1,1,3465,0.8861114332 -1,1,3466,0.8821723288 -1,1,3467,0.8802027765999999 -1,1,3468,0.8782332246999999 +1,1,3466,0.8821723288000001 +1,1,3467,0.8802027766 +1,1,3468,0.8782332247 1,1,3469,0.8762636728 1,1,3470,0.8742941203 1,1,3471,0.8742941203 1,1,3472,0.8762636728 -1,1,3473,0.8782332246999999 -1,1,3474,0.8802027765999999 +1,1,3473,0.8782332247 +1,1,3474,0.8802027766 1,1,3475,0.8861114332 1,1,3476,0.8900505372999999 1,1,3477,0.8920200892 @@ -21004,44 +21004,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3483,0.8990000001999999 1,1,3484,0.8990000001999999 1,1,3485,0.8990000001999999 -1,1,3486,0.8979287454999999 +1,1,3486,0.8979287455 1,1,3487,0.8920200892 1,1,3488,0.8880809851 -1,1,3489,0.8821723288 -1,1,3490,0.8782332246999999 +1,1,3489,0.8821723288000001 +1,1,3490,0.8782332247 1,1,3491,0.8742941203 1,1,3492,0.8723245680999999 -1,1,3493,0.8703550161999999 -1,1,3494,0.8683854642999999 -1,1,3495,0.8683854642999999 -1,1,3496,0.8703550161999999 +1,1,3493,0.8703550162 +1,1,3494,0.8683854643 +1,1,3495,0.8683854643 +1,1,3496,0.8703550162 1,1,3497,0.8723245680999999 1,1,3498,0.8762636728 -1,1,3499,0.8841418812999998 +1,1,3499,0.8841418812999999 1,1,3500,0.8861114332 1,1,3501,0.8880809851 1,1,3502,0.8920200892 1,1,3503,0.8939896417000001 1,1,3504,0.8959591936 -1,1,3505,0.8979287454999999 +1,1,3505,0.8979287455 1,1,3506,0.8990000001999999 1,1,3507,0.8990000001999999 1,1,3508,0.8990000001999999 1,1,3509,0.8990000001999999 -1,1,3510,0.8979287454999999 +1,1,3510,0.8979287455 1,1,3511,0.8920200892 1,1,3512,0.8861114332 -1,1,3513,0.8821723288 +1,1,3513,0.8821723288000001 1,1,3514,0.8762636728 1,1,3515,0.8723245680999999 -1,1,3516,0.8703550161999999 -1,1,3517,0.8683854642999999 +1,1,3516,0.8703550162 +1,1,3517,0.8683854643 1,1,3518,0.8664159117999999 1,1,3519,0.8664159117999999 -1,1,3520,0.8683854642999999 -1,1,3521,0.8703550161999999 +1,1,3520,0.8683854643 +1,1,3521,0.8703550162 1,1,3522,0.8762636728 -1,1,3523,0.8821723288 +1,1,3523,0.8821723288000001 1,1,3524,0.8861114332 1,1,3525,0.8880809851 1,1,3526,0.8900505372999999 @@ -21056,20 +21056,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3535,0.8990000001999999 1,1,3536,0.8939896417000001 1,1,3537,0.8880809851 -1,1,3538,0.8841418812999998 -1,1,3539,0.8802027765999999 -1,1,3540,0.8782332246999999 +1,1,3538,0.8841418812999999 +1,1,3539,0.8802027766 +1,1,3540,0.8782332247 1,1,3541,0.8762636728 1,1,3542,0.8742941203 1,1,3543,0.8742941203 1,1,3544,0.8762636728 -1,1,3545,0.8782332246999999 -1,1,3546,0.8841418812999998 +1,1,3545,0.8782332247 +1,1,3546,0.8841418812999999 1,1,3547,0.8900505372999999 1,1,3548,0.8939896417000001 1,1,3549,0.8959591936 -1,1,3550,0.8979287454999999 -1,1,3551,0.8979287454999999 +1,1,3550,0.8979287455 +1,1,3551,0.8979287455 1,1,3552,0.8990000001999999 1,1,3553,0.8990000001999999 1,1,3554,0.8990000001999999 @@ -21077,22 +21077,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3556,0.8990000001999999 1,1,3557,0.8990000001999999 1,1,3558,0.8990000001999999 -1,1,3559,0.8979287454999999 +1,1,3559,0.8979287455 1,1,3560,0.8939896417000001 1,1,3561,0.8900505372999999 1,1,3562,0.8861114332 -1,1,3563,0.8821723288 -1,1,3564,0.8802027765999999 -1,1,3565,0.8782332246999999 -1,1,3566,0.8782332246999999 -1,1,3567,0.8782332246999999 -1,1,3568,0.8802027765999999 -1,1,3569,0.8821723288 -1,1,3570,0.8841418812999998 +1,1,3563,0.8821723288000001 +1,1,3564,0.8802027766 +1,1,3565,0.8782332247 +1,1,3566,0.8782332247 +1,1,3567,0.8782332247 +1,1,3568,0.8802027766 +1,1,3569,0.8821723288000001 +1,1,3570,0.8841418812999999 1,1,3571,0.8900505372999999 1,1,3572,0.8959591936 1,1,3573,0.8959591936 -1,1,3574,0.8979287454999999 +1,1,3574,0.8979287455 1,1,3575,0.8990000001999999 1,1,3576,0.8990000001999999 1,1,3577,0.8990000001999999 @@ -21102,13 +21102,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3581,0.8990000001999999 1,1,3582,0.8990000001999999 1,1,3583,0.8990000001999999 -1,1,3584,0.8979287454999999 +1,1,3584,0.8979287455 1,1,3585,0.8959591936 1,1,3586,0.8920200892 1,1,3587,0.8880809851 -1,1,3588,0.8841418812999998 -1,1,3589,0.8821723288 -1,1,3590,0.8841418812999998 +1,1,3588,0.8841418812999999 +1,1,3589,0.8821723288000001 +1,1,3590,0.8841418812999999 1,1,3591,0.8861114332 1,1,3592,0.8880809851 1,1,3593,0.8900505372999999 @@ -21129,29 +21129,29 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3608,0.8959591936 1,1,3609,0.8920200892 1,1,3610,0.8880809851 -1,1,3611,0.8841418812999998 -1,1,3612,0.8821723288 -1,1,3613,0.8802027765999999 -1,1,3614,0.8802027765999999 -1,1,3615,0.8821723288 -1,1,3616,0.8841418812999998 +1,1,3611,0.8841418812999999 +1,1,3612,0.8821723288000001 +1,1,3613,0.8802027766 +1,1,3614,0.8802027766 +1,1,3615,0.8821723288000001 +1,1,3616,0.8841418812999999 1,1,3617,0.8880809851 1,1,3618,0.8939896417000001 -1,1,3619,0.8979287454999999 +1,1,3619,0.8979287455 1,1,3620,0.8990000001999999 1,1,3621,0.8990000001999999 1,1,3622,0.8990000001999999 1,1,3623,0.8990000001999999 1,1,3624,0.8990000001999999 1,1,3625,0.8959591936 -1,1,3626,0.8979287454999999 +1,1,3626,0.8979287455 1,1,3627,0.8990000001999999 1,1,3628,0.8990000001999999 1,1,3629,0.8990000001999999 1,1,3630,0.8959591936 1,1,3631,0.8920200892 1,1,3632,0.8880809851 -1,1,3633,0.8821723288 +1,1,3633,0.8821723288000001 1,1,3634,0.8762636728 1,1,3635,0.8718972524999999 1,1,3636,0.8652885961999999 @@ -21160,23 +21160,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3639,0.8620494920999999 1,1,3640,0.8644463599 1,1,3641,0.8664159117999999 -1,1,3642,0.8703550161999999 -1,1,3643,0.8782332246999999 -1,1,3644,0.8841418812999998 +1,1,3642,0.8703550162 +1,1,3643,0.8782332247 +1,1,3644,0.8841418812999999 1,1,3645,0.8880809851 1,1,3646,0.8900505372999999 1,1,3647,0.8920200892 1,1,3648,0.8920200892 -1,1,3649,0.8979287454999999 -1,1,3650,0.8979287454999999 +1,1,3649,0.8979287455 +1,1,3650,0.8979287455 1,1,3651,0.8990000001999999 1,1,3652,0.8990000001999999 1,1,3653,0.8990000001999999 -1,1,3654,0.8979287454999999 +1,1,3654,0.8979287455 1,1,3655,0.8939896417000001 1,1,3656,0.8880809851 -1,1,3657,0.8841418812999998 -1,1,3658,0.8782332246999999 +1,1,3657,0.8841418812999999 +1,1,3658,0.8782332247 1,1,3659,0.8723245680999999 1,1,3660,0.8679581486999999 1,1,3661,0.8659885961999999 @@ -21185,45 +21185,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3664,0.8644463599 1,1,3665,0.8664159117999999 1,1,3666,0.8723245680999999 -1,1,3667,0.8782332246999999 -1,1,3668,0.8841418812999998 +1,1,3667,0.8782332247 +1,1,3668,0.8841418812999999 1,1,3669,0.8861114332 1,1,3670,0.8900505372999999 1,1,3671,0.8920200892 1,1,3672,0.8939896417000001 -1,1,3673,0.8841418812999998 +1,1,3673,0.8841418812999999 1,1,3674,0.8861114332 1,1,3675,0.8861114332 1,1,3676,0.8861114332 1,1,3677,0.8861114332 -1,1,3678,0.8821723288 +1,1,3678,0.8821723288000001 1,1,3679,0.8762636728 -1,1,3680,0.8683854642999999 +1,1,3680,0.8683854643 1,1,3681,0.8620494920999999 1,1,3682,0.8537913319 1,1,3683,0.8341913318999999 1,1,3684,0.8271913318999999 -1,1,3685,0.8201913318999998 +1,1,3685,0.8201913318999999 1,1,3686,0.8194913318999999 1,1,3687,0.8194913318999999 1,1,3688,0.8264913319 1,1,3689,0.8341913318999999 1,1,3690,0.8551913319 1,1,3691,0.8644463599 -1,1,3692,0.8703550161999999 +1,1,3692,0.8703550162 1,1,3693,0.8723245680999999 1,1,3694,0.8742941203 1,1,3695,0.8762636728 -1,1,3696,0.8782332246999999 +1,1,3696,0.8782332247 1,1,3697,0.8880809851 1,1,3698,0.8880809851 1,1,3699,0.8880809851 1,1,3700,0.8880809851 1,1,3701,0.8880809851 1,1,3702,0.8861114332 -1,1,3703,0.8802027765999999 +1,1,3703,0.8802027766 1,1,3704,0.8742941203 -1,1,3705,0.8683854642999999 +1,1,3705,0.8683854643 1,1,3706,0.8644463599 1,1,3707,0.8585377039 1,1,3708,0.8551913319 @@ -21233,21 +21233,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3712,0.8493186475 1,1,3713,0.8556186474999999 1,1,3714,0.8624768076999999 -1,1,3715,0.8703550161999999 +1,1,3715,0.8703550162 1,1,3716,0.8742941203 1,1,3717,0.8762636728 -1,1,3718,0.8802027765999999 -1,1,3719,0.8821723288 -1,1,3720,0.8841418812999998 +1,1,3718,0.8802027766 +1,1,3719,0.8821723288000001 +1,1,3720,0.8841418812999999 1,1,3721,0.8861114332 1,1,3722,0.8861114332 1,1,3723,0.8880809851 1,1,3724,0.8880809851 1,1,3725,0.8880809851 -1,1,3726,0.8841418812999998 -1,1,3727,0.8782332246999999 +1,1,3726,0.8841418812999999 +1,1,3727,0.8782332247 1,1,3728,0.8742941203 -1,1,3729,0.8672581486999998 +1,1,3729,0.8672581487 1,1,3730,0.8599494920999999 1,1,3731,0.8553103883 1,1,3732,0.8453913318999999 @@ -21258,11 +21258,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3737,0.8404913319 1,1,3738,0.8581103883 1,1,3739,0.8664159117999999 -1,1,3740,0.8703550161999999 +1,1,3740,0.8703550162 1,1,3741,0.8723245680999999 1,1,3742,0.8742941203 1,1,3743,0.8762636728 -1,1,3744,0.8782332246999999 +1,1,3744,0.8782332247 1,1,3745,0.8939896417000001 1,1,3746,0.8959591936 1,1,3747,0.8959591936 @@ -21270,19 +21270,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3749,0.8959591936 1,1,3750,0.8920200892 1,1,3751,0.8861114332 -1,1,3752,0.8802027765999999 +1,1,3752,0.8802027766 1,1,3753,0.8762636728 1,1,3754,0.8723245680999999 -1,1,3755,0.8683854642999999 +1,1,3755,0.8683854643 1,1,3756,0.8664159117999999 1,1,3757,0.8640190443 1,1,3758,0.8620494920999999 1,1,3759,0.8624768076999999 1,1,3760,0.8624768076999999 1,1,3761,0.8644463599 -1,1,3762,0.8703550161999999 +1,1,3762,0.8703550162 1,1,3763,0.8762636728 -1,1,3764,0.8821723288 +1,1,3764,0.8821723288000001 1,1,3765,0.8861114332 1,1,3766,0.8880809851 1,1,3767,0.8900505372999999 @@ -21294,22 +21294,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3773,0.8939896417000001 1,1,3774,0.8900505372999999 1,1,3775,0.8861114332 -1,1,3776,0.8821723288 +1,1,3776,0.8821723288000001 1,1,3777,0.8762636728 1,1,3778,0.8723245680999999 -1,1,3779,0.8683854642999999 +1,1,3779,0.8683854643 1,1,3780,0.8640190443 1,1,3781,0.8613494920999999 -1,1,3782,0.8593799401999999 +1,1,3782,0.8593799402 1,1,3783,0.8581103883 -1,1,3784,0.8605072557999999 +1,1,3784,0.8605072558 1,1,3785,0.8624768076999999 1,1,3786,0.8664159117999999 1,1,3787,0.8723245680999999 -1,1,3788,0.8782332246999999 -1,1,3789,0.8802027765999999 -1,1,3790,0.8821723288 -1,1,3791,0.8841418812999998 +1,1,3788,0.8782332247 +1,1,3789,0.8802027766 +1,1,3790,0.8821723288000001 +1,1,3791,0.8841418812999999 1,1,3792,0.8861114332 1,1,3793,0.8990000001999999 1,1,3794,0.8990000001999999 @@ -21319,66 +21319,66 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3798,0.8990000001999999 1,1,3799,0.8939896417000001 1,1,3800,0.8900505372999999 -1,1,3801,0.8841418812999998 -1,1,3802,0.8782332246999999 +1,1,3801,0.8841418812999999 +1,1,3802,0.8782332247 1,1,3803,0.8742941203 1,1,3804,0.8723245680999999 -1,1,3805,0.8703550161999999 -1,1,3806,0.8703550161999999 +1,1,3805,0.8703550162 +1,1,3806,0.8703550162 1,1,3807,0.8723245680999999 1,1,3808,0.8742941203 -1,1,3809,0.8802027765999999 -1,1,3810,0.8841418812999998 +1,1,3809,0.8802027766 +1,1,3810,0.8841418812999999 1,1,3811,0.8880809851 1,1,3812,0.8920200892 1,1,3813,0.8939896417000001 1,1,3814,0.8959591936 -1,1,3815,0.8979287454999999 -1,1,3816,0.8979287454999999 +1,1,3815,0.8979287455 +1,1,3816,0.8979287455 1,1,3817,0.8990000001999999 1,1,3818,0.8990000001999999 1,1,3819,0.8990000001999999 1,1,3820,0.8990000001999999 1,1,3821,0.8990000001999999 1,1,3822,0.8990000001999999 -1,1,3823,0.8979287454999999 +1,1,3823,0.8979287455 1,1,3824,0.8939896417000001 1,1,3825,0.8900505372999999 1,1,3826,0.8861114332 -1,1,3827,0.8821723288 -1,1,3828,0.8802027765999999 -1,1,3829,0.8782332246999999 +1,1,3827,0.8821723288000001 +1,1,3828,0.8802027766 +1,1,3829,0.8782332247 1,1,3830,0.8762636728 -1,1,3831,0.8782332246999999 -1,1,3832,0.8802027765999999 -1,1,3833,0.8821723288 +1,1,3831,0.8782332247 +1,1,3832,0.8802027766 +1,1,3833,0.8821723288000001 1,1,3834,0.8861114332 1,1,3835,0.8920200892 1,1,3836,0.8959591936 -1,1,3837,0.8979287454999999 +1,1,3837,0.8979287455 1,1,3838,0.8990000001999999 1,1,3839,0.8990000001999999 1,1,3840,0.8990000001999999 1,1,3841,0.8939896417000001 1,1,3842,0.8959591936 -1,1,3843,0.8979287454999999 -1,1,3844,0.8979287454999999 -1,1,3845,0.8979287454999999 +1,1,3843,0.8979287455 +1,1,3844,0.8979287455 +1,1,3845,0.8979287455 1,1,3846,0.8939896417000001 1,1,3847,0.8880809851 -1,1,3848,0.8841418812999998 -1,1,3849,0.8782332246999999 +1,1,3848,0.8841418812999999 +1,1,3849,0.8782332247 1,1,3850,0.8742941203 -1,1,3851,0.8703550161999999 -1,1,3852,0.8683854642999999 +1,1,3851,0.8703550162 +1,1,3852,0.8683854643 1,1,3853,0.8664159117999999 1,1,3854,0.8644463599 1,1,3855,0.8644463599 1,1,3856,0.8664159117999999 -1,1,3857,0.8683854642999999 +1,1,3857,0.8683854643 1,1,3858,0.8723245680999999 -1,1,3859,0.8802027765999999 -1,1,3860,0.8841418812999998 +1,1,3859,0.8802027766 +1,1,3860,0.8841418812999999 1,1,3861,0.8880809851 1,1,3862,0.8900505372999999 1,1,3863,0.8920200892 @@ -21391,56 +21391,56 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3870,0.8990000001999999 1,1,3871,0.8939896417000001 1,1,3872,0.8900505372999999 -1,1,3873,0.8841418812999998 -1,1,3874,0.8782332246999999 +1,1,3873,0.8841418812999999 +1,1,3874,0.8782332247 1,1,3875,0.8742941203 1,1,3876,0.8723245680999999 -1,1,3877,0.8703550161999999 -1,1,3878,0.8703550161999999 +1,1,3877,0.8703550162 +1,1,3878,0.8703550162 1,1,3879,0.8723245680999999 1,1,3880,0.8742941203 -1,1,3881,0.8802027765999999 -1,1,3882,0.8841418812999998 +1,1,3881,0.8802027766 +1,1,3882,0.8841418812999999 1,1,3883,0.8880809851 1,1,3884,0.8920200892 1,1,3885,0.8939896417000001 1,1,3886,0.8959591936 -1,1,3887,0.8979287454999999 -1,1,3888,0.8979287454999999 +1,1,3887,0.8979287455 +1,1,3888,0.8979287455 1,1,3889,0.8959591936 -1,1,3890,0.8979287454999999 +1,1,3890,0.8979287455 1,1,3891,0.8990000001999999 1,1,3892,0.8990000001999999 1,1,3893,0.8990000001999999 1,1,3894,0.8959591936 1,1,3895,0.8920200892 1,1,3896,0.8880809851 -1,1,3897,0.8821723288 -1,1,3898,0.8782332246999999 +1,1,3897,0.8821723288000001 +1,1,3898,0.8782332247 1,1,3899,0.8742941203 -1,1,3900,0.8703550161999999 -1,1,3901,0.8683854642999999 -1,1,3902,0.8683854642999999 +1,1,3900,0.8703550162 +1,1,3901,0.8683854643 +1,1,3902,0.8683854643 1,1,3903,0.8664159117999999 -1,1,3904,0.8683854642999999 -1,1,3905,0.8703550161999999 +1,1,3904,0.8683854643 +1,1,3905,0.8703550162 1,1,3906,0.8762636728 -1,1,3907,0.8802027765999999 -1,1,3908,0.8841418812999998 +1,1,3907,0.8802027766 +1,1,3908,0.8841418812999999 1,1,3909,0.8880809851 1,1,3910,0.8900505372999999 1,1,3911,0.8920200892 1,1,3912,0.8939896417000001 -1,1,3913,0.8979287454999999 -1,1,3914,0.8979287454999999 +1,1,3913,0.8979287455 +1,1,3914,0.8979287455 1,1,3915,0.8990000001999999 1,1,3916,0.8990000001999999 1,1,3917,0.8990000001999999 -1,1,3918,0.8979287454999999 +1,1,3918,0.8979287455 1,1,3919,0.8939896417000001 1,1,3920,0.8880809851 -1,1,3921,0.8841418812999998 -1,1,3922,0.8782332246999999 +1,1,3921,0.8841418812999999 +1,1,3922,0.8782332247 1,1,3923,0.8723245680999999 1,1,3924,0.8679581486999999 1,1,3925,0.8659885961999999 @@ -21449,8 +21449,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3928,0.8644463599 1,1,3929,0.8664159117999999 1,1,3930,0.8723245680999999 -1,1,3931,0.8782332246999999 -1,1,3932,0.8841418812999998 +1,1,3931,0.8782332247 +1,1,3932,0.8841418812999999 1,1,3933,0.8861114332 1,1,3934,0.8900505372999999 1,1,3935,0.8920200892 @@ -21461,44 +21461,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3940,0.8990000001999999 1,1,3941,0.8990000001999999 1,1,3942,0.8990000001999999 -1,1,3943,0.8979287454999999 +1,1,3943,0.8979287455 1,1,3944,0.8939896417000001 1,1,3945,0.8900505372999999 1,1,3946,0.8861114332 -1,1,3947,0.8821723288 -1,1,3948,0.8802027765999999 -1,1,3949,0.8782332246999999 +1,1,3947,0.8821723288000001 +1,1,3948,0.8802027766 +1,1,3949,0.8782332247 1,1,3950,0.8762636728 -1,1,3951,0.8782332246999999 -1,1,3952,0.8802027765999999 -1,1,3953,0.8821723288 +1,1,3951,0.8782332247 +1,1,3952,0.8802027766 +1,1,3953,0.8821723288000001 1,1,3954,0.8861114332 1,1,3955,0.8920200892 1,1,3956,0.8959591936 -1,1,3957,0.8979287454999999 +1,1,3957,0.8979287455 1,1,3958,0.8990000001999999 1,1,3959,0.8990000001999999 1,1,3960,0.8990000001999999 1,1,3961,0.8959591936 -1,1,3962,0.8979287454999999 +1,1,3962,0.8979287455 1,1,3963,0.8990000001999999 1,1,3964,0.8990000001999999 1,1,3965,0.8990000001999999 1,1,3966,0.8959591936 1,1,3967,0.8920200892 1,1,3968,0.8880809851 -1,1,3969,0.8821723288 -1,1,3970,0.8782332246999999 +1,1,3969,0.8821723288000001 +1,1,3970,0.8782332247 1,1,3971,0.8742941203 -1,1,3972,0.8703550161999999 -1,1,3973,0.8683854642999999 -1,1,3974,0.8683854642999999 +1,1,3972,0.8703550162 +1,1,3973,0.8683854643 +1,1,3974,0.8683854643 1,1,3975,0.8664159117999999 -1,1,3976,0.8683854642999999 -1,1,3977,0.8703550161999999 +1,1,3976,0.8683854643 +1,1,3977,0.8703550162 1,1,3978,0.8762636728 -1,1,3979,0.8802027765999999 -1,1,3980,0.8841418812999998 +1,1,3979,0.8802027766 +1,1,3980,0.8841418812999999 1,1,3981,0.8880809851 1,1,3982,0.8900505372999999 1,1,3983,0.8920200892 @@ -21509,24 +21509,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,3988,0.8939896417000001 1,1,3989,0.8920200892 1,1,3990,0.8861114332 -1,1,3991,0.8802027765999999 +1,1,3991,0.8802027766 1,1,3992,0.8742941203 -1,1,3993,0.8683854642999999 +1,1,3993,0.8683854643 1,1,3994,0.8640190443 -1,1,3995,0.8593799401999999 +1,1,3995,0.8593799402 1,1,3996,0.8537913319 1,1,3997,0.8467913319 1,1,3998,0.8404913319 1,1,3999,0.8404913319 1,1,4000,0.8474913319 1,1,4001,0.8551913319 -1,1,4002,0.8605072557999999 -1,1,4003,0.8683854642999999 +1,1,4002,0.8605072558 +1,1,4003,0.8683854643 1,1,4004,0.8742941203 -1,1,4005,0.8782332246999999 -1,1,4006,0.8802027765999999 -1,1,4007,0.8821723288 -1,1,4008,0.8841418812999998 +1,1,4005,0.8782332247 +1,1,4006,0.8802027766 +1,1,4007,0.8821723288000001 +1,1,4008,0.8841418812999999 1,1,4009,0.8939896417000001 1,1,4010,0.8959591936 1,1,4011,0.8959591936 @@ -21534,46 +21534,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4013,0.8959591936 1,1,4014,0.8920200892 1,1,4015,0.8861114332 -1,1,4016,0.8802027765999999 +1,1,4016,0.8802027766 1,1,4017,0.8762636728 1,1,4018,0.8723245680999999 -1,1,4019,0.8683854642999999 +1,1,4019,0.8683854643 1,1,4020,0.8664159117999999 1,1,4021,0.8640190443 1,1,4022,0.8620494920999999 1,1,4023,0.8624768076999999 1,1,4024,0.8624768076999999 1,1,4025,0.8644463599 -1,1,4026,0.8703550161999999 +1,1,4026,0.8703550162 1,1,4027,0.8762636728 -1,1,4028,0.8821723288 +1,1,4028,0.8821723288000001 1,1,4029,0.8861114332 1,1,4030,0.8880809851 1,1,4031,0.8900505372999999 1,1,4032,0.8920200892 -1,1,4033,0.8979287454999999 -1,1,4034,0.8979287454999999 -1,1,4035,0.8979287454999999 -1,1,4036,0.8979287454999999 -1,1,4037,0.8979287454999999 +1,1,4033,0.8979287455 +1,1,4034,0.8979287455 +1,1,4035,0.8979287455 +1,1,4036,0.8979287455 +1,1,4037,0.8979287455 1,1,4038,0.8959591936 1,1,4039,0.8920200892 1,1,4040,0.8880809851 -1,1,4041,0.8841418812999998 -1,1,4042,0.8821723288 -1,1,4043,0.8782332246999999 +1,1,4041,0.8841418812999999 +1,1,4042,0.8821723288000001 +1,1,4043,0.8782332247 1,1,4044,0.8762636728 1,1,4045,0.8742941203 1,1,4046,0.8742941203 1,1,4047,0.8762636728 -1,1,4048,0.8782332246999999 -1,1,4049,0.8802027765999999 -1,1,4050,0.8841418812999998 +1,1,4048,0.8782332247 +1,1,4049,0.8802027766 +1,1,4050,0.8841418812999999 1,1,4051,0.8900505372999999 1,1,4052,0.8939896417000001 -1,1,4053,0.8979287454999999 -1,1,4054,0.8979287454999999 -1,1,4055,0.8979287454999999 +1,1,4053,0.8979287455 +1,1,4054,0.8979287455 +1,1,4055,0.8979287455 1,1,4056,0.8990000001999999 1,1,4057,0.8900505372999999 1,1,4058,0.8900505372999999 @@ -21582,48 +21582,48 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4061,0.8920200892 1,1,4062,0.8900505372999999 1,1,4063,0.8880809851 -1,1,4064,0.8841418812999998 -1,1,4065,0.8802027765999999 +1,1,4064,0.8841418812999999 +1,1,4065,0.8802027766 1,1,4066,0.8762636728 1,1,4067,0.8723245680999999 -1,1,4068,0.8703550161999999 -1,1,4069,0.8683854642999999 +1,1,4068,0.8703550162 +1,1,4069,0.8683854643 1,1,4070,0.8664159117999999 1,1,4071,0.8664159117999999 1,1,4072,0.8664159117999999 -1,1,4073,0.8683854642999999 +1,1,4073,0.8683854643 1,1,4074,0.8723245680999999 -1,1,4075,0.8782332246999999 -1,1,4076,0.8821723288 -1,1,4077,0.8841418812999998 +1,1,4075,0.8782332247 +1,1,4076,0.8821723288000001 +1,1,4077,0.8841418812999999 1,1,4078,0.8861114332 1,1,4079,0.8880809851 1,1,4080,0.8900505372999999 1,1,4081,0.8959591936 -1,1,4082,0.8979287454999999 +1,1,4082,0.8979287455 1,1,4083,0.8990000001999999 1,1,4084,0.8990000001999999 1,1,4085,0.8990000001999999 1,1,4086,0.8959591936 1,1,4087,0.8920200892 1,1,4088,0.8880809851 -1,1,4089,0.8821723288 -1,1,4090,0.8782332246999999 +1,1,4089,0.8821723288000001 +1,1,4090,0.8782332247 1,1,4091,0.8742941203 -1,1,4092,0.8703550161999999 -1,1,4093,0.8683854642999999 -1,1,4094,0.8683854642999999 +1,1,4092,0.8703550162 +1,1,4093,0.8683854643 +1,1,4094,0.8683854643 1,1,4095,0.8664159117999999 -1,1,4096,0.8683854642999999 -1,1,4097,0.8703550161999999 +1,1,4096,0.8683854643 +1,1,4097,0.8703550162 1,1,4098,0.8762636728 -1,1,4099,0.8802027765999999 -1,1,4100,0.8841418812999998 +1,1,4099,0.8802027766 +1,1,4100,0.8841418812999999 1,1,4101,0.8880809851 1,1,4102,0.8900505372999999 1,1,4103,0.8920200892 1,1,4104,0.8939896417000001 -1,1,4105,0.8979287454999999 +1,1,4105,0.8979287455 1,1,4106,0.8990000001999999 1,1,4107,0.8990000001999999 1,1,4108,0.8990000001999999 @@ -21631,17 +21631,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4110,0.8959591936 1,1,4111,0.8920200892 1,1,4112,0.8880809851 -1,1,4113,0.8821723288 -1,1,4114,0.8782332246999999 +1,1,4113,0.8821723288000001 +1,1,4114,0.8782332247 1,1,4115,0.8762636728 1,1,4116,0.8742941203 1,1,4117,0.8723245680999999 -1,1,4118,0.8703550161999999 -1,1,4119,0.8703550161999999 -1,1,4120,0.8703550161999999 +1,1,4118,0.8703550162 +1,1,4119,0.8703550162 +1,1,4120,0.8703550162 1,1,4121,0.8723245680999999 1,1,4122,0.8762636728 -1,1,4123,0.8821723288 +1,1,4123,0.8821723288000001 1,1,4124,0.8861114332 1,1,4125,0.8880809851 1,1,4126,0.8900505372999999 @@ -21653,23 +21653,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4132,0.8990000001999999 1,1,4133,0.8990000001999999 1,1,4134,0.8990000001999999 -1,1,4135,0.8979287454999999 +1,1,4135,0.8979287455 1,1,4136,0.8920200892 1,1,4137,0.8880809851 -1,1,4138,0.8841418812999998 -1,1,4139,0.8802027765999999 -1,1,4140,0.8782332246999999 +1,1,4138,0.8841418812999999 +1,1,4139,0.8802027766 +1,1,4140,0.8782332247 1,1,4141,0.8762636728 1,1,4142,0.8762636728 1,1,4143,0.8742941203 1,1,4144,0.8762636728 -1,1,4145,0.8782332246999999 -1,1,4146,0.8821723288 +1,1,4145,0.8782332247 +1,1,4146,0.8821723288000001 1,1,4147,0.8880809851 1,1,4148,0.8920200892 1,1,4149,0.8939896417000001 1,1,4150,0.8959591936 -1,1,4151,0.8979287454999999 +1,1,4151,0.8979287455 1,1,4152,0.8990000001999999 1,1,4153,0.8880809851 1,1,4154,0.8880809851 @@ -21677,9 +21677,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4156,0.8880809851 1,1,4157,0.8880809851 1,1,4158,0.8861114332 -1,1,4159,0.8802027765999999 +1,1,4159,0.8802027766 1,1,4160,0.8742941203 -1,1,4161,0.8683854642999999 +1,1,4161,0.8683854643 1,1,4162,0.8644463599 1,1,4163,0.8585377039 1,1,4164,0.8551913319 @@ -21689,12 +21689,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4168,0.8493186475 1,1,4169,0.8556186474999999 1,1,4170,0.8624768076999999 -1,1,4171,0.8703550161999999 +1,1,4171,0.8703550162 1,1,4172,0.8742941203 1,1,4173,0.8762636728 -1,1,4174,0.8802027765999999 -1,1,4175,0.8821723288 -1,1,4176,0.8841418812999998 +1,1,4174,0.8802027766 +1,1,4175,0.8821723288000001 +1,1,4176,0.8841418812999999 1,1,4177,0.8920200892 1,1,4178,0.8939896417000001 1,1,4179,0.8939896417000001 @@ -21702,43 +21702,43 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4181,0.8939896417000001 1,1,4182,0.8900505372999999 1,1,4183,0.8861114332 -1,1,4184,0.8802027765999999 +1,1,4184,0.8802027766 1,1,4185,0.8762636728 -1,1,4186,0.8703550161999999 +1,1,4186,0.8703550162 1,1,4187,0.8664159117999999 1,1,4188,0.8640190443 -1,1,4189,0.8593799401999999 +1,1,4189,0.8593799402 1,1,4190,0.8574103882999999 1,1,4191,0.8574103882999999 1,1,4192,0.8581103883 -1,1,4193,0.8605072557999999 +1,1,4193,0.8605072558 1,1,4194,0.8664159117999999 1,1,4195,0.8723245680999999 1,1,4196,0.8762636728 -1,1,4197,0.8782332246999999 -1,1,4198,0.8802027765999999 -1,1,4199,0.8821723288 -1,1,4200,0.8841418812999998 +1,1,4197,0.8782332247 +1,1,4198,0.8802027766 +1,1,4199,0.8821723288000001 +1,1,4200,0.8841418812999999 1,1,4201,0.8959591936 -1,1,4202,0.8979287454999999 +1,1,4202,0.8979287455 1,1,4203,0.8990000001999999 1,1,4204,0.8990000001999999 1,1,4205,0.8990000001999999 1,1,4206,0.8959591936 1,1,4207,0.8920200892 1,1,4208,0.8880809851 -1,1,4209,0.8821723288 -1,1,4210,0.8782332246999999 +1,1,4209,0.8821723288000001 +1,1,4210,0.8782332247 1,1,4211,0.8742941203 -1,1,4212,0.8703550161999999 -1,1,4213,0.8683854642999999 -1,1,4214,0.8683854642999999 +1,1,4212,0.8703550162 +1,1,4213,0.8683854643 +1,1,4214,0.8683854643 1,1,4215,0.8664159117999999 -1,1,4216,0.8683854642999999 -1,1,4217,0.8703550161999999 +1,1,4216,0.8683854643 +1,1,4217,0.8703550162 1,1,4218,0.8762636728 -1,1,4219,0.8802027765999999 -1,1,4220,0.8841418812999998 +1,1,4219,0.8802027766 +1,1,4220,0.8841418812999999 1,1,4221,0.8880809851 1,1,4222,0.8900505372999999 1,1,4223,0.8920200892 @@ -21749,10 +21749,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4228,0.8939896417000001 1,1,4229,0.8939896417000001 1,1,4230,0.8900505372999999 -1,1,4231,0.8841418812999998 -1,1,4232,0.8782332246999999 +1,1,4231,0.8841418812999999 +1,1,4232,0.8782332247 1,1,4233,0.8742941203 -1,1,4234,0.8703550161999999 +1,1,4234,0.8703550162 1,1,4235,0.8664159117999999 1,1,4236,0.8640190443 1,1,4237,0.8613494920999999 @@ -21760,9 +21760,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4239,0.8624768076999999 1,1,4240,0.8624768076999999 1,1,4241,0.8644463599 -1,1,4242,0.8703550161999999 -1,1,4243,0.8782332246999999 -1,1,4244,0.8841418812999998 +1,1,4242,0.8703550162 +1,1,4243,0.8782332247 +1,1,4244,0.8841418812999999 1,1,4245,0.8861114332 1,1,4246,0.8900505372999999 1,1,4247,0.8939896417000001 @@ -21774,23 +21774,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4253,0.8939896417000001 1,1,4254,0.8900505372999999 1,1,4255,0.8861114332 -1,1,4256,0.8802027765999999 +1,1,4256,0.8802027766 1,1,4257,0.8762636728 -1,1,4258,0.8703550161999999 +1,1,4258,0.8703550162 1,1,4259,0.8664159117999999 1,1,4260,0.8640190443 -1,1,4261,0.8593799401999999 +1,1,4261,0.8593799402 1,1,4262,0.8574103882999999 1,1,4263,0.8574103882999999 1,1,4264,0.8581103883 -1,1,4265,0.8605072557999999 +1,1,4265,0.8605072558 1,1,4266,0.8664159117999999 1,1,4267,0.8723245680999999 1,1,4268,0.8762636728 -1,1,4269,0.8782332246999999 -1,1,4270,0.8802027765999999 -1,1,4271,0.8821723288 -1,1,4272,0.8841418812999998 +1,1,4269,0.8782332247 +1,1,4270,0.8802027766 +1,1,4271,0.8821723288000001 +1,1,4272,0.8841418812999999 1,1,4273,0.8939896417000001 1,1,4274,0.8959591936 1,1,4275,0.8959591936 @@ -21798,19 +21798,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4277,0.8959591936 1,1,4278,0.8920200892 1,1,4279,0.8861114332 -1,1,4280,0.8802027765999999 +1,1,4280,0.8802027766 1,1,4281,0.8762636728 1,1,4282,0.8723245680999999 -1,1,4283,0.8683854642999999 +1,1,4283,0.8683854643 1,1,4284,0.8664159117999999 1,1,4285,0.8640190443 1,1,4286,0.8620494920999999 1,1,4287,0.8624768076999999 1,1,4288,0.8624768076999999 1,1,4289,0.8644463599 -1,1,4290,0.8703550161999999 +1,1,4290,0.8703550162 1,1,4291,0.8762636728 -1,1,4292,0.8821723288 +1,1,4292,0.8821723288000001 1,1,4293,0.8861114332 1,1,4294,0.8880809851 1,1,4295,0.8900505372999999 @@ -21822,19 +21822,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4301,0.8959591936 1,1,4302,0.8920200892 1,1,4303,0.8861114332 -1,1,4304,0.8802027765999999 +1,1,4304,0.8802027766 1,1,4305,0.8762636728 1,1,4306,0.8723245680999999 -1,1,4307,0.8683854642999999 +1,1,4307,0.8683854643 1,1,4308,0.8664159117999999 1,1,4309,0.8640190443 1,1,4310,0.8620494920999999 1,1,4311,0.8624768076999999 1,1,4312,0.8624768076999999 1,1,4313,0.8644463599 -1,1,4314,0.8703550161999999 +1,1,4314,0.8703550162 1,1,4315,0.8762636728 -1,1,4316,0.8821723288 +1,1,4316,0.8821723288000001 1,1,4317,0.8861114332 1,1,4318,0.8880809851 1,1,4319,0.8900505372999999 @@ -21845,21 +21845,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4324,0.8959591936 1,1,4325,0.8939896417000001 1,1,4326,0.8880809851 -1,1,4327,0.8821723288 +1,1,4327,0.8821723288000001 1,1,4328,0.8762636728 -1,1,4329,0.8703550161999999 +1,1,4329,0.8703550162 1,1,4330,0.8664159117999999 1,1,4331,0.8644463599 1,1,4332,0.8624768076999999 -1,1,4333,0.8605072557999999 -1,1,4334,0.8605072557999999 -1,1,4335,0.8605072557999999 +1,1,4333,0.8605072558 +1,1,4334,0.8605072558 +1,1,4335,0.8605072558 1,1,4336,0.8624768076999999 1,1,4337,0.8644463599 -1,1,4338,0.8683854642999999 +1,1,4338,0.8683854643 1,1,4339,0.8762636728 -1,1,4340,0.8802027765999999 -1,1,4341,0.8841418812999998 +1,1,4340,0.8802027766 +1,1,4341,0.8841418812999999 1,1,4342,0.8861114332 1,1,4343,0.8861114332 1,1,4344,0.8880809851 @@ -21874,41 +21874,41 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4353,0.8502913319 1,1,4354,0.8306913319 1,1,4355,0.8173913318999999 -1,1,4356,0.8040913318999999 +1,1,4356,0.8040913319 1,1,4357,0.7977913319 1,1,4358,0.7914913319 1,1,4359,0.7921913319 1,1,4360,0.7991913318999999 -1,1,4361,0.8061913318999999 -1,1,4362,0.8208913318999999 +1,1,4361,0.8061913319 +1,1,4362,0.8208913319 1,1,4363,0.8488913319 -1,1,4364,0.8605072557999999 +1,1,4364,0.8605072558 1,1,4365,0.8644463599 1,1,4366,0.8664159117999999 -1,1,4367,0.8703550161999999 +1,1,4367,0.8703550162 1,1,4368,0.8723245680999999 -1,1,4369,0.8782332246999999 -1,1,4370,0.8802027765999999 -1,1,4371,0.8802027765999999 -1,1,4372,0.8821723288 -1,1,4373,0.8821723288 +1,1,4369,0.8782332247 +1,1,4370,0.8802027766 +1,1,4371,0.8802027766 +1,1,4372,0.8821723288000001 +1,1,4373,0.8821723288000001 1,1,4374,0.8762636728 1,1,4375,0.8699277005999999 1,1,4376,0.8619190443 1,1,4377,0.8539103883 1,1,4378,0.8369913319 1,1,4379,0.8173913318999999 -1,1,4380,0.8040913318999999 +1,1,4380,0.8040913319 1,1,4381,0.7977913319 1,1,4382,0.7914913319 1,1,4383,0.7914913319 1,1,4384,0.7984913319 -1,1,4385,0.8061913318999999 +1,1,4385,0.8061913319 1,1,4386,0.8334913318999999 1,1,4387,0.8581103883 1,1,4388,0.8644463599 -1,1,4389,0.8683854642999999 -1,1,4390,0.8703550161999999 +1,1,4389,0.8683854643 +1,1,4390,0.8703550162 1,1,4391,0.8742941203 1,1,4392,0.8742941203 1,1,4393,0.8742941203 @@ -21916,12 +21916,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4395,0.8742941203 1,1,4396,0.8762636728 1,1,4397,0.8742941203 -1,1,4398,0.8703550161999999 +1,1,4398,0.8703550162 1,1,4399,0.8644463599 1,1,4400,0.8585377039 1,1,4401,0.8425913319 -1,1,4402,0.8229913318999998 -1,1,4403,0.8159913319000001 +1,1,4402,0.8229913319 +1,1,4403,0.8159913319 1,1,4404,0.8089913318999999 1,1,4405,0.8026913319 1,1,4406,0.7963913319 @@ -21931,22 +21931,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4410,0.8362913318999999 1,1,4411,0.8585377039 1,1,4412,0.8644463599 -1,1,4413,0.8683854642999999 -1,1,4414,0.8683854642999999 -1,1,4415,0.8683854642999999 -1,1,4416,0.8683854642999999 -1,1,4417,0.8703550161999999 +1,1,4413,0.8683854643 +1,1,4414,0.8683854643 +1,1,4415,0.8683854643 +1,1,4416,0.8683854643 +1,1,4417,0.8703550162 1,1,4418,0.8723245680999999 1,1,4419,0.8723245680999999 1,1,4420,0.8742941203 1,1,4421,0.8742941203 -1,1,4422,0.8703550161999999 +1,1,4422,0.8703550162 1,1,4423,0.8633190443 -1,1,4424,0.8572799401999999 +1,1,4424,0.8572799402 1,1,4425,0.8446913319 1,1,4426,0.8306913319 1,1,4427,0.8110913319 -1,1,4428,0.8040913318999999 +1,1,4428,0.8040913319 1,1,4429,0.7977913319 1,1,4430,0.7921913319 1,1,4431,0.7928913318999999 @@ -21957,68 +21957,68 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4436,0.8585377039 1,1,4437,0.8624768076999999 1,1,4438,0.8664159117999999 -1,1,4439,0.8683854642999999 -1,1,4440,0.8703550161999999 +1,1,4439,0.8683854643 +1,1,4440,0.8703550162 1,1,4441,0.8762636728 -1,1,4442,0.8782332246999999 -1,1,4443,0.8782332246999999 -1,1,4444,0.8802027765999999 -1,1,4445,0.8782332246999999 +1,1,4442,0.8782332247 +1,1,4443,0.8782332247 +1,1,4444,0.8802027766 +1,1,4445,0.8782332247 1,1,4446,0.8742941203 -1,1,4447,0.8683854642999999 +1,1,4447,0.8683854643 1,1,4448,0.8613494920999999 1,1,4449,0.8467913319 1,1,4450,0.8264913319 1,1,4451,0.8131913319 -1,1,4452,0.8061913318999999 +1,1,4452,0.8061913319 1,1,4453,0.7991913318999999 1,1,4454,0.7935913319 1,1,4455,0.7935913319 1,1,4456,0.8005913319 -1,1,4457,0.8082913318999999 +1,1,4457,0.8082913319 1,1,4458,0.8348913319 1,1,4459,0.8585377039 1,1,4460,0.8644463599 1,1,4461,0.8664159117999999 -1,1,4462,0.8703550161999999 +1,1,4462,0.8703550162 1,1,4463,0.8723245680999999 1,1,4464,0.8723245680999999 -1,1,4465,0.8782332246999999 -1,1,4466,0.8802027765999999 -1,1,4467,0.8802027765999999 -1,1,4468,0.8821723288 -1,1,4469,0.8821723288 +1,1,4465,0.8782332247 +1,1,4466,0.8802027766 +1,1,4467,0.8802027766 +1,1,4468,0.8821723288000001 +1,1,4469,0.8821723288000001 1,1,4470,0.8762636728 1,1,4471,0.8699277005999999 1,1,4472,0.8619190443 1,1,4473,0.8539103883 1,1,4474,0.8369913319 1,1,4475,0.8173913318999999 -1,1,4476,0.8040913318999999 +1,1,4476,0.8040913319 1,1,4477,0.7977913319 1,1,4478,0.7914913319 1,1,4479,0.7914913319 1,1,4480,0.7984913319 -1,1,4481,0.8061913318999999 +1,1,4481,0.8061913319 1,1,4482,0.8334913318999999 1,1,4483,0.8581103883 1,1,4484,0.8644463599 -1,1,4485,0.8683854642999999 -1,1,4486,0.8703550161999999 +1,1,4485,0.8683854643 +1,1,4486,0.8703550162 1,1,4487,0.8742941203 1,1,4488,0.8742941203 -1,1,4489,0.8703550161999999 +1,1,4489,0.8703550162 1,1,4490,0.8723245680999999 1,1,4491,0.8723245680999999 1,1,4492,0.8742941203 1,1,4493,0.8742941203 -1,1,4494,0.8703550161999999 +1,1,4494,0.8703550162 1,1,4495,0.8633190443 -1,1,4496,0.8572799401999999 +1,1,4496,0.8572799402 1,1,4497,0.8446913319 1,1,4498,0.8306913319 1,1,4499,0.8110913319 -1,1,4500,0.8040913318999999 +1,1,4500,0.8040913319 1,1,4501,0.7977913319 1,1,4502,0.7921913319 1,1,4503,0.7928913318999999 @@ -22029,164 +22029,164 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4508,0.8585377039 1,1,4509,0.8624768076999999 1,1,4510,0.8664159117999999 -1,1,4511,0.8683854642999999 -1,1,4512,0.8703550161999999 -1,1,4513,0.8782332246999999 -1,1,4514,0.8802027765999999 -1,1,4515,0.8802027765999999 -1,1,4516,0.8821723288 -1,1,4517,0.8821723288 +1,1,4511,0.8683854643 +1,1,4512,0.8703550162 +1,1,4513,0.8782332247 +1,1,4514,0.8802027766 +1,1,4515,0.8802027766 +1,1,4516,0.8821723288000001 +1,1,4517,0.8821723288000001 1,1,4518,0.8762636728 1,1,4519,0.8699277005999999 1,1,4520,0.8619190443 1,1,4521,0.8539103883 1,1,4522,0.8369913319 1,1,4523,0.8173913318999999 -1,1,4524,0.8040913318999999 +1,1,4524,0.8040913319 1,1,4525,0.7977913319 1,1,4526,0.7914913319 1,1,4527,0.7914913319 1,1,4528,0.7984913319 -1,1,4529,0.8061913318999999 +1,1,4529,0.8061913319 1,1,4530,0.8334913318999999 1,1,4531,0.8581103883 1,1,4532,0.8644463599 -1,1,4533,0.8683854642999999 -1,1,4534,0.8703550161999999 +1,1,4533,0.8683854643 +1,1,4534,0.8703550162 1,1,4535,0.8742941203 1,1,4536,0.8742941203 1,1,4537,0.8762636728 -1,1,4538,0.8782332246999999 -1,1,4539,0.8782332246999999 -1,1,4540,0.8802027765999999 -1,1,4541,0.8782332246999999 +1,1,4538,0.8782332247 +1,1,4539,0.8782332247 +1,1,4540,0.8802027766 +1,1,4541,0.8782332247 1,1,4542,0.8742941203 -1,1,4543,0.8683854642999999 +1,1,4543,0.8683854643 1,1,4544,0.8613494920999999 1,1,4545,0.8467913319 1,1,4546,0.8264913319 1,1,4547,0.8131913319 -1,1,4548,0.8061913318999999 +1,1,4548,0.8061913319 1,1,4549,0.7991913318999999 1,1,4550,0.7935913319 1,1,4551,0.7935913319 1,1,4552,0.8005913319 -1,1,4553,0.8082913318999999 +1,1,4553,0.8082913319 1,1,4554,0.8348913319 1,1,4555,0.8585377039 1,1,4556,0.8644463599 1,1,4557,0.8664159117999999 -1,1,4558,0.8703550161999999 +1,1,4558,0.8703550162 1,1,4559,0.8723245680999999 1,1,4560,0.8723245680999999 -1,1,4561,0.8802027765999999 -1,1,4562,0.8802027765999999 -1,1,4563,0.8821723288 -1,1,4564,0.8821723288 -1,1,4565,0.8821723288 -1,1,4566,0.8802027765999999 +1,1,4561,0.8802027766 +1,1,4562,0.8802027766 +1,1,4563,0.8821723288000001 +1,1,4564,0.8821723288000001 +1,1,4565,0.8821723288000001 +1,1,4566,0.8802027766 1,1,4567,0.8742941203 -1,1,4568,0.8683854642999999 +1,1,4568,0.8683854643 1,1,4569,0.8620494920999999 1,1,4570,0.8567103883 1,1,4571,0.8404913319 1,1,4572,0.8271913318999999 -1,1,4573,0.8201913318999998 +1,1,4573,0.8201913318999999 1,1,4574,0.8131913319 -1,1,4575,0.8138913319000001 -1,1,4576,0.8208913318999999 +1,1,4575,0.8138913319 +1,1,4576,0.8208913319 1,1,4577,0.8278913319 1,1,4578,0.8488913319 1,1,4579,0.8624768076999999 -1,1,4580,0.8683854642999999 +1,1,4580,0.8683854643 1,1,4581,0.8723245680999999 1,1,4582,0.8742941203 1,1,4583,0.8762636728 -1,1,4584,0.8782332246999999 -1,1,4585,0.8802027765999999 -1,1,4586,0.8802027765999999 -1,1,4587,0.8821723288 -1,1,4588,0.8821723288 -1,1,4589,0.8821723288 -1,1,4590,0.8802027765999999 +1,1,4584,0.8782332247 +1,1,4585,0.8802027766 +1,1,4586,0.8802027766 +1,1,4587,0.8821723288000001 +1,1,4588,0.8821723288000001 +1,1,4589,0.8821723288000001 +1,1,4590,0.8802027766 1,1,4591,0.8742941203 -1,1,4592,0.8683854642999999 +1,1,4592,0.8683854643 1,1,4593,0.8620494920999999 1,1,4594,0.8567103883 1,1,4595,0.8404913319 1,1,4596,0.8271913318999999 -1,1,4597,0.8201913318999998 +1,1,4597,0.8201913318999999 1,1,4598,0.8131913319 -1,1,4599,0.8138913319000001 -1,1,4600,0.8208913318999999 +1,1,4599,0.8138913319 +1,1,4600,0.8208913319 1,1,4601,0.8278913319 1,1,4602,0.8488913319 1,1,4603,0.8624768076999999 -1,1,4604,0.8683854642999999 +1,1,4604,0.8683854643 1,1,4605,0.8723245680999999 1,1,4606,0.8742941203 1,1,4607,0.8762636728 -1,1,4608,0.8782332246999999 -1,1,4609,0.8802027765999999 -1,1,4610,0.8802027765999999 -1,1,4611,0.8821723288 -1,1,4612,0.8821723288 -1,1,4613,0.8821723288 -1,1,4614,0.8802027765999999 +1,1,4608,0.8782332247 +1,1,4609,0.8802027766 +1,1,4610,0.8802027766 +1,1,4611,0.8821723288000001 +1,1,4612,0.8821723288000001 +1,1,4613,0.8821723288000001 +1,1,4614,0.8802027766 1,1,4615,0.8742941203 -1,1,4616,0.8683854642999999 +1,1,4616,0.8683854643 1,1,4617,0.8620494920999999 1,1,4618,0.8567103883 1,1,4619,0.8404913319 1,1,4620,0.8271913318999999 -1,1,4621,0.8201913318999998 +1,1,4621,0.8201913318999999 1,1,4622,0.8131913319 -1,1,4623,0.8138913319000001 -1,1,4624,0.8208913318999999 +1,1,4623,0.8138913319 +1,1,4624,0.8208913319 1,1,4625,0.8278913319 1,1,4626,0.8488913319 1,1,4627,0.8624768076999999 -1,1,4628,0.8683854642999999 +1,1,4628,0.8683854643 1,1,4629,0.8723245680999999 1,1,4630,0.8742941203 1,1,4631,0.8762636728 -1,1,4632,0.8782332246999999 -1,1,4633,0.8802027765999999 -1,1,4634,0.8802027765999999 -1,1,4635,0.8821723288 -1,1,4636,0.8821723288 -1,1,4637,0.8821723288 -1,1,4638,0.8802027765999999 +1,1,4632,0.8782332247 +1,1,4633,0.8802027766 +1,1,4634,0.8802027766 +1,1,4635,0.8821723288000001 +1,1,4636,0.8821723288000001 +1,1,4637,0.8821723288000001 +1,1,4638,0.8802027766 1,1,4639,0.8742941203 -1,1,4640,0.8683854642999999 +1,1,4640,0.8683854643 1,1,4641,0.8620494920999999 1,1,4642,0.8567103883 1,1,4643,0.8404913319 1,1,4644,0.8271913318999999 -1,1,4645,0.8201913318999998 +1,1,4645,0.8201913318999999 1,1,4646,0.8131913319 -1,1,4647,0.8138913319000001 -1,1,4648,0.8208913318999999 +1,1,4647,0.8138913319 +1,1,4648,0.8208913319 1,1,4649,0.8278913319 1,1,4650,0.8488913319 1,1,4651,0.8624768076999999 -1,1,4652,0.8683854642999999 +1,1,4652,0.8683854643 1,1,4653,0.8723245680999999 1,1,4654,0.8742941203 1,1,4655,0.8762636728 -1,1,4656,0.8782332246999999 -1,1,4657,0.8703550161999999 +1,1,4656,0.8782332247 +1,1,4657,0.8703550162 1,1,4658,0.8723245680999999 1,1,4659,0.8723245680999999 1,1,4660,0.8742941203 1,1,4661,0.8742941203 -1,1,4662,0.8703550161999999 +1,1,4662,0.8703550162 1,1,4663,0.8633190443 -1,1,4664,0.8572799401999999 +1,1,4664,0.8572799402 1,1,4665,0.8446913319 1,1,4666,0.8306913319 1,1,4667,0.8110913319 -1,1,4668,0.8040913318999999 +1,1,4668,0.8040913319 1,1,4669,0.7977913319 1,1,4670,0.7921913319 1,1,4671,0.7928913318999999 @@ -22197,30 +22197,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4676,0.8585377039 1,1,4677,0.8624768076999999 1,1,4678,0.8664159117999999 -1,1,4679,0.8683854642999999 -1,1,4680,0.8703550161999999 -1,1,4681,0.8782332246999999 -1,1,4682,0.8802027765999999 -1,1,4683,0.8802027765999999 -1,1,4684,0.8821723288 -1,1,4685,0.8821723288 +1,1,4679,0.8683854643 +1,1,4680,0.8703550162 +1,1,4681,0.8782332247 +1,1,4682,0.8802027766 +1,1,4683,0.8802027766 +1,1,4684,0.8821723288000001 +1,1,4685,0.8821723288000001 1,1,4686,0.8762636728 1,1,4687,0.8699277005999999 1,1,4688,0.8619190443 1,1,4689,0.8539103883 1,1,4690,0.8369913319 1,1,4691,0.8173913318999999 -1,1,4692,0.8040913318999999 +1,1,4692,0.8040913319 1,1,4693,0.7977913319 1,1,4694,0.7914913319 1,1,4695,0.7914913319 1,1,4696,0.7984913319 -1,1,4697,0.8061913318999999 +1,1,4697,0.8061913319 1,1,4698,0.8334913318999999 1,1,4699,0.8581103883 1,1,4700,0.8644463599 -1,1,4701,0.8683854642999999 -1,1,4702,0.8703550161999999 +1,1,4701,0.8683854643 +1,1,4702,0.8703550162 1,1,4703,0.8742941203 1,1,4704,0.8742941203 1,1,4705,0.8723245680999999 @@ -22234,18 +22234,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4713,0.8502913319 1,1,4714,0.8306913319 1,1,4715,0.8173913318999999 -1,1,4716,0.8040913318999999 +1,1,4716,0.8040913319 1,1,4717,0.7977913319 1,1,4718,0.7914913319 1,1,4719,0.7921913319 1,1,4720,0.7991913318999999 -1,1,4721,0.8061913318999999 -1,1,4722,0.8208913318999999 +1,1,4721,0.8061913319 +1,1,4722,0.8208913319 1,1,4723,0.8488913319 -1,1,4724,0.8605072557999999 +1,1,4724,0.8605072558 1,1,4725,0.8644463599 1,1,4726,0.8664159117999999 -1,1,4727,0.8703550161999999 +1,1,4727,0.8703550162 1,1,4728,0.8723245680999999 1,1,4729,0.8723245680999999 1,1,4730,0.8742941203 @@ -22258,89 +22258,89 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4737,0.8502913319 1,1,4738,0.8306913319 1,1,4739,0.8173913318999999 -1,1,4740,0.8040913318999999 +1,1,4740,0.8040913319 1,1,4741,0.7977913319 1,1,4742,0.7914913319 1,1,4743,0.7921913319 1,1,4744,0.7991913318999999 -1,1,4745,0.8061913318999999 -1,1,4746,0.8208913318999999 +1,1,4745,0.8061913319 +1,1,4746,0.8208913319 1,1,4747,0.8488913319 -1,1,4748,0.8605072557999999 +1,1,4748,0.8605072558 1,1,4749,0.8644463599 1,1,4750,0.8664159117999999 -1,1,4751,0.8703550161999999 +1,1,4751,0.8703550162 1,1,4752,0.8723245680999999 -1,1,4753,0.8802027765999999 -1,1,4754,0.8802027765999999 -1,1,4755,0.8821723288 -1,1,4756,0.8821723288 -1,1,4757,0.8821723288 -1,1,4758,0.8802027765999999 +1,1,4753,0.8802027766 +1,1,4754,0.8802027766 +1,1,4755,0.8821723288000001 +1,1,4756,0.8821723288000001 +1,1,4757,0.8821723288000001 +1,1,4758,0.8802027766 1,1,4759,0.8742941203 -1,1,4760,0.8683854642999999 +1,1,4760,0.8683854643 1,1,4761,0.8620494920999999 1,1,4762,0.8567103883 1,1,4763,0.8404913319 1,1,4764,0.8271913318999999 -1,1,4765,0.8201913318999998 +1,1,4765,0.8201913318999999 1,1,4766,0.8131913319 -1,1,4767,0.8138913319000001 -1,1,4768,0.8208913318999999 +1,1,4767,0.8138913319 +1,1,4768,0.8208913319 1,1,4769,0.8278913319 1,1,4770,0.8488913319 1,1,4771,0.8624768076999999 -1,1,4772,0.8683854642999999 +1,1,4772,0.8683854643 1,1,4773,0.8723245680999999 1,1,4774,0.8742941203 1,1,4775,0.8762636728 -1,1,4776,0.8782332246999999 -1,1,4777,0.8782332246999999 -1,1,4778,0.8802027765999999 -1,1,4779,0.8802027765999999 -1,1,4780,0.8821723288 -1,1,4781,0.8821723288 +1,1,4776,0.8782332247 +1,1,4777,0.8782332247 +1,1,4778,0.8802027766 +1,1,4779,0.8802027766 +1,1,4780,0.8821723288000001 +1,1,4781,0.8821723288000001 1,1,4782,0.8762636728 1,1,4783,0.8699277005999999 1,1,4784,0.8619190443 1,1,4785,0.8539103883 1,1,4786,0.8369913319 1,1,4787,0.8173913318999999 -1,1,4788,0.8040913318999999 +1,1,4788,0.8040913319 1,1,4789,0.7977913319 1,1,4790,0.7914913319 1,1,4791,0.7914913319 1,1,4792,0.7984913319 -1,1,4793,0.8061913318999999 +1,1,4793,0.8061913319 1,1,4794,0.8334913318999999 1,1,4795,0.8581103883 1,1,4796,0.8644463599 -1,1,4797,0.8683854642999999 -1,1,4798,0.8703550161999999 +1,1,4797,0.8683854643 +1,1,4798,0.8703550162 1,1,4799,0.8742941203 1,1,4800,0.8742941203 -1,1,4801,0.8782332246999999 -1,1,4802,0.8802027765999999 -1,1,4803,0.8802027765999999 -1,1,4804,0.8821723288 -1,1,4805,0.8821723288 +1,1,4801,0.8782332247 +1,1,4802,0.8802027766 +1,1,4803,0.8802027766 +1,1,4804,0.8821723288000001 +1,1,4805,0.8821723288000001 1,1,4806,0.8762636728 1,1,4807,0.8699277005999999 1,1,4808,0.8619190443 1,1,4809,0.8539103883 1,1,4810,0.8369913319 1,1,4811,0.8173913318999999 -1,1,4812,0.8040913318999999 +1,1,4812,0.8040913319 1,1,4813,0.7977913319 1,1,4814,0.7914913319 1,1,4815,0.7914913319 1,1,4816,0.7984913319 -1,1,4817,0.8061913318999999 +1,1,4817,0.8061913319 1,1,4818,0.8334913318999999 1,1,4819,0.8581103883 1,1,4820,0.8644463599 -1,1,4821,0.8683854642999999 -1,1,4822,0.8703550161999999 +1,1,4821,0.8683854643 +1,1,4822,0.8703550162 1,1,4823,0.8742941203 1,1,4824,0.8742941203 1,1,4825,0.8723245680999999 @@ -22354,18 +22354,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4833,0.8502913319 1,1,4834,0.8306913319 1,1,4835,0.8173913318999999 -1,1,4836,0.8040913318999999 +1,1,4836,0.8040913319 1,1,4837,0.7977913319 1,1,4838,0.7914913319 1,1,4839,0.7921913319 1,1,4840,0.7991913318999999 -1,1,4841,0.8061913318999999 -1,1,4842,0.8208913318999999 +1,1,4841,0.8061913319 +1,1,4842,0.8208913319 1,1,4843,0.8488913319 -1,1,4844,0.8605072557999999 +1,1,4844,0.8605072558 1,1,4845,0.8644463599 1,1,4846,0.8664159117999999 -1,1,4847,0.8703550161999999 +1,1,4847,0.8703550162 1,1,4848,0.8723245680999999 1,1,4849,0.8742941203 1,1,4850,0.8742941203 @@ -22377,10 +22377,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4856,0.8600799401999999 1,1,4857,0.8474913319 1,1,4858,0.8334913318999999 -1,1,4859,0.8201913318999998 -1,1,4860,0.8138913319000001 -1,1,4861,0.8075913318999999 -1,1,4862,0.8082913318999999 +1,1,4859,0.8201913318999999 +1,1,4860,0.8138913319 +1,1,4861,0.8075913319 +1,1,4862,0.8082913319 1,1,4863,0.8145913319 1,1,4864,0.8215913318999999 1,1,4865,0.8285913319 @@ -22388,20 +22388,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4867,0.8585377039 1,1,4868,0.8624768076999999 1,1,4869,0.8664159117999999 -1,1,4870,0.8703550161999999 -1,1,4871,0.8703550161999999 +1,1,4870,0.8703550162 +1,1,4871,0.8703550162 1,1,4872,0.8723245680999999 1,1,4873,0.8742941203 1,1,4874,0.8742941203 1,1,4875,0.8742941203 1,1,4876,0.8762636728 1,1,4877,0.8742941203 -1,1,4878,0.8703550161999999 +1,1,4878,0.8703550162 1,1,4879,0.8644463599 1,1,4880,0.8585377039 1,1,4881,0.8425913319 -1,1,4882,0.8229913318999998 -1,1,4883,0.8159913319000001 +1,1,4882,0.8229913319 +1,1,4883,0.8159913319 1,1,4884,0.8089913318999999 1,1,4885,0.8026913319 1,1,4886,0.7963913319 @@ -22411,32 +22411,32 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4890,0.8362913318999999 1,1,4891,0.8585377039 1,1,4892,0.8644463599 -1,1,4893,0.8683854642999999 -1,1,4894,0.8683854642999999 -1,1,4895,0.8683854642999999 -1,1,4896,0.8683854642999999 -1,1,4897,0.8782332246999999 -1,1,4898,0.8802027765999999 -1,1,4899,0.8802027765999999 -1,1,4900,0.8821723288 -1,1,4901,0.8821723288 +1,1,4893,0.8683854643 +1,1,4894,0.8683854643 +1,1,4895,0.8683854643 +1,1,4896,0.8683854643 +1,1,4897,0.8782332247 +1,1,4898,0.8802027766 +1,1,4899,0.8802027766 +1,1,4900,0.8821723288000001 +1,1,4901,0.8821723288000001 1,1,4902,0.8762636728 1,1,4903,0.8699277005999999 1,1,4904,0.8619190443 1,1,4905,0.8539103883 1,1,4906,0.8369913319 1,1,4907,0.8173913318999999 -1,1,4908,0.8040913318999999 +1,1,4908,0.8040913319 1,1,4909,0.7977913319 1,1,4910,0.7914913319 1,1,4911,0.7914913319 1,1,4912,0.7984913319 -1,1,4913,0.8061913318999999 +1,1,4913,0.8061913319 1,1,4914,0.8334913318999999 1,1,4915,0.8581103883 1,1,4916,0.8644463599 -1,1,4917,0.8683854642999999 -1,1,4918,0.8703550161999999 +1,1,4917,0.8683854643 +1,1,4918,0.8703550162 1,1,4919,0.8742941203 1,1,4920,0.8742941203 1,1,4921,0.8742941203 @@ -22444,12 +22444,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4923,0.8742941203 1,1,4924,0.8762636728 1,1,4925,0.8742941203 -1,1,4926,0.8703550161999999 +1,1,4926,0.8703550162 1,1,4927,0.8644463599 1,1,4928,0.8585377039 1,1,4929,0.8425913319 -1,1,4930,0.8229913318999998 -1,1,4931,0.8159913319000001 +1,1,4930,0.8229913319 +1,1,4931,0.8159913319 1,1,4932,0.8089913318999999 1,1,4933,0.8026913319 1,1,4934,0.7963913319 @@ -22459,56 +22459,56 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,4938,0.8362913318999999 1,1,4939,0.8585377039 1,1,4940,0.8644463599 -1,1,4941,0.8683854642999999 -1,1,4942,0.8683854642999999 -1,1,4943,0.8683854642999999 -1,1,4944,0.8683854642999999 -1,1,4945,0.8802027765999999 -1,1,4946,0.8802027765999999 -1,1,4947,0.8821723288 -1,1,4948,0.8821723288 -1,1,4949,0.8821723288 -1,1,4950,0.8802027765999999 +1,1,4941,0.8683854643 +1,1,4942,0.8683854643 +1,1,4943,0.8683854643 +1,1,4944,0.8683854643 +1,1,4945,0.8802027766 +1,1,4946,0.8802027766 +1,1,4947,0.8821723288000001 +1,1,4948,0.8821723288000001 +1,1,4949,0.8821723288000001 +1,1,4950,0.8802027766 1,1,4951,0.8742941203 -1,1,4952,0.8683854642999999 +1,1,4952,0.8683854643 1,1,4953,0.8620494920999999 1,1,4954,0.8567103883 1,1,4955,0.8404913319 1,1,4956,0.8271913318999999 -1,1,4957,0.8201913318999998 +1,1,4957,0.8201913318999999 1,1,4958,0.8131913319 -1,1,4959,0.8138913319000001 -1,1,4960,0.8208913318999999 +1,1,4959,0.8138913319 +1,1,4960,0.8208913319 1,1,4961,0.8278913319 1,1,4962,0.8488913319 1,1,4963,0.8624768076999999 -1,1,4964,0.8683854642999999 +1,1,4964,0.8683854643 1,1,4965,0.8723245680999999 1,1,4966,0.8742941203 1,1,4967,0.8762636728 -1,1,4968,0.8782332246999999 -1,1,4969,0.8782332246999999 -1,1,4970,0.8802027765999999 -1,1,4971,0.8802027765999999 -1,1,4972,0.8821723288 -1,1,4973,0.8821723288 +1,1,4968,0.8782332247 +1,1,4969,0.8782332247 +1,1,4970,0.8802027766 +1,1,4971,0.8802027766 +1,1,4972,0.8821723288000001 +1,1,4973,0.8821723288000001 1,1,4974,0.8762636728 1,1,4975,0.8699277005999999 1,1,4976,0.8619190443 1,1,4977,0.8539103883 1,1,4978,0.8369913319 1,1,4979,0.8173913318999999 -1,1,4980,0.8040913318999999 +1,1,4980,0.8040913319 1,1,4981,0.7977913319 1,1,4982,0.7914913319 1,1,4983,0.7914913319 1,1,4984,0.7984913319 -1,1,4985,0.8061913318999999 +1,1,4985,0.8061913319 1,1,4986,0.8334913318999999 1,1,4987,0.8581103883 1,1,4988,0.8644463599 -1,1,4989,0.8683854642999999 -1,1,4990,0.8703550161999999 +1,1,4989,0.8683854643 +1,1,4990,0.8703550162 1,1,4991,0.8742941203 1,1,4992,0.8742941203 1,1,4993,0.8742941203 @@ -22521,10 +22521,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5000,0.8600799401999999 1,1,5001,0.8474913319 1,1,5002,0.8334913318999999 -1,1,5003,0.8201913318999998 -1,1,5004,0.8138913319000001 -1,1,5005,0.8075913318999999 -1,1,5006,0.8082913318999999 +1,1,5003,0.8201913318999999 +1,1,5004,0.8138913319 +1,1,5005,0.8075913319 +1,1,5006,0.8082913319 1,1,5007,0.8145913319 1,1,5008,0.8215913318999999 1,1,5009,0.8285913319 @@ -22532,21 +22532,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5011,0.8585377039 1,1,5012,0.8624768076999999 1,1,5013,0.8664159117999999 -1,1,5014,0.8703550161999999 -1,1,5015,0.8703550161999999 +1,1,5014,0.8703550162 +1,1,5015,0.8703550162 1,1,5016,0.8723245680999999 -1,1,5017,0.8703550161999999 +1,1,5017,0.8703550162 1,1,5018,0.8723245680999999 1,1,5019,0.8723245680999999 1,1,5020,0.8742941203 1,1,5021,0.8742941203 -1,1,5022,0.8703550161999999 +1,1,5022,0.8703550162 1,1,5023,0.8633190443 -1,1,5024,0.8572799401999999 +1,1,5024,0.8572799402 1,1,5025,0.8446913319 1,1,5026,0.8306913319 1,1,5027,0.8110913319 -1,1,5028,0.8040913318999999 +1,1,5028,0.8040913319 1,1,5029,0.7977913319 1,1,5030,0.7921913319 1,1,5031,0.7928913318999999 @@ -22557,19 +22557,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5036,0.8585377039 1,1,5037,0.8624768076999999 1,1,5038,0.8664159117999999 -1,1,5039,0.8683854642999999 -1,1,5040,0.8703550161999999 +1,1,5039,0.8683854643 +1,1,5040,0.8703550162 1,1,5041,0.8742941203 1,1,5042,0.8742941203 1,1,5043,0.8742941203 1,1,5044,0.8762636728 1,1,5045,0.8742941203 -1,1,5046,0.8703550161999999 +1,1,5046,0.8703550162 1,1,5047,0.8644463599 1,1,5048,0.8585377039 1,1,5049,0.8425913319 -1,1,5050,0.8229913318999998 -1,1,5051,0.8159913319000001 +1,1,5050,0.8229913319 +1,1,5051,0.8159913319 1,1,5052,0.8089913318999999 1,1,5053,0.8026913319 1,1,5054,0.7963913319 @@ -22579,41 +22579,41 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5058,0.8362913318999999 1,1,5059,0.8585377039 1,1,5060,0.8644463599 -1,1,5061,0.8683854642999999 -1,1,5062,0.8683854642999999 -1,1,5063,0.8683854642999999 -1,1,5064,0.8683854642999999 -1,1,5065,0.8782332246999999 -1,1,5066,0.8802027765999999 -1,1,5067,0.8802027765999999 -1,1,5068,0.8821723288 -1,1,5069,0.8821723288 +1,1,5061,0.8683854643 +1,1,5062,0.8683854643 +1,1,5063,0.8683854643 +1,1,5064,0.8683854643 +1,1,5065,0.8782332247 +1,1,5066,0.8802027766 +1,1,5067,0.8802027766 +1,1,5068,0.8821723288000001 +1,1,5069,0.8821723288000001 1,1,5070,0.8762636728 1,1,5071,0.8699277005999999 1,1,5072,0.8619190443 1,1,5073,0.8539103883 1,1,5074,0.8369913319 1,1,5075,0.8173913318999999 -1,1,5076,0.8040913318999999 +1,1,5076,0.8040913319 1,1,5077,0.7977913319 1,1,5078,0.7914913319 1,1,5079,0.7914913319 1,1,5080,0.7984913319 -1,1,5081,0.8061913318999999 +1,1,5081,0.8061913319 1,1,5082,0.8334913318999999 1,1,5083,0.8581103883 1,1,5084,0.8644463599 -1,1,5085,0.8683854642999999 -1,1,5086,0.8703550161999999 +1,1,5085,0.8683854643 +1,1,5086,0.8703550162 1,1,5087,0.8742941203 1,1,5088,0.8742941203 -1,1,5089,0.8841418812999998 +1,1,5089,0.8841418812999999 1,1,5090,0.8861114332 1,1,5091,0.8861114332 1,1,5092,0.8880809851 1,1,5093,0.8880809851 1,1,5094,0.8861114332 -1,1,5095,0.8802027765999999 +1,1,5095,0.8802027766 1,1,5096,0.8742941203 1,1,5097,0.8665581486999999 1,1,5098,0.8592494920999999 @@ -22624,22 +22624,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5103,0.8334913318999999 1,1,5104,0.8404913319 1,1,5105,0.8481913319 -1,1,5106,0.8605072557999999 -1,1,5107,0.8683854642999999 +1,1,5106,0.8605072558 +1,1,5107,0.8683854643 1,1,5108,0.8723245680999999 1,1,5109,0.8762636728 -1,1,5110,0.8802027765999999 -1,1,5111,0.8821723288 -1,1,5112,0.8821723288 +1,1,5110,0.8802027766 +1,1,5111,0.8821723288000001 +1,1,5112,0.8821723288000001 1,1,5113,0.8861114332 1,1,5114,0.8861114332 1,1,5115,0.8880809851 1,1,5116,0.8880809851 1,1,5117,0.8880809851 1,1,5118,0.8861114332 -1,1,5119,0.8802027765999999 +1,1,5119,0.8802027766 1,1,5120,0.8742941203 -1,1,5121,0.8703550161999999 +1,1,5121,0.8703550162 1,1,5122,0.8633190443 1,1,5123,0.8586799401999999 1,1,5124,0.8560103883 @@ -22651,9 +22651,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5130,0.8644463599 1,1,5131,0.8723245680999999 1,1,5132,0.8762636728 -1,1,5133,0.8782332246999999 -1,1,5134,0.8821723288 -1,1,5135,0.8841418812999998 +1,1,5133,0.8782332247 +1,1,5134,0.8821723288000001 +1,1,5135,0.8841418812999999 1,1,5136,0.8861114332 1,1,5137,0.8880809851 1,1,5138,0.8880809851 @@ -22661,11 +22661,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5140,0.8900505372999999 1,1,5141,0.8900505372999999 1,1,5142,0.8880809851 -1,1,5143,0.8841418812999998 -1,1,5144,0.8782332246999999 +1,1,5143,0.8841418812999999 +1,1,5144,0.8782332247 1,1,5145,0.8711972524999999 1,1,5146,0.8638885961999999 -1,1,5147,0.8572799401999999 +1,1,5147,0.8572799402 1,1,5148,0.8516913318999999 1,1,5149,0.8453913318999999 1,1,5150,0.8397913319 @@ -22675,20 +22675,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5154,0.8644463599 1,1,5155,0.8723245680999999 1,1,5156,0.8762636728 -1,1,5157,0.8802027765999999 -1,1,5158,0.8821723288 -1,1,5159,0.8821723288 -1,1,5160,0.8841418812999998 -1,1,5161,0.8841418812999998 -1,1,5162,0.8841418812999998 +1,1,5157,0.8802027766 +1,1,5158,0.8821723288000001 +1,1,5159,0.8821723288000001 +1,1,5160,0.8841418812999999 +1,1,5161,0.8841418812999999 +1,1,5162,0.8841418812999999 1,1,5163,0.8861114332 1,1,5164,0.8861114332 1,1,5165,0.8861114332 -1,1,5166,0.8841418812999998 -1,1,5167,0.8821723288 +1,1,5166,0.8841418812999999 +1,1,5167,0.8821723288000001 1,1,5168,0.8778059090999999 1,1,5169,0.8697972525 -1,1,5170,0.8644581486999998 +1,1,5170,0.8644581486999999 1,1,5171,0.8578494920999999 1,1,5172,0.8502913319 1,1,5173,0.8432913318999999 @@ -22696,23 +22696,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5175,0.8376913319 1,1,5176,0.8453913318999999 1,1,5177,0.8530913319 -1,1,5178,0.8605072557999999 -1,1,5179,0.8683854642999999 +1,1,5178,0.8605072558 +1,1,5179,0.8683854643 1,1,5180,0.8723245680999999 1,1,5181,0.8742941203 1,1,5182,0.8762636728 -1,1,5183,0.8782332246999999 -1,1,5184,0.8802027765999999 -1,1,5185,0.8841418812999998 -1,1,5186,0.8841418812999998 +1,1,5183,0.8782332247 +1,1,5184,0.8802027766 +1,1,5185,0.8841418812999999 +1,1,5186,0.8841418812999999 1,1,5187,0.8861114332 1,1,5188,0.8861114332 1,1,5189,0.8861114332 -1,1,5190,0.8841418812999998 -1,1,5191,0.8821723288 +1,1,5190,0.8841418812999999 +1,1,5191,0.8821723288000001 1,1,5192,0.8778059090999999 1,1,5193,0.8697972525 -1,1,5194,0.8644581486999998 +1,1,5194,0.8644581486999999 1,1,5195,0.8578494920999999 1,1,5196,0.8502913319 1,1,5197,0.8432913318999999 @@ -22720,24 +22720,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5199,0.8376913319 1,1,5200,0.8453913318999999 1,1,5201,0.8530913319 -1,1,5202,0.8605072557999999 -1,1,5203,0.8683854642999999 +1,1,5202,0.8605072558 +1,1,5203,0.8683854643 1,1,5204,0.8723245680999999 1,1,5205,0.8742941203 1,1,5206,0.8762636728 -1,1,5207,0.8782332246999999 -1,1,5208,0.8802027765999999 +1,1,5207,0.8782332247 +1,1,5208,0.8802027766 1,1,5209,0.8880809851 1,1,5210,0.8880809851 1,1,5211,0.8880809851 1,1,5212,0.8900505372999999 1,1,5213,0.8900505372999999 1,1,5214,0.8880809851 -1,1,5215,0.8841418812999998 -1,1,5216,0.8782332246999999 +1,1,5215,0.8841418812999999 +1,1,5216,0.8782332247 1,1,5217,0.8711972524999999 1,1,5218,0.8638885961999999 -1,1,5219,0.8572799401999999 +1,1,5219,0.8572799402 1,1,5220,0.8516913318999999 1,1,5221,0.8453913318999999 1,1,5222,0.8397913319 @@ -22747,17 +22747,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5226,0.8644463599 1,1,5227,0.8723245680999999 1,1,5228,0.8762636728 -1,1,5229,0.8802027765999999 -1,1,5230,0.8821723288 -1,1,5231,0.8821723288 -1,1,5232,0.8841418812999998 -1,1,5233,0.8841418812999998 +1,1,5229,0.8802027766 +1,1,5230,0.8821723288000001 +1,1,5231,0.8821723288000001 +1,1,5232,0.8841418812999999 +1,1,5233,0.8841418812999999 1,1,5234,0.8861114332 1,1,5235,0.8861114332 1,1,5236,0.8880809851 1,1,5237,0.8880809851 1,1,5238,0.8861114332 -1,1,5239,0.8802027765999999 +1,1,5239,0.8802027766 1,1,5240,0.8742941203 1,1,5241,0.8665581486999999 1,1,5242,0.8592494920999999 @@ -22768,21 +22768,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5247,0.8334913318999999 1,1,5248,0.8404913319 1,1,5249,0.8481913319 -1,1,5250,0.8605072557999999 -1,1,5251,0.8683854642999999 +1,1,5250,0.8605072558 +1,1,5251,0.8683854643 1,1,5252,0.8723245680999999 1,1,5253,0.8762636728 -1,1,5254,0.8802027765999999 -1,1,5255,0.8821723288 -1,1,5256,0.8821723288 +1,1,5254,0.8802027766 +1,1,5255,0.8821723288000001 +1,1,5256,0.8821723288000001 1,1,5257,0.8861114332 1,1,5258,0.8861114332 1,1,5259,0.8880809851 1,1,5260,0.8880809851 1,1,5261,0.8900505372999999 1,1,5262,0.8880809851 -1,1,5263,0.8841418812999998 -1,1,5264,0.8782332246999999 +1,1,5263,0.8841418812999999 +1,1,5264,0.8782332247 1,1,5265,0.8723245680999999 1,1,5266,0.8652885961999999 1,1,5267,0.8579799401999999 @@ -22791,12 +22791,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5270,0.8404913319 1,1,5271,0.8474913319 1,1,5272,0.8544913318999999 -1,1,5273,0.8605072557999999 +1,1,5273,0.8605072558 1,1,5274,0.8664159117999999 1,1,5275,0.8742941203 -1,1,5276,0.8782332246999999 -1,1,5277,0.8821723288 -1,1,5278,0.8841418812999998 +1,1,5276,0.8782332247 +1,1,5277,0.8821723288000001 +1,1,5278,0.8841418812999999 1,1,5279,0.8861114332 1,1,5280,0.8861114332 1,1,5281,0.8880809851 @@ -22805,11 +22805,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5284,0.8900505372999999 1,1,5285,0.8900505372999999 1,1,5286,0.8880809851 -1,1,5287,0.8841418812999998 -1,1,5288,0.8782332246999999 +1,1,5287,0.8841418812999999 +1,1,5288,0.8782332247 1,1,5289,0.8711972524999999 1,1,5290,0.8638885961999999 -1,1,5291,0.8572799401999999 +1,1,5291,0.8572799402 1,1,5292,0.8516913318999999 1,1,5293,0.8453913318999999 1,1,5294,0.8397913319 @@ -22819,21 +22819,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5298,0.8644463599 1,1,5299,0.8723245680999999 1,1,5300,0.8762636728 -1,1,5301,0.8802027765999999 -1,1,5302,0.8821723288 -1,1,5303,0.8821723288 -1,1,5304,0.8841418812999998 +1,1,5301,0.8802027766 +1,1,5302,0.8821723288000001 +1,1,5303,0.8821723288000001 +1,1,5304,0.8841418812999999 1,1,5305,0.8861114332 1,1,5306,0.8880809851 1,1,5307,0.8880809851 1,1,5308,0.8900505372999999 1,1,5309,0.8900505372999999 1,1,5310,0.8880809851 -1,1,5311,0.8821723288 +1,1,5311,0.8821723288000001 1,1,5312,0.8762636728 -1,1,5313,0.8692277005999999 +1,1,5313,0.8692277006 1,1,5314,0.8612190443 -1,1,5315,0.8565799401999998 +1,1,5315,0.8565799402 1,1,5316,0.8509913319 1,1,5317,0.8376913319 1,1,5318,0.8313913318999999 @@ -22841,23 +22841,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5320,0.8390913319 1,1,5321,0.8467913319 1,1,5322,0.8624768076999999 -1,1,5323,0.8703550161999999 +1,1,5323,0.8703550162 1,1,5324,0.8742941203 1,1,5325,0.8762636728 -1,1,5326,0.8802027765999999 -1,1,5327,0.8821723288 -1,1,5328,0.8841418812999998 +1,1,5326,0.8802027766 +1,1,5327,0.8821723288000001 +1,1,5328,0.8841418812999999 1,1,5329,0.8861114332 1,1,5330,0.8880809851 1,1,5331,0.8880809851 1,1,5332,0.8900505372999999 1,1,5333,0.8900505372999999 1,1,5334,0.8880809851 -1,1,5335,0.8821723288 +1,1,5335,0.8821723288000001 1,1,5336,0.8762636728 -1,1,5337,0.8692277005999999 +1,1,5337,0.8692277006 1,1,5338,0.8612190443 -1,1,5339,0.8565799401999998 +1,1,5339,0.8565799402 1,1,5340,0.8509913319 1,1,5341,0.8376913319 1,1,5342,0.8313913318999999 @@ -22865,19 +22865,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5344,0.8390913319 1,1,5345,0.8467913319 1,1,5346,0.8624768076999999 -1,1,5347,0.8703550161999999 +1,1,5347,0.8703550162 1,1,5348,0.8742941203 1,1,5349,0.8762636728 -1,1,5350,0.8802027765999999 -1,1,5351,0.8821723288 -1,1,5352,0.8841418812999998 -1,1,5353,0.8841418812999998 +1,1,5350,0.8802027766 +1,1,5351,0.8821723288000001 +1,1,5352,0.8841418812999999 +1,1,5353,0.8841418812999999 1,1,5354,0.8861114332 1,1,5355,0.8861114332 1,1,5356,0.8880809851 1,1,5357,0.8880809851 1,1,5358,0.8861114332 -1,1,5359,0.8802027765999999 +1,1,5359,0.8802027766 1,1,5360,0.8742941203 1,1,5361,0.8665581486999999 1,1,5362,0.8592494920999999 @@ -22888,22 +22888,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5367,0.8334913318999999 1,1,5368,0.8404913319 1,1,5369,0.8481913319 -1,1,5370,0.8605072557999999 -1,1,5371,0.8683854642999999 +1,1,5370,0.8605072558 +1,1,5371,0.8683854643 1,1,5372,0.8723245680999999 1,1,5373,0.8762636728 -1,1,5374,0.8802027765999999 -1,1,5375,0.8821723288 -1,1,5376,0.8821723288 +1,1,5374,0.8802027766 +1,1,5375,0.8821723288000001 +1,1,5376,0.8821723288000001 1,1,5377,0.8861114332 1,1,5378,0.8880809851 1,1,5379,0.8880809851 1,1,5380,0.8900505372999999 1,1,5381,0.8900505372999999 1,1,5382,0.8861114332 -1,1,5383,0.8821723288 +1,1,5383,0.8821723288000001 1,1,5384,0.8751363571999999 -1,1,5385,0.8671277005999999 +1,1,5385,0.8671277006 1,1,5386,0.8585494920999999 1,1,5387,0.8509913319 1,1,5388,0.8376913319 @@ -22911,21 +22911,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5390,0.8250913319 1,1,5391,0.8257913319 1,1,5392,0.8327913319 -1,1,5393,0.8411913319000001 +1,1,5393,0.8411913319 1,1,5394,0.8585377039 1,1,5395,0.8664159117999999 1,1,5396,0.8723245680999999 1,1,5397,0.8742941203 -1,1,5398,0.8782332246999999 -1,1,5399,0.8802027765999999 -1,1,5400,0.8821723288 -1,1,5401,0.8841418812999998 +1,1,5398,0.8782332247 +1,1,5399,0.8802027766 +1,1,5400,0.8821723288000001 +1,1,5401,0.8841418812999999 1,1,5402,0.8861114332 1,1,5403,0.8861114332 1,1,5404,0.8880809851 1,1,5405,0.8880809851 1,1,5406,0.8861114332 -1,1,5407,0.8802027765999999 +1,1,5407,0.8802027766 1,1,5408,0.8742941203 1,1,5409,0.8665581486999999 1,1,5410,0.8592494920999999 @@ -22936,22 +22936,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5415,0.8334913318999999 1,1,5416,0.8404913319 1,1,5417,0.8481913319 -1,1,5418,0.8605072557999999 -1,1,5419,0.8683854642999999 +1,1,5418,0.8605072558 +1,1,5419,0.8683854643 1,1,5420,0.8723245680999999 1,1,5421,0.8762636728 -1,1,5422,0.8802027765999999 -1,1,5423,0.8821723288 -1,1,5424,0.8821723288 +1,1,5422,0.8802027766 +1,1,5423,0.8821723288000001 +1,1,5424,0.8821723288000001 1,1,5425,0.8861114332 1,1,5426,0.8861114332 1,1,5427,0.8880809851 1,1,5428,0.8880809851 1,1,5429,0.8880809851 1,1,5430,0.8861114332 -1,1,5431,0.8802027765999999 +1,1,5431,0.8802027766 1,1,5432,0.8742941203 -1,1,5433,0.8703550161999999 +1,1,5433,0.8703550162 1,1,5434,0.8633190443 1,1,5435,0.8586799401999999 1,1,5436,0.8560103883 @@ -22963,34 +22963,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5442,0.8644463599 1,1,5443,0.8723245680999999 1,1,5444,0.8762636728 -1,1,5445,0.8782332246999999 -1,1,5446,0.8821723288 -1,1,5447,0.8841418812999998 +1,1,5445,0.8782332247 +1,1,5446,0.8821723288000001 +1,1,5447,0.8841418812999999 1,1,5448,0.8861114332 -1,1,5449,0.8802027765999999 -1,1,5450,0.8821723288 -1,1,5451,0.8821723288 -1,1,5452,0.8841418812999998 -1,1,5453,0.8841418812999998 -1,1,5454,0.8802027765999999 +1,1,5449,0.8802027766 +1,1,5450,0.8821723288000001 +1,1,5451,0.8821723288000001 +1,1,5452,0.8841418812999999 +1,1,5453,0.8841418812999999 +1,1,5454,0.8802027766 1,1,5455,0.8742941203 -1,1,5456,0.8672581486999998 +1,1,5456,0.8672581487 1,1,5457,0.8606494921 1,1,5458,0.8523913318999999 1,1,5459,0.8327913319 1,1,5460,0.8194913318999999 1,1,5461,0.8131913319 1,1,5462,0.8068913319 -1,1,5463,0.8138913319000001 +1,1,5463,0.8138913319 1,1,5464,0.8215913318999999 1,1,5465,0.8348913319 1,1,5466,0.8551913319 1,1,5467,0.8644463599 -1,1,5468,0.8703550161999999 +1,1,5468,0.8703550162 1,1,5469,0.8742941203 1,1,5470,0.8762636728 -1,1,5471,0.8782332246999999 -1,1,5472,0.8802027765999999 +1,1,5471,0.8782332247 +1,1,5472,0.8802027766 1,1,5473,0.8920200892 1,1,5474,0.8939896417000001 1,1,5475,0.8939896417000001 @@ -22998,29 +22998,29 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5477,0.8939896417000001 1,1,5478,0.8920200892 1,1,5479,0.8880809851 -1,1,5480,0.8821723288 +1,1,5480,0.8821723288000001 1,1,5481,0.8762636728 -1,1,5482,0.8703550161999999 +1,1,5482,0.8703550162 1,1,5483,0.8659885961999999 1,1,5484,0.8613494920999999 1,1,5485,0.8586799401999999 1,1,5486,0.8560103883 1,1,5487,0.8567103883 -1,1,5488,0.8593799401999999 +1,1,5488,0.8593799402 1,1,5489,0.8624768076999999 -1,1,5490,0.8703550161999999 +1,1,5490,0.8703550162 1,1,5491,0.8762636728 -1,1,5492,0.8802027765999999 -1,1,5493,0.8802027765999999 -1,1,5494,0.8821723288 -1,1,5495,0.8821723288 -1,1,5496,0.8841418812999998 -1,1,5497,0.8821723288 -1,1,5498,0.8821723288 -1,1,5499,0.8841418812999998 -1,1,5500,0.8841418812999998 -1,1,5501,0.8841418812999998 -1,1,5502,0.8802027765999999 +1,1,5492,0.8802027766 +1,1,5493,0.8802027766 +1,1,5494,0.8821723288000001 +1,1,5495,0.8821723288000001 +1,1,5496,0.8841418812999999 +1,1,5497,0.8821723288000001 +1,1,5498,0.8821723288000001 +1,1,5499,0.8841418812999999 +1,1,5500,0.8841418812999999 +1,1,5501,0.8841418812999999 +1,1,5502,0.8802027766 1,1,5503,0.8742941203 1,1,5504,0.8652885961999999 1,1,5505,0.8586799401999999 @@ -23029,27 +23029,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5508,0.8194913318999999 1,1,5509,0.8131913319 1,1,5510,0.8131913319 -1,1,5511,0.8138913319000001 -1,1,5512,0.8208913318999999 +1,1,5511,0.8138913319 +1,1,5512,0.8208913319 1,1,5513,0.8341913318999999 1,1,5514,0.8551913319 1,1,5515,0.8644463599 -1,1,5516,0.8703550161999999 +1,1,5516,0.8703550162 1,1,5517,0.8742941203 1,1,5518,0.8762636728 -1,1,5519,0.8782332246999999 -1,1,5520,0.8782332246999999 +1,1,5519,0.8782332247 +1,1,5520,0.8782332247 1,1,5521,0.8861114332 1,1,5522,0.8880809851 1,1,5523,0.8880809851 1,1,5524,0.8900505372999999 1,1,5525,0.8900505372999999 1,1,5526,0.8880809851 -1,1,5527,0.8821723288 +1,1,5527,0.8821723288000001 1,1,5528,0.8762636728 -1,1,5529,0.8692277005999999 +1,1,5529,0.8692277006 1,1,5530,0.8612190443 -1,1,5531,0.8565799401999998 +1,1,5531,0.8565799402 1,1,5532,0.8509913319 1,1,5533,0.8376913319 1,1,5534,0.8313913318999999 @@ -23057,45 +23057,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5536,0.8390913319 1,1,5537,0.8467913319 1,1,5538,0.8624768076999999 -1,1,5539,0.8703550161999999 +1,1,5539,0.8703550162 1,1,5540,0.8742941203 1,1,5541,0.8762636728 -1,1,5542,0.8802027765999999 -1,1,5543,0.8821723288 -1,1,5544,0.8841418812999998 -1,1,5545,0.8821723288 -1,1,5546,0.8821723288 -1,1,5547,0.8841418812999998 -1,1,5548,0.8841418812999998 -1,1,5549,0.8841418812999998 -1,1,5550,0.8821723288 +1,1,5542,0.8802027766 +1,1,5543,0.8821723288000001 +1,1,5544,0.8841418812999999 +1,1,5545,0.8821723288000001 +1,1,5546,0.8821723288000001 +1,1,5547,0.8841418812999999 +1,1,5548,0.8841418812999999 +1,1,5549,0.8841418812999999 +1,1,5550,0.8821723288000001 1,1,5551,0.8762636728 -1,1,5552,0.8703550161999999 +1,1,5552,0.8703550162 1,1,5553,0.8644463599 1,1,5554,0.8585377039 1,1,5555,0.8425913319 1,1,5556,0.8299913319 1,1,5557,0.8236913318999999 -1,1,5558,0.8229913318999998 -1,1,5559,0.8229913318999998 +1,1,5558,0.8229913319 +1,1,5559,0.8229913319 1,1,5560,0.8299913319 1,1,5561,0.8367186474999999 1,1,5562,0.8556186474999999 1,1,5563,0.8644463599 -1,1,5564,0.8703550161999999 +1,1,5564,0.8703550162 1,1,5565,0.8742941203 1,1,5566,0.8762636728 -1,1,5567,0.8782332246999999 -1,1,5568,0.8802027765999999 +1,1,5567,0.8782332247 +1,1,5568,0.8802027766 1,1,5569,0.8861114332 1,1,5570,0.8861114332 1,1,5571,0.8880809851 1,1,5572,0.8880809851 1,1,5573,0.8880809851 1,1,5574,0.8861114332 -1,1,5575,0.8802027765999999 +1,1,5575,0.8802027766 1,1,5576,0.8742941203 -1,1,5577,0.8703550161999999 +1,1,5577,0.8703550162 1,1,5578,0.8633190443 1,1,5579,0.8586799401999999 1,1,5580,0.8560103883 @@ -23107,9 +23107,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5586,0.8644463599 1,1,5587,0.8723245680999999 1,1,5588,0.8762636728 -1,1,5589,0.8782332246999999 -1,1,5590,0.8821723288 -1,1,5591,0.8841418812999998 +1,1,5589,0.8782332247 +1,1,5590,0.8821723288000001 +1,1,5591,0.8841418812999999 1,1,5592,0.8861114332 1,1,5593,0.8920200892 1,1,5594,0.8939896417000001 @@ -23118,32 +23118,32 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5597,0.8939896417000001 1,1,5598,0.8920200892 1,1,5599,0.8880809851 -1,1,5600,0.8821723288 +1,1,5600,0.8821723288000001 1,1,5601,0.8762636728 -1,1,5602,0.8703550161999999 +1,1,5602,0.8703550162 1,1,5603,0.8659885961999999 1,1,5604,0.8613494920999999 1,1,5605,0.8586799401999999 1,1,5606,0.8560103883 1,1,5607,0.8567103883 -1,1,5608,0.8593799401999999 +1,1,5608,0.8593799402 1,1,5609,0.8624768076999999 -1,1,5610,0.8703550161999999 +1,1,5610,0.8703550162 1,1,5611,0.8762636728 -1,1,5612,0.8802027765999999 -1,1,5613,0.8802027765999999 -1,1,5614,0.8821723288 -1,1,5615,0.8821723288 -1,1,5616,0.8841418812999998 +1,1,5612,0.8802027766 +1,1,5613,0.8802027766 +1,1,5614,0.8821723288000001 +1,1,5615,0.8821723288000001 +1,1,5616,0.8841418812999999 1,1,5617,0.8861114332 1,1,5618,0.8880809851 1,1,5619,0.8880809851 1,1,5620,0.8900505372999999 1,1,5621,0.8900505372999999 1,1,5622,0.8861114332 -1,1,5623,0.8821723288 +1,1,5623,0.8821723288000001 1,1,5624,0.8751363571999999 -1,1,5625,0.8671277005999999 +1,1,5625,0.8671277006 1,1,5626,0.8585494920999999 1,1,5627,0.8509913319 1,1,5628,0.8376913319 @@ -23151,23 +23151,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5630,0.8250913319 1,1,5631,0.8257913319 1,1,5632,0.8327913319 -1,1,5633,0.8411913319000001 +1,1,5633,0.8411913319 1,1,5634,0.8585377039 1,1,5635,0.8664159117999999 1,1,5636,0.8723245680999999 1,1,5637,0.8742941203 -1,1,5638,0.8782332246999999 -1,1,5639,0.8802027765999999 -1,1,5640,0.8821723288 +1,1,5638,0.8782332247 +1,1,5639,0.8802027766 +1,1,5640,0.8821723288000001 1,1,5641,0.8861114332 1,1,5642,0.8880809851 1,1,5643,0.8880809851 1,1,5644,0.8900505372999999 1,1,5645,0.8900505372999999 1,1,5646,0.8861114332 -1,1,5647,0.8821723288 +1,1,5647,0.8821723288000001 1,1,5648,0.8751363571999999 -1,1,5649,0.8671277005999999 +1,1,5649,0.8671277006 1,1,5650,0.8585494920999999 1,1,5651,0.8509913319 1,1,5652,0.8376913319 @@ -23175,24 +23175,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5654,0.8250913319 1,1,5655,0.8257913319 1,1,5656,0.8327913319 -1,1,5657,0.8411913319000001 +1,1,5657,0.8411913319 1,1,5658,0.8585377039 1,1,5659,0.8664159117999999 1,1,5660,0.8723245680999999 1,1,5661,0.8742941203 -1,1,5662,0.8782332246999999 -1,1,5663,0.8802027765999999 -1,1,5664,0.8821723288 -1,1,5665,0.8841418812999998 -1,1,5666,0.8841418812999998 +1,1,5662,0.8782332247 +1,1,5663,0.8802027766 +1,1,5664,0.8821723288000001 +1,1,5665,0.8841418812999999 +1,1,5666,0.8841418812999999 1,1,5667,0.8861114332 1,1,5668,0.8861114332 1,1,5669,0.8861114332 -1,1,5670,0.8841418812999998 -1,1,5671,0.8821723288 +1,1,5670,0.8841418812999999 +1,1,5671,0.8821723288000001 1,1,5672,0.8778059090999999 1,1,5673,0.8697972525 -1,1,5674,0.8644581486999998 +1,1,5674,0.8644581486999999 1,1,5675,0.8578494920999999 1,1,5676,0.8502913319 1,1,5677,0.8432913318999999 @@ -23200,20 +23200,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5679,0.8376913319 1,1,5680,0.8453913318999999 1,1,5681,0.8530913319 -1,1,5682,0.8605072557999999 -1,1,5683,0.8683854642999999 +1,1,5682,0.8605072558 +1,1,5683,0.8683854643 1,1,5684,0.8723245680999999 1,1,5685,0.8742941203 1,1,5686,0.8762636728 -1,1,5687,0.8782332246999999 -1,1,5688,0.8802027765999999 -1,1,5689,0.8841418812999998 +1,1,5687,0.8782332247 +1,1,5688,0.8802027766 +1,1,5689,0.8841418812999999 1,1,5690,0.8861114332 1,1,5691,0.8861114332 1,1,5692,0.8880809851 1,1,5693,0.8880809851 1,1,5694,0.8861114332 -1,1,5695,0.8802027765999999 +1,1,5695,0.8802027766 1,1,5696,0.8742941203 1,1,5697,0.8665581486999999 1,1,5698,0.8592494920999999 @@ -23224,44 +23224,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5703,0.8334913318999999 1,1,5704,0.8404913319 1,1,5705,0.8481913319 -1,1,5706,0.8605072557999999 -1,1,5707,0.8683854642999999 +1,1,5706,0.8605072558 +1,1,5707,0.8683854643 1,1,5708,0.8723245680999999 1,1,5709,0.8762636728 -1,1,5710,0.8802027765999999 -1,1,5711,0.8821723288 -1,1,5712,0.8821723288 -1,1,5713,0.8802027765999999 -1,1,5714,0.8821723288 -1,1,5715,0.8821723288 -1,1,5716,0.8841418812999998 -1,1,5717,0.8841418812999998 -1,1,5718,0.8802027765999999 +1,1,5710,0.8802027766 +1,1,5711,0.8821723288000001 +1,1,5712,0.8821723288000001 +1,1,5713,0.8802027766 +1,1,5714,0.8821723288000001 +1,1,5715,0.8821723288000001 +1,1,5716,0.8841418812999999 +1,1,5717,0.8841418812999999 +1,1,5718,0.8802027766 1,1,5719,0.8742941203 -1,1,5720,0.8672581486999998 +1,1,5720,0.8672581487 1,1,5721,0.8606494921 1,1,5722,0.8523913318999999 1,1,5723,0.8327913319 1,1,5724,0.8194913318999999 1,1,5725,0.8131913319 1,1,5726,0.8068913319 -1,1,5727,0.8138913319000001 +1,1,5727,0.8138913319 1,1,5728,0.8215913318999999 1,1,5729,0.8348913319 1,1,5730,0.8551913319 1,1,5731,0.8644463599 -1,1,5732,0.8703550161999999 +1,1,5732,0.8703550162 1,1,5733,0.8742941203 1,1,5734,0.8762636728 -1,1,5735,0.8782332246999999 -1,1,5736,0.8802027765999999 -1,1,5737,0.8841418812999998 +1,1,5735,0.8782332247 +1,1,5736,0.8802027766 +1,1,5737,0.8841418812999999 1,1,5738,0.8861114332 1,1,5739,0.8861114332 1,1,5740,0.8880809851 1,1,5741,0.8880809851 1,1,5742,0.8861114332 -1,1,5743,0.8802027765999999 +1,1,5743,0.8802027766 1,1,5744,0.8742941203 1,1,5745,0.8665581486999999 1,1,5746,0.8592494920999999 @@ -23272,37 +23272,37 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5751,0.8334913318999999 1,1,5752,0.8404913319 1,1,5753,0.8481913319 -1,1,5754,0.8605072557999999 -1,1,5755,0.8683854642999999 +1,1,5754,0.8605072558 +1,1,5755,0.8683854643 1,1,5756,0.8723245680999999 1,1,5757,0.8762636728 -1,1,5758,0.8802027765999999 -1,1,5759,0.8821723288 -1,1,5760,0.8821723288 +1,1,5758,0.8802027766 +1,1,5759,0.8821723288000001 +1,1,5760,0.8821723288000001 1,1,5761,0.8861114332 1,1,5762,0.8861114332 1,1,5763,0.8861114332 1,1,5764,0.8880809851 1,1,5765,0.8880809851 1,1,5766,0.8861114332 -1,1,5767,0.8821723288 +1,1,5767,0.8821723288000001 1,1,5768,0.8762636728 -1,1,5769,0.8703550161999999 +1,1,5769,0.8703550162 1,1,5770,0.8633190443 1,1,5771,0.8567103883 1,1,5772,0.8530913319 1,1,5773,0.8467913319 1,1,5774,0.8404913319 -1,1,5775,0.8411913319000001 +1,1,5775,0.8411913319 1,1,5776,0.8481913319 1,1,5777,0.8551913319 1,1,5778,0.8624768076999999 -1,1,5779,0.8703550161999999 +1,1,5779,0.8703550162 1,1,5780,0.8742941203 -1,1,5781,0.8782332246999999 -1,1,5782,0.8802027765999999 -1,1,5783,0.8821723288 -1,1,5784,0.8821723288 +1,1,5781,0.8782332247 +1,1,5782,0.8802027766 +1,1,5783,0.8821723288000001 +1,1,5784,0.8821723288000001 1,1,5785,0.8920200892 1,1,5786,0.8939896417000001 1,1,5787,0.8939896417000001 @@ -23310,30 +23310,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5789,0.8939896417000001 1,1,5790,0.8920200892 1,1,5791,0.8880809851 -1,1,5792,0.8821723288 +1,1,5792,0.8821723288000001 1,1,5793,0.8762636728 -1,1,5794,0.8703550161999999 +1,1,5794,0.8703550162 1,1,5795,0.8659885961999999 1,1,5796,0.8613494920999999 1,1,5797,0.8586799401999999 1,1,5798,0.8560103883 1,1,5799,0.8567103883 -1,1,5800,0.8593799401999999 +1,1,5800,0.8593799402 1,1,5801,0.8624768076999999 -1,1,5802,0.8703550161999999 +1,1,5802,0.8703550162 1,1,5803,0.8762636728 -1,1,5804,0.8802027765999999 -1,1,5805,0.8802027765999999 -1,1,5806,0.8821723288 -1,1,5807,0.8821723288 -1,1,5808,0.8841418812999998 -1,1,5809,0.8841418812999998 +1,1,5804,0.8802027766 +1,1,5805,0.8802027766 +1,1,5806,0.8821723288000001 +1,1,5807,0.8821723288000001 +1,1,5808,0.8841418812999999 +1,1,5809,0.8841418812999999 1,1,5810,0.8861114332 1,1,5811,0.8861114332 1,1,5812,0.8880809851 1,1,5813,0.8880809851 1,1,5814,0.8861114332 -1,1,5815,0.8802027765999999 +1,1,5815,0.8802027766 1,1,5816,0.8738668047 1,1,5817,0.8658581486999999 1,1,5818,0.8585494920999999 @@ -23344,24 +23344,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5823,0.8320913319 1,1,5824,0.8397913319 1,1,5825,0.8474913319 -1,1,5826,0.8605072557999999 -1,1,5827,0.8683854642999999 +1,1,5826,0.8605072558 +1,1,5827,0.8683854643 1,1,5828,0.8742941203 -1,1,5829,0.8782332246999999 -1,1,5830,0.8802027765999999 -1,1,5831,0.8821723288 -1,1,5832,0.8821723288 +1,1,5829,0.8782332247 +1,1,5830,0.8802027766 +1,1,5831,0.8821723288000001 +1,1,5832,0.8821723288000001 1,1,5833,0.8723245680999999 1,1,5834,0.8723245680999999 1,1,5835,0.8742941203 1,1,5836,0.8742941203 1,1,5837,0.8742941203 1,1,5838,0.8742941203 -1,1,5839,0.8703550161999999 +1,1,5839,0.8703550162 1,1,5840,0.8644463599 1,1,5841,0.8574103882999999 1,1,5842,0.8404913319 -1,1,5843,0.8208913318999999 +1,1,5843,0.8208913319 1,1,5844,0.8145913319 1,1,5845,0.8089913318999999 1,1,5846,0.8026913319 @@ -23371,8 +23371,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5850,0.8585377039 1,1,5851,0.8624768076999999 1,1,5852,0.8664159117999999 -1,1,5853,0.8683854642999999 -1,1,5854,0.8703550161999999 +1,1,5853,0.8683854643 +1,1,5854,0.8703550162 1,1,5855,0.8723245680999999 1,1,5856,0.8723245680999999 1,1,5857,0.8742941203 @@ -23388,16 +23388,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5867,0.8397913319 1,1,5868,0.8327913319 1,1,5869,0.8264913319 -1,1,5870,0.8208913318999999 +1,1,5870,0.8208913319 1,1,5871,0.8222913318999999 1,1,5872,0.8292913318999999 1,1,5873,0.8493186475 1,1,5874,0.8624768076999999 1,1,5875,0.8664159117999999 -1,1,5876,0.8703550161999999 -1,1,5877,0.8703550161999999 -1,1,5878,0.8703550161999999 -1,1,5879,0.8703550161999999 +1,1,5876,0.8703550162 +1,1,5877,0.8703550162 +1,1,5878,0.8703550162 +1,1,5879,0.8703550162 1,1,5880,0.8723245680999999 1,1,5881,0.8723245680999999 1,1,5882,0.8723245680999999 @@ -23405,11 +23405,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5884,0.8742941203 1,1,5885,0.8742941203 1,1,5886,0.8742941203 -1,1,5887,0.8703550161999999 +1,1,5887,0.8703550162 1,1,5888,0.8644463599 1,1,5889,0.8574103882999999 1,1,5890,0.8404913319 -1,1,5891,0.8208913318999999 +1,1,5891,0.8208913319 1,1,5892,0.8145913319 1,1,5893,0.8089913318999999 1,1,5894,0.8026913319 @@ -23419,8 +23419,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5898,0.8585377039 1,1,5899,0.8624768076999999 1,1,5900,0.8664159117999999 -1,1,5901,0.8683854642999999 -1,1,5902,0.8703550161999999 +1,1,5901,0.8683854643 +1,1,5902,0.8703550162 1,1,5903,0.8723245680999999 1,1,5904,0.8723245680999999 1,1,5905,0.8742941203 @@ -23436,23 +23436,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5915,0.8397913319 1,1,5916,0.8327913319 1,1,5917,0.8264913319 -1,1,5918,0.8208913318999999 +1,1,5918,0.8208913319 1,1,5919,0.8222913318999999 1,1,5920,0.8292913318999999 1,1,5921,0.8493186475 1,1,5922,0.8624768076999999 1,1,5923,0.8664159117999999 -1,1,5924,0.8703550161999999 -1,1,5925,0.8703550161999999 -1,1,5926,0.8703550161999999 -1,1,5927,0.8703550161999999 +1,1,5924,0.8703550162 +1,1,5925,0.8703550162 +1,1,5926,0.8703550162 +1,1,5927,0.8703550162 1,1,5928,0.8723245680999999 -1,1,5929,0.8802027765999999 -1,1,5930,0.8821723288 -1,1,5931,0.8821723288 -1,1,5932,0.8821723288 -1,1,5933,0.8841418812999998 -1,1,5934,0.8821723288 +1,1,5929,0.8802027766 +1,1,5930,0.8821723288000001 +1,1,5931,0.8821723288000001 +1,1,5932,0.8821723288000001 +1,1,5933,0.8841418812999999 +1,1,5934,0.8821723288000001 1,1,5935,0.8762636728 1,1,5936,0.8699277005999999 1,1,5937,0.8599494920999999 @@ -23462,26 +23462,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5941,0.8124913319 1,1,5942,0.8124913319 1,1,5943,0.8131913319 -1,1,5944,0.8201913318999998 -1,1,5945,0.8411913319000001 -1,1,5946,0.8605072557999999 -1,1,5947,0.8683854642999999 +1,1,5944,0.8201913318999999 +1,1,5945,0.8411913319 +1,1,5946,0.8605072558 +1,1,5947,0.8683854643 1,1,5948,0.8723245680999999 1,1,5949,0.8762636728 -1,1,5950,0.8782332246999999 -1,1,5951,0.8782332246999999 -1,1,5952,0.8802027765999999 +1,1,5950,0.8782332247 +1,1,5951,0.8782332247 +1,1,5952,0.8802027766 1,1,5953,0.8723245680999999 1,1,5954,0.8723245680999999 1,1,5955,0.8742941203 1,1,5956,0.8742941203 1,1,5957,0.8742941203 1,1,5958,0.8742941203 -1,1,5959,0.8703550161999999 +1,1,5959,0.8703550162 1,1,5960,0.8644463599 1,1,5961,0.8574103882999999 1,1,5962,0.8404913319 -1,1,5963,0.8208913318999999 +1,1,5963,0.8208913319 1,1,5964,0.8145913319 1,1,5965,0.8089913318999999 1,1,5966,0.8026913319 @@ -23491,16 +23491,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5970,0.8585377039 1,1,5971,0.8624768076999999 1,1,5972,0.8664159117999999 -1,1,5973,0.8683854642999999 -1,1,5974,0.8703550161999999 +1,1,5973,0.8683854643 +1,1,5974,0.8703550162 1,1,5975,0.8723245680999999 1,1,5976,0.8723245680999999 -1,1,5977,0.8802027765999999 -1,1,5978,0.8821723288 -1,1,5979,0.8821723288 -1,1,5980,0.8821723288 -1,1,5981,0.8841418812999998 -1,1,5982,0.8821723288 +1,1,5977,0.8802027766 +1,1,5978,0.8821723288000001 +1,1,5979,0.8821723288000001 +1,1,5980,0.8821723288000001 +1,1,5981,0.8841418812999999 +1,1,5982,0.8821723288000001 1,1,5983,0.8762636728 1,1,5984,0.8699277005999999 1,1,5985,0.8599494920999999 @@ -23510,15 +23510,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,5989,0.8124913319 1,1,5990,0.8124913319 1,1,5991,0.8131913319 -1,1,5992,0.8201913318999998 -1,1,5993,0.8411913319000001 -1,1,5994,0.8605072557999999 -1,1,5995,0.8683854642999999 +1,1,5992,0.8201913318999999 +1,1,5993,0.8411913319 +1,1,5994,0.8605072558 +1,1,5995,0.8683854643 1,1,5996,0.8723245680999999 1,1,5997,0.8762636728 -1,1,5998,0.8782332246999999 -1,1,5999,0.8782332246999999 -1,1,6000,0.8802027765999999 +1,1,5998,0.8782332247 +1,1,5999,0.8782332247 +1,1,6000,0.8802027766 1,1,6001,0.8742941203 1,1,6002,0.8742941203 1,1,6003,0.8762636728 @@ -23532,16 +23532,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6011,0.8397913319 1,1,6012,0.8327913319 1,1,6013,0.8264913319 -1,1,6014,0.8208913318999999 +1,1,6014,0.8208913319 1,1,6015,0.8222913318999999 1,1,6016,0.8292913318999999 1,1,6017,0.8493186475 1,1,6018,0.8624768076999999 1,1,6019,0.8664159117999999 -1,1,6020,0.8703550161999999 -1,1,6021,0.8703550161999999 -1,1,6022,0.8703550161999999 -1,1,6023,0.8703550161999999 +1,1,6020,0.8703550162 +1,1,6021,0.8703550162 +1,1,6022,0.8703550162 +1,1,6023,0.8703550162 1,1,6024,0.8723245680999999 1,1,6025,0.8723245680999999 1,1,6026,0.8723245680999999 @@ -23549,11 +23549,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6028,0.8742941203 1,1,6029,0.8742941203 1,1,6030,0.8742941203 -1,1,6031,0.8703550161999999 +1,1,6031,0.8703550162 1,1,6032,0.8644463599 1,1,6033,0.8574103882999999 1,1,6034,0.8404913319 -1,1,6035,0.8208913318999999 +1,1,6035,0.8208913319 1,1,6036,0.8145913319 1,1,6037,0.8089913318999999 1,1,6038,0.8026913319 @@ -23563,16 +23563,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6042,0.8585377039 1,1,6043,0.8624768076999999 1,1,6044,0.8664159117999999 -1,1,6045,0.8683854642999999 -1,1,6046,0.8703550161999999 +1,1,6045,0.8683854643 +1,1,6046,0.8703550162 1,1,6047,0.8723245680999999 1,1,6048,0.8723245680999999 -1,1,6049,0.8802027765999999 -1,1,6050,0.8821723288 -1,1,6051,0.8821723288 -1,1,6052,0.8821723288 -1,1,6053,0.8841418812999998 -1,1,6054,0.8821723288 +1,1,6049,0.8802027766 +1,1,6050,0.8821723288000001 +1,1,6051,0.8821723288000001 +1,1,6052,0.8821723288000001 +1,1,6053,0.8841418812999999 +1,1,6054,0.8821723288000001 1,1,6055,0.8762636728 1,1,6056,0.8699277005999999 1,1,6057,0.8599494920999999 @@ -23582,26 +23582,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6061,0.8124913319 1,1,6062,0.8124913319 1,1,6063,0.8131913319 -1,1,6064,0.8201913318999998 -1,1,6065,0.8411913319000001 -1,1,6066,0.8605072557999999 -1,1,6067,0.8683854642999999 +1,1,6064,0.8201913318999999 +1,1,6065,0.8411913319 +1,1,6066,0.8605072558 +1,1,6067,0.8683854643 1,1,6068,0.8723245680999999 1,1,6069,0.8762636728 -1,1,6070,0.8782332246999999 -1,1,6071,0.8782332246999999 -1,1,6072,0.8802027765999999 +1,1,6070,0.8782332247 +1,1,6071,0.8782332247 +1,1,6072,0.8802027766 1,1,6073,0.8723245680999999 1,1,6074,0.8723245680999999 1,1,6075,0.8742941203 1,1,6076,0.8742941203 1,1,6077,0.8742941203 1,1,6078,0.8742941203 -1,1,6079,0.8703550161999999 +1,1,6079,0.8703550162 1,1,6080,0.8644463599 1,1,6081,0.8574103882999999 1,1,6082,0.8404913319 -1,1,6083,0.8208913318999999 +1,1,6083,0.8208913319 1,1,6084,0.8145913319 1,1,6085,0.8089913318999999 1,1,6086,0.8026913319 @@ -23611,64 +23611,64 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6090,0.8585377039 1,1,6091,0.8624768076999999 1,1,6092,0.8664159117999999 -1,1,6093,0.8683854642999999 -1,1,6094,0.8703550161999999 +1,1,6093,0.8683854643 +1,1,6094,0.8703550162 1,1,6095,0.8723245680999999 1,1,6096,0.8723245680999999 -1,1,6097,0.8782332246999999 -1,1,6098,0.8782332246999999 -1,1,6099,0.8802027765999999 -1,1,6100,0.8802027765999999 -1,1,6101,0.8821723288 -1,1,6102,0.8802027765999999 +1,1,6097,0.8782332247 +1,1,6098,0.8782332247 +1,1,6099,0.8802027766 +1,1,6100,0.8802027766 +1,1,6101,0.8821723288000001 +1,1,6102,0.8802027766 1,1,6103,0.8742941203 1,1,6104,0.8645885962 -1,1,6105,0.8565799401999998 +1,1,6105,0.8565799402 1,1,6106,0.8439913319 1,1,6107,0.8243913319 1,1,6108,0.8110913319 1,1,6109,0.8047913319 1,1,6110,0.8047913319 -1,1,6111,0.8117913319000001 -1,1,6112,0.8187913318999999 +1,1,6111,0.8117913319 +1,1,6112,0.8187913319 1,1,6113,0.8334913318999999 1,1,6114,0.8581103883 1,1,6115,0.8644463599 -1,1,6116,0.8683854642999999 -1,1,6117,0.8703550161999999 +1,1,6116,0.8683854643 +1,1,6117,0.8703550162 1,1,6118,0.8723245680999999 1,1,6119,0.8762636728 1,1,6120,0.8762636728 -1,1,6121,0.8802027765999999 -1,1,6122,0.8802027765999999 -1,1,6123,0.8802027765999999 -1,1,6124,0.8821723288 -1,1,6125,0.8821723288 -1,1,6126,0.8802027765999999 +1,1,6121,0.8802027766 +1,1,6122,0.8802027766 +1,1,6123,0.8802027766 +1,1,6124,0.8821723288000001 +1,1,6125,0.8821723288000001 +1,1,6126,0.8802027766 1,1,6127,0.8762636728 1,1,6128,0.8699277005999999 1,1,6129,0.8599494920999999 1,1,6130,0.8516913318999999 1,1,6131,0.8320913319 -1,1,6132,0.8187913318999999 +1,1,6132,0.8187913319 1,1,6133,0.8124913319 1,1,6134,0.8124913319 1,1,6135,0.8194913318999999 1,1,6136,0.8264913319 1,1,6137,0.8404913319 -1,1,6138,0.8605072557999999 -1,1,6139,0.8683854642999999 +1,1,6138,0.8605072558 +1,1,6139,0.8683854643 1,1,6140,0.8723245680999999 1,1,6141,0.8742941203 1,1,6142,0.8762636728 1,1,6143,0.8762636728 -1,1,6144,0.8782332246999999 -1,1,6145,0.8802027765999999 -1,1,6146,0.8821723288 -1,1,6147,0.8821723288 -1,1,6148,0.8821723288 -1,1,6149,0.8841418812999998 -1,1,6150,0.8821723288 +1,1,6144,0.8782332247 +1,1,6145,0.8802027766 +1,1,6146,0.8821723288000001 +1,1,6147,0.8821723288000001 +1,1,6148,0.8821723288000001 +1,1,6149,0.8841418812999999 +1,1,6150,0.8821723288000001 1,1,6151,0.8762636728 1,1,6152,0.8699277005999999 1,1,6153,0.8599494920999999 @@ -23678,45 +23678,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6157,0.8124913319 1,1,6158,0.8124913319 1,1,6159,0.8131913319 -1,1,6160,0.8201913318999998 -1,1,6161,0.8411913319000001 -1,1,6162,0.8605072557999999 -1,1,6163,0.8683854642999999 +1,1,6160,0.8201913318999999 +1,1,6161,0.8411913319 +1,1,6162,0.8605072558 +1,1,6163,0.8683854643 1,1,6164,0.8723245680999999 1,1,6165,0.8762636728 -1,1,6166,0.8782332246999999 -1,1,6167,0.8782332246999999 -1,1,6168,0.8802027765999999 -1,1,6169,0.8802027765999999 -1,1,6170,0.8802027765999999 -1,1,6171,0.8802027765999999 -1,1,6172,0.8821723288 -1,1,6173,0.8821723288 -1,1,6174,0.8802027765999999 +1,1,6166,0.8782332247 +1,1,6167,0.8782332247 +1,1,6168,0.8802027766 +1,1,6169,0.8802027766 +1,1,6170,0.8802027766 +1,1,6171,0.8802027766 +1,1,6172,0.8821723288000001 +1,1,6173,0.8821723288000001 +1,1,6174,0.8802027766 1,1,6175,0.8762636728 1,1,6176,0.8699277005999999 1,1,6177,0.8599494920999999 1,1,6178,0.8516913318999999 1,1,6179,0.8320913319 -1,1,6180,0.8187913318999999 +1,1,6180,0.8187913319 1,1,6181,0.8124913319 1,1,6182,0.8124913319 1,1,6183,0.8194913318999999 1,1,6184,0.8264913319 1,1,6185,0.8404913319 -1,1,6186,0.8605072557999999 -1,1,6187,0.8683854642999999 +1,1,6186,0.8605072558 +1,1,6187,0.8683854643 1,1,6188,0.8723245680999999 1,1,6189,0.8742941203 1,1,6190,0.8762636728 1,1,6191,0.8762636728 -1,1,6192,0.8782332246999999 -1,1,6193,0.8802027765999999 -1,1,6194,0.8821723288 -1,1,6195,0.8821723288 -1,1,6196,0.8821723288 -1,1,6197,0.8841418812999998 -1,1,6198,0.8821723288 +1,1,6192,0.8782332247 +1,1,6193,0.8802027766 +1,1,6194,0.8821723288000001 +1,1,6195,0.8821723288000001 +1,1,6196,0.8821723288000001 +1,1,6197,0.8841418812999999 +1,1,6198,0.8821723288000001 1,1,6199,0.8762636728 1,1,6200,0.8699277005999999 1,1,6201,0.8599494920999999 @@ -23726,21 +23726,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6205,0.8124913319 1,1,6206,0.8124913319 1,1,6207,0.8131913319 -1,1,6208,0.8201913318999998 -1,1,6209,0.8411913319000001 -1,1,6210,0.8605072557999999 -1,1,6211,0.8683854642999999 +1,1,6208,0.8201913318999999 +1,1,6209,0.8411913319 +1,1,6210,0.8605072558 +1,1,6211,0.8683854643 1,1,6212,0.8723245680999999 1,1,6213,0.8762636728 -1,1,6214,0.8782332246999999 -1,1,6215,0.8782332246999999 -1,1,6216,0.8802027765999999 -1,1,6217,0.8802027765999999 -1,1,6218,0.8821723288 -1,1,6219,0.8821723288 -1,1,6220,0.8821723288 -1,1,6221,0.8841418812999998 -1,1,6222,0.8821723288 +1,1,6214,0.8782332247 +1,1,6215,0.8782332247 +1,1,6216,0.8802027766 +1,1,6217,0.8802027766 +1,1,6218,0.8821723288000001 +1,1,6219,0.8821723288000001 +1,1,6220,0.8821723288000001 +1,1,6221,0.8841418812999999 +1,1,6222,0.8821723288000001 1,1,6223,0.8762636728 1,1,6224,0.8699277005999999 1,1,6225,0.8599494920999999 @@ -23750,69 +23750,69 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6229,0.8124913319 1,1,6230,0.8124913319 1,1,6231,0.8131913319 -1,1,6232,0.8201913318999998 -1,1,6233,0.8411913319000001 -1,1,6234,0.8605072557999999 -1,1,6235,0.8683854642999999 +1,1,6232,0.8201913318999999 +1,1,6233,0.8411913319 +1,1,6234,0.8605072558 +1,1,6235,0.8683854643 1,1,6236,0.8723245680999999 1,1,6237,0.8762636728 -1,1,6238,0.8782332246999999 -1,1,6239,0.8782332246999999 -1,1,6240,0.8802027765999999 -1,1,6241,0.8782332246999999 -1,1,6242,0.8782332246999999 -1,1,6243,0.8802027765999999 -1,1,6244,0.8802027765999999 -1,1,6245,0.8821723288 -1,1,6246,0.8802027765999999 +1,1,6238,0.8782332247 +1,1,6239,0.8782332247 +1,1,6240,0.8802027766 +1,1,6241,0.8782332247 +1,1,6242,0.8782332247 +1,1,6243,0.8802027766 +1,1,6244,0.8802027766 +1,1,6245,0.8821723288000001 +1,1,6246,0.8802027766 1,1,6247,0.8742941203 1,1,6248,0.8645885962 -1,1,6249,0.8565799401999998 +1,1,6249,0.8565799402 1,1,6250,0.8439913319 1,1,6251,0.8243913319 1,1,6252,0.8110913319 1,1,6253,0.8047913319 1,1,6254,0.8047913319 -1,1,6255,0.8117913319000001 -1,1,6256,0.8187913318999999 +1,1,6255,0.8117913319 +1,1,6256,0.8187913319 1,1,6257,0.8334913318999999 1,1,6258,0.8581103883 1,1,6259,0.8644463599 -1,1,6260,0.8683854642999999 -1,1,6261,0.8703550161999999 +1,1,6260,0.8683854643 +1,1,6261,0.8703550162 1,1,6262,0.8723245680999999 1,1,6263,0.8762636728 1,1,6264,0.8762636728 -1,1,6265,0.8782332246999999 -1,1,6266,0.8782332246999999 -1,1,6267,0.8802027765999999 -1,1,6268,0.8802027765999999 -1,1,6269,0.8821723288 -1,1,6270,0.8802027765999999 +1,1,6265,0.8782332247 +1,1,6266,0.8782332247 +1,1,6267,0.8802027766 +1,1,6268,0.8802027766 +1,1,6269,0.8821723288000001 +1,1,6270,0.8802027766 1,1,6271,0.8742941203 1,1,6272,0.8645885962 -1,1,6273,0.8565799401999998 +1,1,6273,0.8565799402 1,1,6274,0.8439913319 1,1,6275,0.8243913319 1,1,6276,0.8110913319 1,1,6277,0.8047913319 1,1,6278,0.8047913319 -1,1,6279,0.8117913319000001 -1,1,6280,0.8187913318999999 +1,1,6279,0.8117913319 +1,1,6280,0.8187913319 1,1,6281,0.8334913318999999 1,1,6282,0.8581103883 1,1,6283,0.8644463599 -1,1,6284,0.8683854642999999 -1,1,6285,0.8703550161999999 +1,1,6284,0.8683854643 +1,1,6285,0.8703550162 1,1,6286,0.8723245680999999 1,1,6287,0.8762636728 1,1,6288,0.8762636728 -1,1,6289,0.8802027765999999 -1,1,6290,0.8821723288 -1,1,6291,0.8821723288 -1,1,6292,0.8821723288 -1,1,6293,0.8841418812999998 -1,1,6294,0.8821723288 +1,1,6289,0.8802027766 +1,1,6290,0.8821723288000001 +1,1,6291,0.8821723288000001 +1,1,6292,0.8821723288000001 +1,1,6293,0.8841418812999999 +1,1,6294,0.8821723288000001 1,1,6295,0.8762636728 1,1,6296,0.8699277005999999 1,1,6297,0.8599494920999999 @@ -23822,36 +23822,36 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6301,0.8124913319 1,1,6302,0.8124913319 1,1,6303,0.8131913319 -1,1,6304,0.8201913318999998 -1,1,6305,0.8411913319000001 -1,1,6306,0.8605072557999999 -1,1,6307,0.8683854642999999 +1,1,6304,0.8201913318999999 +1,1,6305,0.8411913319 +1,1,6306,0.8605072558 +1,1,6307,0.8683854643 1,1,6308,0.8723245680999999 1,1,6309,0.8762636728 -1,1,6310,0.8782332246999999 -1,1,6311,0.8782332246999999 -1,1,6312,0.8802027765999999 -1,1,6313,0.8782332246999999 -1,1,6314,0.8782332246999999 -1,1,6315,0.8802027765999999 -1,1,6316,0.8802027765999999 -1,1,6317,0.8821723288 -1,1,6318,0.8802027765999999 +1,1,6310,0.8782332247 +1,1,6311,0.8782332247 +1,1,6312,0.8802027766 +1,1,6313,0.8782332247 +1,1,6314,0.8782332247 +1,1,6315,0.8802027766 +1,1,6316,0.8802027766 +1,1,6317,0.8821723288000001 +1,1,6318,0.8802027766 1,1,6319,0.8742941203 1,1,6320,0.8645885962 -1,1,6321,0.8565799401999998 +1,1,6321,0.8565799402 1,1,6322,0.8439913319 1,1,6323,0.8243913319 1,1,6324,0.8110913319 1,1,6325,0.8047913319 1,1,6326,0.8047913319 -1,1,6327,0.8117913319000001 -1,1,6328,0.8187913318999999 +1,1,6327,0.8117913319 +1,1,6328,0.8187913319 1,1,6329,0.8334913318999999 1,1,6330,0.8581103883 1,1,6331,0.8644463599 -1,1,6332,0.8683854642999999 -1,1,6333,0.8703550161999999 +1,1,6332,0.8683854643 +1,1,6333,0.8703550162 1,1,6334,0.8723245680999999 1,1,6335,0.8762636728 1,1,6336,0.8762636728 @@ -23861,11 +23861,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6340,0.8742941203 1,1,6341,0.8742941203 1,1,6342,0.8742941203 -1,1,6343,0.8703550161999999 +1,1,6343,0.8703550162 1,1,6344,0.8644463599 1,1,6345,0.8574103882999999 1,1,6346,0.8404913319 -1,1,6347,0.8208913318999999 +1,1,6347,0.8208913319 1,1,6348,0.8145913319 1,1,6349,0.8089913318999999 1,1,6350,0.8026913319 @@ -23875,16 +23875,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6354,0.8585377039 1,1,6355,0.8624768076999999 1,1,6356,0.8664159117999999 -1,1,6357,0.8683854642999999 -1,1,6358,0.8703550161999999 +1,1,6357,0.8683854643 +1,1,6358,0.8703550162 1,1,6359,0.8723245680999999 1,1,6360,0.8723245680999999 -1,1,6361,0.8802027765999999 -1,1,6362,0.8821723288 -1,1,6363,0.8821723288 -1,1,6364,0.8821723288 -1,1,6365,0.8841418812999998 -1,1,6366,0.8821723288 +1,1,6361,0.8802027766 +1,1,6362,0.8821723288000001 +1,1,6363,0.8821723288000001 +1,1,6364,0.8821723288000001 +1,1,6365,0.8841418812999999 +1,1,6366,0.8821723288000001 1,1,6367,0.8762636728 1,1,6368,0.8699277005999999 1,1,6369,0.8599494920999999 @@ -23894,36 +23894,36 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6373,0.8124913319 1,1,6374,0.8124913319 1,1,6375,0.8131913319 -1,1,6376,0.8201913318999998 -1,1,6377,0.8411913319000001 -1,1,6378,0.8605072557999999 -1,1,6379,0.8683854642999999 +1,1,6376,0.8201913318999999 +1,1,6377,0.8411913319 +1,1,6378,0.8605072558 +1,1,6379,0.8683854643 1,1,6380,0.8723245680999999 1,1,6381,0.8762636728 -1,1,6382,0.8782332246999999 -1,1,6383,0.8782332246999999 -1,1,6384,0.8802027765999999 -1,1,6385,0.8782332246999999 -1,1,6386,0.8782332246999999 -1,1,6387,0.8802027765999999 -1,1,6388,0.8802027765999999 -1,1,6389,0.8821723288 -1,1,6390,0.8802027765999999 +1,1,6382,0.8782332247 +1,1,6383,0.8782332247 +1,1,6384,0.8802027766 +1,1,6385,0.8782332247 +1,1,6386,0.8782332247 +1,1,6387,0.8802027766 +1,1,6388,0.8802027766 +1,1,6389,0.8821723288000001 +1,1,6390,0.8802027766 1,1,6391,0.8742941203 1,1,6392,0.8645885962 -1,1,6393,0.8565799401999998 +1,1,6393,0.8565799402 1,1,6394,0.8439913319 1,1,6395,0.8243913319 1,1,6396,0.8110913319 1,1,6397,0.8047913319 1,1,6398,0.8047913319 -1,1,6399,0.8117913319000001 -1,1,6400,0.8187913318999999 +1,1,6399,0.8117913319 +1,1,6400,0.8187913319 1,1,6401,0.8334913318999999 1,1,6402,0.8581103883 1,1,6403,0.8644463599 -1,1,6404,0.8683854642999999 -1,1,6405,0.8703550161999999 +1,1,6404,0.8683854643 +1,1,6405,0.8703550162 1,1,6406,0.8723245680999999 1,1,6407,0.8762636728 1,1,6408,0.8762636728 @@ -23933,11 +23933,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6412,0.8742941203 1,1,6413,0.8742941203 1,1,6414,0.8742941203 -1,1,6415,0.8703550161999999 +1,1,6415,0.8703550162 1,1,6416,0.8644463599 1,1,6417,0.8574103882999999 1,1,6418,0.8404913319 -1,1,6419,0.8208913318999999 +1,1,6419,0.8208913319 1,1,6420,0.8145913319 1,1,6421,0.8089913318999999 1,1,6422,0.8026913319 @@ -23947,8 +23947,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6426,0.8585377039 1,1,6427,0.8624768076999999 1,1,6428,0.8664159117999999 -1,1,6429,0.8683854642999999 -1,1,6430,0.8703550161999999 +1,1,6429,0.8683854643 +1,1,6430,0.8703550162 1,1,6431,0.8723245680999999 1,1,6432,0.8723245680999999 1,1,6433,0.8742941203 @@ -23964,47 +23964,47 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6443,0.8397913319 1,1,6444,0.8327913319 1,1,6445,0.8264913319 -1,1,6446,0.8208913318999999 +1,1,6446,0.8208913319 1,1,6447,0.8222913318999999 1,1,6448,0.8292913318999999 1,1,6449,0.8493186475 1,1,6450,0.8624768076999999 1,1,6451,0.8664159117999999 -1,1,6452,0.8703550161999999 -1,1,6453,0.8703550161999999 -1,1,6454,0.8703550161999999 -1,1,6455,0.8703550161999999 +1,1,6452,0.8703550162 +1,1,6453,0.8703550162 +1,1,6454,0.8703550162 +1,1,6455,0.8703550162 1,1,6456,0.8723245680999999 -1,1,6457,0.8802027765999999 -1,1,6458,0.8802027765999999 -1,1,6459,0.8802027765999999 -1,1,6460,0.8821723288 -1,1,6461,0.8821723288 -1,1,6462,0.8802027765999999 +1,1,6457,0.8802027766 +1,1,6458,0.8802027766 +1,1,6459,0.8802027766 +1,1,6460,0.8821723288000001 +1,1,6461,0.8821723288000001 +1,1,6462,0.8802027766 1,1,6463,0.8762636728 1,1,6464,0.8699277005999999 1,1,6465,0.8599494920999999 1,1,6466,0.8516913318999999 1,1,6467,0.8320913319 -1,1,6468,0.8187913318999999 +1,1,6468,0.8187913319 1,1,6469,0.8124913319 1,1,6470,0.8124913319 1,1,6471,0.8194913318999999 1,1,6472,0.8264913319 1,1,6473,0.8404913319 -1,1,6474,0.8605072557999999 -1,1,6475,0.8683854642999999 +1,1,6474,0.8605072558 +1,1,6475,0.8683854643 1,1,6476,0.8723245680999999 1,1,6477,0.8742941203 1,1,6478,0.8762636728 1,1,6479,0.8762636728 -1,1,6480,0.8782332246999999 -1,1,6481,0.8802027765999999 -1,1,6482,0.8821723288 -1,1,6483,0.8821723288 -1,1,6484,0.8821723288 -1,1,6485,0.8841418812999998 -1,1,6486,0.8821723288 +1,1,6480,0.8782332247 +1,1,6481,0.8802027766 +1,1,6482,0.8821723288000001 +1,1,6483,0.8821723288000001 +1,1,6484,0.8821723288000001 +1,1,6485,0.8841418812999999 +1,1,6486,0.8821723288000001 1,1,6487,0.8762636728 1,1,6488,0.8699277005999999 1,1,6489,0.8599494920999999 @@ -24014,97 +24014,97 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6493,0.8124913319 1,1,6494,0.8124913319 1,1,6495,0.8131913319 -1,1,6496,0.8201913318999998 -1,1,6497,0.8411913319000001 -1,1,6498,0.8605072557999999 -1,1,6499,0.8683854642999999 +1,1,6496,0.8201913318999999 +1,1,6497,0.8411913319 +1,1,6498,0.8605072558 +1,1,6499,0.8683854643 1,1,6500,0.8723245680999999 1,1,6501,0.8762636728 -1,1,6502,0.8782332246999999 -1,1,6503,0.8782332246999999 -1,1,6504,0.8802027765999999 -1,1,6505,0.8802027765999999 -1,1,6506,0.8802027765999999 -1,1,6507,0.8802027765999999 -1,1,6508,0.8821723288 -1,1,6509,0.8821723288 -1,1,6510,0.8802027765999999 +1,1,6502,0.8782332247 +1,1,6503,0.8782332247 +1,1,6504,0.8802027766 +1,1,6505,0.8802027766 +1,1,6506,0.8802027766 +1,1,6507,0.8802027766 +1,1,6508,0.8821723288000001 +1,1,6509,0.8821723288000001 +1,1,6510,0.8802027766 1,1,6511,0.8762636728 1,1,6512,0.8699277005999999 1,1,6513,0.8599494920999999 1,1,6514,0.8516913318999999 1,1,6515,0.8320913319 -1,1,6516,0.8187913318999999 +1,1,6516,0.8187913319 1,1,6517,0.8124913319 1,1,6518,0.8124913319 1,1,6519,0.8194913318999999 1,1,6520,0.8264913319 1,1,6521,0.8404913319 -1,1,6522,0.8605072557999999 -1,1,6523,0.8683854642999999 +1,1,6522,0.8605072558 +1,1,6523,0.8683854643 1,1,6524,0.8723245680999999 1,1,6525,0.8742941203 1,1,6526,0.8762636728 1,1,6527,0.8762636728 -1,1,6528,0.8782332246999999 -1,1,6529,0.8782332246999999 -1,1,6530,0.8782332246999999 -1,1,6531,0.8802027765999999 -1,1,6532,0.8802027765999999 -1,1,6533,0.8821723288 -1,1,6534,0.8802027765999999 +1,1,6528,0.8782332247 +1,1,6529,0.8782332247 +1,1,6530,0.8782332247 +1,1,6531,0.8802027766 +1,1,6532,0.8802027766 +1,1,6533,0.8821723288000001 +1,1,6534,0.8802027766 1,1,6535,0.8742941203 1,1,6536,0.8645885962 -1,1,6537,0.8565799401999998 +1,1,6537,0.8565799402 1,1,6538,0.8439913319 1,1,6539,0.8243913319 1,1,6540,0.8110913319 1,1,6541,0.8047913319 1,1,6542,0.8047913319 -1,1,6543,0.8117913319000001 -1,1,6544,0.8187913318999999 +1,1,6543,0.8117913319 +1,1,6544,0.8187913319 1,1,6545,0.8334913318999999 1,1,6546,0.8581103883 1,1,6547,0.8644463599 -1,1,6548,0.8683854642999999 -1,1,6549,0.8703550161999999 +1,1,6548,0.8683854643 +1,1,6549,0.8703550162 1,1,6550,0.8723245680999999 1,1,6551,0.8762636728 1,1,6552,0.8762636728 1,1,6553,0.8762636728 -1,1,6554,0.8782332246999999 -1,1,6555,0.8802027765999999 -1,1,6556,0.8802027765999999 -1,1,6557,0.8821723288 -1,1,6558,0.8821723288 -1,1,6559,0.8782332246999999 +1,1,6554,0.8782332247 +1,1,6555,0.8802027766 +1,1,6556,0.8802027766 +1,1,6557,0.8821723288000001 +1,1,6558,0.8821723288000001 +1,1,6559,0.8782332247 1,1,6560,0.8742941203 -1,1,6561,0.8683854642999999 +1,1,6561,0.8683854643 1,1,6562,0.8644463599 -1,1,6563,0.8605072557999999 +1,1,6563,0.8605072558 1,1,6564,0.8585377039 1,1,6565,0.8556186474999999 1,1,6566,0.8556186474999999 1,1,6567,0.8585377039 -1,1,6568,0.8605072557999999 +1,1,6568,0.8605072558 1,1,6569,0.8664159117999999 -1,1,6570,0.8703550161999999 +1,1,6570,0.8703550162 1,1,6571,0.8742941203 -1,1,6572,0.8782332246999999 -1,1,6573,0.8802027765999999 -1,1,6574,0.8821723288 -1,1,6575,0.8841418812999998 +1,1,6572,0.8782332247 +1,1,6573,0.8802027766 +1,1,6574,0.8821723288000001 +1,1,6575,0.8841418812999999 1,1,6576,0.8861114332 -1,1,6577,0.8841418812999998 +1,1,6577,0.8841418812999999 1,1,6578,0.8861114332 1,1,6579,0.8861114332 1,1,6580,0.8880809851 1,1,6581,0.8880809851 1,1,6582,0.8880809851 1,1,6583,0.8861114332 -1,1,6584,0.8802027765999999 +1,1,6584,0.8802027766 1,1,6585,0.8742941203 -1,1,6586,0.8672581486999998 +1,1,6586,0.8672581487 1,1,6587,0.8606494921 1,1,6588,0.8560103883 1,1,6589,0.8523913318999999 @@ -24112,21 +24112,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6591,0.8537913319 1,1,6592,0.8574103882999999 1,1,6593,0.8624768076999999 -1,1,6594,0.8703550161999999 +1,1,6594,0.8703550162 1,1,6595,0.8742941203 1,1,6596,0.8762636728 -1,1,6597,0.8802027765999999 -1,1,6598,0.8802027765999999 -1,1,6599,0.8821723288 -1,1,6600,0.8821723288 -1,1,6601,0.8841418812999998 -1,1,6602,0.8841418812999998 +1,1,6597,0.8802027766 +1,1,6598,0.8802027766 +1,1,6599,0.8821723288000001 +1,1,6600,0.8821723288000001 +1,1,6601,0.8841418812999999 +1,1,6602,0.8841418812999999 1,1,6603,0.8861114332 1,1,6604,0.8880809851 1,1,6605,0.8880809851 1,1,6606,0.8880809851 1,1,6607,0.8861114332 -1,1,6608,0.8821723288 +1,1,6608,0.8821723288000001 1,1,6609,0.8762636728 1,1,6610,0.8699277005999999 1,1,6611,0.8652885961999999 @@ -24134,12 +24134,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6613,0.8586799401999999 1,1,6614,0.8574103882999999 1,1,6615,0.8581103883 -1,1,6616,0.8605072557999999 +1,1,6616,0.8605072558 1,1,6617,0.8664159117999999 1,1,6618,0.8723245680999999 1,1,6619,0.8762636728 -1,1,6620,0.8802027765999999 -1,1,6621,0.8841418812999998 +1,1,6620,0.8802027766 +1,1,6621,0.8841418812999999 1,1,6622,0.8861114332 1,1,6623,0.8880809851 1,1,6624,0.8900505372999999 @@ -24150,31 +24150,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6629,0.8762636728 1,1,6630,0.8762636728 1,1,6631,0.8742941203 -1,1,6632,0.8703550161999999 +1,1,6632,0.8703550162 1,1,6633,0.8644463599 1,1,6634,0.8585377039 1,1,6635,0.8488913319 1,1,6636,0.8418913319 -1,1,6637,0.8355913318999999 +1,1,6637,0.8355913319 1,1,6638,0.8418913319 1,1,6639,0.8488913319 1,1,6640,0.8556186474999999 -1,1,6641,0.8605072557999999 +1,1,6641,0.8605072558 1,1,6642,0.8644463599 -1,1,6643,0.8683854642999999 -1,1,6644,0.8703550161999999 +1,1,6643,0.8683854643 +1,1,6644,0.8703550162 1,1,6645,0.8723245680999999 1,1,6646,0.8742941203 1,1,6647,0.8742941203 1,1,6648,0.8762636728 -1,1,6649,0.8841418812999998 -1,1,6650,0.8841418812999998 +1,1,6649,0.8841418812999999 +1,1,6650,0.8841418812999999 1,1,6651,0.8861114332 1,1,6652,0.8880809851 1,1,6653,0.8880809851 1,1,6654,0.8880809851 1,1,6655,0.8861114332 -1,1,6656,0.8821723288 +1,1,6656,0.8821723288000001 1,1,6657,0.8762636728 1,1,6658,0.8699277005999999 1,1,6659,0.8652885961999999 @@ -24182,23 +24182,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6661,0.8586799401999999 1,1,6662,0.8574103882999999 1,1,6663,0.8581103883 -1,1,6664,0.8605072557999999 +1,1,6664,0.8605072558 1,1,6665,0.8664159117999999 1,1,6666,0.8723245680999999 1,1,6667,0.8762636728 -1,1,6668,0.8802027765999999 -1,1,6669,0.8841418812999998 +1,1,6668,0.8802027766 +1,1,6669,0.8841418812999999 1,1,6670,0.8861114332 1,1,6671,0.8880809851 1,1,6672,0.8900505372999999 -1,1,6673,0.8841418812999998 -1,1,6674,0.8841418812999998 +1,1,6673,0.8841418812999999 +1,1,6674,0.8841418812999999 1,1,6675,0.8861114332 1,1,6676,0.8880809851 1,1,6677,0.8880809851 1,1,6678,0.8880809851 1,1,6679,0.8861114332 -1,1,6680,0.8821723288 +1,1,6680,0.8821723288000001 1,1,6681,0.8762636728 1,1,6682,0.8699277005999999 1,1,6683,0.8652885961999999 @@ -24206,23 +24206,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6685,0.8586799401999999 1,1,6686,0.8574103882999999 1,1,6687,0.8581103883 -1,1,6688,0.8605072557999999 +1,1,6688,0.8605072558 1,1,6689,0.8664159117999999 1,1,6690,0.8723245680999999 1,1,6691,0.8762636728 -1,1,6692,0.8802027765999999 -1,1,6693,0.8841418812999998 +1,1,6692,0.8802027766 +1,1,6693,0.8841418812999999 1,1,6694,0.8861114332 1,1,6695,0.8880809851 1,1,6696,0.8900505372999999 -1,1,6697,0.8841418812999998 -1,1,6698,0.8841418812999998 +1,1,6697,0.8841418812999999 +1,1,6698,0.8841418812999999 1,1,6699,0.8861114332 1,1,6700,0.8880809851 1,1,6701,0.8880809851 1,1,6702,0.8880809851 1,1,6703,0.8861114332 -1,1,6704,0.8821723288 +1,1,6704,0.8821723288000001 1,1,6705,0.8762636728 1,1,6706,0.8699277005999999 1,1,6707,0.8652885961999999 @@ -24230,23 +24230,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6709,0.8586799401999999 1,1,6710,0.8574103882999999 1,1,6711,0.8581103883 -1,1,6712,0.8605072557999999 +1,1,6712,0.8605072558 1,1,6713,0.8664159117999999 1,1,6714,0.8723245680999999 1,1,6715,0.8762636728 -1,1,6716,0.8802027765999999 -1,1,6717,0.8841418812999998 +1,1,6716,0.8802027766 +1,1,6717,0.8841418812999999 1,1,6718,0.8861114332 1,1,6719,0.8880809851 1,1,6720,0.8900505372999999 -1,1,6721,0.8841418812999998 -1,1,6722,0.8841418812999998 +1,1,6721,0.8841418812999999 +1,1,6722,0.8841418812999999 1,1,6723,0.8861114332 1,1,6724,0.8880809851 1,1,6725,0.8880809851 1,1,6726,0.8880809851 1,1,6727,0.8861114332 -1,1,6728,0.8821723288 +1,1,6728,0.8821723288000001 1,1,6729,0.8762636728 1,1,6730,0.8699277005999999 1,1,6731,0.8652885961999999 @@ -24254,12 +24254,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6733,0.8586799401999999 1,1,6734,0.8574103882999999 1,1,6735,0.8581103883 -1,1,6736,0.8605072557999999 +1,1,6736,0.8605072558 1,1,6737,0.8664159117999999 1,1,6738,0.8723245680999999 1,1,6739,0.8762636728 -1,1,6740,0.8802027765999999 -1,1,6741,0.8841418812999998 +1,1,6740,0.8802027766 +1,1,6741,0.8841418812999999 1,1,6742,0.8861114332 1,1,6743,0.8880809851 1,1,6744,0.8900505372999999 @@ -24270,19 +24270,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6749,0.8762636728 1,1,6750,0.8762636728 1,1,6751,0.8742941203 -1,1,6752,0.8703550161999999 +1,1,6752,0.8703550162 1,1,6753,0.8644463599 1,1,6754,0.8585377039 1,1,6755,0.8488913319 1,1,6756,0.8418913319 -1,1,6757,0.8355913318999999 +1,1,6757,0.8355913319 1,1,6758,0.8418913319 1,1,6759,0.8488913319 1,1,6760,0.8556186474999999 -1,1,6761,0.8605072557999999 +1,1,6761,0.8605072558 1,1,6762,0.8644463599 -1,1,6763,0.8683854642999999 -1,1,6764,0.8703550161999999 +1,1,6763,0.8683854643 +1,1,6764,0.8703550162 1,1,6765,0.8723245680999999 1,1,6766,0.8742941203 1,1,6767,0.8742941203 @@ -24294,19 +24294,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6773,0.8762636728 1,1,6774,0.8762636728 1,1,6775,0.8742941203 -1,1,6776,0.8703550161999999 +1,1,6776,0.8703550162 1,1,6777,0.8644463599 1,1,6778,0.8585377039 1,1,6779,0.8488913319 1,1,6780,0.8418913319 -1,1,6781,0.8355913318999999 +1,1,6781,0.8355913319 1,1,6782,0.8418913319 1,1,6783,0.8488913319 1,1,6784,0.8556186474999999 -1,1,6785,0.8605072557999999 +1,1,6785,0.8605072558 1,1,6786,0.8644463599 -1,1,6787,0.8683854642999999 -1,1,6788,0.8703550161999999 +1,1,6787,0.8683854643 +1,1,6788,0.8703550162 1,1,6789,0.8723245680999999 1,1,6790,0.8742941203 1,1,6791,0.8742941203 @@ -24318,31 +24318,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6797,0.8762636728 1,1,6798,0.8762636728 1,1,6799,0.8742941203 -1,1,6800,0.8703550161999999 +1,1,6800,0.8703550162 1,1,6801,0.8644463599 1,1,6802,0.8585377039 1,1,6803,0.8488913319 1,1,6804,0.8418913319 -1,1,6805,0.8355913318999999 +1,1,6805,0.8355913319 1,1,6806,0.8418913319 1,1,6807,0.8488913319 1,1,6808,0.8556186474999999 -1,1,6809,0.8605072557999999 +1,1,6809,0.8605072558 1,1,6810,0.8644463599 -1,1,6811,0.8683854642999999 -1,1,6812,0.8703550161999999 +1,1,6811,0.8683854643 +1,1,6812,0.8703550162 1,1,6813,0.8723245680999999 1,1,6814,0.8742941203 1,1,6815,0.8742941203 1,1,6816,0.8762636728 -1,1,6817,0.8841418812999998 -1,1,6818,0.8841418812999998 +1,1,6817,0.8841418812999999 +1,1,6818,0.8841418812999999 1,1,6819,0.8861114332 1,1,6820,0.8880809851 1,1,6821,0.8880809851 1,1,6822,0.8880809851 1,1,6823,0.8861114332 -1,1,6824,0.8821723288 +1,1,6824,0.8821723288000001 1,1,6825,0.8762636728 1,1,6826,0.8699277005999999 1,1,6827,0.8652885961999999 @@ -24350,12 +24350,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6829,0.8586799401999999 1,1,6830,0.8574103882999999 1,1,6831,0.8581103883 -1,1,6832,0.8605072557999999 +1,1,6832,0.8605072558 1,1,6833,0.8664159117999999 1,1,6834,0.8723245680999999 1,1,6835,0.8762636728 -1,1,6836,0.8802027765999999 -1,1,6837,0.8841418812999998 +1,1,6836,0.8802027766 +1,1,6837,0.8841418812999999 1,1,6838,0.8861114332 1,1,6839,0.8880809851 1,1,6840,0.8900505372999999 @@ -24363,10 +24363,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6842,0.8742941203 1,1,6843,0.8762636728 1,1,6844,0.8762636728 -1,1,6845,0.8782332246999999 -1,1,6846,0.8782332246999999 +1,1,6845,0.8782332247 +1,1,6846,0.8782332247 1,1,6847,0.8742941203 -1,1,6848,0.8683854642999999 +1,1,6848,0.8683854643 1,1,6849,0.8620494920999999 1,1,6850,0.8544913318999999 1,1,6851,0.8474913319 @@ -24378,34 +24378,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6857,0.8556186474999999 1,1,6858,0.8624768076999999 1,1,6859,0.8664159117999999 -1,1,6860,0.8683854642999999 -1,1,6861,0.8703550161999999 +1,1,6860,0.8683854643 +1,1,6861,0.8703550162 1,1,6862,0.8723245680999999 1,1,6863,0.8723245680999999 1,1,6864,0.8723245680999999 1,1,6865,0.8762636728 -1,1,6866,0.8782332246999999 -1,1,6867,0.8802027765999999 -1,1,6868,0.8802027765999999 -1,1,6869,0.8821723288 -1,1,6870,0.8821723288 -1,1,6871,0.8782332246999999 +1,1,6866,0.8782332247 +1,1,6867,0.8802027766 +1,1,6868,0.8802027766 +1,1,6869,0.8821723288000001 +1,1,6870,0.8821723288000001 +1,1,6871,0.8782332247 1,1,6872,0.8742941203 -1,1,6873,0.8683854642999999 +1,1,6873,0.8683854643 1,1,6874,0.8644463599 -1,1,6875,0.8605072557999999 +1,1,6875,0.8605072558 1,1,6876,0.8585377039 1,1,6877,0.8556186474999999 1,1,6878,0.8556186474999999 1,1,6879,0.8585377039 -1,1,6880,0.8605072557999999 +1,1,6880,0.8605072558 1,1,6881,0.8664159117999999 -1,1,6882,0.8703550161999999 +1,1,6882,0.8703550162 1,1,6883,0.8742941203 -1,1,6884,0.8782332246999999 -1,1,6885,0.8802027765999999 -1,1,6886,0.8821723288 -1,1,6887,0.8841418812999998 +1,1,6884,0.8782332247 +1,1,6885,0.8802027766 +1,1,6886,0.8821723288000001 +1,1,6887,0.8841418812999999 1,1,6888,0.8861114332 1,1,6889,0.8742941203 1,1,6890,0.8742941203 @@ -24414,33 +24414,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6893,0.8762636728 1,1,6894,0.8762636728 1,1,6895,0.8742941203 -1,1,6896,0.8703550161999999 +1,1,6896,0.8703550162 1,1,6897,0.8644463599 1,1,6898,0.8585377039 1,1,6899,0.8488913319 1,1,6900,0.8418913319 -1,1,6901,0.8355913318999999 +1,1,6901,0.8355913319 1,1,6902,0.8418913319 1,1,6903,0.8488913319 1,1,6904,0.8556186474999999 -1,1,6905,0.8605072557999999 +1,1,6905,0.8605072558 1,1,6906,0.8644463599 -1,1,6907,0.8683854642999999 -1,1,6908,0.8703550161999999 +1,1,6907,0.8683854643 +1,1,6908,0.8703550162 1,1,6909,0.8723245680999999 1,1,6910,0.8742941203 1,1,6911,0.8742941203 1,1,6912,0.8762636728 -1,1,6913,0.8841418812999998 +1,1,6913,0.8841418812999999 1,1,6914,0.8861114332 1,1,6915,0.8861114332 1,1,6916,0.8880809851 1,1,6917,0.8880809851 1,1,6918,0.8880809851 1,1,6919,0.8861114332 -1,1,6920,0.8802027765999999 +1,1,6920,0.8802027766 1,1,6921,0.8742941203 -1,1,6922,0.8672581486999998 +1,1,6922,0.8672581487 1,1,6923,0.8606494921 1,1,6924,0.8560103883 1,1,6925,0.8523913318999999 @@ -24448,13 +24448,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6927,0.8537913319 1,1,6928,0.8574103882999999 1,1,6929,0.8624768076999999 -1,1,6930,0.8703550161999999 +1,1,6930,0.8703550162 1,1,6931,0.8742941203 1,1,6932,0.8762636728 -1,1,6933,0.8802027765999999 -1,1,6934,0.8802027765999999 -1,1,6935,0.8821723288 -1,1,6936,0.8821723288 +1,1,6933,0.8802027766 +1,1,6934,0.8802027766 +1,1,6935,0.8821723288000001 +1,1,6936,0.8821723288000001 1,1,6937,0.8742941203 1,1,6938,0.8742941203 1,1,6939,0.8742941203 @@ -24462,55 +24462,55 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6941,0.8762636728 1,1,6942,0.8762636728 1,1,6943,0.8742941203 -1,1,6944,0.8703550161999999 +1,1,6944,0.8703550162 1,1,6945,0.8644463599 1,1,6946,0.8585377039 1,1,6947,0.8488913319 1,1,6948,0.8418913319 -1,1,6949,0.8355913318999999 +1,1,6949,0.8355913319 1,1,6950,0.8418913319 1,1,6951,0.8488913319 1,1,6952,0.8556186474999999 -1,1,6953,0.8605072557999999 +1,1,6953,0.8605072558 1,1,6954,0.8644463599 -1,1,6955,0.8683854642999999 -1,1,6956,0.8703550161999999 +1,1,6955,0.8683854643 +1,1,6956,0.8703550162 1,1,6957,0.8723245680999999 1,1,6958,0.8742941203 1,1,6959,0.8742941203 1,1,6960,0.8762636728 1,1,6961,0.8762636728 -1,1,6962,0.8782332246999999 -1,1,6963,0.8802027765999999 -1,1,6964,0.8802027765999999 -1,1,6965,0.8821723288 -1,1,6966,0.8821723288 -1,1,6967,0.8782332246999999 +1,1,6962,0.8782332247 +1,1,6963,0.8802027766 +1,1,6964,0.8802027766 +1,1,6965,0.8821723288000001 +1,1,6966,0.8821723288000001 +1,1,6967,0.8782332247 1,1,6968,0.8742941203 -1,1,6969,0.8683854642999999 +1,1,6969,0.8683854643 1,1,6970,0.8644463599 -1,1,6971,0.8605072557999999 +1,1,6971,0.8605072558 1,1,6972,0.8585377039 1,1,6973,0.8556186474999999 1,1,6974,0.8556186474999999 1,1,6975,0.8585377039 -1,1,6976,0.8605072557999999 +1,1,6976,0.8605072558 1,1,6977,0.8664159117999999 -1,1,6978,0.8703550161999999 +1,1,6978,0.8703550162 1,1,6979,0.8742941203 -1,1,6980,0.8782332246999999 -1,1,6981,0.8802027765999999 -1,1,6982,0.8821723288 -1,1,6983,0.8841418812999998 +1,1,6980,0.8782332247 +1,1,6981,0.8802027766 +1,1,6982,0.8821723288000001 +1,1,6983,0.8841418812999999 1,1,6984,0.8861114332 -1,1,6985,0.8841418812999998 -1,1,6986,0.8841418812999998 +1,1,6985,0.8841418812999999 +1,1,6986,0.8841418812999999 1,1,6987,0.8861114332 1,1,6988,0.8880809851 1,1,6989,0.8880809851 1,1,6990,0.8880809851 1,1,6991,0.8861114332 -1,1,6992,0.8821723288 +1,1,6992,0.8821723288000001 1,1,6993,0.8762636728 1,1,6994,0.8699277005999999 1,1,6995,0.8652885961999999 @@ -24518,12 +24518,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,6997,0.8586799401999999 1,1,6998,0.8574103882999999 1,1,6999,0.8581103883 -1,1,7000,0.8605072557999999 +1,1,7000,0.8605072558 1,1,7001,0.8664159117999999 1,1,7002,0.8723245680999999 1,1,7003,0.8762636728 -1,1,7004,0.8802027765999999 -1,1,7005,0.8841418812999998 +1,1,7004,0.8802027766 +1,1,7005,0.8841418812999999 1,1,7006,0.8861114332 1,1,7007,0.8880809851 1,1,7008,0.8900505372999999 @@ -24531,10 +24531,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7010,0.8742941203 1,1,7011,0.8762636728 1,1,7012,0.8762636728 -1,1,7013,0.8782332246999999 -1,1,7014,0.8782332246999999 +1,1,7013,0.8782332247 +1,1,7014,0.8782332247 1,1,7015,0.8742941203 -1,1,7016,0.8683854642999999 +1,1,7016,0.8683854643 1,1,7017,0.8620494920999999 1,1,7018,0.8544913318999999 1,1,7019,0.8474913319 @@ -24546,21 +24546,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7025,0.8556186474999999 1,1,7026,0.8624768076999999 1,1,7027,0.8664159117999999 -1,1,7028,0.8683854642999999 -1,1,7029,0.8703550161999999 +1,1,7028,0.8683854643 +1,1,7029,0.8703550162 1,1,7030,0.8723245680999999 1,1,7031,0.8723245680999999 1,1,7032,0.8723245680999999 -1,1,7033,0.8841418812999998 +1,1,7033,0.8841418812999999 1,1,7034,0.8861114332 1,1,7035,0.8861114332 1,1,7036,0.8880809851 1,1,7037,0.8880809851 1,1,7038,0.8880809851 1,1,7039,0.8861114332 -1,1,7040,0.8802027765999999 +1,1,7040,0.8802027766 1,1,7041,0.8742941203 -1,1,7042,0.8672581486999998 +1,1,7042,0.8672581487 1,1,7043,0.8606494921 1,1,7044,0.8560103883 1,1,7045,0.8523913318999999 @@ -24568,13 +24568,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7047,0.8537913319 1,1,7048,0.8574103882999999 1,1,7049,0.8624768076999999 -1,1,7050,0.8703550161999999 +1,1,7050,0.8703550162 1,1,7051,0.8742941203 1,1,7052,0.8762636728 -1,1,7053,0.8802027765999999 -1,1,7054,0.8802027765999999 -1,1,7055,0.8821723288 -1,1,7056,0.8821723288 +1,1,7053,0.8802027766 +1,1,7054,0.8802027766 +1,1,7055,0.8821723288000001 +1,1,7056,0.8821723288000001 1,1,7057,0.8742941203 1,1,7058,0.8742941203 1,1,7059,0.8742941203 @@ -24582,33 +24582,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7061,0.8762636728 1,1,7062,0.8762636728 1,1,7063,0.8742941203 -1,1,7064,0.8703550161999999 +1,1,7064,0.8703550162 1,1,7065,0.8644463599 1,1,7066,0.8585377039 1,1,7067,0.8488913319 1,1,7068,0.8418913319 -1,1,7069,0.8355913318999999 +1,1,7069,0.8355913319 1,1,7070,0.8418913319 1,1,7071,0.8488913319 1,1,7072,0.8556186474999999 -1,1,7073,0.8605072557999999 +1,1,7073,0.8605072558 1,1,7074,0.8644463599 -1,1,7075,0.8683854642999999 -1,1,7076,0.8703550161999999 +1,1,7075,0.8683854643 +1,1,7076,0.8703550162 1,1,7077,0.8723245680999999 1,1,7078,0.8742941203 1,1,7079,0.8742941203 1,1,7080,0.8762636728 -1,1,7081,0.8841418812999998 +1,1,7081,0.8841418812999999 1,1,7082,0.8861114332 1,1,7083,0.8861114332 1,1,7084,0.8880809851 1,1,7085,0.8880809851 1,1,7086,0.8880809851 1,1,7087,0.8861114332 -1,1,7088,0.8802027765999999 +1,1,7088,0.8802027766 1,1,7089,0.8742941203 -1,1,7090,0.8672581486999998 +1,1,7090,0.8672581487 1,1,7091,0.8606494921 1,1,7092,0.8560103883 1,1,7093,0.8523913318999999 @@ -24616,21 +24616,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7095,0.8537913319 1,1,7096,0.8574103882999999 1,1,7097,0.8624768076999999 -1,1,7098,0.8703550161999999 +1,1,7098,0.8703550162 1,1,7099,0.8742941203 1,1,7100,0.8762636728 -1,1,7101,0.8802027765999999 -1,1,7102,0.8802027765999999 -1,1,7103,0.8821723288 -1,1,7104,0.8821723288 +1,1,7101,0.8802027766 +1,1,7102,0.8802027766 +1,1,7103,0.8821723288000001 +1,1,7104,0.8821723288000001 1,1,7105,0.8742941203 1,1,7106,0.8742941203 1,1,7107,0.8762636728 1,1,7108,0.8762636728 -1,1,7109,0.8782332246999999 -1,1,7110,0.8782332246999999 +1,1,7109,0.8782332247 +1,1,7110,0.8782332247 1,1,7111,0.8742941203 -1,1,7112,0.8683854642999999 +1,1,7112,0.8683854643 1,1,7113,0.8620494920999999 1,1,7114,0.8544913318999999 1,1,7115,0.8474913319 @@ -24642,19 +24642,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7121,0.8556186474999999 1,1,7122,0.8624768076999999 1,1,7123,0.8664159117999999 -1,1,7124,0.8683854642999999 -1,1,7125,0.8703550161999999 +1,1,7124,0.8683854643 +1,1,7125,0.8703550162 1,1,7126,0.8723245680999999 1,1,7127,0.8723245680999999 1,1,7128,0.8723245680999999 -1,1,7129,0.8841418812999998 -1,1,7130,0.8841418812999998 +1,1,7129,0.8841418812999999 +1,1,7130,0.8841418812999999 1,1,7131,0.8861114332 1,1,7132,0.8880809851 1,1,7133,0.8880809851 1,1,7134,0.8880809851 1,1,7135,0.8861114332 -1,1,7136,0.8821723288 +1,1,7136,0.8821723288000001 1,1,7137,0.8762636728 1,1,7138,0.8699277005999999 1,1,7139,0.8652885961999999 @@ -24662,25 +24662,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7141,0.8586799401999999 1,1,7142,0.8574103882999999 1,1,7143,0.8581103883 -1,1,7144,0.8605072557999999 +1,1,7144,0.8605072558 1,1,7145,0.8664159117999999 1,1,7146,0.8723245680999999 1,1,7147,0.8762636728 -1,1,7148,0.8802027765999999 -1,1,7149,0.8841418812999998 +1,1,7148,0.8802027766 +1,1,7149,0.8841418812999999 1,1,7150,0.8861114332 1,1,7151,0.8880809851 1,1,7152,0.8900505372999999 -1,1,7153,0.8841418812999998 +1,1,7153,0.8841418812999999 1,1,7154,0.8861114332 1,1,7155,0.8861114332 1,1,7156,0.8880809851 1,1,7157,0.8880809851 1,1,7158,0.8880809851 1,1,7159,0.8861114332 -1,1,7160,0.8802027765999999 +1,1,7160,0.8802027766 1,1,7161,0.8742941203 -1,1,7162,0.8672581486999998 +1,1,7162,0.8672581487 1,1,7163,0.8606494921 1,1,7164,0.8560103883 1,1,7165,0.8523913318999999 @@ -24688,21 +24688,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7167,0.8537913319 1,1,7168,0.8574103882999999 1,1,7169,0.8624768076999999 -1,1,7170,0.8703550161999999 +1,1,7170,0.8703550162 1,1,7171,0.8742941203 1,1,7172,0.8762636728 -1,1,7173,0.8802027765999999 -1,1,7174,0.8802027765999999 -1,1,7175,0.8821723288 -1,1,7176,0.8821723288 +1,1,7173,0.8802027766 +1,1,7174,0.8802027766 +1,1,7175,0.8821723288000001 +1,1,7176,0.8821723288000001 1,1,7177,0.8742941203 1,1,7178,0.8742941203 1,1,7179,0.8762636728 1,1,7180,0.8762636728 -1,1,7181,0.8782332246999999 -1,1,7182,0.8782332246999999 +1,1,7181,0.8782332247 +1,1,7182,0.8782332247 1,1,7183,0.8742941203 -1,1,7184,0.8683854642999999 +1,1,7184,0.8683854643 1,1,7185,0.8620494920999999 1,1,7186,0.8544913318999999 1,1,7187,0.8474913319 @@ -24714,43 +24714,43 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7193,0.8556186474999999 1,1,7194,0.8624768076999999 1,1,7195,0.8664159117999999 -1,1,7196,0.8683854642999999 -1,1,7197,0.8703550161999999 +1,1,7196,0.8683854643 +1,1,7197,0.8703550162 1,1,7198,0.8723245680999999 1,1,7199,0.8723245680999999 1,1,7200,0.8723245680999999 1,1,7201,0.8762636728 -1,1,7202,0.8782332246999999 -1,1,7203,0.8802027765999999 -1,1,7204,0.8802027765999999 -1,1,7205,0.8821723288 -1,1,7206,0.8821723288 -1,1,7207,0.8782332246999999 +1,1,7202,0.8782332247 +1,1,7203,0.8802027766 +1,1,7204,0.8802027766 +1,1,7205,0.8821723288000001 +1,1,7206,0.8821723288000001 +1,1,7207,0.8782332247 1,1,7208,0.8742941203 -1,1,7209,0.8683854642999999 +1,1,7209,0.8683854643 1,1,7210,0.8644463599 -1,1,7211,0.8605072557999999 +1,1,7211,0.8605072558 1,1,7212,0.8585377039 1,1,7213,0.8556186474999999 1,1,7214,0.8556186474999999 1,1,7215,0.8585377039 -1,1,7216,0.8605072557999999 +1,1,7216,0.8605072558 1,1,7217,0.8664159117999999 -1,1,7218,0.8703550161999999 +1,1,7218,0.8703550162 1,1,7219,0.8742941203 -1,1,7220,0.8782332246999999 -1,1,7221,0.8802027765999999 -1,1,7222,0.8821723288 -1,1,7223,0.8841418812999998 +1,1,7220,0.8782332247 +1,1,7221,0.8802027766 +1,1,7222,0.8821723288000001 +1,1,7223,0.8841418812999999 1,1,7224,0.8861114332 -1,1,7225,0.8841418812999998 -1,1,7226,0.8841418812999998 +1,1,7225,0.8841418812999999 +1,1,7226,0.8841418812999999 1,1,7227,0.8861114332 1,1,7228,0.8880809851 1,1,7229,0.8880809851 1,1,7230,0.8880809851 1,1,7231,0.8861114332 -1,1,7232,0.8821723288 +1,1,7232,0.8821723288000001 1,1,7233,0.8762636728 1,1,7234,0.8699277005999999 1,1,7235,0.8652885961999999 @@ -24758,25 +24758,25 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7237,0.8586799401999999 1,1,7238,0.8574103882999999 1,1,7239,0.8581103883 -1,1,7240,0.8605072557999999 +1,1,7240,0.8605072558 1,1,7241,0.8664159117999999 1,1,7242,0.8723245680999999 1,1,7243,0.8762636728 -1,1,7244,0.8802027765999999 -1,1,7245,0.8841418812999998 +1,1,7244,0.8802027766 +1,1,7245,0.8841418812999999 1,1,7246,0.8861114332 1,1,7247,0.8880809851 1,1,7248,0.8900505372999999 -1,1,7249,0.8841418812999998 +1,1,7249,0.8841418812999999 1,1,7250,0.8861114332 1,1,7251,0.8861114332 1,1,7252,0.8880809851 1,1,7253,0.8880809851 1,1,7254,0.8880809851 1,1,7255,0.8861114332 -1,1,7256,0.8802027765999999 +1,1,7256,0.8802027766 1,1,7257,0.8742941203 -1,1,7258,0.8672581486999998 +1,1,7258,0.8672581487 1,1,7259,0.8606494921 1,1,7260,0.8560103883 1,1,7261,0.8523913318999999 @@ -24784,21 +24784,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7263,0.8537913319 1,1,7264,0.8574103882999999 1,1,7265,0.8624768076999999 -1,1,7266,0.8703550161999999 +1,1,7266,0.8703550162 1,1,7267,0.8742941203 1,1,7268,0.8762636728 -1,1,7269,0.8802027765999999 -1,1,7270,0.8802027765999999 -1,1,7271,0.8821723288 -1,1,7272,0.8821723288 +1,1,7269,0.8802027766 +1,1,7270,0.8802027766 +1,1,7271,0.8821723288000001 +1,1,7272,0.8821723288000001 1,1,7273,0.8742941203 1,1,7274,0.8742941203 1,1,7275,0.8762636728 1,1,7276,0.8762636728 -1,1,7277,0.8782332246999999 -1,1,7278,0.8782332246999999 +1,1,7277,0.8782332247 +1,1,7278,0.8782332247 1,1,7279,0.8742941203 -1,1,7280,0.8683854642999999 +1,1,7280,0.8683854643 1,1,7281,0.8620494920999999 1,1,7282,0.8544913318999999 1,1,7283,0.8474913319 @@ -24810,8 +24810,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7289,0.8556186474999999 1,1,7290,0.8624768076999999 1,1,7291,0.8664159117999999 -1,1,7292,0.8683854642999999 -1,1,7293,0.8703550161999999 +1,1,7292,0.8683854643 +1,1,7293,0.8703550162 1,1,7294,0.8723245680999999 1,1,7295,0.8723245680999999 1,1,7296,0.8723245680999999 @@ -24824,21 +24824,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7303,0.8990000001999999 1,1,7304,0.8990000001999999 1,1,7305,0.8900505372999999 -1,1,7306,0.8821723288 +1,1,7306,0.8821723288000001 1,1,7307,0.8762636728 1,1,7308,0.8723245680999999 -1,1,7309,0.8703550161999999 -1,1,7310,0.8703550161999999 +1,1,7309,0.8703550162 +1,1,7310,0.8703550162 1,1,7311,0.8723245680999999 -1,1,7312,0.8782332246999999 -1,1,7313,0.8841418812999998 +1,1,7312,0.8782332247 +1,1,7313,0.8841418812999999 1,1,7314,0.8880809851 1,1,7315,0.8920200892 1,1,7316,0.8939896417000001 1,1,7317,0.8959591936 1,1,7318,0.8959591936 -1,1,7319,0.8979287454999999 -1,1,7320,0.8979287454999999 +1,1,7319,0.8979287455 +1,1,7320,0.8979287455 1,1,7321,0.8990000001999999 1,1,7322,0.8990000001999999 1,1,7323,0.8990000001999999 @@ -24848,21 +24848,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7327,0.8990000001999999 1,1,7328,0.8990000001999999 1,1,7329,0.8900505372999999 -1,1,7330,0.8821723288 +1,1,7330,0.8821723288000001 1,1,7331,0.8762636728 1,1,7332,0.8723245680999999 -1,1,7333,0.8703550161999999 -1,1,7334,0.8703550161999999 +1,1,7333,0.8703550162 +1,1,7334,0.8703550162 1,1,7335,0.8723245680999999 -1,1,7336,0.8782332246999999 -1,1,7337,0.8841418812999998 +1,1,7336,0.8782332247 +1,1,7337,0.8841418812999999 1,1,7338,0.8880809851 1,1,7339,0.8920200892 1,1,7340,0.8939896417000001 1,1,7341,0.8959591936 1,1,7342,0.8959591936 -1,1,7343,0.8979287454999999 -1,1,7344,0.8979287454999999 +1,1,7343,0.8979287455 +1,1,7344,0.8979287455 1,1,7345,0.8990000001999999 1,1,7346,0.8990000001999999 1,1,7347,0.8990000001999999 @@ -24872,21 +24872,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7351,0.8990000001999999 1,1,7352,0.8990000001999999 1,1,7353,0.8900505372999999 -1,1,7354,0.8821723288 +1,1,7354,0.8821723288000001 1,1,7355,0.8762636728 1,1,7356,0.8723245680999999 -1,1,7357,0.8703550161999999 -1,1,7358,0.8703550161999999 +1,1,7357,0.8703550162 +1,1,7358,0.8703550162 1,1,7359,0.8723245680999999 -1,1,7360,0.8782332246999999 -1,1,7361,0.8841418812999998 +1,1,7360,0.8782332247 +1,1,7361,0.8841418812999999 1,1,7362,0.8880809851 1,1,7363,0.8920200892 1,1,7364,0.8939896417000001 1,1,7365,0.8959591936 1,1,7366,0.8959591936 -1,1,7367,0.8979287454999999 -1,1,7368,0.8979287454999999 +1,1,7367,0.8979287455 +1,1,7368,0.8979287455 1,1,7369,0.8990000001999999 1,1,7370,0.8990000001999999 1,1,7371,0.8990000001999999 @@ -24897,16 +24897,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7376,0.8990000001999999 1,1,7377,0.8939896417000001 1,1,7378,0.8880809851 -1,1,7379,0.8821723288 -1,1,7380,0.8782332246999999 +1,1,7379,0.8821723288000001 +1,1,7380,0.8782332247 1,1,7381,0.8762636728 1,1,7382,0.8762636728 -1,1,7383,0.8782332246999999 -1,1,7384,0.8841418812999998 +1,1,7383,0.8782332247 +1,1,7384,0.8841418812999999 1,1,7385,0.8920200892 1,1,7386,0.8959591936 -1,1,7387,0.8979287454999999 -1,1,7388,0.8979287454999999 +1,1,7387,0.8979287455 +1,1,7388,0.8979287455 1,1,7389,0.8990000001999999 1,1,7390,0.8990000001999999 1,1,7391,0.8990000001999999 @@ -24921,16 +24921,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7400,0.8990000001999999 1,1,7401,0.8939896417000001 1,1,7402,0.8880809851 -1,1,7403,0.8821723288 -1,1,7404,0.8782332246999999 +1,1,7403,0.8821723288000001 +1,1,7404,0.8782332247 1,1,7405,0.8762636728 1,1,7406,0.8762636728 -1,1,7407,0.8782332246999999 -1,1,7408,0.8841418812999998 +1,1,7407,0.8782332247 +1,1,7408,0.8841418812999999 1,1,7409,0.8920200892 1,1,7410,0.8959591936 -1,1,7411,0.8979287454999999 -1,1,7412,0.8979287454999999 +1,1,7411,0.8979287455 +1,1,7412,0.8979287455 1,1,7413,0.8990000001999999 1,1,7414,0.8990000001999999 1,1,7415,0.8990000001999999 @@ -24945,12 +24945,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7424,0.8990000001999999 1,1,7425,0.8939896417000001 1,1,7426,0.8880809851 -1,1,7427,0.8821723288 -1,1,7428,0.8782332246999999 +1,1,7427,0.8821723288000001 +1,1,7428,0.8782332247 1,1,7429,0.8762636728 1,1,7430,0.8762636728 -1,1,7431,0.8782332246999999 -1,1,7432,0.8841418812999998 +1,1,7431,0.8782332247 +1,1,7432,0.8841418812999999 1,1,7433,0.8920200892 1,1,7434,0.8959591936 1,1,7435,0.8990000001999999 @@ -24959,9 +24959,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7438,0.8990000001999999 1,1,7439,0.8990000001999999 1,1,7440,0.8990000001999999 -1,1,7441,0.8979287454999999 -1,1,7442,0.8979287454999999 -1,1,7443,0.8979287454999999 +1,1,7441,0.8979287455 +1,1,7442,0.8979287455 +1,1,7443,0.8979287455 1,1,7444,0.8990000001999999 1,1,7445,0.8990000001999999 1,1,7446,0.8990000001999999 @@ -24969,11 +24969,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7448,0.8990000001999999 1,1,7449,0.8939896417000001 1,1,7450,0.8880809851 -1,1,7451,0.8821723288 -1,1,7452,0.8782332246999999 +1,1,7451,0.8821723288000001 +1,1,7452,0.8782332247 1,1,7453,0.8762636728 -1,1,7454,0.8782332246999999 -1,1,7455,0.8802027765999999 +1,1,7454,0.8782332247 +1,1,7455,0.8802027766 1,1,7456,0.8880809851 1,1,7457,0.8959591936 1,1,7458,0.8990000001999999 @@ -24991,13 +24991,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7470,0.8990000001999999 1,1,7471,0.8990000001999999 1,1,7472,0.8990000001999999 -1,1,7473,0.8979287454999999 +1,1,7473,0.8979287455 1,1,7474,0.8920200892 1,1,7475,0.8861114332 -1,1,7476,0.8841418812999998 -1,1,7477,0.8821723288 -1,1,7478,0.8821723288 -1,1,7479,0.8841418812999998 +1,1,7476,0.8841418812999999 +1,1,7477,0.8821723288000001 +1,1,7478,0.8821723288000001 +1,1,7479,0.8841418812999999 1,1,7480,0.8880809851 1,1,7481,0.8939896417000001 1,1,7482,0.8990000001999999 @@ -25015,13 +25015,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7494,0.8990000001999999 1,1,7495,0.8990000001999999 1,1,7496,0.8990000001999999 -1,1,7497,0.8979287454999999 +1,1,7497,0.8979287455 1,1,7498,0.8920200892 1,1,7499,0.8861114332 -1,1,7500,0.8841418812999998 -1,1,7501,0.8821723288 -1,1,7502,0.8821723288 -1,1,7503,0.8841418812999998 +1,1,7500,0.8841418812999999 +1,1,7501,0.8821723288000001 +1,1,7502,0.8821723288000001 +1,1,7503,0.8841418812999999 1,1,7504,0.8880809851 1,1,7505,0.8939896417000001 1,1,7506,0.8990000001999999 @@ -25031,9 +25031,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7510,0.8990000001999999 1,1,7511,0.8990000001999999 1,1,7512,0.8990000001999999 -1,1,7513,0.8979287454999999 -1,1,7514,0.8979287454999999 -1,1,7515,0.8979287454999999 +1,1,7513,0.8979287455 +1,1,7514,0.8979287455 +1,1,7515,0.8979287455 1,1,7516,0.8990000001999999 1,1,7517,0.8990000001999999 1,1,7518,0.8990000001999999 @@ -25041,11 +25041,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7520,0.8990000001999999 1,1,7521,0.8939896417000001 1,1,7522,0.8880809851 -1,1,7523,0.8821723288 -1,1,7524,0.8782332246999999 +1,1,7523,0.8821723288000001 +1,1,7524,0.8782332247 1,1,7525,0.8762636728 -1,1,7526,0.8782332246999999 -1,1,7527,0.8802027765999999 +1,1,7526,0.8782332247 +1,1,7527,0.8802027766 1,1,7528,0.8880809851 1,1,7529,0.8959591936 1,1,7530,0.8990000001999999 @@ -25064,13 +25064,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7543,0.8990000001999999 1,1,7544,0.8990000001999999 1,1,7545,0.8990000001999999 -1,1,7546,0.8979287454999999 +1,1,7546,0.8979287455 1,1,7547,0.8939896417000001 1,1,7548,0.8920200892 1,1,7549,0.8900505372999999 1,1,7550,0.8920200892 1,1,7551,0.8939896417000001 -1,1,7552,0.8979287454999999 +1,1,7552,0.8979287455 1,1,7553,0.8990000001999999 1,1,7554,0.8990000001999999 1,1,7555,0.8990000001999999 @@ -25088,13 +25088,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7567,0.8990000001999999 1,1,7568,0.8990000001999999 1,1,7569,0.8990000001999999 -1,1,7570,0.8979287454999999 +1,1,7570,0.8979287455 1,1,7571,0.8939896417000001 1,1,7572,0.8920200892 1,1,7573,0.8900505372999999 1,1,7574,0.8920200892 1,1,7575,0.8939896417000001 -1,1,7576,0.8979287454999999 +1,1,7576,0.8979287455 1,1,7577,0.8990000001999999 1,1,7578,0.8990000001999999 1,1,7579,0.8990000001999999 @@ -25112,21 +25112,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7591,0.8990000001999999 1,1,7592,0.8990000001999999 1,1,7593,0.8900505372999999 -1,1,7594,0.8821723288 +1,1,7594,0.8821723288000001 1,1,7595,0.8762636728 1,1,7596,0.8723245680999999 -1,1,7597,0.8703550161999999 -1,1,7598,0.8703550161999999 +1,1,7597,0.8703550162 +1,1,7598,0.8703550162 1,1,7599,0.8723245680999999 -1,1,7600,0.8782332246999999 -1,1,7601,0.8841418812999998 +1,1,7600,0.8782332247 +1,1,7601,0.8841418812999999 1,1,7602,0.8880809851 1,1,7603,0.8920200892 1,1,7604,0.8939896417000001 1,1,7605,0.8959591936 1,1,7606,0.8959591936 -1,1,7607,0.8979287454999999 -1,1,7608,0.8979287454999999 +1,1,7607,0.8979287455 +1,1,7608,0.8979287455 1,1,7609,0.8990000001999999 1,1,7610,0.8990000001999999 1,1,7611,0.8990000001999999 @@ -25135,13 +25135,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7614,0.8990000001999999 1,1,7615,0.8990000001999999 1,1,7616,0.8990000001999999 -1,1,7617,0.8979287454999999 +1,1,7617,0.8979287455 1,1,7618,0.8920200892 1,1,7619,0.8861114332 -1,1,7620,0.8841418812999998 -1,1,7621,0.8821723288 -1,1,7622,0.8821723288 -1,1,7623,0.8841418812999998 +1,1,7620,0.8841418812999999 +1,1,7621,0.8821723288000001 +1,1,7622,0.8821723288000001 +1,1,7623,0.8841418812999999 1,1,7624,0.8880809851 1,1,7625,0.8939896417000001 1,1,7626,0.8990000001999999 @@ -25160,13 +25160,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7639,0.8990000001999999 1,1,7640,0.8990000001999999 1,1,7641,0.8990000001999999 -1,1,7642,0.8979287454999999 +1,1,7642,0.8979287455 1,1,7643,0.8939896417000001 1,1,7644,0.8920200892 1,1,7645,0.8900505372999999 1,1,7646,0.8920200892 1,1,7647,0.8939896417000001 -1,1,7648,0.8979287454999999 +1,1,7648,0.8979287455 1,1,7649,0.8990000001999999 1,1,7650,0.8990000001999999 1,1,7651,0.8990000001999999 @@ -25175,9 +25175,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7654,0.8990000001999999 1,1,7655,0.8990000001999999 1,1,7656,0.8990000001999999 -1,1,7657,0.8979287454999999 -1,1,7658,0.8979287454999999 -1,1,7659,0.8979287454999999 +1,1,7657,0.8979287455 +1,1,7658,0.8979287455 +1,1,7659,0.8979287455 1,1,7660,0.8990000001999999 1,1,7661,0.8990000001999999 1,1,7662,0.8990000001999999 @@ -25185,11 +25185,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7664,0.8990000001999999 1,1,7665,0.8939896417000001 1,1,7666,0.8880809851 -1,1,7667,0.8821723288 -1,1,7668,0.8782332246999999 +1,1,7667,0.8821723288000001 +1,1,7668,0.8782332247 1,1,7669,0.8762636728 -1,1,7670,0.8782332246999999 -1,1,7671,0.8802027765999999 +1,1,7670,0.8782332247 +1,1,7671,0.8802027766 1,1,7672,0.8880809851 1,1,7673,0.8959591936 1,1,7674,0.8990000001999999 @@ -25208,21 +25208,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7687,0.8990000001999999 1,1,7688,0.8990000001999999 1,1,7689,0.8900505372999999 -1,1,7690,0.8821723288 +1,1,7690,0.8821723288000001 1,1,7691,0.8762636728 1,1,7692,0.8723245680999999 -1,1,7693,0.8703550161999999 -1,1,7694,0.8703550161999999 +1,1,7693,0.8703550162 +1,1,7694,0.8703550162 1,1,7695,0.8723245680999999 -1,1,7696,0.8782332246999999 -1,1,7697,0.8841418812999998 +1,1,7696,0.8782332247 +1,1,7697,0.8841418812999999 1,1,7698,0.8880809851 1,1,7699,0.8920200892 1,1,7700,0.8939896417000001 1,1,7701,0.8959591936 1,1,7702,0.8959591936 -1,1,7703,0.8979287454999999 -1,1,7704,0.8979287454999999 +1,1,7703,0.8979287455 +1,1,7704,0.8979287455 1,1,7705,0.8990000001999999 1,1,7706,0.8990000001999999 1,1,7707,0.8990000001999999 @@ -25231,13 +25231,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7710,0.8990000001999999 1,1,7711,0.8990000001999999 1,1,7712,0.8990000001999999 -1,1,7713,0.8979287454999999 +1,1,7713,0.8979287455 1,1,7714,0.8920200892 1,1,7715,0.8861114332 -1,1,7716,0.8841418812999998 -1,1,7717,0.8821723288 -1,1,7718,0.8821723288 -1,1,7719,0.8841418812999998 +1,1,7716,0.8841418812999999 +1,1,7717,0.8821723288000001 +1,1,7718,0.8821723288000001 +1,1,7719,0.8841418812999999 1,1,7720,0.8880809851 1,1,7721,0.8939896417000001 1,1,7722,0.8990000001999999 @@ -25255,13 +25255,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7734,0.8990000001999999 1,1,7735,0.8990000001999999 1,1,7736,0.8990000001999999 -1,1,7737,0.8979287454999999 +1,1,7737,0.8979287455 1,1,7738,0.8920200892 1,1,7739,0.8861114332 -1,1,7740,0.8841418812999998 -1,1,7741,0.8821723288 -1,1,7742,0.8821723288 -1,1,7743,0.8841418812999998 +1,1,7740,0.8841418812999999 +1,1,7741,0.8821723288000001 +1,1,7742,0.8821723288000001 +1,1,7743,0.8841418812999999 1,1,7744,0.8880809851 1,1,7745,0.8959591936 1,1,7746,0.8990000001999999 @@ -25280,13 +25280,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7759,0.8990000001999999 1,1,7760,0.8990000001999999 1,1,7761,0.8990000001999999 -1,1,7762,0.8979287454999999 +1,1,7762,0.8979287455 1,1,7763,0.8939896417000001 1,1,7764,0.8920200892 1,1,7765,0.8900505372999999 1,1,7766,0.8920200892 1,1,7767,0.8939896417000001 -1,1,7768,0.8979287454999999 +1,1,7768,0.8979287455 1,1,7769,0.8990000001999999 1,1,7770,0.8990000001999999 1,1,7771,0.8990000001999999 @@ -25305,12 +25305,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7784,0.8990000001999999 1,1,7785,0.8939896417000001 1,1,7786,0.8880809851 -1,1,7787,0.8821723288 -1,1,7788,0.8782332246999999 +1,1,7787,0.8821723288000001 +1,1,7788,0.8782332247 1,1,7789,0.8762636728 1,1,7790,0.8762636728 -1,1,7791,0.8782332246999999 -1,1,7792,0.8841418812999998 +1,1,7791,0.8782332247 +1,1,7792,0.8841418812999999 1,1,7793,0.8920200892 1,1,7794,0.8959591936 1,1,7795,0.8990000001999999 @@ -25329,12 +25329,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7808,0.8990000001999999 1,1,7809,0.8939896417000001 1,1,7810,0.8880809851 -1,1,7811,0.8821723288 -1,1,7812,0.8782332246999999 +1,1,7811,0.8821723288000001 +1,1,7812,0.8782332247 1,1,7813,0.8762636728 1,1,7814,0.8762636728 -1,1,7815,0.8782332246999999 -1,1,7816,0.8841418812999998 +1,1,7815,0.8782332247 +1,1,7816,0.8841418812999999 1,1,7817,0.8920200892 1,1,7818,0.8959591936 1,1,7819,0.8990000001999999 @@ -25352,21 +25352,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7831,0.8990000001999999 1,1,7832,0.8990000001999999 1,1,7833,0.8900505372999999 -1,1,7834,0.8821723288 +1,1,7834,0.8821723288000001 1,1,7835,0.8762636728 1,1,7836,0.8723245680999999 -1,1,7837,0.8703550161999999 -1,1,7838,0.8703550161999999 +1,1,7837,0.8703550162 +1,1,7838,0.8703550162 1,1,7839,0.8723245680999999 -1,1,7840,0.8782332246999999 -1,1,7841,0.8841418812999998 +1,1,7840,0.8782332247 +1,1,7841,0.8841418812999999 1,1,7842,0.8880809851 1,1,7843,0.8920200892 1,1,7844,0.8939896417000001 1,1,7845,0.8959591936 1,1,7846,0.8959591936 -1,1,7847,0.8979287454999999 -1,1,7848,0.8979287454999999 +1,1,7847,0.8979287455 +1,1,7848,0.8979287455 1,1,7849,0.8990000001999999 1,1,7850,0.8990000001999999 1,1,7851,0.8990000001999999 @@ -25377,16 +25377,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7856,0.8990000001999999 1,1,7857,0.8939896417000001 1,1,7858,0.8880809851 -1,1,7859,0.8821723288 -1,1,7860,0.8782332246999999 +1,1,7859,0.8821723288000001 +1,1,7860,0.8782332247 1,1,7861,0.8762636728 1,1,7862,0.8762636728 -1,1,7863,0.8782332246999999 -1,1,7864,0.8841418812999998 +1,1,7863,0.8782332247 +1,1,7864,0.8841418812999999 1,1,7865,0.8920200892 1,1,7866,0.8959591936 -1,1,7867,0.8979287454999999 -1,1,7868,0.8979287454999999 +1,1,7867,0.8979287455 +1,1,7868,0.8979287455 1,1,7869,0.8990000001999999 1,1,7870,0.8990000001999999 1,1,7871,0.8990000001999999 @@ -25401,23 +25401,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7880,0.8990000001999999 1,1,7881,0.8939896417000001 1,1,7882,0.8880809851 -1,1,7883,0.8821723288 -1,1,7884,0.8782332246999999 +1,1,7883,0.8821723288000001 +1,1,7884,0.8782332247 1,1,7885,0.8762636728 1,1,7886,0.8762636728 -1,1,7887,0.8782332246999999 -1,1,7888,0.8841418812999998 +1,1,7887,0.8782332247 +1,1,7888,0.8841418812999999 1,1,7889,0.8920200892 1,1,7890,0.8959591936 -1,1,7891,0.8979287454999999 -1,1,7892,0.8979287454999999 +1,1,7891,0.8979287455 +1,1,7892,0.8979287455 1,1,7893,0.8990000001999999 1,1,7894,0.8990000001999999 1,1,7895,0.8990000001999999 1,1,7896,0.8990000001999999 -1,1,7897,0.8979287454999999 -1,1,7898,0.8979287454999999 -1,1,7899,0.8979287454999999 +1,1,7897,0.8979287455 +1,1,7898,0.8979287455 +1,1,7899,0.8979287455 1,1,7900,0.8990000001999999 1,1,7901,0.8990000001999999 1,1,7902,0.8990000001999999 @@ -25425,11 +25425,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7904,0.8990000001999999 1,1,7905,0.8939896417000001 1,1,7906,0.8880809851 -1,1,7907,0.8821723288 -1,1,7908,0.8782332246999999 +1,1,7907,0.8821723288000001 +1,1,7908,0.8782332247 1,1,7909,0.8762636728 -1,1,7910,0.8782332246999999 -1,1,7911,0.8802027765999999 +1,1,7910,0.8782332247 +1,1,7911,0.8802027766 1,1,7912,0.8880809851 1,1,7913,0.8959591936 1,1,7914,0.8990000001999999 @@ -25449,16 +25449,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7928,0.8990000001999999 1,1,7929,0.8939896417000001 1,1,7930,0.8880809851 -1,1,7931,0.8821723288 -1,1,7932,0.8782332246999999 +1,1,7931,0.8821723288000001 +1,1,7932,0.8782332247 1,1,7933,0.8762636728 1,1,7934,0.8762636728 -1,1,7935,0.8782332246999999 -1,1,7936,0.8841418812999998 +1,1,7935,0.8782332247 +1,1,7936,0.8841418812999999 1,1,7937,0.8920200892 1,1,7938,0.8959591936 -1,1,7939,0.8979287454999999 -1,1,7940,0.8979287454999999 +1,1,7939,0.8979287455 +1,1,7940,0.8979287455 1,1,7941,0.8990000001999999 1,1,7942,0.8990000001999999 1,1,7943,0.8990000001999999 @@ -25471,13 +25471,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7950,0.8990000001999999 1,1,7951,0.8990000001999999 1,1,7952,0.8990000001999999 -1,1,7953,0.8979287454999999 +1,1,7953,0.8979287455 1,1,7954,0.8920200892 1,1,7955,0.8861114332 -1,1,7956,0.8841418812999998 -1,1,7957,0.8821723288 -1,1,7958,0.8821723288 -1,1,7959,0.8841418812999998 +1,1,7956,0.8841418812999999 +1,1,7957,0.8821723288000001 +1,1,7958,0.8821723288000001 +1,1,7959,0.8841418812999999 1,1,7960,0.8880809851 1,1,7961,0.8939896417000001 1,1,7962,0.8990000001999999 @@ -25495,13 +25495,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,7974,0.8990000001999999 1,1,7975,0.8990000001999999 1,1,7976,0.8990000001999999 -1,1,7977,0.8979287454999999 +1,1,7977,0.8979287455 1,1,7978,0.8920200892 1,1,7979,0.8861114332 -1,1,7980,0.8841418812999998 -1,1,7981,0.8821723288 -1,1,7982,0.8821723288 -1,1,7983,0.8841418812999998 +1,1,7980,0.8841418812999999 +1,1,7981,0.8821723288000001 +1,1,7982,0.8821723288000001 +1,1,7983,0.8841418812999999 1,1,7984,0.8880809851 1,1,7985,0.8939896417000001 1,1,7986,0.8990000001999999 @@ -25521,16 +25521,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8000,0.8990000001999999 1,1,8001,0.8939896417000001 1,1,8002,0.8880809851 -1,1,8003,0.8821723288 -1,1,8004,0.8782332246999999 +1,1,8003,0.8821723288000001 +1,1,8004,0.8782332247 1,1,8005,0.8762636728 1,1,8006,0.8762636728 -1,1,8007,0.8782332246999999 -1,1,8008,0.8841418812999998 +1,1,8007,0.8782332247 +1,1,8008,0.8841418812999999 1,1,8009,0.8920200892 1,1,8010,0.8959591936 -1,1,8011,0.8979287454999999 -1,1,8012,0.8979287454999999 +1,1,8011,0.8979287455 +1,1,8012,0.8979287455 1,1,8013,0.8990000001999999 1,1,8014,0.8990000001999999 1,1,8015,0.8990000001999999 @@ -25544,13 +25544,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8023,0.8990000001999999 1,1,8024,0.8990000001999999 1,1,8025,0.8990000001999999 -1,1,8026,0.8979287454999999 +1,1,8026,0.8979287455 1,1,8027,0.8939896417000001 1,1,8028,0.8920200892 1,1,8029,0.8900505372999999 1,1,8030,0.8900505372999999 1,1,8031,0.8920200892 -1,1,8032,0.8979287454999999 +1,1,8032,0.8979287455 1,1,8033,0.8990000001999999 1,1,8034,0.8990000001999999 1,1,8035,0.8990000001999999 @@ -25568,13 +25568,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8047,0.8990000001999999 1,1,8048,0.8990000001999999 1,1,8049,0.8990000001999999 -1,1,8050,0.8979287454999999 +1,1,8050,0.8979287455 1,1,8051,0.8920200892 1,1,8052,0.8900505372999999 1,1,8053,0.8900505372999999 1,1,8054,0.8900505372999999 1,1,8055,0.8920200892 -1,1,8056,0.8979287454999999 +1,1,8056,0.8979287455 1,1,8057,0.8990000001999999 1,1,8058,0.8990000001999999 1,1,8059,0.8990000001999999 @@ -25616,7 +25616,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8095,0.8990000001999999 1,1,8096,0.8990000001999999 1,1,8097,0.8990000001999999 -1,1,8098,0.8979287454999999 +1,1,8098,0.8979287455 1,1,8099,0.8939896417000001 1,1,8100,0.8920200892 1,1,8101,0.8900505372999999 @@ -25641,11 +25641,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8120,0.8990000001999999 1,1,8121,0.8959591936 1,1,8122,0.8900505372999999 -1,1,8123,0.8841418812999998 -1,1,8124,0.8802027765999999 -1,1,8125,0.8782332246999999 -1,1,8126,0.8802027765999999 -1,1,8127,0.8841418812999998 +1,1,8123,0.8841418812999999 +1,1,8124,0.8802027766 +1,1,8125,0.8782332247 +1,1,8126,0.8802027766 +1,1,8127,0.8841418812999999 1,1,8128,0.8920200892 1,1,8129,0.8990000001999999 1,1,8130,0.8990000001999999 @@ -25664,7 +25664,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8143,0.8990000001999999 1,1,8144,0.8990000001999999 1,1,8145,0.8990000001999999 -1,1,8146,0.8979287454999999 +1,1,8146,0.8979287455 1,1,8147,0.8939896417000001 1,1,8148,0.8920200892 1,1,8149,0.8900505372999999 @@ -25736,13 +25736,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8215,0.8990000001999999 1,1,8216,0.8990000001999999 1,1,8217,0.8990000001999999 -1,1,8218,0.8979287454999999 +1,1,8218,0.8979287455 1,1,8219,0.8920200892 1,1,8220,0.8900505372999999 1,1,8221,0.8900505372999999 1,1,8222,0.8900505372999999 1,1,8223,0.8920200892 -1,1,8224,0.8979287454999999 +1,1,8224,0.8979287455 1,1,8225,0.8990000001999999 1,1,8226,0.8990000001999999 1,1,8227,0.8990000001999999 @@ -25784,13 +25784,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8263,0.8990000001999999 1,1,8264,0.8990000001999999 1,1,8265,0.8990000001999999 -1,1,8266,0.8979287454999999 +1,1,8266,0.8979287455 1,1,8267,0.8920200892 1,1,8268,0.8900505372999999 1,1,8269,0.8900505372999999 1,1,8270,0.8900505372999999 1,1,8271,0.8920200892 -1,1,8272,0.8979287454999999 +1,1,8272,0.8979287455 1,1,8273,0.8990000001999999 1,1,8274,0.8990000001999999 1,1,8275,0.8990000001999999 @@ -25808,13 +25808,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8287,0.8990000001999999 1,1,8288,0.8990000001999999 1,1,8289,0.8990000001999999 -1,1,8290,0.8979287454999999 +1,1,8290,0.8979287455 1,1,8291,0.8920200892 1,1,8292,0.8900505372999999 1,1,8293,0.8900505372999999 1,1,8294,0.8900505372999999 1,1,8295,0.8920200892 -1,1,8296,0.8979287454999999 +1,1,8296,0.8979287455 1,1,8297,0.8990000001999999 1,1,8298,0.8990000001999999 1,1,8299,0.8990000001999999 @@ -25832,11 +25832,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8311,0.8990000001999999 1,1,8312,0.8990000001999999 1,1,8313,0.8990000001999999 -1,1,8314,0.8979287454999999 +1,1,8314,0.8979287455 1,1,8315,0.8920200892 1,1,8316,0.8861114332 -1,1,8317,0.8841418812999998 -1,1,8318,0.8841418812999998 +1,1,8317,0.8841418812999999 +1,1,8318,0.8841418812999999 1,1,8319,0.8861114332 1,1,8320,0.8939896417000001 1,1,8321,0.8990000001999999 @@ -25879,13 +25879,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8358,0.8990000001999999 1,1,8359,0.8990000001999999 1,1,8360,0.8990000001999999 -1,1,8361,0.8979287454999999 +1,1,8361,0.8979287455 1,1,8362,0.8920200892 1,1,8363,0.8880809851 -1,1,8364,0.8841418812999998 -1,1,8365,0.8821723288 -1,1,8366,0.8821723288 -1,1,8367,0.8841418812999998 +1,1,8364,0.8841418812999999 +1,1,8365,0.8821723288000001 +1,1,8366,0.8821723288000001 +1,1,8367,0.8841418812999999 1,1,8368,0.8920200892 1,1,8369,0.8990000001999999 1,1,8370,0.8990000001999999 @@ -25904,13 +25904,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8383,0.8990000001999999 1,1,8384,0.8990000001999999 1,1,8385,0.8990000001999999 -1,1,8386,0.8979287454999999 +1,1,8386,0.8979287455 1,1,8387,0.8939896417000001 1,1,8388,0.8920200892 1,1,8389,0.8900505372999999 1,1,8390,0.8900505372999999 1,1,8391,0.8920200892 -1,1,8392,0.8979287454999999 +1,1,8392,0.8979287455 1,1,8393,0.8990000001999999 1,1,8394,0.8990000001999999 1,1,8395,0.8990000001999999 @@ -25927,17 +25927,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8406,0.8990000001999999 1,1,8407,0.8990000001999999 1,1,8408,0.8990000001999999 -1,1,8409,0.8979287454999999 +1,1,8409,0.8979287455 1,1,8410,0.8920200892 1,1,8411,0.8861114332 -1,1,8412,0.8821723288 -1,1,8413,0.8802027765999999 -1,1,8414,0.8802027765999999 -1,1,8415,0.8841418812999998 +1,1,8412,0.8821723288000001 +1,1,8413,0.8802027766 +1,1,8414,0.8802027766 +1,1,8415,0.8841418812999999 1,1,8416,0.8900505372999999 1,1,8417,0.8939896417000001 -1,1,8418,0.8979287454999999 -1,1,8419,0.8979287454999999 +1,1,8418,0.8979287455 +1,1,8419,0.8979287455 1,1,8420,0.8990000001999999 1,1,8421,0.8990000001999999 1,1,8422,0.8990000001999999 @@ -25952,7 +25952,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8431,0.8990000001999999 1,1,8432,0.8990000001999999 1,1,8433,0.8990000001999999 -1,1,8434,0.8979287454999999 +1,1,8434,0.8979287455 1,1,8435,0.8939896417000001 1,1,8436,0.8920200892 1,1,8437,0.8900505372999999 @@ -25975,17 +25975,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8454,0.8990000001999999 1,1,8455,0.8990000001999999 1,1,8456,0.8990000001999999 -1,1,8457,0.8979287454999999 +1,1,8457,0.8979287455 1,1,8458,0.8920200892 1,1,8459,0.8861114332 -1,1,8460,0.8841418812999998 -1,1,8461,0.8821723288 -1,1,8462,0.8821723288 -1,1,8463,0.8841418812999998 +1,1,8460,0.8841418812999999 +1,1,8461,0.8821723288000001 +1,1,8462,0.8821723288000001 +1,1,8463,0.8841418812999999 1,1,8464,0.8900505372999999 1,1,8465,0.8959591936 1,1,8466,0.8959591936 -1,1,8467,0.8979287454999999 +1,1,8467,0.8979287455 1,1,8468,0.8990000001999999 1,1,8469,0.8990000001999999 1,1,8470,0.8990000001999999 @@ -26023,17 +26023,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8502,0.8990000001999999 1,1,8503,0.8990000001999999 1,1,8504,0.8990000001999999 -1,1,8505,0.8979287454999999 +1,1,8505,0.8979287455 1,1,8506,0.8920200892 1,1,8507,0.8861114332 -1,1,8508,0.8841418812999998 -1,1,8509,0.8821723288 -1,1,8510,0.8821723288 -1,1,8511,0.8841418812999998 +1,1,8508,0.8841418812999999 +1,1,8509,0.8821723288000001 +1,1,8510,0.8821723288000001 +1,1,8511,0.8841418812999999 1,1,8512,0.8900505372999999 1,1,8513,0.8959591936 1,1,8514,0.8959591936 -1,1,8515,0.8979287454999999 +1,1,8515,0.8979287455 1,1,8516,0.8990000001999999 1,1,8517,0.8990000001999999 1,1,8518,0.8990000001999999 @@ -26048,11 +26048,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8527,0.8990000001999999 1,1,8528,0.8990000001999999 1,1,8529,0.8990000001999999 -1,1,8530,0.8979287454999999 +1,1,8530,0.8979287455 1,1,8531,0.8920200892 1,1,8532,0.8861114332 -1,1,8533,0.8841418812999998 -1,1,8534,0.8841418812999998 +1,1,8533,0.8841418812999999 +1,1,8534,0.8841418812999999 1,1,8535,0.8861114332 1,1,8536,0.8939896417000001 1,1,8537,0.8990000001999999 @@ -26072,13 +26072,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8551,0.8990000001999999 1,1,8552,0.8990000001999999 1,1,8553,0.8990000001999999 -1,1,8554,0.8979287454999999 +1,1,8554,0.8979287455 1,1,8555,0.8920200892 1,1,8556,0.8900505372999999 1,1,8557,0.8900505372999999 1,1,8558,0.8900505372999999 1,1,8559,0.8920200892 -1,1,8560,0.8979287454999999 +1,1,8560,0.8979287455 1,1,8561,0.8990000001999999 1,1,8562,0.8990000001999999 1,1,8563,0.8990000001999999 @@ -26119,17 +26119,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8598,0.8990000001999999 1,1,8599,0.8990000001999999 1,1,8600,0.8990000001999999 -1,1,8601,0.8979287454999999 +1,1,8601,0.8979287455 1,1,8602,0.8920200892 1,1,8603,0.8861114332 -1,1,8604,0.8821723288 -1,1,8605,0.8802027765999999 -1,1,8606,0.8802027765999999 -1,1,8607,0.8841418812999998 +1,1,8604,0.8821723288000001 +1,1,8605,0.8802027766 +1,1,8606,0.8802027766 +1,1,8607,0.8841418812999999 1,1,8608,0.8900505372999999 1,1,8609,0.8939896417000001 -1,1,8610,0.8979287454999999 -1,1,8611,0.8979287454999999 +1,1,8610,0.8979287455 +1,1,8611,0.8979287455 1,1,8612,0.8990000001999999 1,1,8613,0.8990000001999999 1,1,8614,0.8990000001999999 @@ -26143,13 +26143,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8622,0.8990000001999999 1,1,8623,0.8990000001999999 1,1,8624,0.8990000001999999 -1,1,8625,0.8979287454999999 +1,1,8625,0.8979287455 1,1,8626,0.8920200892 1,1,8627,0.8880809851 -1,1,8628,0.8841418812999998 -1,1,8629,0.8821723288 -1,1,8630,0.8821723288 -1,1,8631,0.8841418812999998 +1,1,8628,0.8841418812999999 +1,1,8629,0.8821723288000001 +1,1,8630,0.8821723288000001 +1,1,8631,0.8841418812999999 1,1,8632,0.8920200892 1,1,8633,0.8990000001999999 1,1,8634,0.8990000001999999 @@ -26168,11 +26168,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8647,0.8990000001999999 1,1,8648,0.8990000001999999 1,1,8649,0.8990000001999999 -1,1,8650,0.8979287454999999 +1,1,8650,0.8979287455 1,1,8651,0.8920200892 1,1,8652,0.8861114332 -1,1,8653,0.8841418812999998 -1,1,8654,0.8841418812999998 +1,1,8653,0.8841418812999999 +1,1,8654,0.8841418812999999 1,1,8655,0.8861114332 1,1,8656,0.8939896417000001 1,1,8657,0.8990000001999999 @@ -26192,13 +26192,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8671,0.8990000001999999 1,1,8672,0.8990000001999999 1,1,8673,0.8990000001999999 -1,1,8674,0.8979287454999999 +1,1,8674,0.8979287455 1,1,8675,0.8920200892 1,1,8676,0.8900505372999999 1,1,8677,0.8900505372999999 1,1,8678,0.8900505372999999 1,1,8679,0.8920200892 -1,1,8680,0.8979287454999999 +1,1,8680,0.8979287455 1,1,8681,0.8990000001999999 1,1,8682,0.8990000001999999 1,1,8683,0.8990000001999999 @@ -26215,13 +26215,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8694,0.8990000001999999 1,1,8695,0.8990000001999999 1,1,8696,0.8990000001999999 -1,1,8697,0.8979287454999999 +1,1,8697,0.8979287455 1,1,8698,0.8920200892 1,1,8699,0.8880809851 -1,1,8700,0.8841418812999998 -1,1,8701,0.8821723288 -1,1,8702,0.8821723288 -1,1,8703,0.8841418812999998 +1,1,8700,0.8841418812999999 +1,1,8701,0.8821723288000001 +1,1,8702,0.8821723288000001 +1,1,8703,0.8841418812999999 1,1,8704,0.8920200892 1,1,8705,0.8990000001999999 1,1,8706,0.8990000001999999 @@ -26264,13 +26264,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 1,1,8743,0.8990000001999999 1,1,8744,0.8990000001999999 1,1,8745,0.8990000001999999 -1,1,8746,0.8979287454999999 +1,1,8746,0.8979287455 1,1,8747,0.8939896417000001 1,1,8748,0.8920200892 1,1,8749,0.8900505372999999 1,1,8750,0.8900505372999999 1,1,8751,0.8920200892 -1,1,8752,0.8979287454999999 +1,1,8752,0.8979287455 1,1,8753,0.8990000001999999 1,1,8754,0.8990000001999999 1,1,8755,0.8990000001999999 @@ -26288,13 +26288,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7,0.8990000001999999 2,1,8,0.8990000001999999 2,1,9,0.8990000001999999 -2,1,10,0.8979287454999999 +2,1,10,0.8979287455 2,1,11,0.8959591936 2,1,12,0.8939896417000001 2,1,13,0.8920200892 2,1,14,0.8920200892 2,1,15,0.8939896417000001 -2,1,16,0.8979287454999999 +2,1,16,0.8979287455 2,1,17,0.8990000001999999 2,1,18,0.8990000001999999 2,1,19,0.8990000001999999 @@ -26313,7 +26313,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,32,0.8990000001999999 2,1,33,0.8990000001999999 2,1,34,0.8990000001999999 -2,1,35,0.8979287454999999 +2,1,35,0.8979287455 2,1,36,0.8959591936 2,1,37,0.8939896417000001 2,1,38,0.8939896417000001 @@ -26337,7 +26337,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,56,0.8990000001999999 2,1,57,0.8990000001999999 2,1,58,0.8990000001999999 -2,1,59,0.8979287454999999 +2,1,59,0.8979287455 2,1,60,0.8959591936 2,1,61,0.8939896417000001 2,1,62,0.8939896417000001 @@ -26359,7 +26359,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,78,0.8990000001999999 2,1,79,0.8990000001999999 2,1,80,0.8990000001999999 -2,1,81,0.8979287454999999 +2,1,81,0.8979287455 2,1,82,0.8939896417000001 2,1,83,0.8920200892 2,1,84,0.8900505372999999 @@ -26367,7 +26367,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,86,0.8880809851 2,1,87,0.8900505372999999 2,1,88,0.8939896417000001 -2,1,89,0.8979287454999999 +2,1,89,0.8979287455 2,1,90,0.8990000001999999 2,1,91,0.8990000001999999 2,1,92,0.8990000001999999 @@ -26385,7 +26385,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,104,0.8990000001999999 2,1,105,0.8990000001999999 2,1,106,0.8990000001999999 -2,1,107,0.8979287454999999 +2,1,107,0.8979287455 2,1,108,0.8959591936 2,1,109,0.8939896417000001 2,1,110,0.8939896417000001 @@ -26409,11 +26409,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,128,0.8990000001999999 2,1,129,0.8939896417000001 2,1,130,0.8880809851 -2,1,131,0.8821723288 -2,1,132,0.8802027765999999 -2,1,133,0.8782332246999999 -2,1,134,0.8802027765999999 -2,1,135,0.8821723288 +2,1,131,0.8821723288000001 +2,1,132,0.8802027766 +2,1,133,0.8782332247 +2,1,134,0.8802027766 +2,1,135,0.8821723288000001 2,1,136,0.8861114332 2,1,137,0.8900505372999999 2,1,138,0.8920200892 @@ -26422,7 +26422,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,141,0.8959591936 2,1,142,0.8959591936 2,1,143,0.8959591936 -2,1,144,0.8979287454999999 +2,1,144,0.8979287455 2,1,145,0.8990000001999999 2,1,146,0.8990000001999999 2,1,147,0.8990000001999999 @@ -26433,7 +26433,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,152,0.8990000001999999 2,1,153,0.8990000001999999 2,1,154,0.8990000001999999 -2,1,155,0.8979287454999999 +2,1,155,0.8979287455 2,1,156,0.8959591936 2,1,157,0.8939896417000001 2,1,158,0.8939896417000001 @@ -26449,27 +26449,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,168,0.8990000001999999 2,1,169,0.8990000001999999 2,1,170,0.8990000001999999 -2,1,171,0.8979287454999999 -2,1,172,0.8979287454999999 +2,1,171,0.8979287455 +2,1,172,0.8979287455 2,1,173,0.8990000001999999 2,1,174,0.8990000001999999 2,1,175,0.8990000001999999 -2,1,176,0.8979287454999999 +2,1,176,0.8979287455 2,1,177,0.8920200892 2,1,178,0.8861114332 -2,1,179,0.8802027765999999 -2,1,180,0.8782332246999999 +2,1,179,0.8802027766 +2,1,180,0.8782332247 2,1,181,0.8762636728 2,1,182,0.8762636728 -2,1,183,0.8782332246999999 -2,1,184,0.8841418812999998 +2,1,183,0.8782332247 +2,1,184,0.8841418812999999 2,1,185,0.8900505372999999 2,1,186,0.8939896417000001 2,1,187,0.8959591936 -2,1,188,0.8979287454999999 -2,1,189,0.8979287454999999 -2,1,190,0.8979287454999999 -2,1,191,0.8979287454999999 +2,1,188,0.8979287455 +2,1,189,0.8979287455 +2,1,190,0.8979287455 +2,1,191,0.8979287455 2,1,192,0.8990000001999999 2,1,193,0.8990000001999999 2,1,194,0.8990000001999999 @@ -26481,11 +26481,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,200,0.8990000001999999 2,1,201,0.8939896417000001 2,1,202,0.8880809851 -2,1,203,0.8821723288 -2,1,204,0.8802027765999999 -2,1,205,0.8782332246999999 -2,1,206,0.8802027765999999 -2,1,207,0.8821723288 +2,1,203,0.8821723288000001 +2,1,204,0.8802027766 +2,1,205,0.8782332247 +2,1,206,0.8802027766 +2,1,207,0.8821723288000001 2,1,208,0.8861114332 2,1,209,0.8900505372999999 2,1,210,0.8920200892 @@ -26494,7 +26494,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,213,0.8959591936 2,1,214,0.8959591936 2,1,215,0.8959591936 -2,1,216,0.8979287454999999 +2,1,216,0.8979287455 2,1,217,0.8990000001999999 2,1,218,0.8990000001999999 2,1,219,0.8990000001999999 @@ -26505,11 +26505,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,224,0.8990000001999999 2,1,225,0.8939896417000001 2,1,226,0.8880809851 -2,1,227,0.8821723288 -2,1,228,0.8802027765999999 -2,1,229,0.8782332246999999 -2,1,230,0.8802027765999999 -2,1,231,0.8821723288 +2,1,227,0.8821723288000001 +2,1,228,0.8802027766 +2,1,229,0.8782332247 +2,1,230,0.8802027766 +2,1,231,0.8821723288000001 2,1,232,0.8861114332 2,1,233,0.8900505372999999 2,1,234,0.8920200892 @@ -26518,54 +26518,54 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,237,0.8959591936 2,1,238,0.8959591936 2,1,239,0.8959591936 -2,1,240,0.8979287454999999 +2,1,240,0.8979287455 2,1,241,0.8990000001999999 2,1,242,0.8990000001999999 -2,1,243,0.8979287454999999 -2,1,244,0.8979287454999999 +2,1,243,0.8979287455 +2,1,244,0.8979287455 2,1,245,0.8990000001999999 2,1,246,0.8990000001999999 2,1,247,0.8990000001999999 -2,1,248,0.8979287454999999 +2,1,248,0.8979287455 2,1,249,0.8920200892 2,1,250,0.8861114332 -2,1,251,0.8802027765999999 -2,1,252,0.8782332246999999 +2,1,251,0.8802027766 +2,1,252,0.8782332247 2,1,253,0.8762636728 2,1,254,0.8762636728 -2,1,255,0.8782332246999999 -2,1,256,0.8841418812999998 +2,1,255,0.8782332247 +2,1,256,0.8841418812999999 2,1,257,0.8900505372999999 2,1,258,0.8939896417000001 2,1,259,0.8959591936 -2,1,260,0.8979287454999999 -2,1,261,0.8979287454999999 -2,1,262,0.8979287454999999 -2,1,263,0.8979287454999999 +2,1,260,0.8979287455 +2,1,261,0.8979287455 +2,1,262,0.8979287455 +2,1,263,0.8979287455 2,1,264,0.8990000001999999 2,1,265,0.8990000001999999 2,1,266,0.8990000001999999 -2,1,267,0.8979287454999999 -2,1,268,0.8979287454999999 +2,1,267,0.8979287455 +2,1,268,0.8979287455 2,1,269,0.8990000001999999 2,1,270,0.8990000001999999 2,1,271,0.8990000001999999 -2,1,272,0.8979287454999999 +2,1,272,0.8979287455 2,1,273,0.8920200892 2,1,274,0.8861114332 -2,1,275,0.8802027765999999 -2,1,276,0.8782332246999999 +2,1,275,0.8802027766 +2,1,276,0.8782332247 2,1,277,0.8762636728 2,1,278,0.8762636728 -2,1,279,0.8782332246999999 -2,1,280,0.8841418812999998 +2,1,279,0.8782332247 +2,1,280,0.8841418812999999 2,1,281,0.8900505372999999 2,1,282,0.8939896417000001 2,1,283,0.8959591936 -2,1,284,0.8979287454999999 -2,1,285,0.8979287454999999 -2,1,286,0.8979287454999999 -2,1,287,0.8979287454999999 +2,1,284,0.8979287455 +2,1,285,0.8979287455 +2,1,286,0.8979287455 +2,1,287,0.8979287455 2,1,288,0.8990000001999999 2,1,289,0.8990000001999999 2,1,290,0.8990000001999999 @@ -26577,7 +26577,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,296,0.8990000001999999 2,1,297,0.8990000001999999 2,1,298,0.8990000001999999 -2,1,299,0.8979287454999999 +2,1,299,0.8979287455 2,1,300,0.8959591936 2,1,301,0.8939896417000001 2,1,302,0.8939896417000001 @@ -26599,7 +26599,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,318,0.8990000001999999 2,1,319,0.8990000001999999 2,1,320,0.8990000001999999 -2,1,321,0.8979287454999999 +2,1,321,0.8979287455 2,1,322,0.8939896417000001 2,1,323,0.8920200892 2,1,324,0.8900505372999999 @@ -26607,7 +26607,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,326,0.8880809851 2,1,327,0.8900505372999999 2,1,328,0.8939896417000001 -2,1,329,0.8979287454999999 +2,1,329,0.8979287455 2,1,330,0.8990000001999999 2,1,331,0.8990000001999999 2,1,332,0.8990000001999999 @@ -26623,7 +26623,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,342,0.8990000001999999 2,1,343,0.8990000001999999 2,1,344,0.8990000001999999 -2,1,345,0.8979287454999999 +2,1,345,0.8979287455 2,1,346,0.8939896417000001 2,1,347,0.8920200892 2,1,348,0.8900505372999999 @@ -26631,7 +26631,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,350,0.8880809851 2,1,351,0.8900505372999999 2,1,352,0.8939896417000001 -2,1,353,0.8979287454999999 +2,1,353,0.8979287455 2,1,354,0.8990000001999999 2,1,355,0.8990000001999999 2,1,356,0.8990000001999999 @@ -26641,27 +26641,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,360,0.8990000001999999 2,1,361,0.8990000001999999 2,1,362,0.8990000001999999 -2,1,363,0.8979287454999999 -2,1,364,0.8979287454999999 +2,1,363,0.8979287455 +2,1,364,0.8979287455 2,1,365,0.8990000001999999 2,1,366,0.8990000001999999 2,1,367,0.8990000001999999 -2,1,368,0.8979287454999999 +2,1,368,0.8979287455 2,1,369,0.8920200892 2,1,370,0.8861114332 -2,1,371,0.8802027765999999 -2,1,372,0.8782332246999999 +2,1,371,0.8802027766 +2,1,372,0.8782332247 2,1,373,0.8762636728 2,1,374,0.8762636728 -2,1,375,0.8782332246999999 -2,1,376,0.8841418812999998 +2,1,375,0.8782332247 +2,1,376,0.8841418812999999 2,1,377,0.8900505372999999 2,1,378,0.8939896417000001 2,1,379,0.8959591936 -2,1,380,0.8979287454999999 -2,1,381,0.8979287454999999 -2,1,382,0.8979287454999999 -2,1,383,0.8979287454999999 +2,1,380,0.8979287455 +2,1,381,0.8979287455 +2,1,382,0.8979287455 +2,1,383,0.8979287455 2,1,384,0.8990000001999999 2,1,385,0.8990000001999999 2,1,386,0.8990000001999999 @@ -26671,7 +26671,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,390,0.8990000001999999 2,1,391,0.8990000001999999 2,1,392,0.8990000001999999 -2,1,393,0.8979287454999999 +2,1,393,0.8979287455 2,1,394,0.8939896417000001 2,1,395,0.8920200892 2,1,396,0.8900505372999999 @@ -26679,7 +26679,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,398,0.8880809851 2,1,399,0.8900505372999999 2,1,400,0.8939896417000001 -2,1,401,0.8979287454999999 +2,1,401,0.8979287455 2,1,402,0.8990000001999999 2,1,403,0.8990000001999999 2,1,404,0.8990000001999999 @@ -26695,7 +26695,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,414,0.8990000001999999 2,1,415,0.8990000001999999 2,1,416,0.8990000001999999 -2,1,417,0.8979287454999999 +2,1,417,0.8979287455 2,1,418,0.8939896417000001 2,1,419,0.8920200892 2,1,420,0.8900505372999999 @@ -26703,7 +26703,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,422,0.8880809851 2,1,423,0.8900505372999999 2,1,424,0.8939896417000001 -2,1,425,0.8979287454999999 +2,1,425,0.8979287455 2,1,426,0.8990000001999999 2,1,427,0.8990000001999999 2,1,428,0.8990000001999999 @@ -26719,7 +26719,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,438,0.8990000001999999 2,1,439,0.8990000001999999 2,1,440,0.8990000001999999 -2,1,441,0.8979287454999999 +2,1,441,0.8979287455 2,1,442,0.8939896417000001 2,1,443,0.8920200892 2,1,444,0.8900505372999999 @@ -26727,7 +26727,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,446,0.8880809851 2,1,447,0.8900505372999999 2,1,448,0.8939896417000001 -2,1,449,0.8979287454999999 +2,1,449,0.8979287455 2,1,450,0.8990000001999999 2,1,451,0.8990000001999999 2,1,452,0.8990000001999999 @@ -26743,7 +26743,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,462,0.8990000001999999 2,1,463,0.8990000001999999 2,1,464,0.8990000001999999 -2,1,465,0.8979287454999999 +2,1,465,0.8979287455 2,1,466,0.8939896417000001 2,1,467,0.8920200892 2,1,468,0.8900505372999999 @@ -26751,7 +26751,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,470,0.8880809851 2,1,471,0.8900505372999999 2,1,472,0.8939896417000001 -2,1,473,0.8979287454999999 +2,1,473,0.8979287455 2,1,474,0.8990000001999999 2,1,475,0.8990000001999999 2,1,476,0.8990000001999999 @@ -26761,27 +26761,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,480,0.8990000001999999 2,1,481,0.8990000001999999 2,1,482,0.8990000001999999 -2,1,483,0.8979287454999999 -2,1,484,0.8979287454999999 +2,1,483,0.8979287455 +2,1,484,0.8979287455 2,1,485,0.8990000001999999 2,1,486,0.8990000001999999 2,1,487,0.8990000001999999 -2,1,488,0.8979287454999999 +2,1,488,0.8979287455 2,1,489,0.8920200892 2,1,490,0.8861114332 -2,1,491,0.8802027765999999 -2,1,492,0.8782332246999999 +2,1,491,0.8802027766 +2,1,492,0.8782332247 2,1,493,0.8762636728 2,1,494,0.8762636728 -2,1,495,0.8782332246999999 -2,1,496,0.8841418812999998 +2,1,495,0.8782332247 +2,1,496,0.8841418812999999 2,1,497,0.8900505372999999 2,1,498,0.8939896417000001 2,1,499,0.8959591936 -2,1,500,0.8979287454999999 -2,1,501,0.8979287454999999 -2,1,502,0.8979287454999999 -2,1,503,0.8979287454999999 +2,1,500,0.8979287455 +2,1,501,0.8979287455 +2,1,502,0.8979287455 +2,1,503,0.8979287455 2,1,504,0.8990000001999999 2,1,505,0.8990000001999999 2,1,506,0.8990000001999999 @@ -26793,7 +26793,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,512,0.8990000001999999 2,1,513,0.8990000001999999 2,1,514,0.8990000001999999 -2,1,515,0.8979287454999999 +2,1,515,0.8979287455 2,1,516,0.8959591936 2,1,517,0.8939896417000001 2,1,518,0.8939896417000001 @@ -26809,27 +26809,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,528,0.8990000001999999 2,1,529,0.8990000001999999 2,1,530,0.8990000001999999 -2,1,531,0.8979287454999999 -2,1,532,0.8979287454999999 +2,1,531,0.8979287455 +2,1,532,0.8979287455 2,1,533,0.8990000001999999 2,1,534,0.8990000001999999 2,1,535,0.8990000001999999 -2,1,536,0.8979287454999999 +2,1,536,0.8979287455 2,1,537,0.8920200892 2,1,538,0.8861114332 -2,1,539,0.8802027765999999 -2,1,540,0.8782332246999999 +2,1,539,0.8802027766 +2,1,540,0.8782332247 2,1,541,0.8762636728 2,1,542,0.8762636728 -2,1,543,0.8782332246999999 -2,1,544,0.8841418812999998 +2,1,543,0.8782332247 +2,1,544,0.8841418812999999 2,1,545,0.8900505372999999 2,1,546,0.8939896417000001 2,1,547,0.8959591936 -2,1,548,0.8979287454999999 -2,1,549,0.8979287454999999 -2,1,550,0.8979287454999999 -2,1,551,0.8979287454999999 +2,1,548,0.8979287455 +2,1,549,0.8979287455 +2,1,550,0.8979287455 +2,1,551,0.8979287455 2,1,552,0.8990000001999999 2,1,553,0.8990000001999999 2,1,554,0.8990000001999999 @@ -26841,11 +26841,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,560,0.8990000001999999 2,1,561,0.8939896417000001 2,1,562,0.8880809851 -2,1,563,0.8821723288 -2,1,564,0.8802027765999999 -2,1,565,0.8782332246999999 -2,1,566,0.8802027765999999 -2,1,567,0.8821723288 +2,1,563,0.8821723288000001 +2,1,564,0.8802027766 +2,1,565,0.8782332247 +2,1,566,0.8802027766 +2,1,567,0.8821723288000001 2,1,568,0.8861114332 2,1,569,0.8900505372999999 2,1,570,0.8920200892 @@ -26854,54 +26854,54 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,573,0.8959591936 2,1,574,0.8959591936 2,1,575,0.8959591936 -2,1,576,0.8979287454999999 +2,1,576,0.8979287455 2,1,577,0.8990000001999999 2,1,578,0.8990000001999999 -2,1,579,0.8979287454999999 -2,1,580,0.8979287454999999 +2,1,579,0.8979287455 +2,1,580,0.8979287455 2,1,581,0.8990000001999999 2,1,582,0.8990000001999999 2,1,583,0.8990000001999999 -2,1,584,0.8979287454999999 +2,1,584,0.8979287455 2,1,585,0.8920200892 2,1,586,0.8861114332 -2,1,587,0.8802027765999999 -2,1,588,0.8782332246999999 +2,1,587,0.8802027766 +2,1,588,0.8782332247 2,1,589,0.8762636728 2,1,590,0.8762636728 -2,1,591,0.8782332246999999 -2,1,592,0.8841418812999998 +2,1,591,0.8782332247 +2,1,592,0.8841418812999999 2,1,593,0.8900505372999999 2,1,594,0.8939896417000001 2,1,595,0.8959591936 -2,1,596,0.8979287454999999 -2,1,597,0.8979287454999999 -2,1,598,0.8979287454999999 -2,1,599,0.8979287454999999 +2,1,596,0.8979287455 +2,1,597,0.8979287455 +2,1,598,0.8979287455 +2,1,599,0.8979287455 2,1,600,0.8990000001999999 2,1,601,0.8990000001999999 2,1,602,0.8990000001999999 -2,1,603,0.8979287454999999 -2,1,604,0.8979287454999999 +2,1,603,0.8979287455 +2,1,604,0.8979287455 2,1,605,0.8990000001999999 2,1,606,0.8990000001999999 2,1,607,0.8990000001999999 -2,1,608,0.8979287454999999 +2,1,608,0.8979287455 2,1,609,0.8920200892 2,1,610,0.8861114332 -2,1,611,0.8802027765999999 -2,1,612,0.8782332246999999 +2,1,611,0.8802027766 +2,1,612,0.8782332247 2,1,613,0.8762636728 2,1,614,0.8762636728 -2,1,615,0.8782332246999999 -2,1,616,0.8841418812999998 +2,1,615,0.8782332247 +2,1,616,0.8841418812999999 2,1,617,0.8900505372999999 2,1,618,0.8939896417000001 2,1,619,0.8959591936 -2,1,620,0.8979287454999999 -2,1,621,0.8979287454999999 -2,1,622,0.8979287454999999 -2,1,623,0.8979287454999999 +2,1,620,0.8979287455 +2,1,621,0.8979287455 +2,1,622,0.8979287455 +2,1,623,0.8979287455 2,1,624,0.8990000001999999 2,1,625,0.8990000001999999 2,1,626,0.8990000001999999 @@ -26911,7 +26911,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,630,0.8990000001999999 2,1,631,0.8990000001999999 2,1,632,0.8990000001999999 -2,1,633,0.8979287454999999 +2,1,633,0.8979287455 2,1,634,0.8939896417000001 2,1,635,0.8920200892 2,1,636,0.8900505372999999 @@ -26919,7 +26919,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,638,0.8880809851 2,1,639,0.8900505372999999 2,1,640,0.8939896417000001 -2,1,641,0.8979287454999999 +2,1,641,0.8979287455 2,1,642,0.8990000001999999 2,1,643,0.8990000001999999 2,1,644,0.8990000001999999 @@ -26935,7 +26935,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,654,0.8990000001999999 2,1,655,0.8990000001999999 2,1,656,0.8990000001999999 -2,1,657,0.8979287454999999 +2,1,657,0.8979287455 2,1,658,0.8939896417000001 2,1,659,0.8920200892 2,1,660,0.8900505372999999 @@ -26943,7 +26943,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,662,0.8880809851 2,1,663,0.8900505372999999 2,1,664,0.8939896417000001 -2,1,665,0.8979287454999999 +2,1,665,0.8979287455 2,1,666,0.8990000001999999 2,1,667,0.8990000001999999 2,1,668,0.8990000001999999 @@ -26953,27 +26953,27 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,672,0.8990000001999999 2,1,673,0.8990000001999999 2,1,674,0.8990000001999999 -2,1,675,0.8979287454999999 -2,1,676,0.8979287454999999 +2,1,675,0.8979287455 +2,1,676,0.8979287455 2,1,677,0.8990000001999999 2,1,678,0.8990000001999999 2,1,679,0.8990000001999999 -2,1,680,0.8979287454999999 +2,1,680,0.8979287455 2,1,681,0.8920200892 2,1,682,0.8861114332 -2,1,683,0.8802027765999999 -2,1,684,0.8782332246999999 +2,1,683,0.8802027766 +2,1,684,0.8782332247 2,1,685,0.8762636728 2,1,686,0.8762636728 -2,1,687,0.8782332246999999 -2,1,688,0.8841418812999998 +2,1,687,0.8782332247 +2,1,688,0.8841418812999999 2,1,689,0.8900505372999999 2,1,690,0.8939896417000001 2,1,691,0.8959591936 -2,1,692,0.8979287454999999 -2,1,693,0.8979287454999999 -2,1,694,0.8979287454999999 -2,1,695,0.8979287454999999 +2,1,692,0.8979287455 +2,1,693,0.8979287455 +2,1,694,0.8979287455 +2,1,695,0.8979287455 2,1,696,0.8990000001999999 2,1,697,0.8990000001999999 2,1,698,0.8990000001999999 @@ -26985,7 +26985,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,704,0.8990000001999999 2,1,705,0.8990000001999999 2,1,706,0.8990000001999999 -2,1,707,0.8979287454999999 +2,1,707,0.8979287455 2,1,708,0.8959591936 2,1,709,0.8939896417000001 2,1,710,0.8939896417000001 @@ -27007,7 +27007,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,726,0.8990000001999999 2,1,727,0.8990000001999999 2,1,728,0.8990000001999999 -2,1,729,0.8979287454999999 +2,1,729,0.8979287455 2,1,730,0.8939896417000001 2,1,731,0.8920200892 2,1,732,0.8900505372999999 @@ -27015,7 +27015,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,734,0.8880809851 2,1,735,0.8900505372999999 2,1,736,0.8939896417000001 -2,1,737,0.8979287454999999 +2,1,737,0.8979287455 2,1,738,0.8990000001999999 2,1,739,0.8990000001999999 2,1,740,0.8990000001999999 @@ -27040,8 +27040,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,759,0.8880809851 2,1,760,0.8900505372999999 2,1,761,0.8939896417000001 -2,1,762,0.8979287454999999 -2,1,763,0.8979287454999999 +2,1,762,0.8979287455 +2,1,763,0.8979287455 2,1,764,0.8990000001999999 2,1,765,0.8990000001999999 2,1,766,0.8990000001999999 @@ -27057,12 +27057,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,776,0.8990000001999999 2,1,777,0.8990000001999999 2,1,778,0.8990000001999999 -2,1,779,0.8979287454999999 +2,1,779,0.8979287455 2,1,780,0.8959591936 2,1,781,0.8959591936 2,1,782,0.8959591936 2,1,783,0.8959591936 -2,1,784,0.8979287454999999 +2,1,784,0.8979287455 2,1,785,0.8990000001999999 2,1,786,0.8990000001999999 2,1,787,0.8990000001999999 @@ -27078,18 +27078,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,797,0.8990000001999999 2,1,798,0.8990000001999999 2,1,799,0.8990000001999999 -2,1,800,0.8979287454999999 +2,1,800,0.8979287455 2,1,801,0.8920200892 2,1,802,0.8861114332 -2,1,803,0.8802027765999999 -2,1,804,0.8782332246999999 -2,1,805,0.8782332246999999 -2,1,806,0.8802027765999999 -2,1,807,0.8821723288 +2,1,803,0.8802027766 +2,1,804,0.8782332247 +2,1,805,0.8782332247 +2,1,806,0.8802027766 +2,1,807,0.8821723288000001 2,1,808,0.8880809851 2,1,809,0.8939896417000001 -2,1,810,0.8979287454999999 -2,1,811,0.8979287454999999 +2,1,810,0.8979287455 +2,1,811,0.8979287455 2,1,812,0.8990000001999999 2,1,813,0.8990000001999999 2,1,814,0.8990000001999999 @@ -27104,7 +27104,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,823,0.8990000001999999 2,1,824,0.8990000001999999 2,1,825,0.8990000001999999 -2,1,826,0.8979287454999999 +2,1,826,0.8979287455 2,1,827,0.8959591936 2,1,828,0.8939896417000001 2,1,829,0.8920200892 @@ -27126,18 +27126,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,845,0.8990000001999999 2,1,846,0.8990000001999999 2,1,847,0.8990000001999999 -2,1,848,0.8979287454999999 +2,1,848,0.8979287455 2,1,849,0.8920200892 2,1,850,0.8861114332 -2,1,851,0.8802027765999999 -2,1,852,0.8782332246999999 -2,1,853,0.8782332246999999 -2,1,854,0.8802027765999999 -2,1,855,0.8821723288 +2,1,851,0.8802027766 +2,1,852,0.8782332247 +2,1,853,0.8782332247 +2,1,854,0.8802027766 +2,1,855,0.8821723288000001 2,1,856,0.8880809851 2,1,857,0.8939896417000001 -2,1,858,0.8979287454999999 -2,1,859,0.8979287454999999 +2,1,858,0.8979287455 +2,1,859,0.8979287455 2,1,860,0.8990000001999999 2,1,861,0.8990000001999999 2,1,862,0.8990000001999999 @@ -27153,12 +27153,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,872,0.8990000001999999 2,1,873,0.8990000001999999 2,1,874,0.8990000001999999 -2,1,875,0.8979287454999999 +2,1,875,0.8979287455 2,1,876,0.8959591936 2,1,877,0.8959591936 2,1,878,0.8959591936 2,1,879,0.8959591936 -2,1,880,0.8979287454999999 +2,1,880,0.8979287455 2,1,881,0.8990000001999999 2,1,882,0.8990000001999999 2,1,883,0.8990000001999999 @@ -27175,7 +27175,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,894,0.8990000001999999 2,1,895,0.8990000001999999 2,1,896,0.8990000001999999 -2,1,897,0.8979287454999999 +2,1,897,0.8979287455 2,1,898,0.8939896417000001 2,1,899,0.8900505372999999 2,1,900,0.8880809851 @@ -27183,7 +27183,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,902,0.8880809851 2,1,903,0.8900505372999999 2,1,904,0.8920200892 -2,1,905,0.8979287454999999 +2,1,905,0.8979287455 2,1,906,0.8990000001999999 2,1,907,0.8990000001999999 2,1,908,0.8990000001999999 @@ -27198,23 +27198,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,917,0.8990000001999999 2,1,918,0.8990000001999999 2,1,919,0.8990000001999999 -2,1,920,0.8979287454999999 +2,1,920,0.8979287455 2,1,921,0.8900505372999999 -2,1,922,0.8841418812999998 -2,1,923,0.8802027765999999 -2,1,924,0.8782332246999999 +2,1,922,0.8841418812999999 +2,1,923,0.8802027766 +2,1,924,0.8782332247 2,1,925,0.8762636728 2,1,926,0.8762636728 2,1,927,0.8762636728 -2,1,928,0.8802027765999999 +2,1,928,0.8802027766 2,1,929,0.8861114332 2,1,930,0.8920200892 2,1,931,0.8939896417000001 2,1,932,0.8939896417000001 2,1,933,0.8939896417000001 2,1,934,0.8959591936 -2,1,935,0.8979287454999999 -2,1,936,0.8979287454999999 +2,1,935,0.8979287455 +2,1,936,0.8979287455 2,1,937,0.8990000001999999 2,1,938,0.8990000001999999 2,1,939,0.8990000001999999 @@ -27225,12 +27225,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,944,0.8990000001999999 2,1,945,0.8990000001999999 2,1,946,0.8990000001999999 -2,1,947,0.8979287454999999 +2,1,947,0.8979287455 2,1,948,0.8959591936 2,1,949,0.8959591936 2,1,950,0.8939896417000001 2,1,951,0.8959591936 -2,1,952,0.8979287454999999 +2,1,952,0.8979287455 2,1,953,0.8990000001999999 2,1,954,0.8990000001999999 2,1,955,0.8990000001999999 @@ -27247,12 +27247,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,966,0.8990000001999999 2,1,967,0.8990000001999999 2,1,968,0.8990000001999999 -2,1,969,0.8979287454999999 -2,1,970,0.8979287454999999 -2,1,971,0.8979287454999999 +2,1,969,0.8979287455 +2,1,970,0.8979287455 +2,1,971,0.8979287455 2,1,972,0.8959591936 2,1,973,0.8959591936 -2,1,974,0.8979287454999999 +2,1,974,0.8979287455 2,1,975,0.8990000001999999 2,1,976,0.8990000001999999 2,1,977,0.8990000001999999 @@ -27271,12 +27271,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,990,0.8990000001999999 2,1,991,0.8990000001999999 2,1,992,0.8990000001999999 -2,1,993,0.8979287454999999 -2,1,994,0.8979287454999999 -2,1,995,0.8979287454999999 +2,1,993,0.8979287455 +2,1,994,0.8979287455 +2,1,995,0.8979287455 2,1,996,0.8959591936 2,1,997,0.8959591936 -2,1,998,0.8979287454999999 +2,1,998,0.8979287455 2,1,999,0.8990000001999999 2,1,1000,0.8990000001999999 2,1,1001,0.8990000001999999 @@ -27294,23 +27294,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1013,0.8990000001999999 2,1,1014,0.8990000001999999 2,1,1015,0.8990000001999999 -2,1,1016,0.8979287454999999 +2,1,1016,0.8979287455 2,1,1017,0.8900505372999999 -2,1,1018,0.8841418812999998 -2,1,1019,0.8802027765999999 -2,1,1020,0.8782332246999999 +2,1,1018,0.8841418812999999 +2,1,1019,0.8802027766 +2,1,1020,0.8782332247 2,1,1021,0.8762636728 2,1,1022,0.8762636728 2,1,1023,0.8762636728 -2,1,1024,0.8802027765999999 +2,1,1024,0.8802027766 2,1,1025,0.8861114332 2,1,1026,0.8920200892 2,1,1027,0.8939896417000001 2,1,1028,0.8939896417000001 2,1,1029,0.8939896417000001 2,1,1030,0.8959591936 -2,1,1031,0.8979287454999999 -2,1,1032,0.8979287454999999 +2,1,1031,0.8979287455 +2,1,1032,0.8979287455 2,1,1033,0.8990000001999999 2,1,1034,0.8990000001999999 2,1,1035,0.8990000001999999 @@ -27320,7 +27320,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1039,0.8990000001999999 2,1,1040,0.8990000001999999 2,1,1041,0.8990000001999999 -2,1,1042,0.8979287454999999 +2,1,1042,0.8979287455 2,1,1043,0.8939896417000001 2,1,1044,0.8920200892 2,1,1045,0.8900505372999999 @@ -27343,12 +27343,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1062,0.8990000001999999 2,1,1063,0.8990000001999999 2,1,1064,0.8990000001999999 -2,1,1065,0.8979287454999999 -2,1,1066,0.8979287454999999 -2,1,1067,0.8979287454999999 +2,1,1065,0.8979287455 +2,1,1066,0.8979287455 +2,1,1067,0.8979287455 2,1,1068,0.8959591936 2,1,1069,0.8959591936 -2,1,1070,0.8979287454999999 +2,1,1070,0.8979287455 2,1,1071,0.8990000001999999 2,1,1072,0.8990000001999999 2,1,1073,0.8990000001999999 @@ -27369,12 +27369,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1088,0.8990000001999999 2,1,1089,0.8990000001999999 2,1,1090,0.8990000001999999 -2,1,1091,0.8979287454999999 +2,1,1091,0.8979287455 2,1,1092,0.8959591936 2,1,1093,0.8959591936 2,1,1094,0.8959591936 2,1,1095,0.8959591936 -2,1,1096,0.8979287454999999 +2,1,1096,0.8979287455 2,1,1097,0.8990000001999999 2,1,1098,0.8990000001999999 2,1,1099,0.8990000001999999 @@ -27392,7 +27392,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1111,0.8990000001999999 2,1,1112,0.8990000001999999 2,1,1113,0.8990000001999999 -2,1,1114,0.8979287454999999 +2,1,1114,0.8979287455 2,1,1115,0.8939896417000001 2,1,1116,0.8920200892 2,1,1117,0.8900505372999999 @@ -27415,7 +27415,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1134,0.8990000001999999 2,1,1135,0.8990000001999999 2,1,1136,0.8990000001999999 -2,1,1137,0.8979287454999999 +2,1,1137,0.8979287455 2,1,1138,0.8939896417000001 2,1,1139,0.8900505372999999 2,1,1140,0.8880809851 @@ -27423,7 +27423,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1142,0.8880809851 2,1,1143,0.8900505372999999 2,1,1144,0.8920200892 -2,1,1145,0.8979287454999999 +2,1,1145,0.8979287455 2,1,1146,0.8990000001999999 2,1,1147,0.8990000001999999 2,1,1148,0.8990000001999999 @@ -27438,23 +27438,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1157,0.8990000001999999 2,1,1158,0.8990000001999999 2,1,1159,0.8990000001999999 -2,1,1160,0.8979287454999999 +2,1,1160,0.8979287455 2,1,1161,0.8900505372999999 -2,1,1162,0.8841418812999998 -2,1,1163,0.8802027765999999 -2,1,1164,0.8782332246999999 +2,1,1162,0.8841418812999999 +2,1,1163,0.8802027766 +2,1,1164,0.8782332247 2,1,1165,0.8762636728 2,1,1166,0.8762636728 2,1,1167,0.8762636728 -2,1,1168,0.8802027765999999 +2,1,1168,0.8802027766 2,1,1169,0.8861114332 2,1,1170,0.8920200892 2,1,1171,0.8939896417000001 2,1,1172,0.8939896417000001 2,1,1173,0.8939896417000001 2,1,1174,0.8959591936 -2,1,1175,0.8979287454999999 -2,1,1176,0.8979287454999999 +2,1,1175,0.8979287455 +2,1,1176,0.8979287455 2,1,1177,0.8990000001999999 2,1,1178,0.8990000001999999 2,1,1179,0.8990000001999999 @@ -27463,7 +27463,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1182,0.8990000001999999 2,1,1183,0.8990000001999999 2,1,1184,0.8990000001999999 -2,1,1185,0.8979287454999999 +2,1,1185,0.8979287455 2,1,1186,0.8939896417000001 2,1,1187,0.8900505372999999 2,1,1188,0.8880809851 @@ -27471,7 +27471,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1190,0.8880809851 2,1,1191,0.8900505372999999 2,1,1192,0.8920200892 -2,1,1193,0.8979287454999999 +2,1,1193,0.8979287455 2,1,1194,0.8990000001999999 2,1,1195,0.8990000001999999 2,1,1196,0.8990000001999999 @@ -27486,23 +27486,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1205,0.8990000001999999 2,1,1206,0.8990000001999999 2,1,1207,0.8990000001999999 -2,1,1208,0.8979287454999999 +2,1,1208,0.8979287455 2,1,1209,0.8900505372999999 -2,1,1210,0.8841418812999998 -2,1,1211,0.8802027765999999 -2,1,1212,0.8782332246999999 +2,1,1210,0.8841418812999999 +2,1,1211,0.8802027766 +2,1,1212,0.8782332247 2,1,1213,0.8762636728 2,1,1214,0.8762636728 2,1,1215,0.8762636728 -2,1,1216,0.8802027765999999 +2,1,1216,0.8802027766 2,1,1217,0.8861114332 2,1,1218,0.8920200892 2,1,1219,0.8939896417000001 2,1,1220,0.8939896417000001 2,1,1221,0.8939896417000001 2,1,1222,0.8959591936 -2,1,1223,0.8979287454999999 -2,1,1224,0.8979287454999999 +2,1,1223,0.8979287455 +2,1,1224,0.8979287455 2,1,1225,0.8990000001999999 2,1,1226,0.8990000001999999 2,1,1227,0.8990000001999999 @@ -27511,12 +27511,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1230,0.8990000001999999 2,1,1231,0.8990000001999999 2,1,1232,0.8990000001999999 -2,1,1233,0.8979287454999999 -2,1,1234,0.8979287454999999 -2,1,1235,0.8979287454999999 +2,1,1233,0.8979287455 +2,1,1234,0.8979287455 +2,1,1235,0.8979287455 2,1,1236,0.8959591936 2,1,1237,0.8959591936 -2,1,1238,0.8979287454999999 +2,1,1238,0.8979287455 2,1,1239,0.8990000001999999 2,1,1240,0.8990000001999999 2,1,1241,0.8990000001999999 @@ -27534,18 +27534,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1253,0.8990000001999999 2,1,1254,0.8990000001999999 2,1,1255,0.8990000001999999 -2,1,1256,0.8979287454999999 +2,1,1256,0.8979287455 2,1,1257,0.8920200892 2,1,1258,0.8861114332 -2,1,1259,0.8802027765999999 -2,1,1260,0.8782332246999999 -2,1,1261,0.8782332246999999 -2,1,1262,0.8802027765999999 -2,1,1263,0.8821723288 +2,1,1259,0.8802027766 +2,1,1260,0.8782332247 +2,1,1261,0.8782332247 +2,1,1262,0.8802027766 +2,1,1263,0.8821723288000001 2,1,1264,0.8880809851 2,1,1265,0.8939896417000001 -2,1,1266,0.8979287454999999 -2,1,1267,0.8979287454999999 +2,1,1266,0.8979287455 +2,1,1267,0.8979287455 2,1,1268,0.8990000001999999 2,1,1269,0.8990000001999999 2,1,1270,0.8990000001999999 @@ -27559,7 +27559,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1278,0.8990000001999999 2,1,1279,0.8990000001999999 2,1,1280,0.8990000001999999 -2,1,1281,0.8979287454999999 +2,1,1281,0.8979287455 2,1,1282,0.8939896417000001 2,1,1283,0.8900505372999999 2,1,1284,0.8880809851 @@ -27567,7 +27567,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1286,0.8880809851 2,1,1287,0.8900505372999999 2,1,1288,0.8920200892 -2,1,1289,0.8979287454999999 +2,1,1289,0.8979287455 2,1,1290,0.8990000001999999 2,1,1291,0.8990000001999999 2,1,1292,0.8990000001999999 @@ -27582,18 +27582,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1301,0.8990000001999999 2,1,1302,0.8990000001999999 2,1,1303,0.8990000001999999 -2,1,1304,0.8979287454999999 +2,1,1304,0.8979287455 2,1,1305,0.8920200892 2,1,1306,0.8861114332 -2,1,1307,0.8802027765999999 -2,1,1308,0.8782332246999999 -2,1,1309,0.8782332246999999 -2,1,1310,0.8802027765999999 -2,1,1311,0.8821723288 +2,1,1307,0.8802027766 +2,1,1308,0.8782332247 +2,1,1309,0.8782332247 +2,1,1310,0.8802027766 +2,1,1311,0.8821723288000001 2,1,1312,0.8880809851 2,1,1313,0.8939896417000001 -2,1,1314,0.8979287454999999 -2,1,1315,0.8979287454999999 +2,1,1314,0.8979287455 +2,1,1315,0.8979287455 2,1,1316,0.8990000001999999 2,1,1317,0.8990000001999999 2,1,1318,0.8990000001999999 @@ -27606,18 +27606,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1325,0.8990000001999999 2,1,1326,0.8990000001999999 2,1,1327,0.8990000001999999 -2,1,1328,0.8979287454999999 +2,1,1328,0.8979287455 2,1,1329,0.8920200892 2,1,1330,0.8861114332 -2,1,1331,0.8802027765999999 -2,1,1332,0.8782332246999999 -2,1,1333,0.8782332246999999 -2,1,1334,0.8802027765999999 -2,1,1335,0.8821723288 +2,1,1331,0.8802027766 +2,1,1332,0.8782332247 +2,1,1333,0.8782332247 +2,1,1334,0.8802027766 +2,1,1335,0.8821723288000001 2,1,1336,0.8880809851 2,1,1337,0.8939896417000001 -2,1,1338,0.8979287454999999 -2,1,1339,0.8979287454999999 +2,1,1338,0.8979287455 +2,1,1339,0.8979287455 2,1,1340,0.8990000001999999 2,1,1341,0.8990000001999999 2,1,1342,0.8990000001999999 @@ -27632,7 +27632,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1351,0.8990000001999999 2,1,1352,0.8990000001999999 2,1,1353,0.8990000001999999 -2,1,1354,0.8979287454999999 +2,1,1354,0.8979287455 2,1,1355,0.8959591936 2,1,1356,0.8939896417000001 2,1,1357,0.8920200892 @@ -27656,7 +27656,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1375,0.8990000001999999 2,1,1376,0.8990000001999999 2,1,1377,0.8990000001999999 -2,1,1378,0.8979287454999999 +2,1,1378,0.8979287455 2,1,1379,0.8959591936 2,1,1380,0.8939896417000001 2,1,1381,0.8920200892 @@ -27688,8 +27688,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1407,0.8880809851 2,1,1408,0.8900505372999999 2,1,1409,0.8939896417000001 -2,1,1410,0.8979287454999999 -2,1,1411,0.8979287454999999 +2,1,1410,0.8979287455 +2,1,1411,0.8979287455 2,1,1412,0.8990000001999999 2,1,1413,0.8990000001999999 2,1,1414,0.8990000001999999 @@ -27706,10 +27706,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1425,0.8990000001999999 2,1,1426,0.8990000001999999 2,1,1427,0.8990000001999999 -2,1,1428,0.8979287454999999 -2,1,1429,0.8979287454999999 -2,1,1430,0.8979287454999999 -2,1,1431,0.8979287454999999 +2,1,1428,0.8979287455 +2,1,1429,0.8979287455 +2,1,1430,0.8979287455 +2,1,1431,0.8979287455 2,1,1432,0.8990000001999999 2,1,1433,0.8990000001999999 2,1,1434,0.8990000001999999 @@ -27731,8 +27731,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1450,0.8990000001999999 2,1,1451,0.8990000001999999 2,1,1452,0.8990000001999999 -2,1,1453,0.8979287454999999 -2,1,1454,0.8979287454999999 +2,1,1453,0.8979287455 +2,1,1454,0.8979287455 2,1,1455,0.8990000001999999 2,1,1456,0.8990000001999999 2,1,1457,0.8990000001999999 @@ -27752,14 +27752,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1471,0.8990000001999999 2,1,1472,0.8990000001999999 2,1,1473,0.8990000001999999 -2,1,1474,0.8979287454999999 +2,1,1474,0.8979287455 2,1,1475,0.8959591936 2,1,1476,0.8939896417000001 2,1,1477,0.8939896417000001 2,1,1478,0.8920200892 2,1,1479,0.8939896417000001 2,1,1480,0.8959591936 -2,1,1481,0.8979287454999999 +2,1,1481,0.8979287455 2,1,1482,0.8990000001999999 2,1,1483,0.8990000001999999 2,1,1484,0.8990000001999999 @@ -27776,7 +27776,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1495,0.8990000001999999 2,1,1496,0.8990000001999999 2,1,1497,0.8990000001999999 -2,1,1498,0.8979287454999999 +2,1,1498,0.8979287455 2,1,1499,0.8959591936 2,1,1500,0.8939896417000001 2,1,1501,0.8920200892 @@ -27801,12 +27801,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1520,0.8990000001999999 2,1,1521,0.8990000001999999 2,1,1522,0.8990000001999999 -2,1,1523,0.8979287454999999 -2,1,1524,0.8979287454999999 +2,1,1523,0.8979287455 +2,1,1524,0.8979287455 2,1,1525,0.8959591936 2,1,1526,0.8959591936 -2,1,1527,0.8979287454999999 -2,1,1528,0.8979287454999999 +2,1,1527,0.8979287455 +2,1,1528,0.8979287455 2,1,1529,0.8990000001999999 2,1,1530,0.8990000001999999 2,1,1531,0.8990000001999999 @@ -27825,12 +27825,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1544,0.8990000001999999 2,1,1545,0.8990000001999999 2,1,1546,0.8990000001999999 -2,1,1547,0.8979287454999999 -2,1,1548,0.8979287454999999 +2,1,1547,0.8979287455 +2,1,1548,0.8979287455 2,1,1549,0.8959591936 2,1,1550,0.8959591936 -2,1,1551,0.8979287454999999 -2,1,1552,0.8979287454999999 +2,1,1551,0.8979287455 +2,1,1552,0.8979287455 2,1,1553,0.8990000001999999 2,1,1554,0.8990000001999999 2,1,1555,0.8990000001999999 @@ -27848,14 +27848,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1567,0.8990000001999999 2,1,1568,0.8990000001999999 2,1,1569,0.8990000001999999 -2,1,1570,0.8979287454999999 +2,1,1570,0.8979287455 2,1,1571,0.8959591936 2,1,1572,0.8939896417000001 2,1,1573,0.8920200892 2,1,1574,0.8920200892 2,1,1575,0.8939896417000001 2,1,1576,0.8959591936 -2,1,1577,0.8979287454999999 +2,1,1577,0.8979287455 2,1,1578,0.8990000001999999 2,1,1579,0.8990000001999999 2,1,1580,0.8990000001999999 @@ -27876,7 +27876,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1595,0.8990000001999999 2,1,1596,0.8990000001999999 2,1,1597,0.8990000001999999 -2,1,1598,0.8979287454999999 +2,1,1598,0.8979287455 2,1,1599,0.8990000001999999 2,1,1600,0.8990000001999999 2,1,1601,0.8990000001999999 @@ -27897,13 +27897,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1616,0.8990000001999999 2,1,1617,0.8990000001999999 2,1,1618,0.8990000001999999 -2,1,1619,0.8979287454999999 +2,1,1619,0.8979287455 2,1,1620,0.8959591936 2,1,1621,0.8939896417000001 2,1,1622,0.8939896417000001 2,1,1623,0.8939896417000001 2,1,1624,0.8959591936 -2,1,1625,0.8979287454999999 +2,1,1625,0.8979287455 2,1,1626,0.8990000001999999 2,1,1627,0.8990000001999999 2,1,1628,0.8990000001999999 @@ -27920,10 +27920,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1639,0.8990000001999999 2,1,1640,0.8990000001999999 2,1,1641,0.8990000001999999 -2,1,1642,0.8979287454999999 +2,1,1642,0.8979287455 2,1,1643,0.8959591936 2,1,1644,0.8959591936 -2,1,1645,0.8979287454999999 +2,1,1645,0.8979287455 2,1,1646,0.8990000001999999 2,1,1647,0.8990000001999999 2,1,1648,0.8990000001999999 @@ -27944,7 +27944,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1663,0.8990000001999999 2,1,1664,0.8990000001999999 2,1,1665,0.8990000001999999 -2,1,1666,0.8979287454999999 +2,1,1666,0.8979287455 2,1,1667,0.8959591936 2,1,1668,0.8939896417000001 2,1,1669,0.8920200892 @@ -27968,14 +27968,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1687,0.8990000001999999 2,1,1688,0.8990000001999999 2,1,1689,0.8990000001999999 -2,1,1690,0.8979287454999999 +2,1,1690,0.8979287455 2,1,1691,0.8959591936 2,1,1692,0.8939896417000001 2,1,1693,0.8939896417000001 2,1,1694,0.8920200892 2,1,1695,0.8939896417000001 2,1,1696,0.8959591936 -2,1,1697,0.8979287454999999 +2,1,1697,0.8979287455 2,1,1698,0.8990000001999999 2,1,1699,0.8990000001999999 2,1,1700,0.8990000001999999 @@ -27995,8 +27995,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1714,0.8990000001999999 2,1,1715,0.8990000001999999 2,1,1716,0.8990000001999999 -2,1,1717,0.8979287454999999 -2,1,1718,0.8979287454999999 +2,1,1717,0.8979287455 +2,1,1718,0.8979287455 2,1,1719,0.8990000001999999 2,1,1720,0.8990000001999999 2,1,1721,0.8990000001999999 @@ -28016,20 +28016,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1735,0.8990000001999999 2,1,1736,0.8939896417000001 2,1,1737,0.8880809851 -2,1,1738,0.8821723288 -2,1,1739,0.8782332246999999 +2,1,1738,0.8821723288000001 +2,1,1739,0.8782332247 2,1,1740,0.8762636728 2,1,1741,0.8742941203 2,1,1742,0.8742941203 2,1,1743,0.8742941203 2,1,1744,0.8762636728 -2,1,1745,0.8821723288 +2,1,1745,0.8821723288000001 2,1,1746,0.8900505372999999 2,1,1747,0.8920200892 2,1,1748,0.8920200892 2,1,1749,0.8939896417000001 2,1,1750,0.8959591936 -2,1,1751,0.8979287454999999 +2,1,1751,0.8979287455 2,1,1752,0.8990000001999999 2,1,1753,0.8990000001999999 2,1,1754,0.8990000001999999 @@ -28040,10 +28040,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1759,0.8990000001999999 2,1,1760,0.8990000001999999 2,1,1761,0.8990000001999999 -2,1,1762,0.8979287454999999 +2,1,1762,0.8979287455 2,1,1763,0.8959591936 2,1,1764,0.8959591936 -2,1,1765,0.8979287454999999 +2,1,1765,0.8979287455 2,1,1766,0.8990000001999999 2,1,1767,0.8990000001999999 2,1,1768,0.8990000001999999 @@ -28067,9 +28067,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1786,0.8990000001999999 2,1,1787,0.8990000001999999 2,1,1788,0.8990000001999999 -2,1,1789,0.8979287454999999 -2,1,1790,0.8979287454999999 -2,1,1791,0.8979287454999999 +2,1,1789,0.8979287455 +2,1,1790,0.8979287455 +2,1,1791,0.8979287455 2,1,1792,0.8990000001999999 2,1,1793,0.8990000001999999 2,1,1794,0.8990000001999999 @@ -28088,7 +28088,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1807,0.8990000001999999 2,1,1808,0.8990000001999999 2,1,1809,0.8990000001999999 -2,1,1810,0.8979287454999999 +2,1,1810,0.8979287455 2,1,1811,0.8959591936 2,1,1812,0.8939896417000001 2,1,1813,0.8920200892 @@ -28112,10 +28112,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1831,0.8990000001999999 2,1,1832,0.8990000001999999 2,1,1833,0.8990000001999999 -2,1,1834,0.8979287454999999 +2,1,1834,0.8979287455 2,1,1835,0.8959591936 2,1,1836,0.8959591936 -2,1,1837,0.8979287454999999 +2,1,1837,0.8979287455 2,1,1838,0.8990000001999999 2,1,1839,0.8990000001999999 2,1,1840,0.8990000001999999 @@ -28136,7 +28136,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1855,0.8990000001999999 2,1,1856,0.8990000001999999 2,1,1857,0.8990000001999999 -2,1,1858,0.8979287454999999 +2,1,1858,0.8979287455 2,1,1859,0.8959591936 2,1,1860,0.8939896417000001 2,1,1861,0.8920200892 @@ -28160,7 +28160,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1879,0.8990000001999999 2,1,1880,0.8990000001999999 2,1,1881,0.8990000001999999 -2,1,1882,0.8979287454999999 +2,1,1882,0.8979287455 2,1,1883,0.8959591936 2,1,1884,0.8939896417000001 2,1,1885,0.8920200892 @@ -28184,14 +28184,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1903,0.8990000001999999 2,1,1904,0.8990000001999999 2,1,1905,0.8990000001999999 -2,1,1906,0.8979287454999999 +2,1,1906,0.8979287455 2,1,1907,0.8959591936 2,1,1908,0.8939896417000001 2,1,1909,0.8939896417000001 2,1,1910,0.8920200892 2,1,1911,0.8939896417000001 2,1,1912,0.8959591936 -2,1,1913,0.8979287454999999 +2,1,1913,0.8979287455 2,1,1914,0.8990000001999999 2,1,1915,0.8990000001999999 2,1,1916,0.8990000001999999 @@ -28209,13 +28209,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1928,0.8990000001999999 2,1,1929,0.8990000001999999 2,1,1930,0.8990000001999999 -2,1,1931,0.8979287454999999 +2,1,1931,0.8979287455 2,1,1932,0.8959591936 2,1,1933,0.8939896417000001 2,1,1934,0.8939896417000001 2,1,1935,0.8939896417000001 2,1,1936,0.8959591936 -2,1,1937,0.8979287454999999 +2,1,1937,0.8979287455 2,1,1938,0.8990000001999999 2,1,1939,0.8990000001999999 2,1,1940,0.8990000001999999 @@ -28231,16 +28231,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1950,0.8990000001999999 2,1,1951,0.8990000001999999 2,1,1952,0.8990000001999999 -2,1,1953,0.8979287454999999 +2,1,1953,0.8979287455 2,1,1954,0.8939896417000001 2,1,1955,0.8900505372999999 2,1,1956,0.8880809851 2,1,1957,0.8861114332 -2,1,1958,0.8841418812999998 +2,1,1958,0.8841418812999999 2,1,1959,0.8861114332 2,1,1960,0.8880809851 2,1,1961,0.8920200892 -2,1,1962,0.8979287454999999 +2,1,1962,0.8979287455 2,1,1963,0.8990000001999999 2,1,1964,0.8990000001999999 2,1,1965,0.8990000001999999 @@ -28256,7 +28256,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,1975,0.8990000001999999 2,1,1976,0.8990000001999999 2,1,1977,0.8990000001999999 -2,1,1978,0.8979287454999999 +2,1,1978,0.8979287455 2,1,1979,0.8959591936 2,1,1980,0.8939896417000001 2,1,1981,0.8920200892 @@ -28312,7 +28312,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2031,0.8900505372999999 2,1,2032,0.8920200892 2,1,2033,0.8939896417000001 -2,1,2034,0.8979287454999999 +2,1,2034,0.8979287455 2,1,2035,0.8990000001999999 2,1,2036,0.8990000001999999 2,1,2037,0.8990000001999999 @@ -28328,10 +28328,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2047,0.8990000001999999 2,1,2048,0.8990000001999999 2,1,2049,0.8990000001999999 -2,1,2050,0.8979287454999999 +2,1,2050,0.8979287455 2,1,2051,0.8959591936 2,1,2052,0.8959591936 -2,1,2053,0.8979287454999999 +2,1,2053,0.8979287455 2,1,2054,0.8990000001999999 2,1,2055,0.8990000001999999 2,1,2056,0.8990000001999999 @@ -28360,7 +28360,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2079,0.8900505372999999 2,1,2080,0.8920200892 2,1,2081,0.8939896417000001 -2,1,2082,0.8979287454999999 +2,1,2082,0.8979287455 2,1,2083,0.8990000001999999 2,1,2084,0.8990000001999999 2,1,2085,0.8990000001999999 @@ -28379,8 +28379,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2098,0.8990000001999999 2,1,2099,0.8990000001999999 2,1,2100,0.8990000001999999 -2,1,2101,0.8979287454999999 -2,1,2102,0.8979287454999999 +2,1,2101,0.8979287455 +2,1,2102,0.8979287455 2,1,2103,0.8990000001999999 2,1,2104,0.8990000001999999 2,1,2105,0.8990000001999999 @@ -28408,7 +28408,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2127,0.8900505372999999 2,1,2128,0.8920200892 2,1,2129,0.8939896417000001 -2,1,2130,0.8979287454999999 +2,1,2130,0.8979287455 2,1,2131,0.8990000001999999 2,1,2132,0.8990000001999999 2,1,2133,0.8990000001999999 @@ -28426,11 +28426,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2145,0.8990000001999999 2,1,2146,0.8990000001999999 2,1,2147,0.8990000001999999 -2,1,2148,0.8979287454999999 +2,1,2148,0.8979287455 2,1,2149,0.8959591936 2,1,2150,0.8959591936 2,1,2151,0.8959591936 -2,1,2152,0.8979287454999999 +2,1,2152,0.8979287455 2,1,2153,0.8990000001999999 2,1,2154,0.8990000001999999 2,1,2155,0.8990000001999999 @@ -28451,14 +28451,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2170,0.8920200892 2,1,2171,0.8880809851 2,1,2172,0.8861114332 -2,1,2173,0.8841418812999998 -2,1,2174,0.8821723288 -2,1,2175,0.8821723288 -2,1,2176,0.8841418812999998 +2,1,2173,0.8841418812999999 +2,1,2174,0.8821723288000001 +2,1,2175,0.8821723288000001 +2,1,2176,0.8841418812999999 2,1,2177,0.8861114332 2,1,2178,0.8920200892 -2,1,2179,0.8979287454999999 -2,1,2180,0.8979287454999999 +2,1,2179,0.8979287455 +2,1,2180,0.8979287455 2,1,2181,0.8990000001999999 2,1,2182,0.8990000001999999 2,1,2183,0.8990000001999999 @@ -28481,7 +28481,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2200,0.8920200892 2,1,2201,0.8939896417000001 2,1,2202,0.8959591936 -2,1,2203,0.8979287454999999 +2,1,2203,0.8979287455 2,1,2204,0.8990000001999999 2,1,2205,0.8990000001999999 2,1,2206,0.8990000001999999 @@ -28495,7 +28495,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2214,0.8990000001999999 2,1,2215,0.8990000001999999 2,1,2216,0.8990000001999999 -2,1,2217,0.8979287454999999 +2,1,2217,0.8979287455 2,1,2218,0.8920200892 2,1,2219,0.8900505372999999 2,1,2220,0.8880809851 @@ -28521,18 +28521,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2240,0.8959591936 2,1,2241,0.8900505372999999 2,1,2242,0.8861114332 -2,1,2243,0.8841418812999998 -2,1,2244,0.8802027765999999 -2,1,2245,0.8782332246999999 +2,1,2243,0.8841418812999999 +2,1,2244,0.8802027766 +2,1,2245,0.8782332247 2,1,2246,0.8762636728 2,1,2247,0.8762636728 -2,1,2248,0.8782332246999999 -2,1,2249,0.8802027765999999 +2,1,2248,0.8782332247 +2,1,2249,0.8802027766 2,1,2250,0.8861114332 2,1,2251,0.8920200892 2,1,2252,0.8939896417000001 2,1,2253,0.8959591936 -2,1,2254,0.8979287454999999 +2,1,2254,0.8979287455 2,1,2255,0.8990000001999999 2,1,2256,0.8990000001999999 2,1,2257,0.8990000001999999 @@ -28543,13 +28543,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2262,0.8990000001999999 2,1,2263,0.8990000001999999 2,1,2264,0.8990000001999999 -2,1,2265,0.8979287454999999 +2,1,2265,0.8979287455 2,1,2266,0.8939896417000001 2,1,2267,0.8900505372999999 2,1,2268,0.8880809851 2,1,2269,0.8861114332 -2,1,2270,0.8841418812999998 -2,1,2271,0.8841418812999998 +2,1,2270,0.8841418812999999 +2,1,2271,0.8841418812999999 2,1,2272,0.8861114332 2,1,2273,0.8880809851 2,1,2274,0.8939896417000001 @@ -28568,21 +28568,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2287,0.8990000001999999 2,1,2288,0.8939896417000001 2,1,2289,0.8900505372999999 -2,1,2290,0.8841418812999998 -2,1,2291,0.8821723288 -2,1,2292,0.8782332246999999 +2,1,2290,0.8841418812999999 +2,1,2291,0.8821723288000001 +2,1,2292,0.8782332247 2,1,2293,0.8762636728 2,1,2294,0.8742941203 2,1,2295,0.8742941203 2,1,2296,0.8762636728 -2,1,2297,0.8782332246999999 -2,1,2298,0.8841418812999998 +2,1,2297,0.8782332247 +2,1,2298,0.8841418812999999 2,1,2299,0.8880809851 2,1,2300,0.8900505372999999 2,1,2301,0.8920200892 2,1,2302,0.8939896417000001 2,1,2303,0.8959591936 -2,1,2304,0.8979287454999999 +2,1,2304,0.8979287455 2,1,2305,0.8990000001999999 2,1,2306,0.8990000001999999 2,1,2307,0.8990000001999999 @@ -28596,8 +28596,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2315,0.8900505372999999 2,1,2316,0.8880809851 2,1,2317,0.8861114332 -2,1,2318,0.8841418812999998 -2,1,2319,0.8841418812999998 +2,1,2318,0.8841418812999999 +2,1,2319,0.8841418812999999 2,1,2320,0.8861114332 2,1,2321,0.8880809851 2,1,2322,0.8939896417000001 @@ -28617,18 +28617,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2336,0.8959591936 2,1,2337,0.8900505372999999 2,1,2338,0.8861114332 -2,1,2339,0.8841418812999998 -2,1,2340,0.8802027765999999 -2,1,2341,0.8782332246999999 +2,1,2339,0.8841418812999999 +2,1,2340,0.8802027766 +2,1,2341,0.8782332247 2,1,2342,0.8762636728 2,1,2343,0.8762636728 -2,1,2344,0.8782332246999999 -2,1,2345,0.8802027765999999 +2,1,2344,0.8782332247 +2,1,2345,0.8802027766 2,1,2346,0.8861114332 2,1,2347,0.8920200892 2,1,2348,0.8939896417000001 2,1,2349,0.8959591936 -2,1,2350,0.8979287454999999 +2,1,2350,0.8979287455 2,1,2351,0.8990000001999999 2,1,2352,0.8990000001999999 2,1,2353,0.8990000001999999 @@ -28641,15 +28641,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2360,0.8959591936 2,1,2361,0.8920200892 2,1,2362,0.8880809851 -2,1,2363,0.8841418812999998 -2,1,2364,0.8821723288 -2,1,2365,0.8802027765999999 -2,1,2366,0.8802027765999999 -2,1,2367,0.8821723288 -2,1,2368,0.8841418812999998 +2,1,2363,0.8841418812999999 +2,1,2364,0.8821723288000001 +2,1,2365,0.8802027766 +2,1,2366,0.8802027766 +2,1,2367,0.8821723288000001 +2,1,2368,0.8841418812999999 2,1,2369,0.8880809851 2,1,2370,0.8939896417000001 -2,1,2371,0.8979287454999999 +2,1,2371,0.8979287455 2,1,2372,0.8990000001999999 2,1,2373,0.8990000001999999 2,1,2374,0.8990000001999999 @@ -28687,7 +28687,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2406,0.8990000001999999 2,1,2407,0.8990000001999999 2,1,2408,0.8990000001999999 -2,1,2409,0.8979287454999999 +2,1,2409,0.8979287455 2,1,2410,0.8939896417000001 2,1,2411,0.8920200892 2,1,2412,0.8900505372999999 @@ -28713,18 +28713,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2432,0.8959591936 2,1,2433,0.8900505372999999 2,1,2434,0.8861114332 -2,1,2435,0.8841418812999998 -2,1,2436,0.8802027765999999 -2,1,2437,0.8782332246999999 +2,1,2435,0.8841418812999999 +2,1,2436,0.8802027766 +2,1,2437,0.8782332247 2,1,2438,0.8762636728 2,1,2439,0.8762636728 -2,1,2440,0.8782332246999999 -2,1,2441,0.8802027765999999 +2,1,2440,0.8782332247 +2,1,2441,0.8802027766 2,1,2442,0.8861114332 2,1,2443,0.8920200892 2,1,2444,0.8939896417000001 2,1,2445,0.8959591936 -2,1,2446,0.8979287454999999 +2,1,2446,0.8979287455 2,1,2447,0.8990000001999999 2,1,2448,0.8990000001999999 2,1,2449,0.8990000001999999 @@ -28735,21 +28735,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2454,0.8990000001999999 2,1,2455,0.8939896417000001 2,1,2456,0.8900505372999999 -2,1,2457,0.8841418812999998 -2,1,2458,0.8821723288 -2,1,2459,0.8782332246999999 +2,1,2457,0.8841418812999999 +2,1,2458,0.8821723288000001 +2,1,2459,0.8782332247 2,1,2460,0.8762636728 2,1,2461,0.8742941203 2,1,2462,0.8723245680999999 2,1,2463,0.8723245680999999 2,1,2464,0.8742941203 2,1,2465,0.8762636728 -2,1,2466,0.8841418812999998 +2,1,2466,0.8841418812999999 2,1,2467,0.8900505372999999 2,1,2468,0.8920200892 2,1,2469,0.8939896417000001 2,1,2470,0.8959591936 -2,1,2471,0.8979287454999999 +2,1,2471,0.8979287455 2,1,2472,0.8990000001999999 2,1,2473,0.8990000001999999 2,1,2474,0.8990000001999999 @@ -28760,17 +28760,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2479,0.8990000001999999 2,1,2480,0.8920200892 2,1,2481,0.8861114332 -2,1,2482,0.8821723288 -2,1,2483,0.8802027765999999 -2,1,2484,0.8782332246999999 -2,1,2485,0.8782332246999999 +2,1,2482,0.8821723288000001 +2,1,2483,0.8802027766 +2,1,2484,0.8782332247 +2,1,2485,0.8782332247 2,1,2486,0.8762636728 -2,1,2487,0.8782332246999999 -2,1,2488,0.8802027765999999 -2,1,2489,0.8821723288 +2,1,2487,0.8782332247 +2,1,2488,0.8802027766 +2,1,2489,0.8821723288000001 2,1,2490,0.8880809851 2,1,2491,0.8939896417000001 -2,1,2492,0.8979287454999999 +2,1,2492,0.8979287455 2,1,2493,0.8990000001999999 2,1,2494,0.8990000001999999 2,1,2495,0.8990000001999999 @@ -28783,7 +28783,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2502,0.8990000001999999 2,1,2503,0.8990000001999999 2,1,2504,0.8990000001999999 -2,1,2505,0.8979287454999999 +2,1,2505,0.8979287455 2,1,2506,0.8939896417000001 2,1,2507,0.8920200892 2,1,2508,0.8900505372999999 @@ -28807,21 +28807,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2526,0.8990000001999999 2,1,2527,0.8939896417000001 2,1,2528,0.8900505372999999 -2,1,2529,0.8841418812999998 -2,1,2530,0.8821723288 -2,1,2531,0.8782332246999999 +2,1,2529,0.8841418812999999 +2,1,2530,0.8821723288000001 +2,1,2531,0.8782332247 2,1,2532,0.8762636728 2,1,2533,0.8742941203 2,1,2534,0.8723245680999999 2,1,2535,0.8723245680999999 2,1,2536,0.8742941203 2,1,2537,0.8762636728 -2,1,2538,0.8841418812999998 +2,1,2538,0.8841418812999999 2,1,2539,0.8900505372999999 2,1,2540,0.8920200892 2,1,2541,0.8939896417000001 2,1,2542,0.8959591936 -2,1,2543,0.8979287454999999 +2,1,2543,0.8979287455 2,1,2544,0.8990000001999999 2,1,2545,0.8990000001999999 2,1,2546,0.8990000001999999 @@ -28832,18 +28832,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2551,0.8990000001999999 2,1,2552,0.8959591936 2,1,2553,0.8900505372999999 -2,1,2554,0.8841418812999998 -2,1,2555,0.8782332246999999 +2,1,2554,0.8841418812999999 +2,1,2555,0.8782332247 2,1,2556,0.8742941203 2,1,2557,0.8723245680999999 2,1,2558,0.8723245680999999 2,1,2559,0.8742941203 2,1,2560,0.8762636728 -2,1,2561,0.8802027765999999 +2,1,2561,0.8802027766 2,1,2562,0.8861114332 2,1,2563,0.8920200892 2,1,2564,0.8959591936 -2,1,2565,0.8979287454999999 +2,1,2565,0.8979287455 2,1,2566,0.8990000001999999 2,1,2567,0.8990000001999999 2,1,2568,0.8990000001999999 @@ -28879,13 +28879,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2598,0.8990000001999999 2,1,2599,0.8990000001999999 2,1,2600,0.8990000001999999 -2,1,2601,0.8979287454999999 +2,1,2601,0.8979287455 2,1,2602,0.8939896417000001 2,1,2603,0.8900505372999999 2,1,2604,0.8880809851 2,1,2605,0.8861114332 -2,1,2606,0.8841418812999998 -2,1,2607,0.8841418812999998 +2,1,2606,0.8841418812999999 +2,1,2607,0.8841418812999999 2,1,2608,0.8861114332 2,1,2609,0.8880809851 2,1,2610,0.8939896417000001 @@ -28936,7 +28936,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2655,0.8880809851 2,1,2656,0.8900505372999999 2,1,2657,0.8920200892 -2,1,2658,0.8979287454999999 +2,1,2658,0.8979287455 2,1,2659,0.8990000001999999 2,1,2660,0.8990000001999999 2,1,2661,0.8990000001999999 @@ -28959,7 +28959,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2678,0.8900505372999999 2,1,2679,0.8920200892 2,1,2680,0.8939896417000001 -2,1,2681,0.8979287454999999 +2,1,2681,0.8979287455 2,1,2682,0.8990000001999999 2,1,2683,0.8990000001999999 2,1,2684,0.8990000001999999 @@ -28979,9 +28979,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2698,0.8939896417000001 2,1,2699,0.8900505372999999 2,1,2700,0.8861114332 -2,1,2701,0.8841418812999998 -2,1,2702,0.8841418812999998 -2,1,2703,0.8841418812999998 +2,1,2701,0.8841418812999999 +2,1,2702,0.8841418812999999 +2,1,2703,0.8841418812999999 2,1,2704,0.8861114332 2,1,2705,0.8880809851 2,1,2706,0.8939896417000001 @@ -29007,7 +29007,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2726,0.8900505372999999 2,1,2727,0.8920200892 2,1,2728,0.8939896417000001 -2,1,2729,0.8979287454999999 +2,1,2729,0.8979287455 2,1,2730,0.8990000001999999 2,1,2731,0.8990000001999999 2,1,2732,0.8990000001999999 @@ -29025,13 +29025,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2744,0.8959591936 2,1,2745,0.8920200892 2,1,2746,0.8861114332 -2,1,2747,0.8841418812999998 -2,1,2748,0.8821723288 -2,1,2749,0.8802027765999999 -2,1,2750,0.8782332246999999 -2,1,2751,0.8802027765999999 -2,1,2752,0.8821723288 -2,1,2753,0.8841418812999998 +2,1,2747,0.8841418812999999 +2,1,2748,0.8821723288000001 +2,1,2749,0.8802027766 +2,1,2750,0.8782332247 +2,1,2751,0.8802027766 +2,1,2752,0.8821723288000001 +2,1,2753,0.8841418812999999 2,1,2754,0.8900505372999999 2,1,2755,0.8959591936 2,1,2756,0.8990000001999999 @@ -29048,21 +29048,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2767,0.8990000001999999 2,1,2768,0.8939896417000001 2,1,2769,0.8900505372999999 -2,1,2770,0.8841418812999998 -2,1,2771,0.8821723288 -2,1,2772,0.8782332246999999 +2,1,2770,0.8841418812999999 +2,1,2771,0.8821723288000001 +2,1,2772,0.8782332247 2,1,2773,0.8762636728 2,1,2774,0.8742941203 2,1,2775,0.8742941203 2,1,2776,0.8762636728 -2,1,2777,0.8782332246999999 -2,1,2778,0.8841418812999998 +2,1,2777,0.8782332247 +2,1,2778,0.8841418812999999 2,1,2779,0.8880809851 2,1,2780,0.8900505372999999 2,1,2781,0.8920200892 2,1,2782,0.8939896417000001 2,1,2783,0.8959591936 -2,1,2784,0.8979287454999999 +2,1,2784,0.8979287455 2,1,2785,0.8990000001999999 2,1,2786,0.8990000001999999 2,1,2787,0.8990000001999999 @@ -29079,7 +29079,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2798,0.8900505372999999 2,1,2799,0.8920200892 2,1,2800,0.8939896417000001 -2,1,2801,0.8979287454999999 +2,1,2801,0.8979287455 2,1,2802,0.8990000001999999 2,1,2803,0.8990000001999999 2,1,2804,0.8990000001999999 @@ -29096,21 +29096,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2815,0.8990000001999999 2,1,2816,0.8939896417000001 2,1,2817,0.8900505372999999 -2,1,2818,0.8841418812999998 -2,1,2819,0.8821723288 -2,1,2820,0.8782332246999999 +2,1,2818,0.8841418812999999 +2,1,2819,0.8821723288000001 +2,1,2820,0.8782332247 2,1,2821,0.8762636728 2,1,2822,0.8742941203 2,1,2823,0.8742941203 2,1,2824,0.8762636728 -2,1,2825,0.8782332246999999 -2,1,2826,0.8841418812999998 +2,1,2825,0.8782332247 +2,1,2826,0.8841418812999999 2,1,2827,0.8880809851 2,1,2828,0.8900505372999999 2,1,2829,0.8920200892 2,1,2830,0.8939896417000001 2,1,2831,0.8959591936 -2,1,2832,0.8979287454999999 +2,1,2832,0.8979287455 2,1,2833,0.8990000001999999 2,1,2834,0.8990000001999999 2,1,2835,0.8990000001999999 @@ -29119,13 +29119,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2838,0.8990000001999999 2,1,2839,0.8990000001999999 2,1,2840,0.8990000001999999 -2,1,2841,0.8979287454999999 +2,1,2841,0.8979287455 2,1,2842,0.8939896417000001 2,1,2843,0.8900505372999999 2,1,2844,0.8880809851 2,1,2845,0.8861114332 -2,1,2846,0.8841418812999998 -2,1,2847,0.8841418812999998 +2,1,2846,0.8841418812999999 +2,1,2847,0.8841418812999999 2,1,2848,0.8861114332 2,1,2849,0.8880809851 2,1,2850,0.8939896417000001 @@ -29143,13 +29143,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2862,0.8990000001999999 2,1,2863,0.8990000001999999 2,1,2864,0.8990000001999999 -2,1,2865,0.8979287454999999 +2,1,2865,0.8979287455 2,1,2866,0.8939896417000001 2,1,2867,0.8900505372999999 2,1,2868,0.8880809851 2,1,2869,0.8861114332 -2,1,2870,0.8841418812999998 -2,1,2871,0.8841418812999998 +2,1,2870,0.8841418812999999 +2,1,2871,0.8841418812999999 2,1,2872,0.8861114332 2,1,2873,0.8880809851 2,1,2874,0.8939896417000001 @@ -29160,26 +29160,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2879,0.8990000001999999 2,1,2880,0.8990000001999999 2,1,2881,0.8959591936 -2,1,2882,0.8979287454999999 +2,1,2882,0.8979287455 2,1,2883,0.8990000001999999 2,1,2884,0.8990000001999999 2,1,2885,0.8990000001999999 -2,1,2886,0.8979287454999999 +2,1,2886,0.8979287455 2,1,2887,0.8920200892 2,1,2888,0.8861114332 -2,1,2889,0.8821723288 -2,1,2890,0.8782332246999999 +2,1,2889,0.8821723288000001 +2,1,2890,0.8782332247 2,1,2891,0.8723245680999999 -2,1,2892,0.8703550161999999 -2,1,2893,0.8683854642999999 +2,1,2892,0.8703550162 +2,1,2893,0.8683854643 2,1,2894,0.8664159117999999 2,1,2895,0.8644463599 2,1,2896,0.8664159117999999 -2,1,2897,0.8683854642999999 +2,1,2897,0.8683854643 2,1,2898,0.8742941203 -2,1,2899,0.8802027765999999 -2,1,2900,0.8841418812999998 -2,1,2901,0.8841418812999998 +2,1,2899,0.8802027766 +2,1,2900,0.8841418812999999 +2,1,2901,0.8841418812999999 2,1,2902,0.8861114332 2,1,2903,0.8880809851 2,1,2904,0.8900505372999999 @@ -29191,16 +29191,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2910,0.8990000001999999 2,1,2911,0.8939896417000001 2,1,2912,0.8880809851 -2,1,2913,0.8821723288 -2,1,2914,0.8802027765999999 +2,1,2913,0.8821723288000001 +2,1,2914,0.8802027766 2,1,2915,0.8762636728 2,1,2916,0.8742941203 2,1,2917,0.8723245680999999 2,1,2918,0.8723245680999999 2,1,2919,0.8742941203 2,1,2920,0.8762636728 -2,1,2921,0.8802027765999999 -2,1,2922,0.8841418812999998 +2,1,2921,0.8802027766 +2,1,2922,0.8841418812999999 2,1,2923,0.8880809851 2,1,2924,0.8920200892 2,1,2925,0.8939896417000001 @@ -29213,71 +29213,71 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,2932,0.8990000001999999 2,1,2933,0.8990000001999999 2,1,2934,0.8990000001999999 -2,1,2935,0.8979287454999999 +2,1,2935,0.8979287455 2,1,2936,0.8920200892 2,1,2937,0.8880809851 -2,1,2938,0.8841418812999998 -2,1,2939,0.8802027765999999 +2,1,2938,0.8841418812999999 +2,1,2939,0.8802027766 2,1,2940,0.8762636728 2,1,2941,0.8742941203 2,1,2942,0.8742941203 2,1,2943,0.8742941203 2,1,2944,0.8762636728 -2,1,2945,0.8782332246999999 -2,1,2946,0.8841418812999998 +2,1,2945,0.8782332247 +2,1,2946,0.8841418812999999 2,1,2947,0.8920200892 2,1,2948,0.8959591936 -2,1,2949,0.8979287454999999 +2,1,2949,0.8979287455 2,1,2950,0.8990000001999999 2,1,2951,0.8990000001999999 2,1,2952,0.8990000001999999 2,1,2953,0.8959591936 -2,1,2954,0.8979287454999999 -2,1,2955,0.8979287454999999 -2,1,2956,0.8979287454999999 -2,1,2957,0.8979287454999999 +2,1,2954,0.8979287455 +2,1,2955,0.8979287455 +2,1,2956,0.8979287455 +2,1,2957,0.8979287455 2,1,2958,0.8959591936 2,1,2959,0.8900505372999999 2,1,2960,0.8861114332 -2,1,2961,0.8802027765999999 +2,1,2961,0.8802027766 2,1,2962,0.8762636728 2,1,2963,0.8723245680999999 -2,1,2964,0.8683854642999999 +2,1,2964,0.8683854643 2,1,2965,0.8664159117999999 2,1,2966,0.8644463599 2,1,2967,0.8644463599 2,1,2968,0.8664159117999999 -2,1,2969,0.8683854642999999 +2,1,2969,0.8683854643 2,1,2970,0.8723245680999999 -2,1,2971,0.8802027765999999 -2,1,2972,0.8841418812999998 +2,1,2971,0.8802027766 +2,1,2972,0.8841418812999999 2,1,2973,0.8861114332 2,1,2974,0.8880809851 2,1,2975,0.8900505372999999 2,1,2976,0.8920200892 -2,1,2977,0.8979287454999999 +2,1,2977,0.8979287455 2,1,2978,0.8990000001999999 2,1,2979,0.8990000001999999 2,1,2980,0.8990000001999999 2,1,2981,0.8990000001999999 2,1,2982,0.8959591936 2,1,2983,0.8900505372999999 -2,1,2984,0.8841418812999998 -2,1,2985,0.8802027765999999 +2,1,2984,0.8841418812999999 +2,1,2985,0.8802027766 2,1,2986,0.8742941203 -2,1,2987,0.8703550161999999 -2,1,2988,0.8683854642999999 +2,1,2987,0.8703550162 +2,1,2988,0.8683854643 2,1,2989,0.8664159117999999 -2,1,2990,0.8683854642999999 -2,1,2991,0.8703550161999999 +2,1,2990,0.8683854643 +2,1,2991,0.8703550162 2,1,2992,0.8742941203 -2,1,2993,0.8782332246999999 -2,1,2994,0.8841418812999998 +2,1,2993,0.8782332247 +2,1,2994,0.8841418812999999 2,1,2995,0.8880809851 2,1,2996,0.8920200892 2,1,2997,0.8939896417000001 2,1,2998,0.8959591936 -2,1,2999,0.8979287454999999 +2,1,2999,0.8979287455 2,1,3000,0.8990000001999999 2,1,3001,0.8990000001999999 2,1,3002,0.8990000001999999 @@ -29287,17 +29287,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3006,0.8990000001999999 2,1,3007,0.8939896417000001 2,1,3008,0.8880809851 -2,1,3009,0.8821723288 -2,1,3010,0.8782332246999999 +2,1,3009,0.8821723288000001 +2,1,3010,0.8782332247 2,1,3011,0.8723245680999999 -2,1,3012,0.8703550161999999 -2,1,3013,0.8683854642999999 +2,1,3012,0.8703550162 +2,1,3013,0.8683854643 2,1,3014,0.8664159117999999 2,1,3015,0.8664159117999999 -2,1,3016,0.8683854642999999 -2,1,3017,0.8703550161999999 +2,1,3016,0.8683854643 +2,1,3017,0.8703550162 2,1,3018,0.8742941203 -2,1,3019,0.8821723288 +2,1,3019,0.8821723288000001 2,1,3020,0.8880809851 2,1,3021,0.8900505372999999 2,1,3022,0.8920200892 @@ -29313,15 +29313,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3032,0.8959591936 2,1,3033,0.8920200892 2,1,3034,0.8880809851 -2,1,3035,0.8841418812999998 -2,1,3036,0.8821723288 -2,1,3037,0.8802027765999999 -2,1,3038,0.8802027765999999 -2,1,3039,0.8821723288 -2,1,3040,0.8841418812999998 +2,1,3035,0.8841418812999999 +2,1,3036,0.8821723288000001 +2,1,3037,0.8802027766 +2,1,3038,0.8802027766 +2,1,3039,0.8821723288000001 +2,1,3040,0.8841418812999999 2,1,3041,0.8880809851 2,1,3042,0.8939896417000001 -2,1,3043,0.8979287454999999 +2,1,3043,0.8979287455 2,1,3044,0.8990000001999999 2,1,3045,0.8990000001999999 2,1,3046,0.8990000001999999 @@ -29334,44 +29334,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3053,0.8990000001999999 2,1,3054,0.8990000001999999 2,1,3055,0.8990000001999999 -2,1,3056,0.8979287454999999 +2,1,3056,0.8979287455 2,1,3057,0.8939896417000001 2,1,3058,0.8920200892 2,1,3059,0.8880809851 2,1,3060,0.8861114332 -2,1,3061,0.8841418812999998 -2,1,3062,0.8841418812999998 -2,1,3063,0.8841418812999998 +2,1,3061,0.8841418812999999 +2,1,3062,0.8841418812999999 +2,1,3063,0.8841418812999999 2,1,3064,0.8861114332 2,1,3065,0.8880809851 2,1,3066,0.8920200892 2,1,3067,0.8959591936 -2,1,3068,0.8979287454999999 +2,1,3068,0.8979287455 2,1,3069,0.8990000001999999 2,1,3070,0.8990000001999999 2,1,3071,0.8990000001999999 2,1,3072,0.8990000001999999 2,1,3073,0.8959591936 -2,1,3074,0.8979287454999999 +2,1,3074,0.8979287455 2,1,3075,0.8990000001999999 2,1,3076,0.8990000001999999 2,1,3077,0.8990000001999999 -2,1,3078,0.8979287454999999 +2,1,3078,0.8979287455 2,1,3079,0.8920200892 2,1,3080,0.8861114332 -2,1,3081,0.8821723288 -2,1,3082,0.8782332246999999 +2,1,3081,0.8821723288000001 +2,1,3082,0.8782332247 2,1,3083,0.8723245680999999 -2,1,3084,0.8703550161999999 -2,1,3085,0.8683854642999999 +2,1,3084,0.8703550162 +2,1,3085,0.8683854643 2,1,3086,0.8664159117999999 2,1,3087,0.8644463599 2,1,3088,0.8664159117999999 -2,1,3089,0.8683854642999999 +2,1,3089,0.8683854643 2,1,3090,0.8742941203 -2,1,3091,0.8802027765999999 -2,1,3092,0.8841418812999998 -2,1,3093,0.8841418812999998 +2,1,3091,0.8802027766 +2,1,3092,0.8841418812999999 +2,1,3093,0.8841418812999999 2,1,3094,0.8861114332 2,1,3095,0.8880809851 2,1,3096,0.8900505372999999 @@ -29381,91 +29381,91 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3100,0.8990000001999999 2,1,3101,0.8990000001999999 2,1,3102,0.8990000001999999 -2,1,3103,0.8979287454999999 +2,1,3103,0.8979287455 2,1,3104,0.8920200892 2,1,3105,0.8880809851 -2,1,3106,0.8821723288 -2,1,3107,0.8802027765999999 +2,1,3106,0.8821723288000001 +2,1,3107,0.8802027766 2,1,3108,0.8762636728 2,1,3109,0.8742941203 2,1,3110,0.8723245680999999 2,1,3111,0.8723245680999999 2,1,3112,0.8723245680999999 2,1,3113,0.8742941203 -2,1,3114,0.8802027765999999 +2,1,3114,0.8802027766 2,1,3115,0.8861114332 2,1,3116,0.8900505372999999 2,1,3117,0.8900505372999999 2,1,3118,0.8920200892 2,1,3119,0.8939896417000001 2,1,3120,0.8959591936 -2,1,3121,0.8979287454999999 +2,1,3121,0.8979287455 2,1,3122,0.8990000001999999 2,1,3123,0.8990000001999999 2,1,3124,0.8990000001999999 2,1,3125,0.8990000001999999 -2,1,3126,0.8979287454999999 +2,1,3126,0.8979287455 2,1,3127,0.8920200892 2,1,3128,0.8880809851 -2,1,3129,0.8841418812999998 -2,1,3130,0.8802027765999999 +2,1,3129,0.8841418812999999 +2,1,3130,0.8802027766 2,1,3131,0.8762636728 2,1,3132,0.8742941203 2,1,3133,0.8723245680999999 -2,1,3134,0.8703550161999999 +2,1,3134,0.8703550162 2,1,3135,0.8723245680999999 2,1,3136,0.8742941203 2,1,3137,0.8762636728 -2,1,3138,0.8802027765999999 +2,1,3138,0.8802027766 2,1,3139,0.8880809851 2,1,3140,0.8920200892 2,1,3141,0.8939896417000001 2,1,3142,0.8959591936 2,1,3143,0.8990000001999999 2,1,3144,0.8990000001999999 -2,1,3145,0.8979287454999999 +2,1,3145,0.8979287455 2,1,3146,0.8990000001999999 2,1,3147,0.8990000001999999 2,1,3148,0.8990000001999999 2,1,3149,0.8990000001999999 -2,1,3150,0.8979287454999999 +2,1,3150,0.8979287455 2,1,3151,0.8920200892 2,1,3152,0.8861114332 -2,1,3153,0.8821723288 +2,1,3153,0.8821723288000001 2,1,3154,0.8762636728 2,1,3155,0.8723245680999999 -2,1,3156,0.8703550161999999 -2,1,3157,0.8683854642999999 +2,1,3156,0.8703550162 +2,1,3157,0.8683854643 2,1,3158,0.8664159117999999 2,1,3159,0.8664159117999999 -2,1,3160,0.8683854642999999 -2,1,3161,0.8703550161999999 +2,1,3160,0.8683854643 +2,1,3161,0.8703550162 2,1,3162,0.8762636728 -2,1,3163,0.8821723288 +2,1,3163,0.8821723288000001 2,1,3164,0.8861114332 2,1,3165,0.8880809851 2,1,3166,0.8900505372999999 2,1,3167,0.8920200892 2,1,3168,0.8920200892 -2,1,3169,0.8979287454999999 +2,1,3169,0.8979287455 2,1,3170,0.8990000001999999 2,1,3171,0.8990000001999999 2,1,3172,0.8990000001999999 2,1,3173,0.8990000001999999 -2,1,3174,0.8979287454999999 +2,1,3174,0.8979287455 2,1,3175,0.8920200892 2,1,3176,0.8861114332 -2,1,3177,0.8821723288 +2,1,3177,0.8821723288000001 2,1,3178,0.8762636728 2,1,3179,0.8723245680999999 -2,1,3180,0.8703550161999999 -2,1,3181,0.8683854642999999 +2,1,3180,0.8703550162 +2,1,3181,0.8683854643 2,1,3182,0.8664159117999999 2,1,3183,0.8664159117999999 -2,1,3184,0.8683854642999999 -2,1,3185,0.8703550161999999 +2,1,3184,0.8683854643 +2,1,3185,0.8703550162 2,1,3186,0.8762636728 -2,1,3187,0.8821723288 +2,1,3187,0.8821723288000001 2,1,3188,0.8861114332 2,1,3189,0.8880809851 2,1,3190,0.8900505372999999 @@ -29480,15 +29480,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3199,0.8939896417000001 2,1,3200,0.8900505372999999 2,1,3201,0.8861114332 -2,1,3202,0.8821723288 -2,1,3203,0.8782332246999999 +2,1,3202,0.8821723288000001 +2,1,3203,0.8782332247 2,1,3204,0.8762636728 2,1,3205,0.8742941203 2,1,3206,0.8723245680999999 2,1,3207,0.8723245680999999 2,1,3208,0.8742941203 2,1,3209,0.8762636728 -2,1,3210,0.8821723288 +2,1,3210,0.8821723288000001 2,1,3211,0.8880809851 2,1,3212,0.8920200892 2,1,3213,0.8939896417000001 @@ -29501,21 +29501,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3220,0.8990000001999999 2,1,3221,0.8990000001999999 2,1,3222,0.8990000001999999 -2,1,3223,0.8979287454999999 +2,1,3223,0.8979287455 2,1,3224,0.8920200892 2,1,3225,0.8880809851 -2,1,3226,0.8841418812999998 -2,1,3227,0.8802027765999999 +2,1,3226,0.8841418812999999 +2,1,3227,0.8802027766 2,1,3228,0.8762636728 2,1,3229,0.8742941203 2,1,3230,0.8742941203 2,1,3231,0.8742941203 2,1,3232,0.8762636728 -2,1,3233,0.8782332246999999 -2,1,3234,0.8841418812999998 +2,1,3233,0.8782332247 +2,1,3234,0.8841418812999999 2,1,3235,0.8920200892 2,1,3236,0.8959591936 -2,1,3237,0.8979287454999999 +2,1,3237,0.8979287455 2,1,3238,0.8990000001999999 2,1,3239,0.8990000001999999 2,1,3240,0.8990000001999999 @@ -29525,21 +29525,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3244,0.8990000001999999 2,1,3245,0.8990000001999999 2,1,3246,0.8990000001999999 -2,1,3247,0.8979287454999999 +2,1,3247,0.8979287455 2,1,3248,0.8959591936 2,1,3249,0.8920200892 2,1,3250,0.8900505372999999 2,1,3251,0.8880809851 2,1,3252,0.8861114332 -2,1,3253,0.8841418812999998 -2,1,3254,0.8841418812999998 -2,1,3255,0.8841418812999998 +2,1,3253,0.8841418812999999 +2,1,3254,0.8841418812999999 +2,1,3255,0.8841418812999999 2,1,3256,0.8861114332 2,1,3257,0.8880809851 2,1,3258,0.8920200892 2,1,3259,0.8959591936 -2,1,3260,0.8979287454999999 -2,1,3261,0.8979287454999999 +2,1,3260,0.8979287455 +2,1,3261,0.8979287455 2,1,3262,0.8990000001999999 2,1,3263,0.8990000001999999 2,1,3264,0.8990000001999999 @@ -29549,24 +29549,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3268,0.8990000001999999 2,1,3269,0.8990000001999999 2,1,3270,0.8990000001999999 -2,1,3271,0.8979287454999999 +2,1,3271,0.8979287455 2,1,3272,0.8920200892 2,1,3273,0.8880809851 -2,1,3274,0.8841418812999998 -2,1,3275,0.8821723288 -2,1,3276,0.8782332246999999 +2,1,3274,0.8841418812999999 +2,1,3275,0.8821723288000001 +2,1,3276,0.8782332247 2,1,3277,0.8762636728 2,1,3278,0.8762636728 2,1,3279,0.8762636728 2,1,3280,0.8762636728 -2,1,3281,0.8782332246999999 -2,1,3282,0.8841418812999998 +2,1,3281,0.8782332247 +2,1,3282,0.8841418812999999 2,1,3283,0.8880809851 2,1,3284,0.8900505372999999 2,1,3285,0.8920200892 2,1,3286,0.8939896417000001 2,1,3287,0.8959591936 -2,1,3288,0.8979287454999999 +2,1,3288,0.8979287455 2,1,3289,0.8990000001999999 2,1,3290,0.8990000001999999 2,1,3291,0.8990000001999999 @@ -29574,7 +29574,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3293,0.8990000001999999 2,1,3294,0.8990000001999999 2,1,3295,0.8990000001999999 -2,1,3296,0.8979287454999999 +2,1,3296,0.8979287455 2,1,3297,0.8959591936 2,1,3298,0.8939896417000001 2,1,3299,0.8920200892 @@ -29591,29 +29591,29 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3310,0.8990000001999999 2,1,3311,0.8990000001999999 2,1,3312,0.8990000001999999 -2,1,3313,0.8979287454999999 +2,1,3313,0.8979287455 2,1,3314,0.8990000001999999 2,1,3315,0.8990000001999999 2,1,3316,0.8990000001999999 2,1,3317,0.8990000001999999 2,1,3318,0.8959591936 2,1,3319,0.8900505372999999 -2,1,3320,0.8841418812999998 -2,1,3321,0.8802027765999999 +2,1,3320,0.8841418812999999 +2,1,3321,0.8802027766 2,1,3322,0.8742941203 -2,1,3323,0.8703550161999999 -2,1,3324,0.8683854642999999 +2,1,3323,0.8703550162 +2,1,3324,0.8683854643 2,1,3325,0.8664159117999999 -2,1,3326,0.8683854642999999 -2,1,3327,0.8703550161999999 +2,1,3326,0.8683854643 +2,1,3327,0.8703550162 2,1,3328,0.8742941203 -2,1,3329,0.8782332246999999 -2,1,3330,0.8841418812999998 +2,1,3329,0.8782332247 +2,1,3330,0.8841418812999999 2,1,3331,0.8880809851 2,1,3332,0.8920200892 2,1,3333,0.8939896417000001 2,1,3334,0.8959591936 -2,1,3335,0.8979287454999999 +2,1,3335,0.8979287455 2,1,3336,0.8990000001999999 2,1,3337,0.8990000001999999 2,1,3338,0.8990000001999999 @@ -29621,24 +29621,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3340,0.8990000001999999 2,1,3341,0.8990000001999999 2,1,3342,0.8990000001999999 -2,1,3343,0.8979287454999999 +2,1,3343,0.8979287455 2,1,3344,0.8920200892 2,1,3345,0.8880809851 -2,1,3346,0.8841418812999998 -2,1,3347,0.8821723288 -2,1,3348,0.8782332246999999 +2,1,3346,0.8841418812999999 +2,1,3347,0.8821723288000001 +2,1,3348,0.8782332247 2,1,3349,0.8762636728 2,1,3350,0.8762636728 2,1,3351,0.8762636728 2,1,3352,0.8762636728 -2,1,3353,0.8782332246999999 -2,1,3354,0.8841418812999998 +2,1,3353,0.8782332247 +2,1,3354,0.8841418812999999 2,1,3355,0.8880809851 2,1,3356,0.8900505372999999 2,1,3357,0.8920200892 2,1,3358,0.8939896417000001 2,1,3359,0.8959591936 -2,1,3360,0.8979287454999999 +2,1,3360,0.8979287455 2,1,3361,0.8990000001999999 2,1,3362,0.8990000001999999 2,1,3363,0.8990000001999999 @@ -29646,19 +29646,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3365,0.8990000001999999 2,1,3366,0.8990000001999999 2,1,3367,0.8990000001999999 -2,1,3368,0.8979287454999999 +2,1,3368,0.8979287455 2,1,3369,0.8939896417000001 2,1,3370,0.8920200892 2,1,3371,0.8900505372999999 2,1,3372,0.8880809851 2,1,3373,0.8861114332 -2,1,3374,0.8841418812999998 -2,1,3375,0.8841418812999998 +2,1,3374,0.8841418812999999 +2,1,3375,0.8841418812999999 2,1,3376,0.8861114332 2,1,3377,0.8880809851 2,1,3378,0.8900505372999999 2,1,3379,0.8939896417000001 -2,1,3380,0.8979287454999999 +2,1,3380,0.8979287455 2,1,3381,0.8990000001999999 2,1,3382,0.8990000001999999 2,1,3383,0.8990000001999999 @@ -29668,45 +29668,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3387,0.8990000001999999 2,1,3388,0.8990000001999999 2,1,3389,0.8990000001999999 -2,1,3390,0.8979287454999999 +2,1,3390,0.8979287455 2,1,3391,0.8920200892 2,1,3392,0.8880809851 -2,1,3393,0.8821723288 -2,1,3394,0.8782332246999999 +2,1,3393,0.8821723288000001 +2,1,3394,0.8782332247 2,1,3395,0.8742941203 2,1,3396,0.8723245680999999 -2,1,3397,0.8703550161999999 -2,1,3398,0.8683854642999999 -2,1,3399,0.8683854642999999 -2,1,3400,0.8703550161999999 +2,1,3397,0.8703550162 +2,1,3398,0.8683854643 +2,1,3399,0.8683854643 +2,1,3400,0.8703550162 2,1,3401,0.8723245680999999 2,1,3402,0.8762636728 -2,1,3403,0.8841418812999998 +2,1,3403,0.8841418812999999 2,1,3404,0.8861114332 2,1,3405,0.8880809851 2,1,3406,0.8920200892 2,1,3407,0.8939896417000001 2,1,3408,0.8959591936 2,1,3409,0.8959591936 -2,1,3410,0.8979287454999999 -2,1,3411,0.8979287454999999 -2,1,3412,0.8979287454999999 -2,1,3413,0.8979287454999999 +2,1,3410,0.8979287455 +2,1,3411,0.8979287455 +2,1,3412,0.8979287455 +2,1,3413,0.8979287455 2,1,3414,0.8959591936 2,1,3415,0.8900505372999999 2,1,3416,0.8861114332 -2,1,3417,0.8802027765999999 +2,1,3417,0.8802027766 2,1,3418,0.8762636728 2,1,3419,0.8723245680999999 -2,1,3420,0.8683854642999999 +2,1,3420,0.8683854643 2,1,3421,0.8664159117999999 2,1,3422,0.8644463599 2,1,3423,0.8644463599 2,1,3424,0.8664159117999999 -2,1,3425,0.8683854642999999 +2,1,3425,0.8683854643 2,1,3426,0.8723245680999999 -2,1,3427,0.8802027765999999 -2,1,3428,0.8841418812999998 +2,1,3427,0.8802027766 +2,1,3428,0.8841418812999999 2,1,3429,0.8861114332 2,1,3430,0.8880809851 2,1,3431,0.8900505372999999 @@ -29718,19 +29718,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3437,0.8990000001999999 2,1,3438,0.8990000001999999 2,1,3439,0.8990000001999999 -2,1,3440,0.8979287454999999 +2,1,3440,0.8979287455 2,1,3441,0.8939896417000001 2,1,3442,0.8920200892 2,1,3443,0.8880809851 2,1,3444,0.8861114332 -2,1,3445,0.8841418812999998 -2,1,3446,0.8841418812999998 -2,1,3447,0.8841418812999998 +2,1,3445,0.8841418812999999 +2,1,3446,0.8841418812999999 +2,1,3447,0.8841418812999999 2,1,3448,0.8861114332 2,1,3449,0.8880809851 2,1,3450,0.8920200892 2,1,3451,0.8959591936 -2,1,3452,0.8979287454999999 +2,1,3452,0.8979287455 2,1,3453,0.8990000001999999 2,1,3454,0.8990000001999999 2,1,3455,0.8990000001999999 @@ -29744,15 +29744,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3463,0.8939896417000001 2,1,3464,0.8900505372999999 2,1,3465,0.8861114332 -2,1,3466,0.8821723288 -2,1,3467,0.8782332246999999 +2,1,3466,0.8821723288000001 +2,1,3467,0.8782332247 2,1,3468,0.8762636728 2,1,3469,0.8742941203 2,1,3470,0.8723245680999999 2,1,3471,0.8723245680999999 2,1,3472,0.8742941203 2,1,3473,0.8762636728 -2,1,3474,0.8821723288 +2,1,3474,0.8821723288000001 2,1,3475,0.8880809851 2,1,3476,0.8920200892 2,1,3477,0.8939896417000001 @@ -29765,18 +29765,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3484,0.8990000001999999 2,1,3485,0.8990000001999999 2,1,3486,0.8990000001999999 -2,1,3487,0.8979287454999999 +2,1,3487,0.8979287455 2,1,3488,0.8920200892 2,1,3489,0.8880809851 -2,1,3490,0.8821723288 -2,1,3491,0.8802027765999999 +2,1,3490,0.8821723288000001 +2,1,3491,0.8802027766 2,1,3492,0.8762636728 2,1,3493,0.8742941203 2,1,3494,0.8723245680999999 2,1,3495,0.8723245680999999 2,1,3496,0.8723245680999999 2,1,3497,0.8742941203 -2,1,3498,0.8802027765999999 +2,1,3498,0.8802027766 2,1,3499,0.8861114332 2,1,3500,0.8900505372999999 2,1,3501,0.8900505372999999 @@ -29785,28 +29785,28 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3504,0.8959591936 2,1,3505,0.8959591936 2,1,3506,0.8959591936 -2,1,3507,0.8979287454999999 -2,1,3508,0.8979287454999999 -2,1,3509,0.8979287454999999 +2,1,3507,0.8979287455 +2,1,3508,0.8979287455 +2,1,3509,0.8979287455 2,1,3510,0.8959591936 2,1,3511,0.8900505372999999 2,1,3512,0.8861114332 -2,1,3513,0.8802027765999999 +2,1,3513,0.8802027766 2,1,3514,0.8762636728 2,1,3515,0.8723245680999999 -2,1,3516,0.8703550161999999 -2,1,3517,0.8683854642999999 +2,1,3516,0.8703550162 +2,1,3517,0.8683854643 2,1,3518,0.8679581486999999 -2,1,3519,0.8683854642999999 -2,1,3520,0.8703550161999999 +2,1,3519,0.8683854643 +2,1,3520,0.8703550162 2,1,3521,0.8723245680999999 -2,1,3522,0.8782332246999999 -2,1,3523,0.8841418812999998 +2,1,3522,0.8782332247 +2,1,3523,0.8841418812999999 2,1,3524,0.8880809851 2,1,3525,0.8900505372999999 2,1,3526,0.8920200892 2,1,3527,0.8939896417000001 -2,1,3528,0.8979287454999999 +2,1,3528,0.8979287455 2,1,3529,0.8990000001999999 2,1,3530,0.8990000001999999 2,1,3531,0.8990000001999999 @@ -29815,14 +29815,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3534,0.8990000001999999 2,1,3535,0.8990000001999999 2,1,3536,0.8990000001999999 -2,1,3537,0.8979287454999999 +2,1,3537,0.8979287455 2,1,3538,0.8920200892 2,1,3539,0.8900505372999999 2,1,3540,0.8880809851 2,1,3541,0.8861114332 -2,1,3542,0.8841418812999998 -2,1,3543,0.8821723288 -2,1,3544,0.8841418812999998 +2,1,3542,0.8841418812999999 +2,1,3543,0.8821723288000001 +2,1,3544,0.8841418812999999 2,1,3545,0.8861114332 2,1,3546,0.8900505372999999 2,1,3547,0.8959591936 @@ -29831,24 +29831,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3550,0.8990000001999999 2,1,3551,0.8990000001999999 2,1,3552,0.8990000001999999 -2,1,3553,0.8979287454999999 -2,1,3554,0.8979287454999999 -2,1,3555,0.8979287454999999 -2,1,3556,0.8979287454999999 -2,1,3557,0.8979287454999999 +2,1,3553,0.8979287455 +2,1,3554,0.8979287455 +2,1,3555,0.8979287455 +2,1,3556,0.8979287455 +2,1,3557,0.8979287455 2,1,3558,0.8959591936 2,1,3559,0.8939896417000001 2,1,3560,0.8900505372999999 2,1,3561,0.8861114332 -2,1,3562,0.8821723288 -2,1,3563,0.8802027765999999 -2,1,3564,0.8782332246999999 +2,1,3562,0.8821723288000001 +2,1,3563,0.8802027766 +2,1,3564,0.8782332247 2,1,3565,0.8762636728 2,1,3566,0.8742941203 2,1,3567,0.8742941203 2,1,3568,0.8762636728 -2,1,3569,0.8782332246999999 -2,1,3570,0.8802027765999999 +2,1,3569,0.8782332247 +2,1,3570,0.8802027766 2,1,3571,0.8861114332 2,1,3572,0.8900505372999999 2,1,3573,0.8920200892 @@ -29864,15 +29864,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3583,0.8939896417000001 2,1,3584,0.8900505372999999 2,1,3585,0.8861114332 -2,1,3586,0.8821723288 -2,1,3587,0.8782332246999999 +2,1,3586,0.8821723288000001 +2,1,3587,0.8782332247 2,1,3588,0.8762636728 2,1,3589,0.8742941203 2,1,3590,0.8723245680999999 2,1,3591,0.8723245680999999 2,1,3592,0.8742941203 2,1,3593,0.8762636728 -2,1,3594,0.8821723288 +2,1,3594,0.8821723288000001 2,1,3595,0.8880809851 2,1,3596,0.8920200892 2,1,3597,0.8939896417000001 @@ -29885,44 +29885,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3604,0.8990000001999999 2,1,3605,0.8990000001999999 2,1,3606,0.8990000001999999 -2,1,3607,0.8979287454999999 +2,1,3607,0.8979287455 2,1,3608,0.8959591936 2,1,3609,0.8920200892 2,1,3610,0.8900505372999999 2,1,3611,0.8880809851 2,1,3612,0.8861114332 -2,1,3613,0.8841418812999998 -2,1,3614,0.8841418812999998 -2,1,3615,0.8841418812999998 +2,1,3613,0.8841418812999999 +2,1,3614,0.8841418812999999 +2,1,3615,0.8841418812999999 2,1,3616,0.8861114332 2,1,3617,0.8880809851 2,1,3618,0.8920200892 2,1,3619,0.8959591936 -2,1,3620,0.8979287454999999 -2,1,3621,0.8979287454999999 +2,1,3620,0.8979287455 +2,1,3621,0.8979287455 2,1,3622,0.8990000001999999 2,1,3623,0.8990000001999999 2,1,3624,0.8990000001999999 2,1,3625,0.8939896417000001 2,1,3626,0.8959591936 -2,1,3627,0.8979287454999999 -2,1,3628,0.8979287454999999 -2,1,3629,0.8979287454999999 +2,1,3627,0.8979287455 +2,1,3628,0.8979287455 +2,1,3629,0.8979287455 2,1,3630,0.8939896417000001 2,1,3631,0.8880809851 -2,1,3632,0.8841418812999998 -2,1,3633,0.8782332246999999 +2,1,3632,0.8841418812999999 +2,1,3633,0.8782332247 2,1,3634,0.8742941203 -2,1,3635,0.8703550161999999 -2,1,3636,0.8683854642999999 +2,1,3635,0.8703550162 +2,1,3636,0.8683854643 2,1,3637,0.8664159117999999 2,1,3638,0.8644463599 2,1,3639,0.8644463599 2,1,3640,0.8664159117999999 -2,1,3641,0.8683854642999999 +2,1,3641,0.8683854643 2,1,3642,0.8723245680999999 -2,1,3643,0.8802027765999999 -2,1,3644,0.8841418812999998 +2,1,3643,0.8802027766 +2,1,3644,0.8841418812999999 2,1,3645,0.8880809851 2,1,3646,0.8900505372999999 2,1,3647,0.8920200892 @@ -29932,10 +29932,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3651,0.8880809851 2,1,3652,0.8880809851 2,1,3653,0.8880809851 -2,1,3654,0.8841418812999998 -2,1,3655,0.8782332246999999 +2,1,3654,0.8841418812999999 +2,1,3655,0.8782332247 2,1,3656,0.8742941203 -2,1,3657,0.8672581486999998 +2,1,3657,0.8672581487 2,1,3658,0.8599494920999999 2,1,3659,0.8553103883 2,1,3660,0.8453913318999999 @@ -29946,11 +29946,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3665,0.8404913319 2,1,3666,0.8581103883 2,1,3667,0.8664159117999999 -2,1,3668,0.8703550161999999 +2,1,3668,0.8703550162 2,1,3669,0.8723245680999999 2,1,3670,0.8742941203 2,1,3671,0.8762636728 -2,1,3672,0.8782332246999999 +2,1,3672,0.8782332247 2,1,3673,0.8900505372999999 2,1,3674,0.8900505372999999 2,1,3675,0.8900505372999999 @@ -29958,33 +29958,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3677,0.8920200892 2,1,3678,0.8900505372999999 2,1,3679,0.8880809851 -2,1,3680,0.8841418812999998 -2,1,3681,0.8802027765999999 +2,1,3680,0.8841418812999999 +2,1,3681,0.8802027766 2,1,3682,0.8762636728 2,1,3683,0.8723245680999999 -2,1,3684,0.8703550161999999 -2,1,3685,0.8683854642999999 +2,1,3684,0.8703550162 +2,1,3685,0.8683854643 2,1,3686,0.8664159117999999 2,1,3687,0.8664159117999999 2,1,3688,0.8664159117999999 -2,1,3689,0.8683854642999999 +2,1,3689,0.8683854643 2,1,3690,0.8723245680999999 -2,1,3691,0.8782332246999999 -2,1,3692,0.8821723288 -2,1,3693,0.8841418812999998 +2,1,3691,0.8782332247 +2,1,3692,0.8821723288000001 +2,1,3693,0.8841418812999999 2,1,3694,0.8861114332 2,1,3695,0.8880809851 2,1,3696,0.8900505372999999 -2,1,3697,0.8979287454999999 -2,1,3698,0.8979287454999999 +2,1,3697,0.8979287455 +2,1,3698,0.8979287455 2,1,3699,0.8990000001999999 2,1,3700,0.8990000001999999 2,1,3701,0.8990000001999999 -2,1,3702,0.8979287454999999 +2,1,3702,0.8979287455 2,1,3703,0.8939896417000001 2,1,3704,0.8880809851 -2,1,3705,0.8841418812999998 -2,1,3706,0.8782332246999999 +2,1,3705,0.8841418812999999 +2,1,3706,0.8782332247 2,1,3707,0.8723245680999999 2,1,3708,0.8679581486999999 2,1,3709,0.8659885961999999 @@ -29993,46 +29993,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3712,0.8644463599 2,1,3713,0.8664159117999999 2,1,3714,0.8723245680999999 -2,1,3715,0.8782332246999999 -2,1,3716,0.8841418812999998 +2,1,3715,0.8782332247 +2,1,3716,0.8841418812999999 2,1,3717,0.8861114332 2,1,3718,0.8900505372999999 2,1,3719,0.8920200892 2,1,3720,0.8939896417000001 -2,1,3721,0.8979287454999999 -2,1,3722,0.8979287454999999 -2,1,3723,0.8979287454999999 -2,1,3724,0.8979287454999999 -2,1,3725,0.8979287454999999 +2,1,3721,0.8979287455 +2,1,3722,0.8979287455 +2,1,3723,0.8979287455 +2,1,3724,0.8979287455 +2,1,3725,0.8979287455 2,1,3726,0.8959591936 2,1,3727,0.8920200892 2,1,3728,0.8900505372999999 2,1,3729,0.8861114332 -2,1,3730,0.8841418812999998 -2,1,3731,0.8821723288 -2,1,3732,0.8802027765999999 -2,1,3733,0.8782332246999999 -2,1,3734,0.8782332246999999 -2,1,3735,0.8782332246999999 -2,1,3736,0.8802027765999999 -2,1,3737,0.8821723288 -2,1,3738,0.8841418812999998 +2,1,3730,0.8841418812999999 +2,1,3731,0.8821723288000001 +2,1,3732,0.8802027766 +2,1,3733,0.8782332247 +2,1,3734,0.8782332247 +2,1,3735,0.8782332247 +2,1,3736,0.8802027766 +2,1,3737,0.8821723288000001 +2,1,3738,0.8841418812999999 2,1,3739,0.8880809851 2,1,3740,0.8920200892 2,1,3741,0.8939896417000001 2,1,3742,0.8959591936 2,1,3743,0.8959591936 -2,1,3744,0.8979287454999999 -2,1,3745,0.8979287454999999 -2,1,3746,0.8979287454999999 +2,1,3744,0.8979287455 +2,1,3745,0.8979287455 +2,1,3746,0.8979287455 2,1,3747,0.8990000001999999 2,1,3748,0.8990000001999999 2,1,3749,0.8990000001999999 -2,1,3750,0.8979287454999999 +2,1,3750,0.8979287455 2,1,3751,0.8939896417000001 2,1,3752,0.8880809851 -2,1,3753,0.8841418812999998 -2,1,3754,0.8782332246999999 +2,1,3753,0.8841418812999999 +2,1,3754,0.8782332247 2,1,3755,0.8723245680999999 2,1,3756,0.8679581486999999 2,1,3757,0.8659885961999999 @@ -30041,13 +30041,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3760,0.8644463599 2,1,3761,0.8664159117999999 2,1,3762,0.8723245680999999 -2,1,3763,0.8782332246999999 -2,1,3764,0.8841418812999998 +2,1,3763,0.8782332247 +2,1,3764,0.8841418812999999 2,1,3765,0.8861114332 2,1,3766,0.8900505372999999 2,1,3767,0.8920200892 2,1,3768,0.8939896417000001 -2,1,3769,0.8979287454999999 +2,1,3769,0.8979287455 2,1,3770,0.8990000001999999 2,1,3771,0.8990000001999999 2,1,3772,0.8990000001999999 @@ -30055,45 +30055,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3774,0.8959591936 2,1,3775,0.8920200892 2,1,3776,0.8880809851 -2,1,3777,0.8821723288 -2,1,3778,0.8782332246999999 +2,1,3777,0.8821723288000001 +2,1,3778,0.8782332247 2,1,3779,0.8762636728 2,1,3780,0.8742941203 2,1,3781,0.8723245680999999 -2,1,3782,0.8703550161999999 -2,1,3783,0.8703550161999999 -2,1,3784,0.8703550161999999 +2,1,3782,0.8703550162 +2,1,3783,0.8703550162 +2,1,3784,0.8703550162 2,1,3785,0.8723245680999999 2,1,3786,0.8762636728 -2,1,3787,0.8821723288 +2,1,3787,0.8821723288000001 2,1,3788,0.8861114332 2,1,3789,0.8880809851 2,1,3790,0.8900505372999999 2,1,3791,0.8920200892 2,1,3792,0.8939896417000001 -2,1,3793,0.8979287454999999 -2,1,3794,0.8979287454999999 -2,1,3795,0.8979287454999999 -2,1,3796,0.8979287454999999 -2,1,3797,0.8979287454999999 +2,1,3793,0.8979287455 +2,1,3794,0.8979287455 +2,1,3795,0.8979287455 +2,1,3796,0.8979287455 +2,1,3797,0.8979287455 2,1,3798,0.8959591936 2,1,3799,0.8920200892 2,1,3800,0.8880809851 -2,1,3801,0.8841418812999998 -2,1,3802,0.8821723288 -2,1,3803,0.8782332246999999 +2,1,3801,0.8841418812999999 +2,1,3802,0.8821723288000001 +2,1,3803,0.8782332247 2,1,3804,0.8762636728 2,1,3805,0.8742941203 2,1,3806,0.8742941203 2,1,3807,0.8762636728 -2,1,3808,0.8782332246999999 -2,1,3809,0.8802027765999999 -2,1,3810,0.8841418812999998 +2,1,3808,0.8782332247 +2,1,3809,0.8802027766 +2,1,3810,0.8841418812999999 2,1,3811,0.8900505372999999 2,1,3812,0.8939896417000001 -2,1,3813,0.8979287454999999 -2,1,3814,0.8979287454999999 -2,1,3815,0.8979287454999999 +2,1,3813,0.8979287455 +2,1,3814,0.8979287455 +2,1,3815,0.8979287455 2,1,3816,0.8990000001999999 2,1,3817,0.8900505372999999 2,1,3818,0.8900505372999999 @@ -30102,46 +30102,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3821,0.8920200892 2,1,3822,0.8900505372999999 2,1,3823,0.8880809851 -2,1,3824,0.8841418812999998 -2,1,3825,0.8802027765999999 +2,1,3824,0.8841418812999999 +2,1,3825,0.8802027766 2,1,3826,0.8762636728 2,1,3827,0.8723245680999999 -2,1,3828,0.8703550161999999 -2,1,3829,0.8683854642999999 +2,1,3828,0.8703550162 +2,1,3829,0.8683854643 2,1,3830,0.8664159117999999 2,1,3831,0.8664159117999999 2,1,3832,0.8664159117999999 -2,1,3833,0.8683854642999999 +2,1,3833,0.8683854643 2,1,3834,0.8723245680999999 -2,1,3835,0.8782332246999999 -2,1,3836,0.8821723288 -2,1,3837,0.8841418812999998 +2,1,3835,0.8782332247 +2,1,3836,0.8821723288000001 +2,1,3837,0.8841418812999999 2,1,3838,0.8861114332 2,1,3839,0.8880809851 2,1,3840,0.8900505372999999 -2,1,3841,0.8979287454999999 -2,1,3842,0.8979287454999999 -2,1,3843,0.8979287454999999 -2,1,3844,0.8979287454999999 -2,1,3845,0.8979287454999999 +2,1,3841,0.8979287455 +2,1,3842,0.8979287455 +2,1,3843,0.8979287455 +2,1,3844,0.8979287455 +2,1,3845,0.8979287455 2,1,3846,0.8959591936 2,1,3847,0.8920200892 2,1,3848,0.8880809851 -2,1,3849,0.8841418812999998 -2,1,3850,0.8821723288 -2,1,3851,0.8782332246999999 +2,1,3849,0.8841418812999999 +2,1,3850,0.8821723288000001 +2,1,3851,0.8782332247 2,1,3852,0.8762636728 2,1,3853,0.8742941203 2,1,3854,0.8742941203 2,1,3855,0.8762636728 -2,1,3856,0.8782332246999999 -2,1,3857,0.8802027765999999 -2,1,3858,0.8841418812999998 +2,1,3856,0.8782332247 +2,1,3857,0.8802027766 +2,1,3858,0.8841418812999999 2,1,3859,0.8900505372999999 2,1,3860,0.8939896417000001 -2,1,3861,0.8979287454999999 -2,1,3862,0.8979287454999999 -2,1,3863,0.8979287454999999 +2,1,3861,0.8979287455 +2,1,3862,0.8979287455 +2,1,3863,0.8979287455 2,1,3864,0.8990000001999999 2,1,3865,0.8920200892 2,1,3866,0.8939896417000001 @@ -30149,21 +30149,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3868,0.8959591936 2,1,3869,0.8939896417000001 2,1,3870,0.8880809851 -2,1,3871,0.8821723288 +2,1,3871,0.8821723288000001 2,1,3872,0.8762636728 -2,1,3873,0.8703550161999999 +2,1,3873,0.8703550162 2,1,3874,0.8664159117999999 2,1,3875,0.8644463599 2,1,3876,0.8624768076999999 -2,1,3877,0.8605072557999999 -2,1,3878,0.8605072557999999 -2,1,3879,0.8605072557999999 +2,1,3877,0.8605072558 +2,1,3878,0.8605072558 +2,1,3879,0.8605072558 2,1,3880,0.8624768076999999 2,1,3881,0.8644463599 -2,1,3882,0.8683854642999999 +2,1,3882,0.8683854643 2,1,3883,0.8762636728 -2,1,3884,0.8802027765999999 -2,1,3885,0.8841418812999998 +2,1,3884,0.8802027766 +2,1,3885,0.8841418812999999 2,1,3886,0.8861114332 2,1,3887,0.8861114332 2,1,3888,0.8880809851 @@ -30172,10 +30172,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3891,0.8880809851 2,1,3892,0.8880809851 2,1,3893,0.8880809851 -2,1,3894,0.8841418812999998 -2,1,3895,0.8782332246999999 +2,1,3894,0.8841418812999999 +2,1,3895,0.8782332247 2,1,3896,0.8742941203 -2,1,3897,0.8672581486999998 +2,1,3897,0.8672581487 2,1,3898,0.8599494920999999 2,1,3899,0.8553103883 2,1,3900,0.8453913318999999 @@ -30186,20 +30186,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3905,0.8404913319 2,1,3906,0.8581103883 2,1,3907,0.8664159117999999 -2,1,3908,0.8703550161999999 +2,1,3908,0.8703550162 2,1,3909,0.8723245680999999 2,1,3910,0.8742941203 2,1,3911,0.8762636728 -2,1,3912,0.8782332246999999 +2,1,3912,0.8782332247 2,1,3913,0.8959591936 -2,1,3914,0.8979287454999999 +2,1,3914,0.8979287455 2,1,3915,0.8990000001999999 2,1,3916,0.8990000001999999 2,1,3917,0.8990000001999999 2,1,3918,0.8959591936 2,1,3919,0.8920200892 2,1,3920,0.8880809851 -2,1,3921,0.8821723288 +2,1,3921,0.8821723288000001 2,1,3922,0.8762636728 2,1,3923,0.8718972524999999 2,1,3924,0.8652885961999999 @@ -30208,9 +30208,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3927,0.8620494920999999 2,1,3928,0.8644463599 2,1,3929,0.8664159117999999 -2,1,3930,0.8703550161999999 -2,1,3931,0.8782332246999999 -2,1,3932,0.8841418812999998 +2,1,3930,0.8703550162 +2,1,3931,0.8782332247 +2,1,3932,0.8841418812999999 2,1,3933,0.8880809851 2,1,3934,0.8900505372999999 2,1,3935,0.8920200892 @@ -30221,129 +30221,129 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,3940,0.8990000001999999 2,1,3941,0.8990000001999999 2,1,3942,0.8990000001999999 -2,1,3943,0.8979287454999999 +2,1,3943,0.8979287455 2,1,3944,0.8920200892 2,1,3945,0.8880809851 -2,1,3946,0.8841418812999998 -2,1,3947,0.8802027765999999 -2,1,3948,0.8782332246999999 +2,1,3946,0.8841418812999999 +2,1,3947,0.8802027766 +2,1,3948,0.8782332247 2,1,3949,0.8762636728 2,1,3950,0.8762636728 2,1,3951,0.8742941203 2,1,3952,0.8762636728 -2,1,3953,0.8782332246999999 -2,1,3954,0.8821723288 +2,1,3953,0.8782332247 +2,1,3954,0.8821723288000001 2,1,3955,0.8880809851 2,1,3956,0.8920200892 2,1,3957,0.8939896417000001 2,1,3958,0.8959591936 -2,1,3959,0.8979287454999999 +2,1,3959,0.8979287455 2,1,3960,0.8990000001999999 -2,1,3961,0.8979287454999999 -2,1,3962,0.8979287454999999 -2,1,3963,0.8979287454999999 -2,1,3964,0.8979287454999999 -2,1,3965,0.8979287454999999 +2,1,3961,0.8979287455 +2,1,3962,0.8979287455 +2,1,3963,0.8979287455 +2,1,3964,0.8979287455 +2,1,3965,0.8979287455 2,1,3966,0.8959591936 2,1,3967,0.8920200892 2,1,3968,0.8880809851 -2,1,3969,0.8841418812999998 -2,1,3970,0.8821723288 -2,1,3971,0.8782332246999999 +2,1,3969,0.8841418812999999 +2,1,3970,0.8821723288000001 +2,1,3971,0.8782332247 2,1,3972,0.8762636728 2,1,3973,0.8742941203 2,1,3974,0.8742941203 2,1,3975,0.8762636728 -2,1,3976,0.8782332246999999 -2,1,3977,0.8802027765999999 -2,1,3978,0.8841418812999998 +2,1,3976,0.8782332247 +2,1,3977,0.8802027766 +2,1,3978,0.8841418812999999 2,1,3979,0.8900505372999999 2,1,3980,0.8939896417000001 -2,1,3981,0.8979287454999999 -2,1,3982,0.8979287454999999 -2,1,3983,0.8979287454999999 +2,1,3981,0.8979287455 +2,1,3982,0.8979287455 +2,1,3983,0.8979287455 2,1,3984,0.8990000001999999 2,1,3985,0.8959591936 -2,1,3986,0.8979287454999999 +2,1,3986,0.8979287455 2,1,3987,0.8990000001999999 2,1,3988,0.8990000001999999 2,1,3989,0.8990000001999999 2,1,3990,0.8959591936 2,1,3991,0.8920200892 2,1,3992,0.8880809851 -2,1,3993,0.8821723288 -2,1,3994,0.8782332246999999 +2,1,3993,0.8821723288000001 +2,1,3994,0.8782332247 2,1,3995,0.8742941203 -2,1,3996,0.8703550161999999 -2,1,3997,0.8683854642999999 -2,1,3998,0.8683854642999999 +2,1,3996,0.8703550162 +2,1,3997,0.8683854643 +2,1,3998,0.8683854643 2,1,3999,0.8664159117999999 -2,1,4000,0.8683854642999999 -2,1,4001,0.8703550161999999 +2,1,4000,0.8683854643 +2,1,4001,0.8703550162 2,1,4002,0.8762636728 -2,1,4003,0.8802027765999999 -2,1,4004,0.8841418812999998 +2,1,4003,0.8802027766 +2,1,4004,0.8841418812999999 2,1,4005,0.8880809851 2,1,4006,0.8900505372999999 2,1,4007,0.8920200892 2,1,4008,0.8939896417000001 2,1,4009,0.8959591936 -2,1,4010,0.8979287454999999 +2,1,4010,0.8979287455 2,1,4011,0.8990000001999999 2,1,4012,0.8990000001999999 2,1,4013,0.8990000001999999 2,1,4014,0.8959591936 2,1,4015,0.8920200892 2,1,4016,0.8880809851 -2,1,4017,0.8821723288 -2,1,4018,0.8782332246999999 +2,1,4017,0.8821723288000001 +2,1,4018,0.8782332247 2,1,4019,0.8742941203 -2,1,4020,0.8703550161999999 -2,1,4021,0.8683854642999999 -2,1,4022,0.8683854642999999 +2,1,4020,0.8703550162 +2,1,4021,0.8683854643 +2,1,4022,0.8683854643 2,1,4023,0.8664159117999999 -2,1,4024,0.8683854642999999 -2,1,4025,0.8703550161999999 +2,1,4024,0.8683854643 +2,1,4025,0.8703550162 2,1,4026,0.8762636728 -2,1,4027,0.8802027765999999 -2,1,4028,0.8841418812999998 +2,1,4027,0.8802027766 +2,1,4028,0.8841418812999999 2,1,4029,0.8880809851 2,1,4030,0.8900505372999999 2,1,4031,0.8920200892 2,1,4032,0.8939896417000001 2,1,4033,0.8939896417000001 2,1,4034,0.8959591936 -2,1,4035,0.8979287454999999 -2,1,4036,0.8979287454999999 -2,1,4037,0.8979287454999999 +2,1,4035,0.8979287455 +2,1,4036,0.8979287455 +2,1,4037,0.8979287455 2,1,4038,0.8939896417000001 2,1,4039,0.8880809851 -2,1,4040,0.8841418812999998 -2,1,4041,0.8782332246999999 +2,1,4040,0.8841418812999999 +2,1,4041,0.8782332247 2,1,4042,0.8742941203 -2,1,4043,0.8703550161999999 -2,1,4044,0.8683854642999999 +2,1,4043,0.8703550162 +2,1,4044,0.8683854643 2,1,4045,0.8664159117999999 2,1,4046,0.8644463599 2,1,4047,0.8644463599 2,1,4048,0.8664159117999999 -2,1,4049,0.8683854642999999 +2,1,4049,0.8683854643 2,1,4050,0.8723245680999999 -2,1,4051,0.8802027765999999 -2,1,4052,0.8841418812999998 +2,1,4051,0.8802027766 +2,1,4052,0.8841418812999999 2,1,4053,0.8880809851 2,1,4054,0.8900505372999999 2,1,4055,0.8920200892 2,1,4056,0.8939896417000001 2,1,4057,0.8959591936 -2,1,4058,0.8979287454999999 +2,1,4058,0.8979287455 2,1,4059,0.8990000001999999 2,1,4060,0.8990000001999999 2,1,4061,0.8990000001999999 2,1,4062,0.8959591936 2,1,4063,0.8920200892 2,1,4064,0.8880809851 -2,1,4065,0.8821723288 +2,1,4065,0.8821723288000001 2,1,4066,0.8762636728 2,1,4067,0.8718972524999999 2,1,4068,0.8652885961999999 @@ -30352,9 +30352,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4071,0.8620494920999999 2,1,4072,0.8644463599 2,1,4073,0.8664159117999999 -2,1,4074,0.8703550161999999 -2,1,4075,0.8782332246999999 -2,1,4076,0.8841418812999998 +2,1,4074,0.8703550162 +2,1,4075,0.8782332247 +2,1,4076,0.8841418812999999 2,1,4077,0.8880809851 2,1,4078,0.8900505372999999 2,1,4079,0.8920200892 @@ -30365,56 +30365,56 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4084,0.8990000001999999 2,1,4085,0.8990000001999999 2,1,4086,0.8990000001999999 -2,1,4087,0.8979287454999999 +2,1,4087,0.8979287455 2,1,4088,0.8939896417000001 2,1,4089,0.8900505372999999 2,1,4090,0.8861114332 -2,1,4091,0.8821723288 -2,1,4092,0.8802027765999999 -2,1,4093,0.8782332246999999 +2,1,4091,0.8821723288000001 +2,1,4092,0.8802027766 +2,1,4093,0.8782332247 2,1,4094,0.8762636728 -2,1,4095,0.8782332246999999 -2,1,4096,0.8802027765999999 -2,1,4097,0.8821723288 +2,1,4095,0.8782332247 +2,1,4096,0.8802027766 +2,1,4097,0.8821723288000001 2,1,4098,0.8861114332 2,1,4099,0.8920200892 2,1,4100,0.8959591936 -2,1,4101,0.8979287454999999 +2,1,4101,0.8979287455 2,1,4102,0.8990000001999999 2,1,4103,0.8990000001999999 2,1,4104,0.8990000001999999 2,1,4105,0.8959591936 -2,1,4106,0.8979287454999999 +2,1,4106,0.8979287455 2,1,4107,0.8990000001999999 2,1,4108,0.8990000001999999 2,1,4109,0.8990000001999999 2,1,4110,0.8959591936 2,1,4111,0.8920200892 2,1,4112,0.8880809851 -2,1,4113,0.8821723288 -2,1,4114,0.8782332246999999 +2,1,4113,0.8821723288000001 +2,1,4114,0.8782332247 2,1,4115,0.8742941203 -2,1,4116,0.8703550161999999 -2,1,4117,0.8683854642999999 -2,1,4118,0.8683854642999999 +2,1,4116,0.8703550162 +2,1,4117,0.8683854643 +2,1,4118,0.8683854643 2,1,4119,0.8664159117999999 -2,1,4120,0.8683854642999999 -2,1,4121,0.8703550161999999 +2,1,4120,0.8683854643 +2,1,4121,0.8703550162 2,1,4122,0.8762636728 -2,1,4123,0.8802027765999999 -2,1,4124,0.8841418812999998 +2,1,4123,0.8802027766 +2,1,4124,0.8841418812999999 2,1,4125,0.8880809851 2,1,4126,0.8900505372999999 2,1,4127,0.8920200892 2,1,4128,0.8939896417000001 -2,1,4129,0.8841418812999998 +2,1,4129,0.8841418812999999 2,1,4130,0.8861114332 2,1,4131,0.8861114332 2,1,4132,0.8861114332 2,1,4133,0.8861114332 -2,1,4134,0.8821723288 +2,1,4134,0.8821723288000001 2,1,4135,0.8742941203 -2,1,4136,0.8683854642999999 +2,1,4136,0.8683854643 2,1,4137,0.8640190443 2,1,4138,0.8574103882999999 2,1,4139,0.8474913319 @@ -30427,20 +30427,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4146,0.8585377039 2,1,4147,0.8664159117999999 2,1,4148,0.8742941203 -2,1,4149,0.8782332246999999 -2,1,4150,0.8802027765999999 -2,1,4151,0.8821723288 -2,1,4152,0.8841418812999998 +2,1,4149,0.8782332247 +2,1,4150,0.8802027766 +2,1,4151,0.8821723288000001 +2,1,4152,0.8841418812999999 2,1,4153,0.8920200892 2,1,4154,0.8939896417000001 2,1,4155,0.8939896417000001 2,1,4156,0.8939896417000001 2,1,4157,0.8939896417000001 2,1,4158,0.8900505372999999 -2,1,4159,0.8841418812999998 -2,1,4160,0.8782332246999999 +2,1,4159,0.8841418812999999 +2,1,4160,0.8782332247 2,1,4161,0.8742941203 -2,1,4162,0.8703550161999999 +2,1,4162,0.8703550162 2,1,4163,0.8664159117999999 2,1,4164,0.8640190443 2,1,4165,0.8613494920999999 @@ -30448,46 +30448,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4167,0.8624768076999999 2,1,4168,0.8624768076999999 2,1,4169,0.8644463599 -2,1,4170,0.8703550161999999 -2,1,4171,0.8782332246999999 -2,1,4172,0.8841418812999998 +2,1,4170,0.8703550162 +2,1,4171,0.8782332247 +2,1,4172,0.8841418812999999 2,1,4173,0.8861114332 2,1,4174,0.8900505372999999 2,1,4175,0.8939896417000001 2,1,4176,0.8959591936 -2,1,4177,0.8979287454999999 -2,1,4178,0.8979287454999999 -2,1,4179,0.8979287454999999 -2,1,4180,0.8979287454999999 -2,1,4181,0.8979287454999999 +2,1,4177,0.8979287455 +2,1,4178,0.8979287455 +2,1,4179,0.8979287455 +2,1,4180,0.8979287455 +2,1,4181,0.8979287455 2,1,4182,0.8959591936 2,1,4183,0.8920200892 2,1,4184,0.8900505372999999 2,1,4185,0.8861114332 -2,1,4186,0.8841418812999998 -2,1,4187,0.8821723288 -2,1,4188,0.8802027765999999 -2,1,4189,0.8782332246999999 -2,1,4190,0.8782332246999999 -2,1,4191,0.8782332246999999 -2,1,4192,0.8802027765999999 -2,1,4193,0.8821723288 -2,1,4194,0.8841418812999998 +2,1,4186,0.8841418812999999 +2,1,4187,0.8821723288000001 +2,1,4188,0.8802027766 +2,1,4189,0.8782332247 +2,1,4190,0.8782332247 +2,1,4191,0.8782332247 +2,1,4192,0.8802027766 +2,1,4193,0.8821723288000001 +2,1,4194,0.8841418812999999 2,1,4195,0.8880809851 2,1,4196,0.8920200892 2,1,4197,0.8939896417000001 2,1,4198,0.8959591936 2,1,4199,0.8959591936 -2,1,4200,0.8979287454999999 +2,1,4200,0.8979287455 2,1,4201,0.8880809851 2,1,4202,0.8880809851 2,1,4203,0.8880809851 2,1,4204,0.8880809851 2,1,4205,0.8880809851 2,1,4206,0.8861114332 -2,1,4207,0.8802027765999999 +2,1,4207,0.8802027766 2,1,4208,0.8742941203 -2,1,4209,0.8683854642999999 +2,1,4209,0.8683854643 2,1,4210,0.8644463599 2,1,4211,0.8585377039 2,1,4212,0.8551913319 @@ -30497,21 +30497,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4216,0.8493186475 2,1,4217,0.8556186474999999 2,1,4218,0.8624768076999999 -2,1,4219,0.8703550161999999 +2,1,4219,0.8703550162 2,1,4220,0.8742941203 2,1,4221,0.8762636728 -2,1,4222,0.8802027765999999 -2,1,4223,0.8821723288 -2,1,4224,0.8841418812999998 +2,1,4222,0.8802027766 +2,1,4223,0.8821723288000001 +2,1,4224,0.8841418812999999 2,1,4225,0.8861114332 2,1,4226,0.8861114332 2,1,4227,0.8880809851 2,1,4228,0.8880809851 2,1,4229,0.8880809851 -2,1,4230,0.8841418812999998 -2,1,4231,0.8782332246999999 +2,1,4230,0.8841418812999999 +2,1,4231,0.8782332247 2,1,4232,0.8742941203 -2,1,4233,0.8672581486999998 +2,1,4233,0.8672581487 2,1,4234,0.8599494920999999 2,1,4235,0.8553103883 2,1,4236,0.8453913318999999 @@ -30522,67 +30522,67 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4241,0.8404913319 2,1,4242,0.8581103883 2,1,4243,0.8664159117999999 -2,1,4244,0.8703550161999999 +2,1,4244,0.8703550162 2,1,4245,0.8723245680999999 2,1,4246,0.8742941203 2,1,4247,0.8762636728 -2,1,4248,0.8782332246999999 -2,1,4249,0.8979287454999999 -2,1,4250,0.8979287454999999 -2,1,4251,0.8979287454999999 -2,1,4252,0.8979287454999999 -2,1,4253,0.8979287454999999 +2,1,4248,0.8782332247 +2,1,4249,0.8979287455 +2,1,4250,0.8979287455 +2,1,4251,0.8979287455 +2,1,4252,0.8979287455 +2,1,4253,0.8979287455 2,1,4254,0.8959591936 2,1,4255,0.8920200892 2,1,4256,0.8900505372999999 2,1,4257,0.8861114332 -2,1,4258,0.8841418812999998 -2,1,4259,0.8821723288 -2,1,4260,0.8802027765999999 -2,1,4261,0.8782332246999999 -2,1,4262,0.8782332246999999 -2,1,4263,0.8782332246999999 -2,1,4264,0.8802027765999999 -2,1,4265,0.8821723288 -2,1,4266,0.8841418812999998 +2,1,4258,0.8841418812999999 +2,1,4259,0.8821723288000001 +2,1,4260,0.8802027766 +2,1,4261,0.8782332247 +2,1,4262,0.8782332247 +2,1,4263,0.8782332247 +2,1,4264,0.8802027766 +2,1,4265,0.8821723288000001 +2,1,4266,0.8841418812999999 2,1,4267,0.8880809851 2,1,4268,0.8920200892 2,1,4269,0.8939896417000001 2,1,4270,0.8959591936 2,1,4271,0.8959591936 -2,1,4272,0.8979287454999999 +2,1,4272,0.8979287455 2,1,4273,0.8939896417000001 2,1,4274,0.8959591936 -2,1,4275,0.8979287454999999 -2,1,4276,0.8979287454999999 -2,1,4277,0.8979287454999999 +2,1,4275,0.8979287455 +2,1,4276,0.8979287455 +2,1,4277,0.8979287455 2,1,4278,0.8939896417000001 2,1,4279,0.8880809851 -2,1,4280,0.8841418812999998 -2,1,4281,0.8782332246999999 +2,1,4280,0.8841418812999999 +2,1,4281,0.8782332247 2,1,4282,0.8742941203 -2,1,4283,0.8703550161999999 -2,1,4284,0.8683854642999999 +2,1,4283,0.8703550162 +2,1,4284,0.8683854643 2,1,4285,0.8664159117999999 2,1,4286,0.8644463599 2,1,4287,0.8644463599 2,1,4288,0.8664159117999999 -2,1,4289,0.8683854642999999 +2,1,4289,0.8683854643 2,1,4290,0.8723245680999999 -2,1,4291,0.8802027765999999 -2,1,4292,0.8841418812999998 +2,1,4291,0.8802027766 +2,1,4292,0.8841418812999999 2,1,4293,0.8880809851 2,1,4294,0.8900505372999999 2,1,4295,0.8920200892 2,1,4296,0.8939896417000001 -2,1,4297,0.8841418812999998 +2,1,4297,0.8841418812999999 2,1,4298,0.8861114332 2,1,4299,0.8861114332 2,1,4300,0.8861114332 2,1,4301,0.8861114332 -2,1,4302,0.8821723288 +2,1,4302,0.8821723288000001 2,1,4303,0.8742941203 -2,1,4304,0.8683854642999999 +2,1,4304,0.8683854643 2,1,4305,0.8640190443 2,1,4306,0.8574103882999999 2,1,4307,0.8474913319 @@ -30595,34 +30595,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4314,0.8585377039 2,1,4315,0.8664159117999999 2,1,4316,0.8742941203 -2,1,4317,0.8782332246999999 -2,1,4318,0.8802027765999999 -2,1,4319,0.8821723288 -2,1,4320,0.8841418812999998 -2,1,4321,0.8979287454999999 -2,1,4322,0.8979287454999999 -2,1,4323,0.8979287454999999 -2,1,4324,0.8979287454999999 -2,1,4325,0.8979287454999999 +2,1,4317,0.8782332247 +2,1,4318,0.8802027766 +2,1,4319,0.8821723288000001 +2,1,4320,0.8841418812999999 +2,1,4321,0.8979287455 +2,1,4322,0.8979287455 +2,1,4323,0.8979287455 +2,1,4324,0.8979287455 +2,1,4325,0.8979287455 2,1,4326,0.8959591936 2,1,4327,0.8920200892 2,1,4328,0.8900505372999999 2,1,4329,0.8861114332 -2,1,4330,0.8841418812999998 -2,1,4331,0.8821723288 -2,1,4332,0.8802027765999999 -2,1,4333,0.8782332246999999 -2,1,4334,0.8782332246999999 -2,1,4335,0.8782332246999999 -2,1,4336,0.8802027765999999 -2,1,4337,0.8821723288 -2,1,4338,0.8841418812999998 +2,1,4330,0.8841418812999999 +2,1,4331,0.8821723288000001 +2,1,4332,0.8802027766 +2,1,4333,0.8782332247 +2,1,4334,0.8782332247 +2,1,4335,0.8782332247 +2,1,4336,0.8802027766 +2,1,4337,0.8821723288000001 +2,1,4338,0.8841418812999999 2,1,4339,0.8880809851 2,1,4340,0.8920200892 2,1,4341,0.8939896417000001 2,1,4342,0.8959591936 2,1,4343,0.8959591936 -2,1,4344,0.8979287454999999 +2,1,4344,0.8979287455 2,1,4345,0.8742941203 2,1,4346,0.8742941203 2,1,4347,0.8762636728 @@ -30633,10 +30633,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4352,0.8600799401999999 2,1,4353,0.8474913319 2,1,4354,0.8334913318999999 -2,1,4355,0.8201913318999998 -2,1,4356,0.8138913319000001 -2,1,4357,0.8075913318999999 -2,1,4358,0.8082913318999999 +2,1,4355,0.8201913318999999 +2,1,4356,0.8138913319 +2,1,4357,0.8075913319 +2,1,4358,0.8082913319 2,1,4359,0.8145913319 2,1,4360,0.8215913318999999 2,1,4361,0.8285913319 @@ -30644,8 +30644,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4363,0.8585377039 2,1,4364,0.8624768076999999 2,1,4365,0.8664159117999999 -2,1,4366,0.8703550161999999 -2,1,4367,0.8703550161999999 +2,1,4366,0.8703550162 +2,1,4367,0.8703550162 2,1,4368,0.8723245680999999 2,1,4369,0.8742941203 2,1,4370,0.8742941203 @@ -30657,10 +30657,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4376,0.8600799401999999 2,1,4377,0.8474913319 2,1,4378,0.8334913318999999 -2,1,4379,0.8201913318999998 -2,1,4380,0.8138913319000001 -2,1,4381,0.8075913318999999 -2,1,4382,0.8082913318999999 +2,1,4379,0.8201913318999999 +2,1,4380,0.8138913319 +2,1,4381,0.8075913319 +2,1,4382,0.8082913319 2,1,4383,0.8145913319 2,1,4384,0.8215913318999999 2,1,4385,0.8285913319 @@ -30668,8 +30668,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4387,0.8585377039 2,1,4388,0.8624768076999999 2,1,4389,0.8664159117999999 -2,1,4390,0.8703550161999999 -2,1,4391,0.8703550161999999 +2,1,4390,0.8703550162 +2,1,4391,0.8703550162 2,1,4392,0.8723245680999999 2,1,4393,0.8723245680999999 2,1,4394,0.8742941203 @@ -30682,91 +30682,91 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4401,0.8502913319 2,1,4402,0.8306913319 2,1,4403,0.8173913318999999 -2,1,4404,0.8040913318999999 +2,1,4404,0.8040913319 2,1,4405,0.7977913319 2,1,4406,0.7914913319 2,1,4407,0.7921913319 2,1,4408,0.7991913318999999 -2,1,4409,0.8061913318999999 -2,1,4410,0.8208913318999999 +2,1,4409,0.8061913319 +2,1,4410,0.8208913319 2,1,4411,0.8488913319 -2,1,4412,0.8605072557999999 +2,1,4412,0.8605072558 2,1,4413,0.8644463599 2,1,4414,0.8664159117999999 -2,1,4415,0.8703550161999999 +2,1,4415,0.8703550162 2,1,4416,0.8723245680999999 -2,1,4417,0.8782332246999999 -2,1,4418,0.8802027765999999 -2,1,4419,0.8802027765999999 -2,1,4420,0.8821723288 -2,1,4421,0.8821723288 +2,1,4417,0.8782332247 +2,1,4418,0.8802027766 +2,1,4419,0.8802027766 +2,1,4420,0.8821723288000001 +2,1,4421,0.8821723288000001 2,1,4422,0.8762636728 2,1,4423,0.8699277005999999 2,1,4424,0.8619190443 2,1,4425,0.8539103883 2,1,4426,0.8369913319 2,1,4427,0.8173913318999999 -2,1,4428,0.8040913318999999 +2,1,4428,0.8040913319 2,1,4429,0.7977913319 2,1,4430,0.7914913319 2,1,4431,0.7914913319 2,1,4432,0.7984913319 -2,1,4433,0.8061913318999999 +2,1,4433,0.8061913319 2,1,4434,0.8334913318999999 2,1,4435,0.8581103883 2,1,4436,0.8644463599 -2,1,4437,0.8683854642999999 -2,1,4438,0.8703550161999999 +2,1,4437,0.8683854643 +2,1,4438,0.8703550162 2,1,4439,0.8742941203 2,1,4440,0.8742941203 -2,1,4441,0.8782332246999999 -2,1,4442,0.8802027765999999 -2,1,4443,0.8802027765999999 -2,1,4444,0.8821723288 -2,1,4445,0.8821723288 +2,1,4441,0.8782332247 +2,1,4442,0.8802027766 +2,1,4443,0.8802027766 +2,1,4444,0.8821723288000001 +2,1,4445,0.8821723288000001 2,1,4446,0.8762636728 2,1,4447,0.8699277005999999 2,1,4448,0.8619190443 2,1,4449,0.8539103883 2,1,4450,0.8369913319 2,1,4451,0.8173913318999999 -2,1,4452,0.8040913318999999 +2,1,4452,0.8040913319 2,1,4453,0.7977913319 2,1,4454,0.7914913319 2,1,4455,0.7914913319 2,1,4456,0.7984913319 -2,1,4457,0.8061913318999999 +2,1,4457,0.8061913319 2,1,4458,0.8334913318999999 2,1,4459,0.8581103883 2,1,4460,0.8644463599 -2,1,4461,0.8683854642999999 -2,1,4462,0.8703550161999999 +2,1,4461,0.8683854643 +2,1,4462,0.8703550162 2,1,4463,0.8742941203 2,1,4464,0.8742941203 -2,1,4465,0.8802027765999999 -2,1,4466,0.8802027765999999 -2,1,4467,0.8821723288 -2,1,4468,0.8821723288 -2,1,4469,0.8821723288 -2,1,4470,0.8802027765999999 +2,1,4465,0.8802027766 +2,1,4466,0.8802027766 +2,1,4467,0.8821723288000001 +2,1,4468,0.8821723288000001 +2,1,4469,0.8821723288000001 +2,1,4470,0.8802027766 2,1,4471,0.8742941203 -2,1,4472,0.8683854642999999 +2,1,4472,0.8683854643 2,1,4473,0.8620494920999999 2,1,4474,0.8567103883 2,1,4475,0.8404913319 2,1,4476,0.8271913318999999 -2,1,4477,0.8201913318999998 +2,1,4477,0.8201913318999999 2,1,4478,0.8131913319 -2,1,4479,0.8138913319000001 -2,1,4480,0.8208913318999999 +2,1,4479,0.8138913319 +2,1,4480,0.8208913319 2,1,4481,0.8278913319 2,1,4482,0.8488913319 2,1,4483,0.8624768076999999 -2,1,4484,0.8683854642999999 +2,1,4484,0.8683854643 2,1,4485,0.8723245680999999 2,1,4486,0.8742941203 2,1,4487,0.8762636728 -2,1,4488,0.8782332246999999 +2,1,4488,0.8782332247 2,1,4489,0.8723245680999999 2,1,4490,0.8742941203 2,1,4491,0.8742941203 @@ -30778,41 +30778,41 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4497,0.8502913319 2,1,4498,0.8306913319 2,1,4499,0.8173913318999999 -2,1,4500,0.8040913318999999 +2,1,4500,0.8040913319 2,1,4501,0.7977913319 2,1,4502,0.7914913319 2,1,4503,0.7921913319 2,1,4504,0.7991913318999999 -2,1,4505,0.8061913318999999 -2,1,4506,0.8208913318999999 +2,1,4505,0.8061913319 +2,1,4506,0.8208913319 2,1,4507,0.8488913319 -2,1,4508,0.8605072557999999 +2,1,4508,0.8605072558 2,1,4509,0.8644463599 2,1,4510,0.8664159117999999 -2,1,4511,0.8703550161999999 +2,1,4511,0.8703550162 2,1,4512,0.8723245680999999 2,1,4513,0.8762636728 -2,1,4514,0.8782332246999999 -2,1,4515,0.8782332246999999 -2,1,4516,0.8802027765999999 -2,1,4517,0.8782332246999999 +2,1,4514,0.8782332247 +2,1,4515,0.8782332247 +2,1,4516,0.8802027766 +2,1,4517,0.8782332247 2,1,4518,0.8742941203 -2,1,4519,0.8683854642999999 +2,1,4519,0.8683854643 2,1,4520,0.8613494920999999 2,1,4521,0.8467913319 2,1,4522,0.8264913319 2,1,4523,0.8131913319 -2,1,4524,0.8061913318999999 +2,1,4524,0.8061913319 2,1,4525,0.7991913318999999 2,1,4526,0.7935913319 2,1,4527,0.7935913319 2,1,4528,0.8005913319 -2,1,4529,0.8082913318999999 +2,1,4529,0.8082913319 2,1,4530,0.8348913319 2,1,4531,0.8585377039 2,1,4532,0.8644463599 2,1,4533,0.8664159117999999 -2,1,4534,0.8703550161999999 +2,1,4534,0.8703550162 2,1,4535,0.8723245680999999 2,1,4536,0.8723245680999999 2,1,4537,0.8723245680999999 @@ -30826,31 +30826,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4545,0.8502913319 2,1,4546,0.8306913319 2,1,4547,0.8173913318999999 -2,1,4548,0.8040913318999999 +2,1,4548,0.8040913319 2,1,4549,0.7977913319 2,1,4550,0.7914913319 2,1,4551,0.7921913319 2,1,4552,0.7991913318999999 -2,1,4553,0.8061913318999999 -2,1,4554,0.8208913318999999 +2,1,4553,0.8061913319 +2,1,4554,0.8208913319 2,1,4555,0.8488913319 -2,1,4556,0.8605072557999999 +2,1,4556,0.8605072558 2,1,4557,0.8644463599 2,1,4558,0.8664159117999999 -2,1,4559,0.8703550161999999 +2,1,4559,0.8703550162 2,1,4560,0.8723245680999999 -2,1,4561,0.8703550161999999 +2,1,4561,0.8703550162 2,1,4562,0.8723245680999999 2,1,4563,0.8723245680999999 2,1,4564,0.8742941203 2,1,4565,0.8742941203 -2,1,4566,0.8703550161999999 +2,1,4566,0.8703550162 2,1,4567,0.8633190443 -2,1,4568,0.8572799401999999 +2,1,4568,0.8572799402 2,1,4569,0.8446913319 2,1,4570,0.8306913319 2,1,4571,0.8110913319 -2,1,4572,0.8040913318999999 +2,1,4572,0.8040913319 2,1,4573,0.7977913319 2,1,4574,0.7921913319 2,1,4575,0.7928913318999999 @@ -30861,19 +30861,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4580,0.8585377039 2,1,4581,0.8624768076999999 2,1,4582,0.8664159117999999 -2,1,4583,0.8683854642999999 -2,1,4584,0.8703550161999999 +2,1,4583,0.8683854643 +2,1,4584,0.8703550162 2,1,4585,0.8742941203 2,1,4586,0.8742941203 2,1,4587,0.8742941203 2,1,4588,0.8762636728 2,1,4589,0.8742941203 -2,1,4590,0.8703550161999999 +2,1,4590,0.8703550162 2,1,4591,0.8644463599 2,1,4592,0.8585377039 2,1,4593,0.8425913319 -2,1,4594,0.8229913318999998 -2,1,4595,0.8159913319000001 +2,1,4594,0.8229913319 +2,1,4595,0.8159913319 2,1,4596,0.8089913318999999 2,1,4597,0.8026913319 2,1,4598,0.7963913319 @@ -30883,32 +30883,32 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4602,0.8362913318999999 2,1,4603,0.8585377039 2,1,4604,0.8644463599 -2,1,4605,0.8683854642999999 -2,1,4606,0.8683854642999999 -2,1,4607,0.8683854642999999 -2,1,4608,0.8683854642999999 +2,1,4605,0.8683854643 +2,1,4606,0.8683854643 +2,1,4607,0.8683854643 +2,1,4608,0.8683854643 2,1,4609,0.8762636728 -2,1,4610,0.8782332246999999 -2,1,4611,0.8782332246999999 -2,1,4612,0.8802027765999999 -2,1,4613,0.8782332246999999 +2,1,4610,0.8782332247 +2,1,4611,0.8782332247 +2,1,4612,0.8802027766 +2,1,4613,0.8782332247 2,1,4614,0.8742941203 -2,1,4615,0.8683854642999999 +2,1,4615,0.8683854643 2,1,4616,0.8613494920999999 2,1,4617,0.8467913319 2,1,4618,0.8264913319 2,1,4619,0.8131913319 -2,1,4620,0.8061913318999999 +2,1,4620,0.8061913319 2,1,4621,0.7991913318999999 2,1,4622,0.7935913319 2,1,4623,0.7935913319 2,1,4624,0.8005913319 -2,1,4625,0.8082913318999999 +2,1,4625,0.8082913319 2,1,4626,0.8348913319 2,1,4627,0.8585377039 2,1,4628,0.8644463599 2,1,4629,0.8664159117999999 -2,1,4630,0.8703550161999999 +2,1,4630,0.8703550162 2,1,4631,0.8723245680999999 2,1,4632,0.8723245680999999 2,1,4633,0.8742941203 @@ -30921,10 +30921,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4640,0.8600799401999999 2,1,4641,0.8474913319 2,1,4642,0.8334913318999999 -2,1,4643,0.8201913318999998 -2,1,4644,0.8138913319000001 -2,1,4645,0.8075913318999999 -2,1,4646,0.8082913318999999 +2,1,4643,0.8201913318999999 +2,1,4644,0.8138913319 +2,1,4645,0.8075913319 +2,1,4646,0.8082913319 2,1,4647,0.8145913319 2,1,4648,0.8215913318999999 2,1,4649,0.8285913319 @@ -30932,33 +30932,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4651,0.8585377039 2,1,4652,0.8624768076999999 2,1,4653,0.8664159117999999 -2,1,4654,0.8703550161999999 -2,1,4655,0.8703550161999999 +2,1,4654,0.8703550162 +2,1,4655,0.8703550162 2,1,4656,0.8723245680999999 -2,1,4657,0.8802027765999999 -2,1,4658,0.8802027765999999 -2,1,4659,0.8821723288 -2,1,4660,0.8821723288 -2,1,4661,0.8821723288 -2,1,4662,0.8802027765999999 +2,1,4657,0.8802027766 +2,1,4658,0.8802027766 +2,1,4659,0.8821723288000001 +2,1,4660,0.8821723288000001 +2,1,4661,0.8821723288000001 +2,1,4662,0.8802027766 2,1,4663,0.8742941203 -2,1,4664,0.8683854642999999 +2,1,4664,0.8683854643 2,1,4665,0.8620494920999999 2,1,4666,0.8567103883 2,1,4667,0.8404913319 2,1,4668,0.8271913318999999 -2,1,4669,0.8201913318999998 +2,1,4669,0.8201913318999999 2,1,4670,0.8131913319 -2,1,4671,0.8138913319000001 -2,1,4672,0.8208913318999999 +2,1,4671,0.8138913319 +2,1,4672,0.8208913319 2,1,4673,0.8278913319 2,1,4674,0.8488913319 2,1,4675,0.8624768076999999 -2,1,4676,0.8683854642999999 +2,1,4676,0.8683854643 2,1,4677,0.8723245680999999 2,1,4678,0.8742941203 2,1,4679,0.8762636728 -2,1,4680,0.8782332246999999 +2,1,4680,0.8782332247 2,1,4681,0.8723245680999999 2,1,4682,0.8742941203 2,1,4683,0.8742941203 @@ -30970,18 +30970,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4689,0.8502913319 2,1,4690,0.8306913319 2,1,4691,0.8173913318999999 -2,1,4692,0.8040913318999999 +2,1,4692,0.8040913319 2,1,4693,0.7977913319 2,1,4694,0.7914913319 2,1,4695,0.7921913319 2,1,4696,0.7991913318999999 -2,1,4697,0.8061913318999999 -2,1,4698,0.8208913318999999 +2,1,4697,0.8061913319 +2,1,4698,0.8208913319 2,1,4699,0.8488913319 -2,1,4700,0.8605072557999999 +2,1,4700,0.8605072558 2,1,4701,0.8644463599 2,1,4702,0.8664159117999999 -2,1,4703,0.8703550161999999 +2,1,4703,0.8703550162 2,1,4704,0.8723245680999999 2,1,4705,0.8742941203 2,1,4706,0.8742941203 @@ -30993,10 +30993,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4712,0.8600799401999999 2,1,4713,0.8474913319 2,1,4714,0.8334913318999999 -2,1,4715,0.8201913318999998 -2,1,4716,0.8138913319000001 -2,1,4717,0.8075913318999999 -2,1,4718,0.8082913318999999 +2,1,4715,0.8201913318999999 +2,1,4716,0.8138913319 +2,1,4717,0.8075913319 +2,1,4718,0.8082913319 2,1,4719,0.8145913319 2,1,4720,0.8215913318999999 2,1,4721,0.8285913319 @@ -31004,20 +31004,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4723,0.8585377039 2,1,4724,0.8624768076999999 2,1,4725,0.8664159117999999 -2,1,4726,0.8703550161999999 -2,1,4727,0.8703550161999999 +2,1,4726,0.8703550162 +2,1,4727,0.8703550162 2,1,4728,0.8723245680999999 2,1,4729,0.8742941203 2,1,4730,0.8742941203 2,1,4731,0.8742941203 2,1,4732,0.8762636728 2,1,4733,0.8742941203 -2,1,4734,0.8703550161999999 +2,1,4734,0.8703550162 2,1,4735,0.8644463599 2,1,4736,0.8585377039 2,1,4737,0.8425913319 -2,1,4738,0.8229913318999998 -2,1,4739,0.8159913319000001 +2,1,4738,0.8229913319 +2,1,4739,0.8159913319 2,1,4740,0.8089913318999999 2,1,4741,0.8026913319 2,1,4742,0.7963913319 @@ -31027,21 +31027,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4746,0.8362913318999999 2,1,4747,0.8585377039 2,1,4748,0.8644463599 -2,1,4749,0.8683854642999999 -2,1,4750,0.8683854642999999 -2,1,4751,0.8683854642999999 -2,1,4752,0.8683854642999999 +2,1,4749,0.8683854643 +2,1,4750,0.8683854643 +2,1,4751,0.8683854643 +2,1,4752,0.8683854643 2,1,4753,0.8742941203 2,1,4754,0.8742941203 2,1,4755,0.8742941203 2,1,4756,0.8762636728 2,1,4757,0.8742941203 -2,1,4758,0.8703550161999999 +2,1,4758,0.8703550162 2,1,4759,0.8644463599 2,1,4760,0.8585377039 2,1,4761,0.8425913319 -2,1,4762,0.8229913318999998 -2,1,4763,0.8159913319000001 +2,1,4762,0.8229913319 +2,1,4763,0.8159913319 2,1,4764,0.8089913318999999 2,1,4765,0.8026913319 2,1,4766,0.7963913319 @@ -31051,46 +31051,46 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4770,0.8362913318999999 2,1,4771,0.8585377039 2,1,4772,0.8644463599 -2,1,4773,0.8683854642999999 -2,1,4774,0.8683854642999999 -2,1,4775,0.8683854642999999 -2,1,4776,0.8683854642999999 -2,1,4777,0.8802027765999999 -2,1,4778,0.8802027765999999 -2,1,4779,0.8821723288 -2,1,4780,0.8821723288 -2,1,4781,0.8821723288 -2,1,4782,0.8802027765999999 +2,1,4773,0.8683854643 +2,1,4774,0.8683854643 +2,1,4775,0.8683854643 +2,1,4776,0.8683854643 +2,1,4777,0.8802027766 +2,1,4778,0.8802027766 +2,1,4779,0.8821723288000001 +2,1,4780,0.8821723288000001 +2,1,4781,0.8821723288000001 +2,1,4782,0.8802027766 2,1,4783,0.8742941203 -2,1,4784,0.8683854642999999 +2,1,4784,0.8683854643 2,1,4785,0.8620494920999999 2,1,4786,0.8567103883 2,1,4787,0.8404913319 2,1,4788,0.8271913318999999 -2,1,4789,0.8201913318999998 +2,1,4789,0.8201913318999999 2,1,4790,0.8131913319 -2,1,4791,0.8138913319000001 -2,1,4792,0.8208913318999999 +2,1,4791,0.8138913319 +2,1,4792,0.8208913319 2,1,4793,0.8278913319 2,1,4794,0.8488913319 2,1,4795,0.8624768076999999 -2,1,4796,0.8683854642999999 +2,1,4796,0.8683854643 2,1,4797,0.8723245680999999 2,1,4798,0.8742941203 2,1,4799,0.8762636728 -2,1,4800,0.8782332246999999 -2,1,4801,0.8703550161999999 +2,1,4800,0.8782332247 +2,1,4801,0.8703550162 2,1,4802,0.8723245680999999 2,1,4803,0.8723245680999999 2,1,4804,0.8742941203 2,1,4805,0.8742941203 -2,1,4806,0.8703550161999999 +2,1,4806,0.8703550162 2,1,4807,0.8633190443 -2,1,4808,0.8572799401999999 +2,1,4808,0.8572799402 2,1,4809,0.8446913319 2,1,4810,0.8306913319 2,1,4811,0.8110913319 -2,1,4812,0.8040913318999999 +2,1,4812,0.8040913319 2,1,4813,0.7977913319 2,1,4814,0.7921913319 2,1,4815,0.7928913318999999 @@ -31101,8 +31101,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4820,0.8585377039 2,1,4821,0.8624768076999999 2,1,4822,0.8664159117999999 -2,1,4823,0.8683854642999999 -2,1,4824,0.8703550161999999 +2,1,4823,0.8683854643 +2,1,4824,0.8703550162 2,1,4825,0.8723245680999999 2,1,4826,0.8742941203 2,1,4827,0.8742941203 @@ -31114,30 +31114,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4833,0.8502913319 2,1,4834,0.8306913319 2,1,4835,0.8173913318999999 -2,1,4836,0.8040913318999999 +2,1,4836,0.8040913319 2,1,4837,0.7977913319 2,1,4838,0.7914913319 2,1,4839,0.7921913319 2,1,4840,0.7991913318999999 -2,1,4841,0.8061913318999999 -2,1,4842,0.8208913318999999 +2,1,4841,0.8061913319 +2,1,4842,0.8208913319 2,1,4843,0.8488913319 -2,1,4844,0.8605072557999999 +2,1,4844,0.8605072558 2,1,4845,0.8644463599 2,1,4846,0.8664159117999999 -2,1,4847,0.8703550161999999 +2,1,4847,0.8703550162 2,1,4848,0.8723245680999999 2,1,4849,0.8742941203 2,1,4850,0.8742941203 2,1,4851,0.8742941203 2,1,4852,0.8762636728 2,1,4853,0.8742941203 -2,1,4854,0.8703550161999999 +2,1,4854,0.8703550162 2,1,4855,0.8644463599 2,1,4856,0.8585377039 2,1,4857,0.8425913319 -2,1,4858,0.8229913318999998 -2,1,4859,0.8159913319000001 +2,1,4858,0.8229913319 +2,1,4859,0.8159913319 2,1,4860,0.8089913318999999 2,1,4861,0.8026913319 2,1,4862,0.7963913319 @@ -31147,21 +31147,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4866,0.8362913318999999 2,1,4867,0.8585377039 2,1,4868,0.8644463599 -2,1,4869,0.8683854642999999 -2,1,4870,0.8683854642999999 -2,1,4871,0.8683854642999999 -2,1,4872,0.8683854642999999 +2,1,4869,0.8683854643 +2,1,4870,0.8683854643 +2,1,4871,0.8683854643 +2,1,4872,0.8683854643 2,1,4873,0.8742941203 2,1,4874,0.8742941203 2,1,4875,0.8742941203 2,1,4876,0.8762636728 2,1,4877,0.8742941203 -2,1,4878,0.8703550161999999 +2,1,4878,0.8703550162 2,1,4879,0.8644463599 2,1,4880,0.8585377039 2,1,4881,0.8425913319 -2,1,4882,0.8229913318999998 -2,1,4883,0.8159913319000001 +2,1,4882,0.8229913319 +2,1,4883,0.8159913319 2,1,4884,0.8089913318999999 2,1,4885,0.8026913319 2,1,4886,0.7963913319 @@ -31171,10 +31171,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4890,0.8362913318999999 2,1,4891,0.8585377039 2,1,4892,0.8644463599 -2,1,4893,0.8683854642999999 -2,1,4894,0.8683854642999999 -2,1,4895,0.8683854642999999 -2,1,4896,0.8683854642999999 +2,1,4893,0.8683854643 +2,1,4894,0.8683854643 +2,1,4895,0.8683854643 +2,1,4896,0.8683854643 2,1,4897,0.8742941203 2,1,4898,0.8742941203 2,1,4899,0.8762636728 @@ -31185,10 +31185,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4904,0.8600799401999999 2,1,4905,0.8474913319 2,1,4906,0.8334913318999999 -2,1,4907,0.8201913318999998 -2,1,4908,0.8138913319000001 -2,1,4909,0.8075913318999999 -2,1,4910,0.8082913318999999 +2,1,4907,0.8201913318999999 +2,1,4908,0.8138913319 +2,1,4909,0.8075913319 +2,1,4910,0.8082913319 2,1,4911,0.8145913319 2,1,4912,0.8215913318999999 2,1,4913,0.8285913319 @@ -31196,31 +31196,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4915,0.8585377039 2,1,4916,0.8624768076999999 2,1,4917,0.8664159117999999 -2,1,4918,0.8703550161999999 -2,1,4919,0.8703550161999999 +2,1,4918,0.8703550162 +2,1,4919,0.8703550162 2,1,4920,0.8723245680999999 -2,1,4921,0.8782332246999999 -2,1,4922,0.8802027765999999 -2,1,4923,0.8802027765999999 -2,1,4924,0.8821723288 -2,1,4925,0.8821723288 +2,1,4921,0.8782332247 +2,1,4922,0.8802027766 +2,1,4923,0.8802027766 +2,1,4924,0.8821723288000001 +2,1,4925,0.8821723288000001 2,1,4926,0.8762636728 2,1,4927,0.8699277005999999 2,1,4928,0.8619190443 2,1,4929,0.8539103883 2,1,4930,0.8369913319 2,1,4931,0.8173913318999999 -2,1,4932,0.8040913318999999 +2,1,4932,0.8040913319 2,1,4933,0.7977913319 2,1,4934,0.7914913319 2,1,4935,0.7914913319 2,1,4936,0.7984913319 -2,1,4937,0.8061913318999999 +2,1,4937,0.8061913319 2,1,4938,0.8334913318999999 2,1,4939,0.8581103883 2,1,4940,0.8644463599 -2,1,4941,0.8683854642999999 -2,1,4942,0.8703550161999999 +2,1,4941,0.8683854643 +2,1,4942,0.8703550162 2,1,4943,0.8742941203 2,1,4944,0.8742941203 2,1,4945,0.8742941203 @@ -31233,10 +31233,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4952,0.8600799401999999 2,1,4953,0.8474913319 2,1,4954,0.8334913318999999 -2,1,4955,0.8201913318999998 -2,1,4956,0.8138913319000001 -2,1,4957,0.8075913318999999 -2,1,4958,0.8082913318999999 +2,1,4955,0.8201913318999999 +2,1,4956,0.8138913319 +2,1,4957,0.8075913319 +2,1,4958,0.8082913319 2,1,4959,0.8145913319 2,1,4960,0.8215913318999999 2,1,4961,0.8285913319 @@ -31244,8 +31244,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4963,0.8585377039 2,1,4964,0.8624768076999999 2,1,4965,0.8664159117999999 -2,1,4966,0.8703550161999999 -2,1,4967,0.8703550161999999 +2,1,4966,0.8703550162 +2,1,4967,0.8703550162 2,1,4968,0.8723245680999999 2,1,4969,0.8742941203 2,1,4970,0.8742941203 @@ -31257,10 +31257,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4976,0.8600799401999999 2,1,4977,0.8474913319 2,1,4978,0.8334913318999999 -2,1,4979,0.8201913318999998 -2,1,4980,0.8138913319000001 -2,1,4981,0.8075913318999999 -2,1,4982,0.8082913318999999 +2,1,4979,0.8201913318999999 +2,1,4980,0.8138913319 +2,1,4981,0.8075913319 +2,1,4982,0.8082913319 2,1,4983,0.8145913319 2,1,4984,0.8215913318999999 2,1,4985,0.8285913319 @@ -31268,55 +31268,55 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,4987,0.8585377039 2,1,4988,0.8624768076999999 2,1,4989,0.8664159117999999 -2,1,4990,0.8703550161999999 -2,1,4991,0.8703550161999999 +2,1,4990,0.8703550162 +2,1,4991,0.8703550162 2,1,4992,0.8723245680999999 2,1,4993,0.8762636728 -2,1,4994,0.8782332246999999 -2,1,4995,0.8782332246999999 -2,1,4996,0.8802027765999999 -2,1,4997,0.8782332246999999 +2,1,4994,0.8782332247 +2,1,4995,0.8782332247 +2,1,4996,0.8802027766 +2,1,4997,0.8782332247 2,1,4998,0.8742941203 -2,1,4999,0.8683854642999999 +2,1,4999,0.8683854643 2,1,5000,0.8613494920999999 2,1,5001,0.8467913319 2,1,5002,0.8264913319 2,1,5003,0.8131913319 -2,1,5004,0.8061913318999999 +2,1,5004,0.8061913319 2,1,5005,0.7991913318999999 2,1,5006,0.7935913319 2,1,5007,0.7935913319 2,1,5008,0.8005913319 -2,1,5009,0.8082913318999999 +2,1,5009,0.8082913319 2,1,5010,0.8348913319 2,1,5011,0.8585377039 2,1,5012,0.8644463599 2,1,5013,0.8664159117999999 -2,1,5014,0.8703550161999999 +2,1,5014,0.8703550162 2,1,5015,0.8723245680999999 2,1,5016,0.8723245680999999 -2,1,5017,0.8782332246999999 -2,1,5018,0.8802027765999999 -2,1,5019,0.8802027765999999 -2,1,5020,0.8821723288 -2,1,5021,0.8821723288 +2,1,5017,0.8782332247 +2,1,5018,0.8802027766 +2,1,5019,0.8802027766 +2,1,5020,0.8821723288000001 +2,1,5021,0.8821723288000001 2,1,5022,0.8762636728 2,1,5023,0.8699277005999999 2,1,5024,0.8619190443 2,1,5025,0.8539103883 2,1,5026,0.8369913319 2,1,5027,0.8173913318999999 -2,1,5028,0.8040913318999999 +2,1,5028,0.8040913319 2,1,5029,0.7977913319 2,1,5030,0.7914913319 2,1,5031,0.7914913319 2,1,5032,0.7984913319 -2,1,5033,0.8061913318999999 +2,1,5033,0.8061913319 2,1,5034,0.8334913318999999 2,1,5035,0.8581103883 2,1,5036,0.8644463599 -2,1,5037,0.8683854642999999 -2,1,5038,0.8703550161999999 +2,1,5037,0.8683854643 +2,1,5038,0.8703550162 2,1,5039,0.8742941203 2,1,5040,0.8742941203 2,1,5041,0.8742941203 @@ -31329,10 +31329,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5048,0.8600799401999999 2,1,5049,0.8474913319 2,1,5050,0.8334913318999999 -2,1,5051,0.8201913318999998 -2,1,5052,0.8138913319000001 -2,1,5053,0.8075913318999999 -2,1,5054,0.8082913318999999 +2,1,5051,0.8201913318999999 +2,1,5052,0.8138913319 +2,1,5053,0.8075913319 +2,1,5054,0.8082913319 2,1,5055,0.8145913319 2,1,5056,0.8215913318999999 2,1,5057,0.8285913319 @@ -31340,8 +31340,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5059,0.8585377039 2,1,5060,0.8624768076999999 2,1,5061,0.8664159117999999 -2,1,5062,0.8703550161999999 -2,1,5063,0.8703550161999999 +2,1,5062,0.8703550162 +2,1,5063,0.8703550162 2,1,5064,0.8723245680999999 2,1,5065,0.8723245680999999 2,1,5066,0.8742941203 @@ -31354,26 +31354,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5073,0.8502913319 2,1,5074,0.8306913319 2,1,5075,0.8173913318999999 -2,1,5076,0.8040913318999999 +2,1,5076,0.8040913319 2,1,5077,0.7977913319 2,1,5078,0.7914913319 2,1,5079,0.7921913319 2,1,5080,0.7991913318999999 -2,1,5081,0.8061913318999999 -2,1,5082,0.8208913318999999 +2,1,5081,0.8061913319 +2,1,5082,0.8208913319 2,1,5083,0.8488913319 -2,1,5084,0.8605072557999999 +2,1,5084,0.8605072558 2,1,5085,0.8644463599 2,1,5086,0.8664159117999999 -2,1,5087,0.8703550161999999 +2,1,5087,0.8703550162 2,1,5088,0.8723245680999999 -2,1,5089,0.8841418812999998 +2,1,5089,0.8841418812999999 2,1,5090,0.8861114332 2,1,5091,0.8861114332 2,1,5092,0.8880809851 2,1,5093,0.8880809851 2,1,5094,0.8861114332 -2,1,5095,0.8802027765999999 +2,1,5095,0.8802027766 2,1,5096,0.8742941203 2,1,5097,0.8665581486999999 2,1,5098,0.8592494920999999 @@ -31384,22 +31384,22 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5103,0.8334913318999999 2,1,5104,0.8404913319 2,1,5105,0.8481913319 -2,1,5106,0.8605072557999999 -2,1,5107,0.8683854642999999 +2,1,5106,0.8605072558 +2,1,5107,0.8683854643 2,1,5108,0.8723245680999999 2,1,5109,0.8762636728 -2,1,5110,0.8802027765999999 -2,1,5111,0.8821723288 -2,1,5112,0.8821723288 +2,1,5110,0.8802027766 +2,1,5111,0.8821723288000001 +2,1,5112,0.8821723288000001 2,1,5113,0.8861114332 2,1,5114,0.8861114332 2,1,5115,0.8880809851 2,1,5116,0.8880809851 2,1,5117,0.8880809851 2,1,5118,0.8861114332 -2,1,5119,0.8802027765999999 +2,1,5119,0.8802027766 2,1,5120,0.8742941203 -2,1,5121,0.8703550161999999 +2,1,5121,0.8703550162 2,1,5122,0.8633190443 2,1,5123,0.8586799401999999 2,1,5124,0.8560103883 @@ -31411,9 +31411,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5130,0.8644463599 2,1,5131,0.8723245680999999 2,1,5132,0.8762636728 -2,1,5133,0.8782332246999999 -2,1,5134,0.8821723288 -2,1,5135,0.8841418812999998 +2,1,5133,0.8782332247 +2,1,5134,0.8821723288000001 +2,1,5135,0.8841418812999999 2,1,5136,0.8861114332 2,1,5137,0.8920200892 2,1,5138,0.8939896417000001 @@ -31422,32 +31422,32 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5141,0.8939896417000001 2,1,5142,0.8920200892 2,1,5143,0.8880809851 -2,1,5144,0.8821723288 +2,1,5144,0.8821723288000001 2,1,5145,0.8762636728 -2,1,5146,0.8703550161999999 +2,1,5146,0.8703550162 2,1,5147,0.8659885961999999 2,1,5148,0.8613494920999999 2,1,5149,0.8586799401999999 2,1,5150,0.8560103883 2,1,5151,0.8567103883 -2,1,5152,0.8593799401999999 +2,1,5152,0.8593799402 2,1,5153,0.8624768076999999 -2,1,5154,0.8703550161999999 +2,1,5154,0.8703550162 2,1,5155,0.8762636728 -2,1,5156,0.8802027765999999 -2,1,5157,0.8802027765999999 -2,1,5158,0.8821723288 -2,1,5159,0.8821723288 -2,1,5160,0.8841418812999998 +2,1,5156,0.8802027766 +2,1,5157,0.8802027766 +2,1,5158,0.8821723288000001 +2,1,5159,0.8821723288000001 +2,1,5160,0.8841418812999999 2,1,5161,0.8861114332 2,1,5162,0.8861114332 2,1,5163,0.8880809851 2,1,5164,0.8880809851 2,1,5165,0.8880809851 2,1,5166,0.8861114332 -2,1,5167,0.8802027765999999 +2,1,5167,0.8802027766 2,1,5168,0.8742941203 -2,1,5169,0.8703550161999999 +2,1,5169,0.8703550162 2,1,5170,0.8633190443 2,1,5171,0.8586799401999999 2,1,5172,0.8560103883 @@ -31459,9 +31459,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5178,0.8644463599 2,1,5179,0.8723245680999999 2,1,5180,0.8762636728 -2,1,5181,0.8782332246999999 -2,1,5182,0.8821723288 -2,1,5183,0.8841418812999998 +2,1,5181,0.8782332247 +2,1,5182,0.8821723288000001 +2,1,5183,0.8841418812999999 2,1,5184,0.8861114332 2,1,5185,0.8861114332 2,1,5186,0.8861114332 @@ -31469,33 +31469,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5188,0.8880809851 2,1,5189,0.8880809851 2,1,5190,0.8861114332 -2,1,5191,0.8821723288 +2,1,5191,0.8821723288000001 2,1,5192,0.8762636728 -2,1,5193,0.8703550161999999 +2,1,5193,0.8703550162 2,1,5194,0.8633190443 2,1,5195,0.8567103883 2,1,5196,0.8530913319 2,1,5197,0.8467913319 2,1,5198,0.8404913319 -2,1,5199,0.8411913319000001 +2,1,5199,0.8411913319 2,1,5200,0.8481913319 2,1,5201,0.8551913319 2,1,5202,0.8624768076999999 -2,1,5203,0.8703550161999999 +2,1,5203,0.8703550162 2,1,5204,0.8742941203 -2,1,5205,0.8782332246999999 -2,1,5206,0.8802027765999999 -2,1,5207,0.8821723288 -2,1,5208,0.8821723288 +2,1,5205,0.8782332247 +2,1,5206,0.8802027766 +2,1,5207,0.8821723288000001 +2,1,5208,0.8821723288000001 2,1,5209,0.8861114332 2,1,5210,0.8880809851 2,1,5211,0.8880809851 2,1,5212,0.8900505372999999 2,1,5213,0.8900505372999999 2,1,5214,0.8861114332 -2,1,5215,0.8821723288 +2,1,5215,0.8821723288000001 2,1,5216,0.8751363571999999 -2,1,5217,0.8671277005999999 +2,1,5217,0.8671277006 2,1,5218,0.8585494920999999 2,1,5219,0.8509913319 2,1,5220,0.8376913319 @@ -31503,23 +31503,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5222,0.8250913319 2,1,5223,0.8257913319 2,1,5224,0.8327913319 -2,1,5225,0.8411913319000001 +2,1,5225,0.8411913319 2,1,5226,0.8585377039 2,1,5227,0.8664159117999999 2,1,5228,0.8723245680999999 2,1,5229,0.8742941203 -2,1,5230,0.8782332246999999 -2,1,5231,0.8802027765999999 -2,1,5232,0.8821723288 +2,1,5230,0.8782332247 +2,1,5231,0.8802027766 +2,1,5232,0.8821723288000001 2,1,5233,0.8861114332 2,1,5234,0.8861114332 2,1,5235,0.8880809851 2,1,5236,0.8880809851 2,1,5237,0.8880809851 2,1,5238,0.8861114332 -2,1,5239,0.8802027765999999 +2,1,5239,0.8802027766 2,1,5240,0.8742941203 -2,1,5241,0.8703550161999999 +2,1,5241,0.8703550162 2,1,5242,0.8633190443 2,1,5243,0.8586799401999999 2,1,5244,0.8560103883 @@ -31531,17 +31531,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5250,0.8644463599 2,1,5251,0.8723245680999999 2,1,5252,0.8762636728 -2,1,5253,0.8782332246999999 -2,1,5254,0.8821723288 -2,1,5255,0.8841418812999998 +2,1,5253,0.8782332247 +2,1,5254,0.8821723288000001 +2,1,5255,0.8841418812999999 2,1,5256,0.8861114332 -2,1,5257,0.8821723288 -2,1,5258,0.8841418812999998 -2,1,5259,0.8841418812999998 +2,1,5257,0.8821723288000001 +2,1,5258,0.8841418812999999 +2,1,5259,0.8841418812999999 2,1,5260,0.8861114332 2,1,5261,0.8861114332 -2,1,5262,0.8841418812999998 -2,1,5263,0.8782332246999999 +2,1,5262,0.8841418812999999 +2,1,5263,0.8782332247 2,1,5264,0.8742941203 2,1,5265,0.8679581486999999 2,1,5266,0.8599494920999999 @@ -31556,20 +31556,20 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5275,0.8664159117999999 2,1,5276,0.8723245680999999 2,1,5277,0.8762636728 -2,1,5278,0.8782332246999999 -2,1,5279,0.8802027765999999 -2,1,5280,0.8821723288 +2,1,5278,0.8782332247 +2,1,5279,0.8802027766 +2,1,5280,0.8821723288000001 2,1,5281,0.8861114332 2,1,5282,0.8880809851 2,1,5283,0.8880809851 2,1,5284,0.8900505372999999 2,1,5285,0.8900505372999999 2,1,5286,0.8880809851 -2,1,5287,0.8821723288 +2,1,5287,0.8821723288000001 2,1,5288,0.8762636728 -2,1,5289,0.8692277005999999 +2,1,5289,0.8692277006 2,1,5290,0.8612190443 -2,1,5291,0.8565799401999998 +2,1,5291,0.8565799402 2,1,5292,0.8509913319 2,1,5293,0.8376913319 2,1,5294,0.8313913318999999 @@ -31577,21 +31577,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5296,0.8390913319 2,1,5297,0.8467913319 2,1,5298,0.8624768076999999 -2,1,5299,0.8703550161999999 +2,1,5299,0.8703550162 2,1,5300,0.8742941203 2,1,5301,0.8762636728 -2,1,5302,0.8802027765999999 -2,1,5303,0.8821723288 -2,1,5304,0.8841418812999998 +2,1,5302,0.8802027766 +2,1,5303,0.8821723288000001 +2,1,5304,0.8841418812999999 2,1,5305,0.8861114332 2,1,5306,0.8880809851 2,1,5307,0.8880809851 2,1,5308,0.8900505372999999 2,1,5309,0.8900505372999999 2,1,5310,0.8861114332 -2,1,5311,0.8821723288 +2,1,5311,0.8821723288000001 2,1,5312,0.8751363571999999 -2,1,5313,0.8671277005999999 +2,1,5313,0.8671277006 2,1,5314,0.8585494920999999 2,1,5315,0.8509913319 2,1,5316,0.8376913319 @@ -31599,14 +31599,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5318,0.8250913319 2,1,5319,0.8257913319 2,1,5320,0.8327913319 -2,1,5321,0.8411913319000001 +2,1,5321,0.8411913319 2,1,5322,0.8585377039 2,1,5323,0.8664159117999999 2,1,5324,0.8723245680999999 2,1,5325,0.8742941203 -2,1,5326,0.8782332246999999 -2,1,5327,0.8802027765999999 -2,1,5328,0.8821723288 +2,1,5326,0.8782332247 +2,1,5327,0.8802027766 +2,1,5328,0.8821723288000001 2,1,5329,0.8920200892 2,1,5330,0.8939896417000001 2,1,5331,0.8939896417000001 @@ -31614,30 +31614,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5333,0.8939896417000001 2,1,5334,0.8920200892 2,1,5335,0.8880809851 -2,1,5336,0.8821723288 +2,1,5336,0.8821723288000001 2,1,5337,0.8762636728 -2,1,5338,0.8703550161999999 +2,1,5338,0.8703550162 2,1,5339,0.8659885961999999 2,1,5340,0.8613494920999999 2,1,5341,0.8586799401999999 2,1,5342,0.8560103883 2,1,5343,0.8567103883 -2,1,5344,0.8593799401999999 +2,1,5344,0.8593799402 2,1,5345,0.8624768076999999 -2,1,5346,0.8703550161999999 +2,1,5346,0.8703550162 2,1,5347,0.8762636728 -2,1,5348,0.8802027765999999 -2,1,5349,0.8802027765999999 -2,1,5350,0.8821723288 -2,1,5351,0.8821723288 -2,1,5352,0.8841418812999998 -2,1,5353,0.8841418812999998 -2,1,5354,0.8841418812999998 +2,1,5348,0.8802027766 +2,1,5349,0.8802027766 +2,1,5350,0.8821723288000001 +2,1,5351,0.8821723288000001 +2,1,5352,0.8841418812999999 +2,1,5353,0.8841418812999999 +2,1,5354,0.8841418812999999 2,1,5355,0.8861114332 2,1,5356,0.8861114332 2,1,5357,0.8861114332 -2,1,5358,0.8841418812999998 -2,1,5359,0.8782332246999999 +2,1,5358,0.8841418812999999 +2,1,5359,0.8782332247 2,1,5360,0.8723245680999999 2,1,5361,0.8652885961999999 2,1,5362,0.8579799401999999 @@ -31652,15 +31652,15 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5371,0.8664159117999999 2,1,5372,0.8723245680999999 2,1,5373,0.8762636728 -2,1,5374,0.8782332246999999 -2,1,5375,0.8802027765999999 -2,1,5376,0.8802027765999999 -2,1,5377,0.8821723288 -2,1,5378,0.8821723288 -2,1,5379,0.8841418812999998 -2,1,5380,0.8841418812999998 -2,1,5381,0.8841418812999998 -2,1,5382,0.8802027765999999 +2,1,5374,0.8782332247 +2,1,5375,0.8802027766 +2,1,5376,0.8802027766 +2,1,5377,0.8821723288000001 +2,1,5378,0.8821723288000001 +2,1,5379,0.8841418812999999 +2,1,5380,0.8841418812999999 +2,1,5381,0.8841418812999999 +2,1,5382,0.8802027766 2,1,5383,0.8742941203 2,1,5384,0.8652885961999999 2,1,5385,0.8586799401999999 @@ -31669,26 +31669,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5388,0.8194913318999999 2,1,5389,0.8131913319 2,1,5390,0.8131913319 -2,1,5391,0.8138913319000001 -2,1,5392,0.8208913318999999 +2,1,5391,0.8138913319 +2,1,5392,0.8208913319 2,1,5393,0.8341913318999999 2,1,5394,0.8551913319 2,1,5395,0.8644463599 -2,1,5396,0.8703550161999999 +2,1,5396,0.8703550162 2,1,5397,0.8742941203 2,1,5398,0.8762636728 -2,1,5399,0.8782332246999999 -2,1,5400,0.8782332246999999 -2,1,5401,0.8841418812999998 -2,1,5402,0.8841418812999998 +2,1,5399,0.8782332247 +2,1,5400,0.8782332247 +2,1,5401,0.8841418812999999 +2,1,5402,0.8841418812999999 2,1,5403,0.8861114332 2,1,5404,0.8861114332 2,1,5405,0.8861114332 -2,1,5406,0.8841418812999998 -2,1,5407,0.8821723288 +2,1,5406,0.8841418812999999 +2,1,5407,0.8821723288000001 2,1,5408,0.8778059090999999 2,1,5409,0.8697972525 -2,1,5410,0.8644581486999998 +2,1,5410,0.8644581486999999 2,1,5411,0.8578494920999999 2,1,5412,0.8502913319 2,1,5413,0.8432913318999999 @@ -31696,24 +31696,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5415,0.8376913319 2,1,5416,0.8453913318999999 2,1,5417,0.8530913319 -2,1,5418,0.8605072557999999 -2,1,5419,0.8683854642999999 +2,1,5418,0.8605072558 +2,1,5419,0.8683854643 2,1,5420,0.8723245680999999 2,1,5421,0.8742941203 2,1,5422,0.8762636728 -2,1,5423,0.8782332246999999 -2,1,5424,0.8802027765999999 +2,1,5423,0.8782332247 +2,1,5424,0.8802027766 2,1,5425,0.8861114332 2,1,5426,0.8880809851 2,1,5427,0.8880809851 2,1,5428,0.8900505372999999 2,1,5429,0.8900505372999999 2,1,5430,0.8880809851 -2,1,5431,0.8821723288 +2,1,5431,0.8821723288000001 2,1,5432,0.8762636728 -2,1,5433,0.8692277005999999 +2,1,5433,0.8692277006 2,1,5434,0.8612190443 -2,1,5435,0.8565799401999998 +2,1,5435,0.8565799402 2,1,5436,0.8509913319 2,1,5437,0.8376913319 2,1,5438,0.8313913318999999 @@ -31721,19 +31721,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5440,0.8390913319 2,1,5441,0.8467913319 2,1,5442,0.8624768076999999 -2,1,5443,0.8703550161999999 +2,1,5443,0.8703550162 2,1,5444,0.8742941203 2,1,5445,0.8762636728 -2,1,5446,0.8802027765999999 -2,1,5447,0.8821723288 -2,1,5448,0.8841418812999998 -2,1,5449,0.8841418812999998 -2,1,5450,0.8841418812999998 +2,1,5446,0.8802027766 +2,1,5447,0.8821723288000001 +2,1,5448,0.8841418812999999 +2,1,5449,0.8841418812999999 +2,1,5450,0.8841418812999999 2,1,5451,0.8861114332 2,1,5452,0.8861114332 2,1,5453,0.8861114332 -2,1,5454,0.8841418812999998 -2,1,5455,0.8782332246999999 +2,1,5454,0.8841418812999999 +2,1,5455,0.8782332247 2,1,5456,0.8723245680999999 2,1,5457,0.8652885961999999 2,1,5458,0.8579799401999999 @@ -31748,18 +31748,18 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5467,0.8664159117999999 2,1,5468,0.8723245680999999 2,1,5469,0.8762636728 -2,1,5470,0.8782332246999999 -2,1,5471,0.8802027765999999 -2,1,5472,0.8802027765999999 +2,1,5470,0.8782332247 +2,1,5471,0.8802027766 +2,1,5472,0.8802027766 2,1,5473,0.8861114332 2,1,5474,0.8861114332 2,1,5475,0.8880809851 2,1,5476,0.8880809851 2,1,5477,0.8880809851 2,1,5478,0.8861114332 -2,1,5479,0.8802027765999999 +2,1,5479,0.8802027766 2,1,5480,0.8742941203 -2,1,5481,0.8703550161999999 +2,1,5481,0.8703550162 2,1,5482,0.8633190443 2,1,5483,0.8586799401999999 2,1,5484,0.8560103883 @@ -31771,17 +31771,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5490,0.8644463599 2,1,5491,0.8723245680999999 2,1,5492,0.8762636728 -2,1,5493,0.8782332246999999 -2,1,5494,0.8821723288 -2,1,5495,0.8841418812999998 +2,1,5493,0.8782332247 +2,1,5494,0.8821723288000001 +2,1,5495,0.8841418812999999 2,1,5496,0.8861114332 -2,1,5497,0.8841418812999998 +2,1,5497,0.8841418812999999 2,1,5498,0.8861114332 2,1,5499,0.8861114332 2,1,5500,0.8880809851 2,1,5501,0.8880809851 2,1,5502,0.8861114332 -2,1,5503,0.8802027765999999 +2,1,5503,0.8802027766 2,1,5504,0.8742941203 2,1,5505,0.8665581486999999 2,1,5506,0.8592494920999999 @@ -31792,13 +31792,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5511,0.8334913318999999 2,1,5512,0.8404913319 2,1,5513,0.8481913319 -2,1,5514,0.8605072557999999 -2,1,5515,0.8683854642999999 +2,1,5514,0.8605072558 +2,1,5515,0.8683854643 2,1,5516,0.8723245680999999 2,1,5517,0.8762636728 -2,1,5518,0.8802027765999999 -2,1,5519,0.8821723288 -2,1,5520,0.8821723288 +2,1,5518,0.8802027766 +2,1,5519,0.8821723288000001 +2,1,5520,0.8821723288000001 2,1,5521,0.8920200892 2,1,5522,0.8939896417000001 2,1,5523,0.8939896417000001 @@ -31806,37 +31806,37 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5525,0.8939896417000001 2,1,5526,0.8920200892 2,1,5527,0.8880809851 -2,1,5528,0.8821723288 +2,1,5528,0.8821723288000001 2,1,5529,0.8762636728 -2,1,5530,0.8703550161999999 +2,1,5530,0.8703550162 2,1,5531,0.8659885961999999 2,1,5532,0.8613494920999999 2,1,5533,0.8586799401999999 2,1,5534,0.8560103883 2,1,5535,0.8567103883 -2,1,5536,0.8593799401999999 +2,1,5536,0.8593799402 2,1,5537,0.8624768076999999 -2,1,5538,0.8703550161999999 +2,1,5538,0.8703550162 2,1,5539,0.8762636728 -2,1,5540,0.8802027765999999 -2,1,5541,0.8802027765999999 -2,1,5542,0.8821723288 -2,1,5543,0.8821723288 -2,1,5544,0.8841418812999998 -2,1,5545,0.8802027765999999 -2,1,5546,0.8821723288 -2,1,5547,0.8841418812999998 -2,1,5548,0.8841418812999998 -2,1,5549,0.8841418812999998 -2,1,5550,0.8821723288 +2,1,5540,0.8802027766 +2,1,5541,0.8802027766 +2,1,5542,0.8821723288000001 +2,1,5543,0.8821723288000001 +2,1,5544,0.8841418812999999 +2,1,5545,0.8802027766 +2,1,5546,0.8821723288000001 +2,1,5547,0.8841418812999999 +2,1,5548,0.8841418812999999 +2,1,5549,0.8841418812999999 +2,1,5550,0.8821723288000001 2,1,5551,0.8762636728 2,1,5552,0.8679581486999999 2,1,5553,0.8599494920999999 2,1,5554,0.8516913318999999 2,1,5555,0.8320913319 2,1,5556,0.8250913319 -2,1,5557,0.8187913318999999 -2,1,5558,0.8187913318999999 +2,1,5557,0.8187913319 +2,1,5558,0.8187913319 2,1,5559,0.8194913318999999 2,1,5560,0.8264913319 2,1,5561,0.8341913318999999 @@ -31844,42 +31844,42 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5563,0.8664159117999999 2,1,5564,0.8723245680999999 2,1,5565,0.8762636728 -2,1,5566,0.8782332246999999 -2,1,5567,0.8802027765999999 -2,1,5568,0.8821723288 +2,1,5566,0.8782332247 +2,1,5567,0.8802027766 +2,1,5568,0.8821723288000001 2,1,5569,0.8861114332 2,1,5570,0.8861114332 2,1,5571,0.8861114332 2,1,5572,0.8880809851 2,1,5573,0.8880809851 2,1,5574,0.8861114332 -2,1,5575,0.8821723288 +2,1,5575,0.8821723288000001 2,1,5576,0.8762636728 -2,1,5577,0.8703550161999999 +2,1,5577,0.8703550162 2,1,5578,0.8633190443 2,1,5579,0.8567103883 2,1,5580,0.8530913319 2,1,5581,0.8467913319 2,1,5582,0.8404913319 -2,1,5583,0.8411913319000001 +2,1,5583,0.8411913319 2,1,5584,0.8481913319 2,1,5585,0.8551913319 2,1,5586,0.8624768076999999 -2,1,5587,0.8703550161999999 +2,1,5587,0.8703550162 2,1,5588,0.8742941203 -2,1,5589,0.8782332246999999 -2,1,5590,0.8802027765999999 -2,1,5591,0.8821723288 -2,1,5592,0.8821723288 +2,1,5589,0.8782332247 +2,1,5590,0.8802027766 +2,1,5591,0.8821723288000001 +2,1,5592,0.8821723288000001 2,1,5593,0.8861114332 2,1,5594,0.8880809851 2,1,5595,0.8880809851 2,1,5596,0.8900505372999999 2,1,5597,0.8900505372999999 2,1,5598,0.8861114332 -2,1,5599,0.8821723288 +2,1,5599,0.8821723288000001 2,1,5600,0.8751363571999999 -2,1,5601,0.8671277005999999 +2,1,5601,0.8671277006 2,1,5602,0.8585494920999999 2,1,5603,0.8509913319 2,1,5604,0.8376913319 @@ -31887,23 +31887,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5606,0.8250913319 2,1,5607,0.8257913319 2,1,5608,0.8327913319 -2,1,5609,0.8411913319000001 +2,1,5609,0.8411913319 2,1,5610,0.8585377039 2,1,5611,0.8664159117999999 2,1,5612,0.8723245680999999 2,1,5613,0.8742941203 -2,1,5614,0.8782332246999999 -2,1,5615,0.8802027765999999 -2,1,5616,0.8821723288 +2,1,5614,0.8782332247 +2,1,5615,0.8802027766 +2,1,5616,0.8821723288000001 2,1,5617,0.8861114332 2,1,5618,0.8861114332 2,1,5619,0.8880809851 2,1,5620,0.8880809851 2,1,5621,0.8880809851 2,1,5622,0.8861114332 -2,1,5623,0.8802027765999999 +2,1,5623,0.8802027766 2,1,5624,0.8742941203 -2,1,5625,0.8703550161999999 +2,1,5625,0.8703550162 2,1,5626,0.8633190443 2,1,5627,0.8586799401999999 2,1,5628,0.8560103883 @@ -31915,9 +31915,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5634,0.8644463599 2,1,5635,0.8723245680999999 2,1,5636,0.8762636728 -2,1,5637,0.8782332246999999 -2,1,5638,0.8821723288 -2,1,5639,0.8841418812999998 +2,1,5637,0.8782332247 +2,1,5638,0.8821723288000001 +2,1,5639,0.8841418812999999 2,1,5640,0.8861114332 2,1,5641,0.8861114332 2,1,5642,0.8861114332 @@ -31925,31 +31925,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5644,0.8880809851 2,1,5645,0.8880809851 2,1,5646,0.8861114332 -2,1,5647,0.8821723288 +2,1,5647,0.8821723288000001 2,1,5648,0.8762636728 -2,1,5649,0.8703550161999999 +2,1,5649,0.8703550162 2,1,5650,0.8633190443 2,1,5651,0.8567103883 2,1,5652,0.8530913319 2,1,5653,0.8467913319 2,1,5654,0.8404913319 -2,1,5655,0.8411913319000001 +2,1,5655,0.8411913319 2,1,5656,0.8481913319 2,1,5657,0.8551913319 2,1,5658,0.8624768076999999 -2,1,5659,0.8703550161999999 +2,1,5659,0.8703550162 2,1,5660,0.8742941203 -2,1,5661,0.8782332246999999 -2,1,5662,0.8802027765999999 -2,1,5663,0.8821723288 -2,1,5664,0.8821723288 -2,1,5665,0.8841418812999998 +2,1,5661,0.8782332247 +2,1,5662,0.8802027766 +2,1,5663,0.8821723288000001 +2,1,5664,0.8821723288000001 +2,1,5665,0.8841418812999999 2,1,5666,0.8861114332 2,1,5667,0.8861114332 2,1,5668,0.8880809851 2,1,5669,0.8880809851 2,1,5670,0.8861114332 -2,1,5671,0.8802027765999999 +2,1,5671,0.8802027766 2,1,5672,0.8742941203 2,1,5673,0.8665581486999999 2,1,5674,0.8592494920999999 @@ -31960,13 +31960,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5679,0.8334913318999999 2,1,5680,0.8404913319 2,1,5681,0.8481913319 -2,1,5682,0.8605072557999999 -2,1,5683,0.8683854642999999 +2,1,5682,0.8605072558 +2,1,5683,0.8683854643 2,1,5684,0.8723245680999999 2,1,5685,0.8762636728 -2,1,5686,0.8802027765999999 -2,1,5687,0.8821723288 -2,1,5688,0.8821723288 +2,1,5686,0.8802027766 +2,1,5687,0.8821723288000001 +2,1,5688,0.8821723288000001 2,1,5689,0.8920200892 2,1,5690,0.8939896417000001 2,1,5691,0.8939896417000001 @@ -31974,30 +31974,30 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5693,0.8939896417000001 2,1,5694,0.8920200892 2,1,5695,0.8880809851 -2,1,5696,0.8821723288 +2,1,5696,0.8821723288000001 2,1,5697,0.8762636728 -2,1,5698,0.8703550161999999 +2,1,5698,0.8703550162 2,1,5699,0.8659885961999999 2,1,5700,0.8613494920999999 2,1,5701,0.8586799401999999 2,1,5702,0.8560103883 2,1,5703,0.8567103883 -2,1,5704,0.8593799401999999 +2,1,5704,0.8593799402 2,1,5705,0.8624768076999999 -2,1,5706,0.8703550161999999 +2,1,5706,0.8703550162 2,1,5707,0.8762636728 -2,1,5708,0.8802027765999999 -2,1,5709,0.8802027765999999 -2,1,5710,0.8821723288 -2,1,5711,0.8821723288 -2,1,5712,0.8841418812999998 -2,1,5713,0.8841418812999998 -2,1,5714,0.8841418812999998 +2,1,5708,0.8802027766 +2,1,5709,0.8802027766 +2,1,5710,0.8821723288000001 +2,1,5711,0.8821723288000001 +2,1,5712,0.8841418812999999 +2,1,5713,0.8841418812999999 +2,1,5714,0.8841418812999999 2,1,5715,0.8861114332 2,1,5716,0.8861114332 2,1,5717,0.8861114332 -2,1,5718,0.8841418812999998 -2,1,5719,0.8782332246999999 +2,1,5718,0.8841418812999999 +2,1,5719,0.8782332247 2,1,5720,0.8723245680999999 2,1,5721,0.8652885961999999 2,1,5722,0.8579799401999999 @@ -32012,44 +32012,44 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5731,0.8664159117999999 2,1,5732,0.8723245680999999 2,1,5733,0.8762636728 -2,1,5734,0.8782332246999999 -2,1,5735,0.8802027765999999 -2,1,5736,0.8802027765999999 +2,1,5734,0.8782332247 +2,1,5735,0.8802027766 +2,1,5736,0.8802027766 2,1,5737,0.8861114332 2,1,5738,0.8861114332 2,1,5739,0.8861114332 2,1,5740,0.8880809851 2,1,5741,0.8880809851 2,1,5742,0.8861114332 -2,1,5743,0.8821723288 +2,1,5743,0.8821723288000001 2,1,5744,0.8762636728 -2,1,5745,0.8703550161999999 +2,1,5745,0.8703550162 2,1,5746,0.8633190443 2,1,5747,0.8567103883 2,1,5748,0.8530913319 2,1,5749,0.8467913319 2,1,5750,0.8404913319 -2,1,5751,0.8411913319000001 +2,1,5751,0.8411913319 2,1,5752,0.8481913319 2,1,5753,0.8551913319 2,1,5754,0.8624768076999999 -2,1,5755,0.8703550161999999 +2,1,5755,0.8703550162 2,1,5756,0.8742941203 -2,1,5757,0.8782332246999999 -2,1,5758,0.8802027765999999 -2,1,5759,0.8821723288 -2,1,5760,0.8821723288 +2,1,5757,0.8782332247 +2,1,5758,0.8802027766 +2,1,5759,0.8821723288000001 +2,1,5760,0.8821723288000001 2,1,5761,0.8880809851 2,1,5762,0.8880809851 2,1,5763,0.8880809851 2,1,5764,0.8900505372999999 2,1,5765,0.8900505372999999 2,1,5766,0.8880809851 -2,1,5767,0.8841418812999998 -2,1,5768,0.8782332246999999 +2,1,5767,0.8841418812999999 +2,1,5768,0.8782332247 2,1,5769,0.8711972524999999 2,1,5770,0.8638885961999999 -2,1,5771,0.8572799401999999 +2,1,5771,0.8572799402 2,1,5772,0.8516913318999999 2,1,5773,0.8453913318999999 2,1,5774,0.8397913319 @@ -32059,17 +32059,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5778,0.8644463599 2,1,5779,0.8723245680999999 2,1,5780,0.8762636728 -2,1,5781,0.8802027765999999 -2,1,5782,0.8821723288 -2,1,5783,0.8821723288 -2,1,5784,0.8841418812999998 -2,1,5785,0.8841418812999998 -2,1,5786,0.8841418812999998 +2,1,5781,0.8802027766 +2,1,5782,0.8821723288000001 +2,1,5783,0.8821723288000001 +2,1,5784,0.8841418812999999 +2,1,5785,0.8841418812999999 +2,1,5786,0.8841418812999999 2,1,5787,0.8861114332 2,1,5788,0.8861114332 2,1,5789,0.8861114332 -2,1,5790,0.8841418812999998 -2,1,5791,0.8782332246999999 +2,1,5790,0.8841418812999999 +2,1,5791,0.8782332247 2,1,5792,0.8723245680999999 2,1,5793,0.8652885961999999 2,1,5794,0.8579799401999999 @@ -32084,19 +32084,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5803,0.8664159117999999 2,1,5804,0.8723245680999999 2,1,5805,0.8762636728 -2,1,5806,0.8782332246999999 -2,1,5807,0.8802027765999999 -2,1,5808,0.8802027765999999 -2,1,5809,0.8841418812999998 -2,1,5810,0.8841418812999998 +2,1,5806,0.8782332247 +2,1,5807,0.8802027766 +2,1,5808,0.8802027766 +2,1,5809,0.8841418812999999 +2,1,5810,0.8841418812999999 2,1,5811,0.8861114332 2,1,5812,0.8861114332 2,1,5813,0.8861114332 -2,1,5814,0.8841418812999998 -2,1,5815,0.8821723288 +2,1,5814,0.8841418812999999 +2,1,5815,0.8821723288000001 2,1,5816,0.8778059090999999 2,1,5817,0.8697972525 -2,1,5818,0.8644581486999998 +2,1,5818,0.8644581486999999 2,1,5819,0.8578494920999999 2,1,5820,0.8502913319 2,1,5821,0.8432913318999999 @@ -32104,34 +32104,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5823,0.8376913319 2,1,5824,0.8453913318999999 2,1,5825,0.8530913319 -2,1,5826,0.8605072557999999 -2,1,5827,0.8683854642999999 +2,1,5826,0.8605072558 +2,1,5827,0.8683854643 2,1,5828,0.8723245680999999 2,1,5829,0.8742941203 2,1,5830,0.8762636728 -2,1,5831,0.8782332246999999 -2,1,5832,0.8802027765999999 -2,1,5833,0.8782332246999999 -2,1,5834,0.8782332246999999 -2,1,5835,0.8802027765999999 -2,1,5836,0.8802027765999999 -2,1,5837,0.8821723288 -2,1,5838,0.8802027765999999 +2,1,5831,0.8782332247 +2,1,5832,0.8802027766 +2,1,5833,0.8782332247 +2,1,5834,0.8782332247 +2,1,5835,0.8802027766 +2,1,5836,0.8802027766 +2,1,5837,0.8821723288000001 +2,1,5838,0.8802027766 2,1,5839,0.8742941203 2,1,5840,0.8645885962 -2,1,5841,0.8565799401999998 +2,1,5841,0.8565799402 2,1,5842,0.8439913319 2,1,5843,0.8243913319 2,1,5844,0.8110913319 2,1,5845,0.8047913319 2,1,5846,0.8047913319 -2,1,5847,0.8117913319000001 -2,1,5848,0.8187913318999999 +2,1,5847,0.8117913319 +2,1,5848,0.8187913319 2,1,5849,0.8334913318999999 2,1,5850,0.8581103883 2,1,5851,0.8644463599 -2,1,5852,0.8683854642999999 -2,1,5853,0.8703550161999999 +2,1,5852,0.8683854643 +2,1,5853,0.8703550162 2,1,5854,0.8723245680999999 2,1,5855,0.8762636728 2,1,5856,0.8762636728 @@ -32141,11 +32141,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5860,0.8742941203 2,1,5861,0.8742941203 2,1,5862,0.8742941203 -2,1,5863,0.8703550161999999 +2,1,5863,0.8703550162 2,1,5864,0.8644463599 2,1,5865,0.8574103882999999 2,1,5866,0.8404913319 -2,1,5867,0.8208913318999999 +2,1,5867,0.8208913319 2,1,5868,0.8145913319 2,1,5869,0.8089913318999999 2,1,5870,0.8026913319 @@ -32155,8 +32155,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5874,0.8585377039 2,1,5875,0.8624768076999999 2,1,5876,0.8664159117999999 -2,1,5877,0.8683854642999999 -2,1,5878,0.8703550161999999 +2,1,5877,0.8683854643 +2,1,5878,0.8703550162 2,1,5879,0.8723245680999999 2,1,5880,0.8723245680999999 2,1,5881,0.8742941203 @@ -32172,100 +32172,100 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5891,0.8397913319 2,1,5892,0.8327913319 2,1,5893,0.8264913319 -2,1,5894,0.8208913318999999 +2,1,5894,0.8208913319 2,1,5895,0.8222913318999999 2,1,5896,0.8292913318999999 2,1,5897,0.8493186475 2,1,5898,0.8624768076999999 2,1,5899,0.8664159117999999 -2,1,5900,0.8703550161999999 -2,1,5901,0.8703550161999999 -2,1,5902,0.8703550161999999 -2,1,5903,0.8703550161999999 +2,1,5900,0.8703550162 +2,1,5901,0.8703550162 +2,1,5902,0.8703550162 +2,1,5903,0.8703550162 2,1,5904,0.8723245680999999 -2,1,5905,0.8802027765999999 -2,1,5906,0.8802027765999999 -2,1,5907,0.8802027765999999 -2,1,5908,0.8821723288 -2,1,5909,0.8821723288 -2,1,5910,0.8802027765999999 +2,1,5905,0.8802027766 +2,1,5906,0.8802027766 +2,1,5907,0.8802027766 +2,1,5908,0.8821723288000001 +2,1,5909,0.8821723288000001 +2,1,5910,0.8802027766 2,1,5911,0.8762636728 2,1,5912,0.8699277005999999 2,1,5913,0.8599494920999999 2,1,5914,0.8516913318999999 2,1,5915,0.8320913319 -2,1,5916,0.8187913318999999 +2,1,5916,0.8187913319 2,1,5917,0.8124913319 2,1,5918,0.8124913319 2,1,5919,0.8194913318999999 2,1,5920,0.8264913319 2,1,5921,0.8404913319 -2,1,5922,0.8605072557999999 -2,1,5923,0.8683854642999999 +2,1,5922,0.8605072558 +2,1,5923,0.8683854643 2,1,5924,0.8723245680999999 2,1,5925,0.8742941203 2,1,5926,0.8762636728 2,1,5927,0.8762636728 -2,1,5928,0.8782332246999999 -2,1,5929,0.8802027765999999 -2,1,5930,0.8802027765999999 -2,1,5931,0.8802027765999999 -2,1,5932,0.8821723288 -2,1,5933,0.8821723288 -2,1,5934,0.8802027765999999 +2,1,5928,0.8782332247 +2,1,5929,0.8802027766 +2,1,5930,0.8802027766 +2,1,5931,0.8802027766 +2,1,5932,0.8821723288000001 +2,1,5933,0.8821723288000001 +2,1,5934,0.8802027766 2,1,5935,0.8762636728 2,1,5936,0.8699277005999999 2,1,5937,0.8599494920999999 2,1,5938,0.8516913318999999 2,1,5939,0.8320913319 -2,1,5940,0.8187913318999999 +2,1,5940,0.8187913319 2,1,5941,0.8124913319 2,1,5942,0.8124913319 2,1,5943,0.8194913318999999 2,1,5944,0.8264913319 2,1,5945,0.8404913319 -2,1,5946,0.8605072557999999 -2,1,5947,0.8683854642999999 +2,1,5946,0.8605072558 +2,1,5947,0.8683854643 2,1,5948,0.8723245680999999 2,1,5949,0.8742941203 2,1,5950,0.8762636728 2,1,5951,0.8762636728 -2,1,5952,0.8782332246999999 -2,1,5953,0.8802027765999999 -2,1,5954,0.8802027765999999 -2,1,5955,0.8802027765999999 -2,1,5956,0.8821723288 -2,1,5957,0.8821723288 -2,1,5958,0.8802027765999999 +2,1,5952,0.8782332247 +2,1,5953,0.8802027766 +2,1,5954,0.8802027766 +2,1,5955,0.8802027766 +2,1,5956,0.8821723288000001 +2,1,5957,0.8821723288000001 +2,1,5958,0.8802027766 2,1,5959,0.8762636728 2,1,5960,0.8699277005999999 2,1,5961,0.8599494920999999 2,1,5962,0.8516913318999999 2,1,5963,0.8320913319 -2,1,5964,0.8187913318999999 +2,1,5964,0.8187913319 2,1,5965,0.8124913319 2,1,5966,0.8124913319 2,1,5967,0.8194913318999999 2,1,5968,0.8264913319 2,1,5969,0.8404913319 -2,1,5970,0.8605072557999999 -2,1,5971,0.8683854642999999 +2,1,5970,0.8605072558 +2,1,5971,0.8683854643 2,1,5972,0.8723245680999999 2,1,5973,0.8742941203 2,1,5974,0.8762636728 2,1,5975,0.8762636728 -2,1,5976,0.8782332246999999 +2,1,5976,0.8782332247 2,1,5977,0.8723245680999999 2,1,5978,0.8723245680999999 2,1,5979,0.8742941203 2,1,5980,0.8742941203 2,1,5981,0.8742941203 2,1,5982,0.8742941203 -2,1,5983,0.8703550161999999 +2,1,5983,0.8703550162 2,1,5984,0.8644463599 2,1,5985,0.8574103882999999 2,1,5986,0.8404913319 -2,1,5987,0.8208913318999999 +2,1,5987,0.8208913319 2,1,5988,0.8145913319 2,1,5989,0.8089913318999999 2,1,5990,0.8026913319 @@ -32275,8 +32275,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,5994,0.8585377039 2,1,5995,0.8624768076999999 2,1,5996,0.8664159117999999 -2,1,5997,0.8683854642999999 -2,1,5998,0.8703550161999999 +2,1,5997,0.8683854643 +2,1,5998,0.8703550162 2,1,5999,0.8723245680999999 2,1,6000,0.8723245680999999 2,1,6001,0.8742941203 @@ -32292,16 +32292,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6011,0.8397913319 2,1,6012,0.8327913319 2,1,6013,0.8264913319 -2,1,6014,0.8208913318999999 +2,1,6014,0.8208913319 2,1,6015,0.8222913318999999 2,1,6016,0.8292913318999999 2,1,6017,0.8493186475 2,1,6018,0.8624768076999999 2,1,6019,0.8664159117999999 -2,1,6020,0.8703550161999999 -2,1,6021,0.8703550161999999 -2,1,6022,0.8703550161999999 -2,1,6023,0.8703550161999999 +2,1,6020,0.8703550162 +2,1,6021,0.8703550162 +2,1,6022,0.8703550162 +2,1,6023,0.8703550162 2,1,6024,0.8723245680999999 2,1,6025,0.8723245680999999 2,1,6026,0.8723245680999999 @@ -32309,11 +32309,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6028,0.8742941203 2,1,6029,0.8742941203 2,1,6030,0.8742941203 -2,1,6031,0.8703550161999999 +2,1,6031,0.8703550162 2,1,6032,0.8644463599 2,1,6033,0.8574103882999999 2,1,6034,0.8404913319 -2,1,6035,0.8208913318999999 +2,1,6035,0.8208913319 2,1,6036,0.8145913319 2,1,6037,0.8089913318999999 2,1,6038,0.8026913319 @@ -32323,8 +32323,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6042,0.8585377039 2,1,6043,0.8624768076999999 2,1,6044,0.8664159117999999 -2,1,6045,0.8683854642999999 -2,1,6046,0.8703550161999999 +2,1,6045,0.8683854643 +2,1,6046,0.8703550162 2,1,6047,0.8723245680999999 2,1,6048,0.8723245680999999 2,1,6049,0.8723245680999999 @@ -32333,11 +32333,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6052,0.8742941203 2,1,6053,0.8742941203 2,1,6054,0.8742941203 -2,1,6055,0.8703550161999999 +2,1,6055,0.8703550162 2,1,6056,0.8644463599 2,1,6057,0.8574103882999999 2,1,6058,0.8404913319 -2,1,6059,0.8208913318999999 +2,1,6059,0.8208913319 2,1,6060,0.8145913319 2,1,6061,0.8089913318999999 2,1,6062,0.8026913319 @@ -32347,93 +32347,93 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6066,0.8585377039 2,1,6067,0.8624768076999999 2,1,6068,0.8664159117999999 -2,1,6069,0.8683854642999999 -2,1,6070,0.8703550161999999 +2,1,6069,0.8683854643 +2,1,6070,0.8703550162 2,1,6071,0.8723245680999999 2,1,6072,0.8723245680999999 -2,1,6073,0.8802027765999999 -2,1,6074,0.8802027765999999 -2,1,6075,0.8802027765999999 -2,1,6076,0.8821723288 -2,1,6077,0.8821723288 -2,1,6078,0.8802027765999999 +2,1,6073,0.8802027766 +2,1,6074,0.8802027766 +2,1,6075,0.8802027766 +2,1,6076,0.8821723288000001 +2,1,6077,0.8821723288000001 +2,1,6078,0.8802027766 2,1,6079,0.8762636728 2,1,6080,0.8699277005999999 2,1,6081,0.8599494920999999 2,1,6082,0.8516913318999999 2,1,6083,0.8320913319 -2,1,6084,0.8187913318999999 +2,1,6084,0.8187913319 2,1,6085,0.8124913319 2,1,6086,0.8124913319 2,1,6087,0.8194913318999999 2,1,6088,0.8264913319 2,1,6089,0.8404913319 -2,1,6090,0.8605072557999999 -2,1,6091,0.8683854642999999 +2,1,6090,0.8605072558 +2,1,6091,0.8683854643 2,1,6092,0.8723245680999999 2,1,6093,0.8742941203 2,1,6094,0.8762636728 2,1,6095,0.8762636728 -2,1,6096,0.8782332246999999 -2,1,6097,0.8782332246999999 -2,1,6098,0.8782332246999999 -2,1,6099,0.8802027765999999 -2,1,6100,0.8802027765999999 -2,1,6101,0.8821723288 -2,1,6102,0.8802027765999999 +2,1,6096,0.8782332247 +2,1,6097,0.8782332247 +2,1,6098,0.8782332247 +2,1,6099,0.8802027766 +2,1,6100,0.8802027766 +2,1,6101,0.8821723288000001 +2,1,6102,0.8802027766 2,1,6103,0.8742941203 2,1,6104,0.8645885962 -2,1,6105,0.8565799401999998 +2,1,6105,0.8565799402 2,1,6106,0.8439913319 2,1,6107,0.8243913319 2,1,6108,0.8110913319 2,1,6109,0.8047913319 2,1,6110,0.8047913319 -2,1,6111,0.8117913319000001 -2,1,6112,0.8187913318999999 +2,1,6111,0.8117913319 +2,1,6112,0.8187913319 2,1,6113,0.8334913318999999 2,1,6114,0.8581103883 2,1,6115,0.8644463599 -2,1,6116,0.8683854642999999 -2,1,6117,0.8703550161999999 +2,1,6116,0.8683854643 +2,1,6117,0.8703550162 2,1,6118,0.8723245680999999 2,1,6119,0.8762636728 2,1,6120,0.8762636728 -2,1,6121,0.8802027765999999 -2,1,6122,0.8802027765999999 -2,1,6123,0.8802027765999999 -2,1,6124,0.8821723288 -2,1,6125,0.8821723288 -2,1,6126,0.8802027765999999 +2,1,6121,0.8802027766 +2,1,6122,0.8802027766 +2,1,6123,0.8802027766 +2,1,6124,0.8821723288000001 +2,1,6125,0.8821723288000001 +2,1,6126,0.8802027766 2,1,6127,0.8762636728 2,1,6128,0.8699277005999999 2,1,6129,0.8599494920999999 2,1,6130,0.8516913318999999 2,1,6131,0.8320913319 -2,1,6132,0.8187913318999999 +2,1,6132,0.8187913319 2,1,6133,0.8124913319 2,1,6134,0.8124913319 2,1,6135,0.8194913318999999 2,1,6136,0.8264913319 2,1,6137,0.8404913319 -2,1,6138,0.8605072557999999 -2,1,6139,0.8683854642999999 +2,1,6138,0.8605072558 +2,1,6139,0.8683854643 2,1,6140,0.8723245680999999 2,1,6141,0.8742941203 2,1,6142,0.8762636728 2,1,6143,0.8762636728 -2,1,6144,0.8782332246999999 +2,1,6144,0.8782332247 2,1,6145,0.8723245680999999 2,1,6146,0.8723245680999999 2,1,6147,0.8742941203 2,1,6148,0.8742941203 2,1,6149,0.8742941203 2,1,6150,0.8742941203 -2,1,6151,0.8703550161999999 +2,1,6151,0.8703550162 2,1,6152,0.8644463599 2,1,6153,0.8574103882999999 2,1,6154,0.8404913319 -2,1,6155,0.8208913318999999 +2,1,6155,0.8208913319 2,1,6156,0.8145913319 2,1,6157,0.8089913318999999 2,1,6158,0.8026913319 @@ -32443,8 +32443,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6162,0.8585377039 2,1,6163,0.8624768076999999 2,1,6164,0.8664159117999999 -2,1,6165,0.8683854642999999 -2,1,6166,0.8703550161999999 +2,1,6165,0.8683854643 +2,1,6166,0.8703550162 2,1,6167,0.8723245680999999 2,1,6168,0.8723245680999999 2,1,6169,0.8742941203 @@ -32460,16 +32460,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6179,0.8397913319 2,1,6180,0.8327913319 2,1,6181,0.8264913319 -2,1,6182,0.8208913318999999 +2,1,6182,0.8208913319 2,1,6183,0.8222913318999999 2,1,6184,0.8292913318999999 2,1,6185,0.8493186475 2,1,6186,0.8624768076999999 2,1,6187,0.8664159117999999 -2,1,6188,0.8703550161999999 -2,1,6189,0.8703550161999999 -2,1,6190,0.8703550161999999 -2,1,6191,0.8703550161999999 +2,1,6188,0.8703550162 +2,1,6189,0.8703550162 +2,1,6190,0.8703550162 +2,1,6191,0.8703550162 2,1,6192,0.8723245680999999 2,1,6193,0.8723245680999999 2,1,6194,0.8723245680999999 @@ -32477,11 +32477,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6196,0.8742941203 2,1,6197,0.8742941203 2,1,6198,0.8742941203 -2,1,6199,0.8703550161999999 +2,1,6199,0.8703550162 2,1,6200,0.8644463599 2,1,6201,0.8574103882999999 2,1,6202,0.8404913319 -2,1,6203,0.8208913318999999 +2,1,6203,0.8208913319 2,1,6204,0.8145913319 2,1,6205,0.8089913318999999 2,1,6206,0.8026913319 @@ -32491,8 +32491,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6210,0.8585377039 2,1,6211,0.8624768076999999 2,1,6212,0.8664159117999999 -2,1,6213,0.8683854642999999 -2,1,6214,0.8703550161999999 +2,1,6213,0.8683854643 +2,1,6214,0.8703550162 2,1,6215,0.8723245680999999 2,1,6216,0.8723245680999999 2,1,6217,0.8723245680999999 @@ -32501,11 +32501,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6220,0.8742941203 2,1,6221,0.8742941203 2,1,6222,0.8742941203 -2,1,6223,0.8703550161999999 +2,1,6223,0.8703550162 2,1,6224,0.8644463599 2,1,6225,0.8574103882999999 2,1,6226,0.8404913319 -2,1,6227,0.8208913318999999 +2,1,6227,0.8208913319 2,1,6228,0.8145913319 2,1,6229,0.8089913318999999 2,1,6230,0.8026913319 @@ -32515,31 +32515,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6234,0.8585377039 2,1,6235,0.8624768076999999 2,1,6236,0.8664159117999999 -2,1,6237,0.8683854642999999 -2,1,6238,0.8703550161999999 +2,1,6237,0.8683854643 +2,1,6238,0.8703550162 2,1,6239,0.8723245680999999 2,1,6240,0.8723245680999999 -2,1,6241,0.8782332246999999 -2,1,6242,0.8782332246999999 -2,1,6243,0.8802027765999999 -2,1,6244,0.8802027765999999 -2,1,6245,0.8821723288 -2,1,6246,0.8802027765999999 +2,1,6241,0.8782332247 +2,1,6242,0.8782332247 +2,1,6243,0.8802027766 +2,1,6244,0.8802027766 +2,1,6245,0.8821723288000001 +2,1,6246,0.8802027766 2,1,6247,0.8742941203 2,1,6248,0.8645885962 -2,1,6249,0.8565799401999998 +2,1,6249,0.8565799402 2,1,6250,0.8439913319 2,1,6251,0.8243913319 2,1,6252,0.8110913319 2,1,6253,0.8047913319 2,1,6254,0.8047913319 -2,1,6255,0.8117913319000001 -2,1,6256,0.8187913318999999 +2,1,6255,0.8117913319 +2,1,6256,0.8187913319 2,1,6257,0.8334913318999999 2,1,6258,0.8581103883 2,1,6259,0.8644463599 -2,1,6260,0.8683854642999999 -2,1,6261,0.8703550161999999 +2,1,6260,0.8683854643 +2,1,6261,0.8703550162 2,1,6262,0.8723245680999999 2,1,6263,0.8762636728 2,1,6264,0.8762636728 @@ -32556,16 +32556,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6275,0.8397913319 2,1,6276,0.8327913319 2,1,6277,0.8264913319 -2,1,6278,0.8208913318999999 +2,1,6278,0.8208913319 2,1,6279,0.8222913318999999 2,1,6280,0.8292913318999999 2,1,6281,0.8493186475 2,1,6282,0.8624768076999999 2,1,6283,0.8664159117999999 -2,1,6284,0.8703550161999999 -2,1,6285,0.8703550161999999 -2,1,6286,0.8703550161999999 -2,1,6287,0.8703550161999999 +2,1,6284,0.8703550162 +2,1,6285,0.8703550162 +2,1,6286,0.8703550162 +2,1,6287,0.8703550162 2,1,6288,0.8723245680999999 2,1,6289,0.8723245680999999 2,1,6290,0.8723245680999999 @@ -32573,11 +32573,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6292,0.8742941203 2,1,6293,0.8742941203 2,1,6294,0.8742941203 -2,1,6295,0.8703550161999999 +2,1,6295,0.8703550162 2,1,6296,0.8644463599 2,1,6297,0.8574103882999999 2,1,6298,0.8404913319 -2,1,6299,0.8208913318999999 +2,1,6299,0.8208913319 2,1,6300,0.8145913319 2,1,6301,0.8089913318999999 2,1,6302,0.8026913319 @@ -32587,8 +32587,8 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6306,0.8585377039 2,1,6307,0.8624768076999999 2,1,6308,0.8664159117999999 -2,1,6309,0.8683854642999999 -2,1,6310,0.8703550161999999 +2,1,6309,0.8683854643 +2,1,6310,0.8703550162 2,1,6311,0.8723245680999999 2,1,6312,0.8723245680999999 2,1,6313,0.8742941203 @@ -32604,16 +32604,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6323,0.8397913319 2,1,6324,0.8327913319 2,1,6325,0.8264913319 -2,1,6326,0.8208913318999999 +2,1,6326,0.8208913319 2,1,6327,0.8222913318999999 2,1,6328,0.8292913318999999 2,1,6329,0.8493186475 2,1,6330,0.8624768076999999 2,1,6331,0.8664159117999999 -2,1,6332,0.8703550161999999 -2,1,6333,0.8703550161999999 -2,1,6334,0.8703550161999999 -2,1,6335,0.8703550161999999 +2,1,6332,0.8703550162 +2,1,6333,0.8703550162 +2,1,6334,0.8703550162 +2,1,6335,0.8703550162 2,1,6336,0.8723245680999999 2,1,6337,0.8742941203 2,1,6338,0.8742941203 @@ -32628,23 +32628,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6347,0.8397913319 2,1,6348,0.8327913319 2,1,6349,0.8264913319 -2,1,6350,0.8208913318999999 +2,1,6350,0.8208913319 2,1,6351,0.8222913318999999 2,1,6352,0.8292913318999999 2,1,6353,0.8493186475 2,1,6354,0.8624768076999999 2,1,6355,0.8664159117999999 -2,1,6356,0.8703550161999999 -2,1,6357,0.8703550161999999 -2,1,6358,0.8703550161999999 -2,1,6359,0.8703550161999999 +2,1,6356,0.8703550162 +2,1,6357,0.8703550162 +2,1,6358,0.8703550162 +2,1,6359,0.8703550162 2,1,6360,0.8723245680999999 -2,1,6361,0.8802027765999999 -2,1,6362,0.8821723288 -2,1,6363,0.8821723288 -2,1,6364,0.8821723288 -2,1,6365,0.8841418812999998 -2,1,6366,0.8821723288 +2,1,6361,0.8802027766 +2,1,6362,0.8821723288000001 +2,1,6363,0.8821723288000001 +2,1,6364,0.8821723288000001 +2,1,6365,0.8841418812999999 +2,1,6366,0.8821723288000001 2,1,6367,0.8762636728 2,1,6368,0.8699277005999999 2,1,6369,0.8599494920999999 @@ -32654,26 +32654,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6373,0.8124913319 2,1,6374,0.8124913319 2,1,6375,0.8131913319 -2,1,6376,0.8201913318999998 -2,1,6377,0.8411913319000001 -2,1,6378,0.8605072557999999 -2,1,6379,0.8683854642999999 +2,1,6376,0.8201913318999999 +2,1,6377,0.8411913319 +2,1,6378,0.8605072558 +2,1,6379,0.8683854643 2,1,6380,0.8723245680999999 2,1,6381,0.8762636728 -2,1,6382,0.8782332246999999 -2,1,6383,0.8782332246999999 -2,1,6384,0.8802027765999999 +2,1,6382,0.8782332247 +2,1,6383,0.8782332247 +2,1,6384,0.8802027766 2,1,6385,0.8723245680999999 2,1,6386,0.8723245680999999 2,1,6387,0.8742941203 2,1,6388,0.8742941203 2,1,6389,0.8742941203 2,1,6390,0.8742941203 -2,1,6391,0.8703550161999999 +2,1,6391,0.8703550162 2,1,6392,0.8644463599 2,1,6393,0.8574103882999999 2,1,6394,0.8404913319 -2,1,6395,0.8208913318999999 +2,1,6395,0.8208913319 2,1,6396,0.8145913319 2,1,6397,0.8089913318999999 2,1,6398,0.8026913319 @@ -32683,34 +32683,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6402,0.8585377039 2,1,6403,0.8624768076999999 2,1,6404,0.8664159117999999 -2,1,6405,0.8683854642999999 -2,1,6406,0.8703550161999999 +2,1,6405,0.8683854643 +2,1,6406,0.8703550162 2,1,6407,0.8723245680999999 2,1,6408,0.8723245680999999 -2,1,6409,0.8802027765999999 -2,1,6410,0.8802027765999999 -2,1,6411,0.8802027765999999 -2,1,6412,0.8821723288 -2,1,6413,0.8821723288 -2,1,6414,0.8802027765999999 +2,1,6409,0.8802027766 +2,1,6410,0.8802027766 +2,1,6411,0.8802027766 +2,1,6412,0.8821723288000001 +2,1,6413,0.8821723288000001 +2,1,6414,0.8802027766 2,1,6415,0.8762636728 2,1,6416,0.8699277005999999 2,1,6417,0.8599494920999999 2,1,6418,0.8516913318999999 2,1,6419,0.8320913319 -2,1,6420,0.8187913318999999 +2,1,6420,0.8187913319 2,1,6421,0.8124913319 2,1,6422,0.8124913319 2,1,6423,0.8194913318999999 2,1,6424,0.8264913319 2,1,6425,0.8404913319 -2,1,6426,0.8605072557999999 -2,1,6427,0.8683854642999999 +2,1,6426,0.8605072558 +2,1,6427,0.8683854643 2,1,6428,0.8723245680999999 2,1,6429,0.8742941203 2,1,6430,0.8762636728 2,1,6431,0.8762636728 -2,1,6432,0.8782332246999999 +2,1,6432,0.8782332247 2,1,6433,0.8742941203 2,1,6434,0.8742941203 2,1,6435,0.8762636728 @@ -32724,16 +32724,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6443,0.8397913319 2,1,6444,0.8327913319 2,1,6445,0.8264913319 -2,1,6446,0.8208913318999999 +2,1,6446,0.8208913319 2,1,6447,0.8222913318999999 2,1,6448,0.8292913318999999 2,1,6449,0.8493186475 2,1,6450,0.8624768076999999 2,1,6451,0.8664159117999999 -2,1,6452,0.8703550161999999 -2,1,6453,0.8703550161999999 -2,1,6454,0.8703550161999999 -2,1,6455,0.8703550161999999 +2,1,6452,0.8703550162 +2,1,6453,0.8703550162 +2,1,6454,0.8703550162 +2,1,6455,0.8703550162 2,1,6456,0.8723245680999999 2,1,6457,0.8723245680999999 2,1,6458,0.8723245680999999 @@ -32741,11 +32741,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6460,0.8742941203 2,1,6461,0.8742941203 2,1,6462,0.8742941203 -2,1,6463,0.8703550161999999 +2,1,6463,0.8703550162 2,1,6464,0.8644463599 2,1,6465,0.8574103882999999 2,1,6466,0.8404913319 -2,1,6467,0.8208913318999999 +2,1,6467,0.8208913319 2,1,6468,0.8145913319 2,1,6469,0.8089913318999999 2,1,6470,0.8026913319 @@ -32755,16 +32755,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6474,0.8585377039 2,1,6475,0.8624768076999999 2,1,6476,0.8664159117999999 -2,1,6477,0.8683854642999999 -2,1,6478,0.8703550161999999 +2,1,6477,0.8683854643 +2,1,6478,0.8703550162 2,1,6479,0.8723245680999999 2,1,6480,0.8723245680999999 -2,1,6481,0.8802027765999999 -2,1,6482,0.8821723288 -2,1,6483,0.8821723288 -2,1,6484,0.8821723288 -2,1,6485,0.8841418812999998 -2,1,6486,0.8821723288 +2,1,6481,0.8802027766 +2,1,6482,0.8821723288000001 +2,1,6483,0.8821723288000001 +2,1,6484,0.8821723288000001 +2,1,6485,0.8841418812999999 +2,1,6486,0.8821723288000001 2,1,6487,0.8762636728 2,1,6488,0.8699277005999999 2,1,6489,0.8599494920999999 @@ -32774,26 +32774,26 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6493,0.8124913319 2,1,6494,0.8124913319 2,1,6495,0.8131913319 -2,1,6496,0.8201913318999998 -2,1,6497,0.8411913319000001 -2,1,6498,0.8605072557999999 -2,1,6499,0.8683854642999999 +2,1,6496,0.8201913318999999 +2,1,6497,0.8411913319 +2,1,6498,0.8605072558 +2,1,6499,0.8683854643 2,1,6500,0.8723245680999999 2,1,6501,0.8762636728 -2,1,6502,0.8782332246999999 -2,1,6503,0.8782332246999999 -2,1,6504,0.8802027765999999 +2,1,6502,0.8782332247 +2,1,6503,0.8782332247 +2,1,6504,0.8802027766 2,1,6505,0.8723245680999999 2,1,6506,0.8723245680999999 2,1,6507,0.8742941203 2,1,6508,0.8742941203 2,1,6509,0.8742941203 2,1,6510,0.8742941203 -2,1,6511,0.8703550161999999 +2,1,6511,0.8703550162 2,1,6512,0.8644463599 2,1,6513,0.8574103882999999 2,1,6514,0.8404913319 -2,1,6515,0.8208913318999999 +2,1,6515,0.8208913319 2,1,6516,0.8145913319 2,1,6517,0.8089913318999999 2,1,6518,0.8026913319 @@ -32803,31 +32803,31 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6522,0.8585377039 2,1,6523,0.8624768076999999 2,1,6524,0.8664159117999999 -2,1,6525,0.8683854642999999 -2,1,6526,0.8703550161999999 +2,1,6525,0.8683854643 +2,1,6526,0.8703550162 2,1,6527,0.8723245680999999 2,1,6528,0.8723245680999999 -2,1,6529,0.8782332246999999 -2,1,6530,0.8782332246999999 -2,1,6531,0.8802027765999999 -2,1,6532,0.8802027765999999 -2,1,6533,0.8821723288 -2,1,6534,0.8802027765999999 +2,1,6529,0.8782332247 +2,1,6530,0.8782332247 +2,1,6531,0.8802027766 +2,1,6532,0.8802027766 +2,1,6533,0.8821723288000001 +2,1,6534,0.8802027766 2,1,6535,0.8742941203 2,1,6536,0.8645885962 -2,1,6537,0.8565799401999998 +2,1,6537,0.8565799402 2,1,6538,0.8439913319 2,1,6539,0.8243913319 2,1,6540,0.8110913319 2,1,6541,0.8047913319 2,1,6542,0.8047913319 -2,1,6543,0.8117913319000001 -2,1,6544,0.8187913318999999 +2,1,6543,0.8117913319 +2,1,6544,0.8187913319 2,1,6545,0.8334913318999999 2,1,6546,0.8581103883 2,1,6547,0.8644463599 -2,1,6548,0.8683854642999999 -2,1,6549,0.8703550161999999 +2,1,6548,0.8683854643 +2,1,6549,0.8703550162 2,1,6550,0.8723245680999999 2,1,6551,0.8762636728 2,1,6552,0.8762636728 @@ -32835,10 +32835,10 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6554,0.8742941203 2,1,6555,0.8762636728 2,1,6556,0.8762636728 -2,1,6557,0.8782332246999999 -2,1,6558,0.8782332246999999 +2,1,6557,0.8782332247 +2,1,6558,0.8782332247 2,1,6559,0.8742941203 -2,1,6560,0.8683854642999999 +2,1,6560,0.8683854643 2,1,6561,0.8620494920999999 2,1,6562,0.8544913318999999 2,1,6563,0.8474913319 @@ -32850,19 +32850,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6569,0.8556186474999999 2,1,6570,0.8624768076999999 2,1,6571,0.8664159117999999 -2,1,6572,0.8683854642999999 -2,1,6573,0.8703550161999999 +2,1,6572,0.8683854643 +2,1,6573,0.8703550162 2,1,6574,0.8723245680999999 2,1,6575,0.8723245680999999 2,1,6576,0.8723245680999999 -2,1,6577,0.8841418812999998 -2,1,6578,0.8841418812999998 +2,1,6577,0.8841418812999999 +2,1,6578,0.8841418812999999 2,1,6579,0.8861114332 2,1,6580,0.8880809851 2,1,6581,0.8880809851 2,1,6582,0.8880809851 2,1,6583,0.8861114332 -2,1,6584,0.8821723288 +2,1,6584,0.8821723288000001 2,1,6585,0.8762636728 2,1,6586,0.8699277005999999 2,1,6587,0.8652885961999999 @@ -32870,23 +32870,23 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6589,0.8586799401999999 2,1,6590,0.8574103882999999 2,1,6591,0.8581103883 -2,1,6592,0.8605072557999999 +2,1,6592,0.8605072558 2,1,6593,0.8664159117999999 2,1,6594,0.8723245680999999 2,1,6595,0.8762636728 -2,1,6596,0.8802027765999999 -2,1,6597,0.8841418812999998 +2,1,6596,0.8802027766 +2,1,6597,0.8841418812999999 2,1,6598,0.8861114332 2,1,6599,0.8880809851 2,1,6600,0.8900505372999999 -2,1,6601,0.8841418812999998 -2,1,6602,0.8841418812999998 +2,1,6601,0.8841418812999999 +2,1,6602,0.8841418812999999 2,1,6603,0.8861114332 2,1,6604,0.8880809851 2,1,6605,0.8880809851 2,1,6606,0.8880809851 2,1,6607,0.8861114332 -2,1,6608,0.8821723288 +2,1,6608,0.8821723288000001 2,1,6609,0.8762636728 2,1,6610,0.8699277005999999 2,1,6611,0.8652885961999999 @@ -32894,71 +32894,71 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6613,0.8586799401999999 2,1,6614,0.8574103882999999 2,1,6615,0.8581103883 -2,1,6616,0.8605072557999999 +2,1,6616,0.8605072558 2,1,6617,0.8664159117999999 2,1,6618,0.8723245680999999 2,1,6619,0.8762636728 -2,1,6620,0.8802027765999999 -2,1,6621,0.8841418812999998 +2,1,6620,0.8802027766 +2,1,6621,0.8841418812999999 2,1,6622,0.8861114332 2,1,6623,0.8880809851 2,1,6624,0.8900505372999999 2,1,6625,0.8762636728 -2,1,6626,0.8782332246999999 -2,1,6627,0.8802027765999999 -2,1,6628,0.8802027765999999 -2,1,6629,0.8821723288 -2,1,6630,0.8821723288 -2,1,6631,0.8782332246999999 +2,1,6626,0.8782332247 +2,1,6627,0.8802027766 +2,1,6628,0.8802027766 +2,1,6629,0.8821723288000001 +2,1,6630,0.8821723288000001 +2,1,6631,0.8782332247 2,1,6632,0.8742941203 -2,1,6633,0.8683854642999999 +2,1,6633,0.8683854643 2,1,6634,0.8644463599 -2,1,6635,0.8605072557999999 +2,1,6635,0.8605072558 2,1,6636,0.8585377039 2,1,6637,0.8556186474999999 2,1,6638,0.8556186474999999 2,1,6639,0.8585377039 -2,1,6640,0.8605072557999999 +2,1,6640,0.8605072558 2,1,6641,0.8664159117999999 -2,1,6642,0.8703550161999999 +2,1,6642,0.8703550162 2,1,6643,0.8742941203 -2,1,6644,0.8782332246999999 -2,1,6645,0.8802027765999999 -2,1,6646,0.8821723288 -2,1,6647,0.8841418812999998 +2,1,6644,0.8782332247 +2,1,6645,0.8802027766 +2,1,6646,0.8821723288000001 +2,1,6647,0.8841418812999999 2,1,6648,0.8861114332 2,1,6649,0.8762636728 -2,1,6650,0.8782332246999999 -2,1,6651,0.8802027765999999 -2,1,6652,0.8802027765999999 -2,1,6653,0.8821723288 -2,1,6654,0.8821723288 -2,1,6655,0.8782332246999999 +2,1,6650,0.8782332247 +2,1,6651,0.8802027766 +2,1,6652,0.8802027766 +2,1,6653,0.8821723288000001 +2,1,6654,0.8821723288000001 +2,1,6655,0.8782332247 2,1,6656,0.8742941203 -2,1,6657,0.8683854642999999 +2,1,6657,0.8683854643 2,1,6658,0.8644463599 -2,1,6659,0.8605072557999999 +2,1,6659,0.8605072558 2,1,6660,0.8585377039 2,1,6661,0.8556186474999999 2,1,6662,0.8556186474999999 2,1,6663,0.8585377039 -2,1,6664,0.8605072557999999 +2,1,6664,0.8605072558 2,1,6665,0.8664159117999999 -2,1,6666,0.8703550161999999 +2,1,6666,0.8703550162 2,1,6667,0.8742941203 -2,1,6668,0.8782332246999999 -2,1,6669,0.8802027765999999 -2,1,6670,0.8821723288 -2,1,6671,0.8841418812999998 +2,1,6668,0.8782332247 +2,1,6669,0.8802027766 +2,1,6670,0.8821723288000001 +2,1,6671,0.8841418812999999 2,1,6672,0.8861114332 2,1,6673,0.8742941203 2,1,6674,0.8742941203 2,1,6675,0.8762636728 2,1,6676,0.8762636728 -2,1,6677,0.8782332246999999 -2,1,6678,0.8782332246999999 +2,1,6677,0.8782332247 +2,1,6678,0.8782332247 2,1,6679,0.8742941203 -2,1,6680,0.8683854642999999 +2,1,6680,0.8683854643 2,1,6681,0.8620494920999999 2,1,6682,0.8544913318999999 2,1,6683,0.8474913319 @@ -32970,19 +32970,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6689,0.8556186474999999 2,1,6690,0.8624768076999999 2,1,6691,0.8664159117999999 -2,1,6692,0.8683854642999999 -2,1,6693,0.8703550161999999 +2,1,6692,0.8683854643 +2,1,6693,0.8703550162 2,1,6694,0.8723245680999999 2,1,6695,0.8723245680999999 2,1,6696,0.8723245680999999 -2,1,6697,0.8841418812999998 -2,1,6698,0.8841418812999998 +2,1,6697,0.8841418812999999 +2,1,6698,0.8841418812999999 2,1,6699,0.8861114332 2,1,6700,0.8880809851 2,1,6701,0.8880809851 2,1,6702,0.8880809851 2,1,6703,0.8861114332 -2,1,6704,0.8821723288 +2,1,6704,0.8821723288000001 2,1,6705,0.8762636728 2,1,6706,0.8699277005999999 2,1,6707,0.8652885961999999 @@ -32990,12 +32990,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6709,0.8586799401999999 2,1,6710,0.8574103882999999 2,1,6711,0.8581103883 -2,1,6712,0.8605072557999999 +2,1,6712,0.8605072558 2,1,6713,0.8664159117999999 2,1,6714,0.8723245680999999 2,1,6715,0.8762636728 -2,1,6716,0.8802027765999999 -2,1,6717,0.8841418812999998 +2,1,6716,0.8802027766 +2,1,6717,0.8841418812999999 2,1,6718,0.8861114332 2,1,6719,0.8880809851 2,1,6720,0.8900505372999999 @@ -33006,33 +33006,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6725,0.8762636728 2,1,6726,0.8762636728 2,1,6727,0.8742941203 -2,1,6728,0.8703550161999999 +2,1,6728,0.8703550162 2,1,6729,0.8644463599 2,1,6730,0.8585377039 2,1,6731,0.8488913319 2,1,6732,0.8418913319 -2,1,6733,0.8355913318999999 +2,1,6733,0.8355913319 2,1,6734,0.8418913319 2,1,6735,0.8488913319 2,1,6736,0.8556186474999999 -2,1,6737,0.8605072557999999 +2,1,6737,0.8605072558 2,1,6738,0.8644463599 -2,1,6739,0.8683854642999999 -2,1,6740,0.8703550161999999 +2,1,6739,0.8683854643 +2,1,6740,0.8703550162 2,1,6741,0.8723245680999999 2,1,6742,0.8742941203 2,1,6743,0.8742941203 2,1,6744,0.8762636728 -2,1,6745,0.8841418812999998 +2,1,6745,0.8841418812999999 2,1,6746,0.8861114332 2,1,6747,0.8861114332 2,1,6748,0.8880809851 2,1,6749,0.8880809851 2,1,6750,0.8880809851 2,1,6751,0.8861114332 -2,1,6752,0.8802027765999999 +2,1,6752,0.8802027766 2,1,6753,0.8742941203 -2,1,6754,0.8672581486999998 +2,1,6754,0.8672581487 2,1,6755,0.8606494921 2,1,6756,0.8560103883 2,1,6757,0.8523913318999999 @@ -33040,21 +33040,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6759,0.8537913319 2,1,6760,0.8574103882999999 2,1,6761,0.8624768076999999 -2,1,6762,0.8703550161999999 +2,1,6762,0.8703550162 2,1,6763,0.8742941203 2,1,6764,0.8762636728 -2,1,6765,0.8802027765999999 -2,1,6766,0.8802027765999999 -2,1,6767,0.8821723288 -2,1,6768,0.8821723288 +2,1,6765,0.8802027766 +2,1,6766,0.8802027766 +2,1,6767,0.8821723288000001 +2,1,6768,0.8821723288000001 2,1,6769,0.8742941203 2,1,6770,0.8742941203 2,1,6771,0.8762636728 2,1,6772,0.8762636728 -2,1,6773,0.8782332246999999 -2,1,6774,0.8782332246999999 +2,1,6773,0.8782332247 +2,1,6774,0.8782332247 2,1,6775,0.8742941203 -2,1,6776,0.8683854642999999 +2,1,6776,0.8683854643 2,1,6777,0.8620494920999999 2,1,6778,0.8544913318999999 2,1,6779,0.8474913319 @@ -33066,34 +33066,34 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6785,0.8556186474999999 2,1,6786,0.8624768076999999 2,1,6787,0.8664159117999999 -2,1,6788,0.8683854642999999 -2,1,6789,0.8703550161999999 +2,1,6788,0.8683854643 +2,1,6789,0.8703550162 2,1,6790,0.8723245680999999 2,1,6791,0.8723245680999999 2,1,6792,0.8723245680999999 2,1,6793,0.8762636728 -2,1,6794,0.8782332246999999 -2,1,6795,0.8802027765999999 -2,1,6796,0.8802027765999999 -2,1,6797,0.8821723288 -2,1,6798,0.8821723288 -2,1,6799,0.8782332246999999 +2,1,6794,0.8782332247 +2,1,6795,0.8802027766 +2,1,6796,0.8802027766 +2,1,6797,0.8821723288000001 +2,1,6798,0.8821723288000001 +2,1,6799,0.8782332247 2,1,6800,0.8742941203 -2,1,6801,0.8683854642999999 +2,1,6801,0.8683854643 2,1,6802,0.8644463599 -2,1,6803,0.8605072557999999 +2,1,6803,0.8605072558 2,1,6804,0.8585377039 2,1,6805,0.8556186474999999 2,1,6806,0.8556186474999999 2,1,6807,0.8585377039 -2,1,6808,0.8605072557999999 +2,1,6808,0.8605072558 2,1,6809,0.8664159117999999 -2,1,6810,0.8703550161999999 +2,1,6810,0.8703550162 2,1,6811,0.8742941203 -2,1,6812,0.8782332246999999 -2,1,6813,0.8802027765999999 -2,1,6814,0.8821723288 -2,1,6815,0.8841418812999998 +2,1,6812,0.8782332247 +2,1,6813,0.8802027766 +2,1,6814,0.8821723288000001 +2,1,6815,0.8841418812999999 2,1,6816,0.8861114332 2,1,6817,0.8742941203 2,1,6818,0.8742941203 @@ -33102,55 +33102,55 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6821,0.8762636728 2,1,6822,0.8762636728 2,1,6823,0.8742941203 -2,1,6824,0.8703550161999999 +2,1,6824,0.8703550162 2,1,6825,0.8644463599 2,1,6826,0.8585377039 2,1,6827,0.8488913319 2,1,6828,0.8418913319 -2,1,6829,0.8355913318999999 +2,1,6829,0.8355913319 2,1,6830,0.8418913319 2,1,6831,0.8488913319 2,1,6832,0.8556186474999999 -2,1,6833,0.8605072557999999 +2,1,6833,0.8605072558 2,1,6834,0.8644463599 -2,1,6835,0.8683854642999999 -2,1,6836,0.8703550161999999 +2,1,6835,0.8683854643 +2,1,6836,0.8703550162 2,1,6837,0.8723245680999999 2,1,6838,0.8742941203 2,1,6839,0.8742941203 2,1,6840,0.8762636728 2,1,6841,0.8762636728 -2,1,6842,0.8782332246999999 -2,1,6843,0.8802027765999999 -2,1,6844,0.8802027765999999 -2,1,6845,0.8821723288 -2,1,6846,0.8821723288 -2,1,6847,0.8782332246999999 +2,1,6842,0.8782332247 +2,1,6843,0.8802027766 +2,1,6844,0.8802027766 +2,1,6845,0.8821723288000001 +2,1,6846,0.8821723288000001 +2,1,6847,0.8782332247 2,1,6848,0.8742941203 -2,1,6849,0.8683854642999999 +2,1,6849,0.8683854643 2,1,6850,0.8644463599 -2,1,6851,0.8605072557999999 +2,1,6851,0.8605072558 2,1,6852,0.8585377039 2,1,6853,0.8556186474999999 2,1,6854,0.8556186474999999 2,1,6855,0.8585377039 -2,1,6856,0.8605072557999999 +2,1,6856,0.8605072558 2,1,6857,0.8664159117999999 -2,1,6858,0.8703550161999999 +2,1,6858,0.8703550162 2,1,6859,0.8742941203 -2,1,6860,0.8782332246999999 -2,1,6861,0.8802027765999999 -2,1,6862,0.8821723288 -2,1,6863,0.8841418812999998 +2,1,6860,0.8782332247 +2,1,6861,0.8802027766 +2,1,6862,0.8821723288000001 +2,1,6863,0.8841418812999999 2,1,6864,0.8861114332 2,1,6865,0.8742941203 2,1,6866,0.8742941203 2,1,6867,0.8762636728 2,1,6868,0.8762636728 -2,1,6869,0.8782332246999999 -2,1,6870,0.8782332246999999 +2,1,6869,0.8782332247 +2,1,6870,0.8782332247 2,1,6871,0.8742941203 -2,1,6872,0.8683854642999999 +2,1,6872,0.8683854643 2,1,6873,0.8620494920999999 2,1,6874,0.8544913318999999 2,1,6875,0.8474913319 @@ -33162,21 +33162,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6881,0.8556186474999999 2,1,6882,0.8624768076999999 2,1,6883,0.8664159117999999 -2,1,6884,0.8683854642999999 -2,1,6885,0.8703550161999999 +2,1,6884,0.8683854643 +2,1,6885,0.8703550162 2,1,6886,0.8723245680999999 2,1,6887,0.8723245680999999 2,1,6888,0.8723245680999999 -2,1,6889,0.8841418812999998 +2,1,6889,0.8841418812999999 2,1,6890,0.8861114332 2,1,6891,0.8861114332 2,1,6892,0.8880809851 2,1,6893,0.8880809851 2,1,6894,0.8880809851 2,1,6895,0.8861114332 -2,1,6896,0.8802027765999999 +2,1,6896,0.8802027766 2,1,6897,0.8742941203 -2,1,6898,0.8672581486999998 +2,1,6898,0.8672581487 2,1,6899,0.8606494921 2,1,6900,0.8560103883 2,1,6901,0.8523913318999999 @@ -33184,13 +33184,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6903,0.8537913319 2,1,6904,0.8574103882999999 2,1,6905,0.8624768076999999 -2,1,6906,0.8703550161999999 +2,1,6906,0.8703550162 2,1,6907,0.8742941203 2,1,6908,0.8762636728 -2,1,6909,0.8802027765999999 -2,1,6910,0.8802027765999999 -2,1,6911,0.8821723288 -2,1,6912,0.8821723288 +2,1,6909,0.8802027766 +2,1,6910,0.8802027766 +2,1,6911,0.8821723288000001 +2,1,6912,0.8821723288000001 2,1,6913,0.8742941203 2,1,6914,0.8742941203 2,1,6915,0.8742941203 @@ -33198,33 +33198,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6917,0.8762636728 2,1,6918,0.8762636728 2,1,6919,0.8742941203 -2,1,6920,0.8703550161999999 +2,1,6920,0.8703550162 2,1,6921,0.8644463599 2,1,6922,0.8585377039 2,1,6923,0.8488913319 2,1,6924,0.8418913319 -2,1,6925,0.8355913318999999 +2,1,6925,0.8355913319 2,1,6926,0.8418913319 2,1,6927,0.8488913319 2,1,6928,0.8556186474999999 -2,1,6929,0.8605072557999999 +2,1,6929,0.8605072558 2,1,6930,0.8644463599 -2,1,6931,0.8683854642999999 -2,1,6932,0.8703550161999999 +2,1,6931,0.8683854643 +2,1,6932,0.8703550162 2,1,6933,0.8723245680999999 2,1,6934,0.8742941203 2,1,6935,0.8742941203 2,1,6936,0.8762636728 -2,1,6937,0.8841418812999998 +2,1,6937,0.8841418812999999 2,1,6938,0.8861114332 2,1,6939,0.8861114332 2,1,6940,0.8880809851 2,1,6941,0.8880809851 2,1,6942,0.8880809851 2,1,6943,0.8861114332 -2,1,6944,0.8802027765999999 +2,1,6944,0.8802027766 2,1,6945,0.8742941203 -2,1,6946,0.8672581486999998 +2,1,6946,0.8672581487 2,1,6947,0.8606494921 2,1,6948,0.8560103883 2,1,6949,0.8523913318999999 @@ -33232,21 +33232,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6951,0.8537913319 2,1,6952,0.8574103882999999 2,1,6953,0.8624768076999999 -2,1,6954,0.8703550161999999 +2,1,6954,0.8703550162 2,1,6955,0.8742941203 2,1,6956,0.8762636728 -2,1,6957,0.8802027765999999 -2,1,6958,0.8802027765999999 -2,1,6959,0.8821723288 -2,1,6960,0.8821723288 +2,1,6957,0.8802027766 +2,1,6958,0.8802027766 +2,1,6959,0.8821723288000001 +2,1,6960,0.8821723288000001 2,1,6961,0.8742941203 2,1,6962,0.8742941203 2,1,6963,0.8762636728 2,1,6964,0.8762636728 -2,1,6965,0.8782332246999999 -2,1,6966,0.8782332246999999 +2,1,6965,0.8782332247 +2,1,6966,0.8782332247 2,1,6967,0.8742941203 -2,1,6968,0.8683854642999999 +2,1,6968,0.8683854643 2,1,6969,0.8620494920999999 2,1,6970,0.8544913318999999 2,1,6971,0.8474913319 @@ -33258,67 +33258,67 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,6977,0.8556186474999999 2,1,6978,0.8624768076999999 2,1,6979,0.8664159117999999 -2,1,6980,0.8683854642999999 -2,1,6981,0.8703550161999999 +2,1,6980,0.8683854643 +2,1,6981,0.8703550162 2,1,6982,0.8723245680999999 2,1,6983,0.8723245680999999 2,1,6984,0.8723245680999999 2,1,6985,0.8762636728 -2,1,6986,0.8782332246999999 -2,1,6987,0.8802027765999999 -2,1,6988,0.8802027765999999 -2,1,6989,0.8821723288 -2,1,6990,0.8821723288 -2,1,6991,0.8782332246999999 +2,1,6986,0.8782332247 +2,1,6987,0.8802027766 +2,1,6988,0.8802027766 +2,1,6989,0.8821723288000001 +2,1,6990,0.8821723288000001 +2,1,6991,0.8782332247 2,1,6992,0.8742941203 -2,1,6993,0.8683854642999999 +2,1,6993,0.8683854643 2,1,6994,0.8644463599 -2,1,6995,0.8605072557999999 +2,1,6995,0.8605072558 2,1,6996,0.8585377039 2,1,6997,0.8556186474999999 2,1,6998,0.8556186474999999 2,1,6999,0.8585377039 -2,1,7000,0.8605072557999999 +2,1,7000,0.8605072558 2,1,7001,0.8664159117999999 -2,1,7002,0.8703550161999999 +2,1,7002,0.8703550162 2,1,7003,0.8742941203 -2,1,7004,0.8782332246999999 -2,1,7005,0.8802027765999999 -2,1,7006,0.8821723288 -2,1,7007,0.8841418812999998 +2,1,7004,0.8782332247 +2,1,7005,0.8802027766 +2,1,7006,0.8821723288000001 +2,1,7007,0.8841418812999999 2,1,7008,0.8861114332 2,1,7009,0.8762636728 -2,1,7010,0.8782332246999999 -2,1,7011,0.8802027765999999 -2,1,7012,0.8802027765999999 -2,1,7013,0.8821723288 -2,1,7014,0.8821723288 -2,1,7015,0.8782332246999999 +2,1,7010,0.8782332247 +2,1,7011,0.8802027766 +2,1,7012,0.8802027766 +2,1,7013,0.8821723288000001 +2,1,7014,0.8821723288000001 +2,1,7015,0.8782332247 2,1,7016,0.8742941203 -2,1,7017,0.8683854642999999 +2,1,7017,0.8683854643 2,1,7018,0.8644463599 -2,1,7019,0.8605072557999999 +2,1,7019,0.8605072558 2,1,7020,0.8585377039 2,1,7021,0.8556186474999999 2,1,7022,0.8556186474999999 2,1,7023,0.8585377039 -2,1,7024,0.8605072557999999 +2,1,7024,0.8605072558 2,1,7025,0.8664159117999999 -2,1,7026,0.8703550161999999 +2,1,7026,0.8703550162 2,1,7027,0.8742941203 -2,1,7028,0.8782332246999999 -2,1,7029,0.8802027765999999 -2,1,7030,0.8821723288 -2,1,7031,0.8841418812999998 +2,1,7028,0.8782332247 +2,1,7029,0.8802027766 +2,1,7030,0.8821723288000001 +2,1,7031,0.8841418812999999 2,1,7032,0.8861114332 2,1,7033,0.8742941203 2,1,7034,0.8742941203 2,1,7035,0.8762636728 2,1,7036,0.8762636728 -2,1,7037,0.8782332246999999 -2,1,7038,0.8782332246999999 +2,1,7037,0.8782332247 +2,1,7038,0.8782332247 2,1,7039,0.8742941203 -2,1,7040,0.8683854642999999 +2,1,7040,0.8683854643 2,1,7041,0.8620494920999999 2,1,7042,0.8544913318999999 2,1,7043,0.8474913319 @@ -33330,45 +33330,45 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7049,0.8556186474999999 2,1,7050,0.8624768076999999 2,1,7051,0.8664159117999999 -2,1,7052,0.8683854642999999 -2,1,7053,0.8703550161999999 +2,1,7052,0.8683854643 +2,1,7053,0.8703550162 2,1,7054,0.8723245680999999 2,1,7055,0.8723245680999999 2,1,7056,0.8723245680999999 2,1,7057,0.8762636728 -2,1,7058,0.8782332246999999 -2,1,7059,0.8802027765999999 -2,1,7060,0.8802027765999999 -2,1,7061,0.8821723288 -2,1,7062,0.8821723288 -2,1,7063,0.8782332246999999 +2,1,7058,0.8782332247 +2,1,7059,0.8802027766 +2,1,7060,0.8802027766 +2,1,7061,0.8821723288000001 +2,1,7062,0.8821723288000001 +2,1,7063,0.8782332247 2,1,7064,0.8742941203 -2,1,7065,0.8683854642999999 +2,1,7065,0.8683854643 2,1,7066,0.8644463599 -2,1,7067,0.8605072557999999 +2,1,7067,0.8605072558 2,1,7068,0.8585377039 2,1,7069,0.8556186474999999 2,1,7070,0.8556186474999999 2,1,7071,0.8585377039 -2,1,7072,0.8605072557999999 +2,1,7072,0.8605072558 2,1,7073,0.8664159117999999 -2,1,7074,0.8703550161999999 +2,1,7074,0.8703550162 2,1,7075,0.8742941203 -2,1,7076,0.8782332246999999 -2,1,7077,0.8802027765999999 -2,1,7078,0.8821723288 -2,1,7079,0.8841418812999998 +2,1,7076,0.8782332247 +2,1,7077,0.8802027766 +2,1,7078,0.8821723288000001 +2,1,7079,0.8841418812999999 2,1,7080,0.8861114332 -2,1,7081,0.8841418812999998 +2,1,7081,0.8841418812999999 2,1,7082,0.8861114332 2,1,7083,0.8861114332 2,1,7084,0.8880809851 2,1,7085,0.8880809851 2,1,7086,0.8880809851 2,1,7087,0.8861114332 -2,1,7088,0.8802027765999999 +2,1,7088,0.8802027766 2,1,7089,0.8742941203 -2,1,7090,0.8672581486999998 +2,1,7090,0.8672581487 2,1,7091,0.8606494921 2,1,7092,0.8560103883 2,1,7093,0.8523913318999999 @@ -33376,13 +33376,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7095,0.8537913319 2,1,7096,0.8574103882999999 2,1,7097,0.8624768076999999 -2,1,7098,0.8703550161999999 +2,1,7098,0.8703550162 2,1,7099,0.8742941203 2,1,7100,0.8762636728 -2,1,7101,0.8802027765999999 -2,1,7102,0.8802027765999999 -2,1,7103,0.8821723288 -2,1,7104,0.8821723288 +2,1,7101,0.8802027766 +2,1,7102,0.8802027766 +2,1,7103,0.8821723288000001 +2,1,7104,0.8821723288000001 2,1,7105,0.8742941203 2,1,7106,0.8742941203 2,1,7107,0.8742941203 @@ -33390,19 +33390,19 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7109,0.8762636728 2,1,7110,0.8762636728 2,1,7111,0.8742941203 -2,1,7112,0.8703550161999999 +2,1,7112,0.8703550162 2,1,7113,0.8644463599 2,1,7114,0.8585377039 2,1,7115,0.8488913319 2,1,7116,0.8418913319 -2,1,7117,0.8355913318999999 +2,1,7117,0.8355913319 2,1,7118,0.8418913319 2,1,7119,0.8488913319 2,1,7120,0.8556186474999999 -2,1,7121,0.8605072557999999 +2,1,7121,0.8605072558 2,1,7122,0.8644463599 -2,1,7123,0.8683854642999999 -2,1,7124,0.8703550161999999 +2,1,7123,0.8683854643 +2,1,7124,0.8703550162 2,1,7125,0.8723245680999999 2,1,7126,0.8742941203 2,1,7127,0.8742941203 @@ -33414,33 +33414,33 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7133,0.8762636728 2,1,7134,0.8762636728 2,1,7135,0.8742941203 -2,1,7136,0.8703550161999999 +2,1,7136,0.8703550162 2,1,7137,0.8644463599 2,1,7138,0.8585377039 2,1,7139,0.8488913319 2,1,7140,0.8418913319 -2,1,7141,0.8355913318999999 +2,1,7141,0.8355913319 2,1,7142,0.8418913319 2,1,7143,0.8488913319 2,1,7144,0.8556186474999999 -2,1,7145,0.8605072557999999 +2,1,7145,0.8605072558 2,1,7146,0.8644463599 -2,1,7147,0.8683854642999999 -2,1,7148,0.8703550161999999 +2,1,7147,0.8683854643 +2,1,7148,0.8703550162 2,1,7149,0.8723245680999999 2,1,7150,0.8742941203 2,1,7151,0.8742941203 2,1,7152,0.8762636728 -2,1,7153,0.8841418812999998 +2,1,7153,0.8841418812999999 2,1,7154,0.8861114332 2,1,7155,0.8861114332 2,1,7156,0.8880809851 2,1,7157,0.8880809851 2,1,7158,0.8880809851 2,1,7159,0.8861114332 -2,1,7160,0.8802027765999999 +2,1,7160,0.8802027766 2,1,7161,0.8742941203 -2,1,7162,0.8672581486999998 +2,1,7162,0.8672581487 2,1,7163,0.8606494921 2,1,7164,0.8560103883 2,1,7165,0.8523913318999999 @@ -33448,95 +33448,95 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7167,0.8537913319 2,1,7168,0.8574103882999999 2,1,7169,0.8624768076999999 -2,1,7170,0.8703550161999999 +2,1,7170,0.8703550162 2,1,7171,0.8742941203 2,1,7172,0.8762636728 -2,1,7173,0.8802027765999999 -2,1,7174,0.8802027765999999 -2,1,7175,0.8821723288 -2,1,7176,0.8821723288 +2,1,7173,0.8802027766 +2,1,7174,0.8802027766 +2,1,7175,0.8821723288000001 +2,1,7176,0.8821723288000001 2,1,7177,0.8762636728 -2,1,7178,0.8782332246999999 -2,1,7179,0.8802027765999999 -2,1,7180,0.8802027765999999 -2,1,7181,0.8821723288 -2,1,7182,0.8821723288 -2,1,7183,0.8782332246999999 +2,1,7178,0.8782332247 +2,1,7179,0.8802027766 +2,1,7180,0.8802027766 +2,1,7181,0.8821723288000001 +2,1,7182,0.8821723288000001 +2,1,7183,0.8782332247 2,1,7184,0.8742941203 -2,1,7185,0.8683854642999999 +2,1,7185,0.8683854643 2,1,7186,0.8644463599 -2,1,7187,0.8605072557999999 +2,1,7187,0.8605072558 2,1,7188,0.8585377039 2,1,7189,0.8556186474999999 2,1,7190,0.8556186474999999 2,1,7191,0.8585377039 -2,1,7192,0.8605072557999999 +2,1,7192,0.8605072558 2,1,7193,0.8664159117999999 -2,1,7194,0.8703550161999999 +2,1,7194,0.8703550162 2,1,7195,0.8742941203 -2,1,7196,0.8782332246999999 -2,1,7197,0.8802027765999999 -2,1,7198,0.8821723288 -2,1,7199,0.8841418812999998 +2,1,7196,0.8782332247 +2,1,7197,0.8802027766 +2,1,7198,0.8821723288000001 +2,1,7199,0.8841418812999999 2,1,7200,0.8861114332 2,1,7201,0.8762636728 -2,1,7202,0.8782332246999999 -2,1,7203,0.8802027765999999 -2,1,7204,0.8802027765999999 -2,1,7205,0.8821723288 -2,1,7206,0.8821723288 -2,1,7207,0.8782332246999999 +2,1,7202,0.8782332247 +2,1,7203,0.8802027766 +2,1,7204,0.8802027766 +2,1,7205,0.8821723288000001 +2,1,7206,0.8821723288000001 +2,1,7207,0.8782332247 2,1,7208,0.8742941203 -2,1,7209,0.8683854642999999 +2,1,7209,0.8683854643 2,1,7210,0.8644463599 -2,1,7211,0.8605072557999999 +2,1,7211,0.8605072558 2,1,7212,0.8585377039 2,1,7213,0.8556186474999999 2,1,7214,0.8556186474999999 2,1,7215,0.8585377039 -2,1,7216,0.8605072557999999 +2,1,7216,0.8605072558 2,1,7217,0.8664159117999999 -2,1,7218,0.8703550161999999 +2,1,7218,0.8703550162 2,1,7219,0.8742941203 -2,1,7220,0.8782332246999999 -2,1,7221,0.8802027765999999 -2,1,7222,0.8821723288 -2,1,7223,0.8841418812999998 +2,1,7220,0.8782332247 +2,1,7221,0.8802027766 +2,1,7222,0.8821723288000001 +2,1,7223,0.8841418812999999 2,1,7224,0.8861114332 2,1,7225,0.8762636728 -2,1,7226,0.8782332246999999 -2,1,7227,0.8802027765999999 -2,1,7228,0.8802027765999999 -2,1,7229,0.8821723288 -2,1,7230,0.8821723288 -2,1,7231,0.8782332246999999 +2,1,7226,0.8782332247 +2,1,7227,0.8802027766 +2,1,7228,0.8802027766 +2,1,7229,0.8821723288000001 +2,1,7230,0.8821723288000001 +2,1,7231,0.8782332247 2,1,7232,0.8742941203 -2,1,7233,0.8683854642999999 +2,1,7233,0.8683854643 2,1,7234,0.8644463599 -2,1,7235,0.8605072557999999 +2,1,7235,0.8605072558 2,1,7236,0.8585377039 2,1,7237,0.8556186474999999 2,1,7238,0.8556186474999999 2,1,7239,0.8585377039 -2,1,7240,0.8605072557999999 +2,1,7240,0.8605072558 2,1,7241,0.8664159117999999 -2,1,7242,0.8703550161999999 +2,1,7242,0.8703550162 2,1,7243,0.8742941203 -2,1,7244,0.8782332246999999 -2,1,7245,0.8802027765999999 -2,1,7246,0.8821723288 -2,1,7247,0.8841418812999998 +2,1,7244,0.8782332247 +2,1,7245,0.8802027766 +2,1,7246,0.8821723288000001 +2,1,7247,0.8841418812999999 2,1,7248,0.8861114332 -2,1,7249,0.8841418812999998 +2,1,7249,0.8841418812999999 2,1,7250,0.8861114332 2,1,7251,0.8861114332 2,1,7252,0.8880809851 2,1,7253,0.8880809851 2,1,7254,0.8880809851 2,1,7255,0.8861114332 -2,1,7256,0.8802027765999999 +2,1,7256,0.8802027766 2,1,7257,0.8742941203 -2,1,7258,0.8672581486999998 +2,1,7258,0.8672581487 2,1,7259,0.8606494921 2,1,7260,0.8560103883 2,1,7261,0.8523913318999999 @@ -33544,21 +33544,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7263,0.8537913319 2,1,7264,0.8574103882999999 2,1,7265,0.8624768076999999 -2,1,7266,0.8703550161999999 +2,1,7266,0.8703550162 2,1,7267,0.8742941203 2,1,7268,0.8762636728 -2,1,7269,0.8802027765999999 -2,1,7270,0.8802027765999999 -2,1,7271,0.8821723288 -2,1,7272,0.8821723288 +2,1,7269,0.8802027766 +2,1,7270,0.8802027766 +2,1,7271,0.8821723288000001 +2,1,7272,0.8821723288000001 2,1,7273,0.8742941203 2,1,7274,0.8742941203 2,1,7275,0.8762636728 2,1,7276,0.8762636728 -2,1,7277,0.8782332246999999 -2,1,7278,0.8782332246999999 +2,1,7277,0.8782332247 +2,1,7278,0.8782332247 2,1,7279,0.8742941203 -2,1,7280,0.8683854642999999 +2,1,7280,0.8683854643 2,1,7281,0.8620494920999999 2,1,7282,0.8544913318999999 2,1,7283,0.8474913319 @@ -33570,14 +33570,14 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7289,0.8556186474999999 2,1,7290,0.8624768076999999 2,1,7291,0.8664159117999999 -2,1,7292,0.8683854642999999 -2,1,7293,0.8703550161999999 +2,1,7292,0.8683854643 +2,1,7293,0.8703550162 2,1,7294,0.8723245680999999 2,1,7295,0.8723245680999999 2,1,7296,0.8723245680999999 -2,1,7297,0.8979287454999999 -2,1,7298,0.8979287454999999 -2,1,7299,0.8979287454999999 +2,1,7297,0.8979287455 +2,1,7298,0.8979287455 +2,1,7299,0.8979287455 2,1,7300,0.8990000001999999 2,1,7301,0.8990000001999999 2,1,7302,0.8990000001999999 @@ -33585,11 +33585,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7304,0.8990000001999999 2,1,7305,0.8939896417000001 2,1,7306,0.8880809851 -2,1,7307,0.8821723288 -2,1,7308,0.8782332246999999 +2,1,7307,0.8821723288000001 +2,1,7308,0.8782332247 2,1,7309,0.8762636728 -2,1,7310,0.8782332246999999 -2,1,7311,0.8802027765999999 +2,1,7310,0.8782332247 +2,1,7311,0.8802027766 2,1,7312,0.8880809851 2,1,7313,0.8959591936 2,1,7314,0.8990000001999999 @@ -33608,13 +33608,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7327,0.8990000001999999 2,1,7328,0.8990000001999999 2,1,7329,0.8990000001999999 -2,1,7330,0.8979287454999999 +2,1,7330,0.8979287455 2,1,7331,0.8939896417000001 2,1,7332,0.8920200892 2,1,7333,0.8900505372999999 2,1,7334,0.8920200892 2,1,7335,0.8939896417000001 -2,1,7336,0.8979287454999999 +2,1,7336,0.8979287455 2,1,7337,0.8990000001999999 2,1,7338,0.8990000001999999 2,1,7339,0.8990000001999999 @@ -33631,13 +33631,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7350,0.8990000001999999 2,1,7351,0.8990000001999999 2,1,7352,0.8990000001999999 -2,1,7353,0.8979287454999999 +2,1,7353,0.8979287455 2,1,7354,0.8920200892 2,1,7355,0.8861114332 -2,1,7356,0.8841418812999998 -2,1,7357,0.8821723288 -2,1,7358,0.8821723288 -2,1,7359,0.8841418812999998 +2,1,7356,0.8841418812999999 +2,1,7357,0.8821723288000001 +2,1,7358,0.8821723288000001 +2,1,7359,0.8841418812999999 2,1,7360,0.8880809851 2,1,7361,0.8939896417000001 2,1,7362,0.8990000001999999 @@ -33656,13 +33656,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7375,0.8990000001999999 2,1,7376,0.8990000001999999 2,1,7377,0.8990000001999999 -2,1,7378,0.8979287454999999 +2,1,7378,0.8979287455 2,1,7379,0.8939896417000001 2,1,7380,0.8920200892 2,1,7381,0.8900505372999999 2,1,7382,0.8920200892 2,1,7383,0.8939896417000001 -2,1,7384,0.8979287454999999 +2,1,7384,0.8979287455 2,1,7385,0.8990000001999999 2,1,7386,0.8990000001999999 2,1,7387,0.8990000001999999 @@ -33680,24 +33680,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7399,0.8990000001999999 2,1,7400,0.8990000001999999 2,1,7401,0.8900505372999999 -2,1,7402,0.8821723288 +2,1,7402,0.8821723288000001 2,1,7403,0.8762636728 2,1,7404,0.8723245680999999 -2,1,7405,0.8703550161999999 -2,1,7406,0.8703550161999999 +2,1,7405,0.8703550162 +2,1,7406,0.8703550162 2,1,7407,0.8723245680999999 -2,1,7408,0.8782332246999999 -2,1,7409,0.8841418812999998 +2,1,7408,0.8782332247 +2,1,7409,0.8841418812999999 2,1,7410,0.8880809851 2,1,7411,0.8920200892 2,1,7412,0.8939896417000001 2,1,7413,0.8959591936 2,1,7414,0.8959591936 -2,1,7415,0.8979287454999999 -2,1,7416,0.8979287454999999 -2,1,7417,0.8979287454999999 -2,1,7418,0.8979287454999999 -2,1,7419,0.8979287454999999 +2,1,7415,0.8979287455 +2,1,7416,0.8979287455 +2,1,7417,0.8979287455 +2,1,7418,0.8979287455 +2,1,7419,0.8979287455 2,1,7420,0.8990000001999999 2,1,7421,0.8990000001999999 2,1,7422,0.8990000001999999 @@ -33705,11 +33705,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7424,0.8990000001999999 2,1,7425,0.8939896417000001 2,1,7426,0.8880809851 -2,1,7427,0.8821723288 -2,1,7428,0.8782332246999999 +2,1,7427,0.8821723288000001 +2,1,7428,0.8782332247 2,1,7429,0.8762636728 -2,1,7430,0.8782332246999999 -2,1,7431,0.8802027765999999 +2,1,7430,0.8782332247 +2,1,7431,0.8802027766 2,1,7432,0.8880809851 2,1,7433,0.8959591936 2,1,7434,0.8990000001999999 @@ -33728,13 +33728,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7447,0.8990000001999999 2,1,7448,0.8990000001999999 2,1,7449,0.8990000001999999 -2,1,7450,0.8979287454999999 +2,1,7450,0.8979287455 2,1,7451,0.8939896417000001 2,1,7452,0.8920200892 2,1,7453,0.8900505372999999 2,1,7454,0.8920200892 2,1,7455,0.8939896417000001 -2,1,7456,0.8979287454999999 +2,1,7456,0.8979287455 2,1,7457,0.8990000001999999 2,1,7458,0.8990000001999999 2,1,7459,0.8990000001999999 @@ -33752,13 +33752,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7471,0.8990000001999999 2,1,7472,0.8990000001999999 2,1,7473,0.8990000001999999 -2,1,7474,0.8979287454999999 +2,1,7474,0.8979287455 2,1,7475,0.8939896417000001 2,1,7476,0.8920200892 2,1,7477,0.8900505372999999 2,1,7478,0.8920200892 2,1,7479,0.8939896417000001 -2,1,7480,0.8979287454999999 +2,1,7480,0.8979287455 2,1,7481,0.8990000001999999 2,1,7482,0.8990000001999999 2,1,7483,0.8990000001999999 @@ -33777,12 +33777,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7496,0.8990000001999999 2,1,7497,0.8939896417000001 2,1,7498,0.8880809851 -2,1,7499,0.8821723288 -2,1,7500,0.8782332246999999 +2,1,7499,0.8821723288000001 +2,1,7500,0.8782332247 2,1,7501,0.8762636728 2,1,7502,0.8762636728 -2,1,7503,0.8782332246999999 -2,1,7504,0.8841418812999998 +2,1,7503,0.8782332247 +2,1,7504,0.8841418812999999 2,1,7505,0.8920200892 2,1,7506,0.8959591936 2,1,7507,0.8990000001999999 @@ -33799,13 +33799,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7518,0.8990000001999999 2,1,7519,0.8990000001999999 2,1,7520,0.8990000001999999 -2,1,7521,0.8979287454999999 +2,1,7521,0.8979287455 2,1,7522,0.8920200892 2,1,7523,0.8861114332 -2,1,7524,0.8841418812999998 -2,1,7525,0.8821723288 -2,1,7526,0.8821723288 -2,1,7527,0.8841418812999998 +2,1,7524,0.8841418812999999 +2,1,7525,0.8821723288000001 +2,1,7526,0.8821723288000001 +2,1,7527,0.8841418812999999 2,1,7528,0.8880809851 2,1,7529,0.8939896417000001 2,1,7530,0.8990000001999999 @@ -33825,12 +33825,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7544,0.8990000001999999 2,1,7545,0.8939896417000001 2,1,7546,0.8880809851 -2,1,7547,0.8821723288 -2,1,7548,0.8782332246999999 +2,1,7547,0.8821723288000001 +2,1,7548,0.8782332247 2,1,7549,0.8762636728 2,1,7550,0.8762636728 -2,1,7551,0.8782332246999999 -2,1,7552,0.8841418812999998 +2,1,7551,0.8782332247 +2,1,7552,0.8841418812999999 2,1,7553,0.8920200892 2,1,7554,0.8959591936 2,1,7555,0.8990000001999999 @@ -33849,16 +33849,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7568,0.8990000001999999 2,1,7569,0.8939896417000001 2,1,7570,0.8880809851 -2,1,7571,0.8821723288 -2,1,7572,0.8782332246999999 +2,1,7571,0.8821723288000001 +2,1,7572,0.8782332247 2,1,7573,0.8762636728 2,1,7574,0.8762636728 -2,1,7575,0.8782332246999999 -2,1,7576,0.8841418812999998 +2,1,7575,0.8782332247 +2,1,7576,0.8841418812999999 2,1,7577,0.8920200892 2,1,7578,0.8959591936 -2,1,7579,0.8979287454999999 -2,1,7580,0.8979287454999999 +2,1,7579,0.8979287455 +2,1,7580,0.8979287455 2,1,7581,0.8990000001999999 2,1,7582,0.8990000001999999 2,1,7583,0.8990000001999999 @@ -33873,12 +33873,12 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7592,0.8990000001999999 2,1,7593,0.8939896417000001 2,1,7594,0.8880809851 -2,1,7595,0.8821723288 -2,1,7596,0.8782332246999999 +2,1,7595,0.8821723288000001 +2,1,7596,0.8782332247 2,1,7597,0.8762636728 2,1,7598,0.8762636728 -2,1,7599,0.8782332246999999 -2,1,7600,0.8841418812999998 +2,1,7599,0.8782332247 +2,1,7600,0.8841418812999999 2,1,7601,0.8920200892 2,1,7602,0.8959591936 2,1,7603,0.8990000001999999 @@ -33897,16 +33897,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7616,0.8990000001999999 2,1,7617,0.8939896417000001 2,1,7618,0.8880809851 -2,1,7619,0.8821723288 -2,1,7620,0.8782332246999999 +2,1,7619,0.8821723288000001 +2,1,7620,0.8782332247 2,1,7621,0.8762636728 2,1,7622,0.8762636728 -2,1,7623,0.8782332246999999 -2,1,7624,0.8841418812999998 +2,1,7623,0.8782332247 +2,1,7624,0.8841418812999999 2,1,7625,0.8920200892 2,1,7626,0.8959591936 -2,1,7627,0.8979287454999999 -2,1,7628,0.8979287454999999 +2,1,7627,0.8979287455 +2,1,7628,0.8979287455 2,1,7629,0.8990000001999999 2,1,7630,0.8990000001999999 2,1,7631,0.8990000001999999 @@ -33921,16 +33921,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7640,0.8990000001999999 2,1,7641,0.8939896417000001 2,1,7642,0.8880809851 -2,1,7643,0.8821723288 -2,1,7644,0.8782332246999999 +2,1,7643,0.8821723288000001 +2,1,7644,0.8782332247 2,1,7645,0.8762636728 2,1,7646,0.8762636728 -2,1,7647,0.8782332246999999 -2,1,7648,0.8841418812999998 +2,1,7647,0.8782332247 +2,1,7648,0.8841418812999999 2,1,7649,0.8920200892 2,1,7650,0.8959591936 -2,1,7651,0.8979287454999999 -2,1,7652,0.8979287454999999 +2,1,7651,0.8979287455 +2,1,7652,0.8979287455 2,1,7653,0.8990000001999999 2,1,7654,0.8990000001999999 2,1,7655,0.8990000001999999 @@ -33945,16 +33945,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7664,0.8990000001999999 2,1,7665,0.8939896417000001 2,1,7666,0.8880809851 -2,1,7667,0.8821723288 -2,1,7668,0.8782332246999999 +2,1,7667,0.8821723288000001 +2,1,7668,0.8782332247 2,1,7669,0.8762636728 2,1,7670,0.8762636728 -2,1,7671,0.8782332246999999 -2,1,7672,0.8841418812999998 +2,1,7671,0.8782332247 +2,1,7672,0.8841418812999999 2,1,7673,0.8920200892 2,1,7674,0.8959591936 -2,1,7675,0.8979287454999999 -2,1,7676,0.8979287454999999 +2,1,7675,0.8979287455 +2,1,7676,0.8979287455 2,1,7677,0.8990000001999999 2,1,7678,0.8990000001999999 2,1,7679,0.8990000001999999 @@ -33967,13 +33967,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7686,0.8990000001999999 2,1,7687,0.8990000001999999 2,1,7688,0.8990000001999999 -2,1,7689,0.8979287454999999 +2,1,7689,0.8979287455 2,1,7690,0.8920200892 2,1,7691,0.8861114332 -2,1,7692,0.8841418812999998 -2,1,7693,0.8821723288 -2,1,7694,0.8821723288 -2,1,7695,0.8841418812999998 +2,1,7692,0.8841418812999999 +2,1,7693,0.8821723288000001 +2,1,7694,0.8821723288000001 +2,1,7695,0.8841418812999999 2,1,7696,0.8880809851 2,1,7697,0.8959591936 2,1,7698,0.8990000001999999 @@ -33992,24 +33992,24 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7711,0.8990000001999999 2,1,7712,0.8990000001999999 2,1,7713,0.8900505372999999 -2,1,7714,0.8821723288 +2,1,7714,0.8821723288000001 2,1,7715,0.8762636728 2,1,7716,0.8723245680999999 -2,1,7717,0.8703550161999999 -2,1,7718,0.8703550161999999 +2,1,7717,0.8703550162 +2,1,7718,0.8703550162 2,1,7719,0.8723245680999999 -2,1,7720,0.8782332246999999 -2,1,7721,0.8841418812999998 +2,1,7720,0.8782332247 +2,1,7721,0.8841418812999999 2,1,7722,0.8880809851 2,1,7723,0.8920200892 2,1,7724,0.8939896417000001 2,1,7725,0.8959591936 2,1,7726,0.8959591936 -2,1,7727,0.8979287454999999 -2,1,7728,0.8979287454999999 -2,1,7729,0.8979287454999999 -2,1,7730,0.8979287454999999 -2,1,7731,0.8979287454999999 +2,1,7727,0.8979287455 +2,1,7728,0.8979287455 +2,1,7729,0.8979287455 +2,1,7730,0.8979287455 +2,1,7731,0.8979287455 2,1,7732,0.8990000001999999 2,1,7733,0.8990000001999999 2,1,7734,0.8990000001999999 @@ -34017,11 +34017,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7736,0.8990000001999999 2,1,7737,0.8939896417000001 2,1,7738,0.8880809851 -2,1,7739,0.8821723288 -2,1,7740,0.8782332246999999 +2,1,7739,0.8821723288000001 +2,1,7740,0.8782332247 2,1,7741,0.8762636728 -2,1,7742,0.8782332246999999 -2,1,7743,0.8802027765999999 +2,1,7742,0.8782332247 +2,1,7743,0.8802027766 2,1,7744,0.8880809851 2,1,7745,0.8959591936 2,1,7746,0.8990000001999999 @@ -34039,13 +34039,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7758,0.8990000001999999 2,1,7759,0.8990000001999999 2,1,7760,0.8990000001999999 -2,1,7761,0.8979287454999999 +2,1,7761,0.8979287455 2,1,7762,0.8920200892 2,1,7763,0.8861114332 -2,1,7764,0.8841418812999998 -2,1,7765,0.8821723288 -2,1,7766,0.8821723288 -2,1,7767,0.8841418812999998 +2,1,7764,0.8841418812999999 +2,1,7765,0.8821723288000001 +2,1,7766,0.8821723288000001 +2,1,7767,0.8841418812999999 2,1,7768,0.8880809851 2,1,7769,0.8939896417000001 2,1,7770,0.8990000001999999 @@ -34055,9 +34055,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7774,0.8990000001999999 2,1,7775,0.8990000001999999 2,1,7776,0.8990000001999999 -2,1,7777,0.8979287454999999 -2,1,7778,0.8979287454999999 -2,1,7779,0.8979287454999999 +2,1,7777,0.8979287455 +2,1,7778,0.8979287455 +2,1,7779,0.8979287455 2,1,7780,0.8990000001999999 2,1,7781,0.8990000001999999 2,1,7782,0.8990000001999999 @@ -34065,11 +34065,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7784,0.8990000001999999 2,1,7785,0.8939896417000001 2,1,7786,0.8880809851 -2,1,7787,0.8821723288 -2,1,7788,0.8782332246999999 +2,1,7787,0.8821723288000001 +2,1,7788,0.8782332247 2,1,7789,0.8762636728 -2,1,7790,0.8782332246999999 -2,1,7791,0.8802027765999999 +2,1,7790,0.8782332247 +2,1,7791,0.8802027766 2,1,7792,0.8880809851 2,1,7793,0.8959591936 2,1,7794,0.8990000001999999 @@ -34087,13 +34087,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7806,0.8990000001999999 2,1,7807,0.8990000001999999 2,1,7808,0.8990000001999999 -2,1,7809,0.8979287454999999 +2,1,7809,0.8979287455 2,1,7810,0.8920200892 2,1,7811,0.8861114332 -2,1,7812,0.8841418812999998 -2,1,7813,0.8821723288 -2,1,7814,0.8821723288 -2,1,7815,0.8841418812999998 +2,1,7812,0.8841418812999999 +2,1,7813,0.8821723288000001 +2,1,7814,0.8821723288000001 +2,1,7815,0.8841418812999999 2,1,7816,0.8880809851 2,1,7817,0.8959591936 2,1,7818,0.8990000001999999 @@ -34103,9 +34103,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7822,0.8990000001999999 2,1,7823,0.8990000001999999 2,1,7824,0.8990000001999999 -2,1,7825,0.8979287454999999 -2,1,7826,0.8979287454999999 -2,1,7827,0.8979287454999999 +2,1,7825,0.8979287455 +2,1,7826,0.8979287455 +2,1,7827,0.8979287455 2,1,7828,0.8990000001999999 2,1,7829,0.8990000001999999 2,1,7830,0.8990000001999999 @@ -34113,11 +34113,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7832,0.8990000001999999 2,1,7833,0.8939896417000001 2,1,7834,0.8880809851 -2,1,7835,0.8821723288 -2,1,7836,0.8782332246999999 +2,1,7835,0.8821723288000001 +2,1,7836,0.8782332247 2,1,7837,0.8762636728 -2,1,7838,0.8782332246999999 -2,1,7839,0.8802027765999999 +2,1,7838,0.8782332247 +2,1,7839,0.8802027766 2,1,7840,0.8880809851 2,1,7841,0.8959591936 2,1,7842,0.8990000001999999 @@ -34136,21 +34136,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7855,0.8990000001999999 2,1,7856,0.8990000001999999 2,1,7857,0.8900505372999999 -2,1,7858,0.8821723288 +2,1,7858,0.8821723288000001 2,1,7859,0.8762636728 2,1,7860,0.8723245680999999 -2,1,7861,0.8703550161999999 -2,1,7862,0.8703550161999999 +2,1,7861,0.8703550162 +2,1,7862,0.8703550162 2,1,7863,0.8723245680999999 -2,1,7864,0.8782332246999999 -2,1,7865,0.8841418812999998 +2,1,7864,0.8782332247 +2,1,7865,0.8841418812999999 2,1,7866,0.8880809851 2,1,7867,0.8920200892 2,1,7868,0.8939896417000001 2,1,7869,0.8959591936 2,1,7870,0.8959591936 -2,1,7871,0.8979287454999999 -2,1,7872,0.8979287454999999 +2,1,7871,0.8979287455 +2,1,7872,0.8979287455 2,1,7873,0.8990000001999999 2,1,7874,0.8990000001999999 2,1,7875,0.8990000001999999 @@ -34159,13 +34159,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7878,0.8990000001999999 2,1,7879,0.8990000001999999 2,1,7880,0.8990000001999999 -2,1,7881,0.8979287454999999 +2,1,7881,0.8979287455 2,1,7882,0.8920200892 2,1,7883,0.8861114332 -2,1,7884,0.8841418812999998 -2,1,7885,0.8821723288 -2,1,7886,0.8821723288 -2,1,7887,0.8841418812999998 +2,1,7884,0.8841418812999999 +2,1,7885,0.8821723288000001 +2,1,7886,0.8821723288000001 +2,1,7887,0.8841418812999999 2,1,7888,0.8880809851 2,1,7889,0.8939896417000001 2,1,7890,0.8990000001999999 @@ -34185,16 +34185,16 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7904,0.8990000001999999 2,1,7905,0.8939896417000001 2,1,7906,0.8880809851 -2,1,7907,0.8821723288 -2,1,7908,0.8782332246999999 +2,1,7907,0.8821723288000001 +2,1,7908,0.8782332247 2,1,7909,0.8762636728 2,1,7910,0.8762636728 -2,1,7911,0.8782332246999999 -2,1,7912,0.8841418812999998 +2,1,7911,0.8782332247 +2,1,7912,0.8841418812999999 2,1,7913,0.8920200892 2,1,7914,0.8959591936 -2,1,7915,0.8979287454999999 -2,1,7916,0.8979287454999999 +2,1,7915,0.8979287455 +2,1,7916,0.8979287455 2,1,7917,0.8990000001999999 2,1,7918,0.8990000001999999 2,1,7919,0.8990000001999999 @@ -34208,21 +34208,21 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7927,0.8990000001999999 2,1,7928,0.8990000001999999 2,1,7929,0.8900505372999999 -2,1,7930,0.8821723288 +2,1,7930,0.8821723288000001 2,1,7931,0.8762636728 2,1,7932,0.8723245680999999 -2,1,7933,0.8703550161999999 -2,1,7934,0.8703550161999999 +2,1,7933,0.8703550162 +2,1,7934,0.8703550162 2,1,7935,0.8723245680999999 -2,1,7936,0.8782332246999999 -2,1,7937,0.8841418812999998 +2,1,7936,0.8782332247 +2,1,7937,0.8841418812999999 2,1,7938,0.8880809851 2,1,7939,0.8920200892 2,1,7940,0.8939896417000001 2,1,7941,0.8959591936 2,1,7942,0.8959591936 -2,1,7943,0.8979287454999999 -2,1,7944,0.8979287454999999 +2,1,7943,0.8979287455 +2,1,7944,0.8979287455 2,1,7945,0.8990000001999999 2,1,7946,0.8990000001999999 2,1,7947,0.8990000001999999 @@ -34231,13 +34231,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7950,0.8990000001999999 2,1,7951,0.8990000001999999 2,1,7952,0.8990000001999999 -2,1,7953,0.8979287454999999 +2,1,7953,0.8979287455 2,1,7954,0.8920200892 2,1,7955,0.8861114332 -2,1,7956,0.8841418812999998 -2,1,7957,0.8821723288 -2,1,7958,0.8821723288 -2,1,7959,0.8841418812999998 +2,1,7956,0.8841418812999999 +2,1,7957,0.8821723288000001 +2,1,7958,0.8821723288000001 +2,1,7959,0.8841418812999999 2,1,7960,0.8880809851 2,1,7961,0.8939896417000001 2,1,7962,0.8990000001999999 @@ -34247,9 +34247,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7966,0.8990000001999999 2,1,7967,0.8990000001999999 2,1,7968,0.8990000001999999 -2,1,7969,0.8979287454999999 -2,1,7970,0.8979287454999999 -2,1,7971,0.8979287454999999 +2,1,7969,0.8979287455 +2,1,7970,0.8979287455 +2,1,7971,0.8979287455 2,1,7972,0.8990000001999999 2,1,7973,0.8990000001999999 2,1,7974,0.8990000001999999 @@ -34257,11 +34257,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7976,0.8990000001999999 2,1,7977,0.8939896417000001 2,1,7978,0.8880809851 -2,1,7979,0.8821723288 -2,1,7980,0.8782332246999999 +2,1,7979,0.8821723288000001 +2,1,7980,0.8782332247 2,1,7981,0.8762636728 -2,1,7982,0.8782332246999999 -2,1,7983,0.8802027765999999 +2,1,7982,0.8782332247 +2,1,7983,0.8802027766 2,1,7984,0.8880809851 2,1,7985,0.8959591936 2,1,7986,0.8990000001999999 @@ -34271,9 +34271,9 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,7990,0.8990000001999999 2,1,7991,0.8990000001999999 2,1,7992,0.8990000001999999 -2,1,7993,0.8979287454999999 -2,1,7994,0.8979287454999999 -2,1,7995,0.8979287454999999 +2,1,7993,0.8979287455 +2,1,7994,0.8979287455 +2,1,7995,0.8979287455 2,1,7996,0.8990000001999999 2,1,7997,0.8990000001999999 2,1,7998,0.8990000001999999 @@ -34281,11 +34281,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8000,0.8990000001999999 2,1,8001,0.8939896417000001 2,1,8002,0.8880809851 -2,1,8003,0.8821723288 -2,1,8004,0.8782332246999999 +2,1,8003,0.8821723288000001 +2,1,8004,0.8782332247 2,1,8005,0.8762636728 -2,1,8006,0.8782332246999999 -2,1,8007,0.8802027765999999 +2,1,8006,0.8782332247 +2,1,8007,0.8802027766 2,1,8008,0.8880809851 2,1,8009,0.8959591936 2,1,8010,0.8990000001999999 @@ -34328,7 +34328,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8047,0.8990000001999999 2,1,8048,0.8990000001999999 2,1,8049,0.8990000001999999 -2,1,8050,0.8979287454999999 +2,1,8050,0.8979287455 2,1,8051,0.8939896417000001 2,1,8052,0.8920200892 2,1,8053,0.8900505372999999 @@ -34401,11 +34401,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8120,0.8990000001999999 2,1,8121,0.8959591936 2,1,8122,0.8900505372999999 -2,1,8123,0.8841418812999998 -2,1,8124,0.8802027765999999 -2,1,8125,0.8782332246999999 -2,1,8126,0.8802027765999999 -2,1,8127,0.8841418812999998 +2,1,8123,0.8841418812999999 +2,1,8124,0.8802027766 +2,1,8125,0.8782332247 +2,1,8126,0.8802027766 +2,1,8127,0.8841418812999999 2,1,8128,0.8920200892 2,1,8129,0.8990000001999999 2,1,8130,0.8990000001999999 @@ -34423,13 +34423,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8142,0.8990000001999999 2,1,8143,0.8990000001999999 2,1,8144,0.8990000001999999 -2,1,8145,0.8979287454999999 +2,1,8145,0.8979287455 2,1,8146,0.8920200892 2,1,8147,0.8880809851 -2,1,8148,0.8841418812999998 -2,1,8149,0.8821723288 -2,1,8150,0.8821723288 -2,1,8151,0.8841418812999998 +2,1,8148,0.8841418812999999 +2,1,8149,0.8821723288000001 +2,1,8150,0.8821723288000001 +2,1,8151,0.8841418812999999 2,1,8152,0.8920200892 2,1,8153,0.8990000001999999 2,1,8154,0.8990000001999999 @@ -34472,13 +34472,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8191,0.8990000001999999 2,1,8192,0.8990000001999999 2,1,8193,0.8990000001999999 -2,1,8194,0.8979287454999999 +2,1,8194,0.8979287455 2,1,8195,0.8939896417000001 2,1,8196,0.8920200892 2,1,8197,0.8900505372999999 2,1,8198,0.8900505372999999 2,1,8199,0.8920200892 -2,1,8200,0.8979287454999999 +2,1,8200,0.8979287455 2,1,8201,0.8990000001999999 2,1,8202,0.8990000001999999 2,1,8203,0.8990000001999999 @@ -34543,13 +34543,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8262,0.8990000001999999 2,1,8263,0.8990000001999999 2,1,8264,0.8990000001999999 -2,1,8265,0.8979287454999999 +2,1,8265,0.8979287455 2,1,8266,0.8920200892 2,1,8267,0.8880809851 -2,1,8268,0.8841418812999998 -2,1,8269,0.8821723288 -2,1,8270,0.8821723288 -2,1,8271,0.8841418812999998 +2,1,8268,0.8841418812999999 +2,1,8269,0.8821723288000001 +2,1,8270,0.8821723288000001 +2,1,8271,0.8841418812999999 2,1,8272,0.8920200892 2,1,8273,0.8990000001999999 2,1,8274,0.8990000001999999 @@ -34567,17 +34567,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8286,0.8990000001999999 2,1,8287,0.8990000001999999 2,1,8288,0.8990000001999999 -2,1,8289,0.8979287454999999 +2,1,8289,0.8979287455 2,1,8290,0.8920200892 2,1,8291,0.8861114332 -2,1,8292,0.8841418812999998 -2,1,8293,0.8821723288 -2,1,8294,0.8821723288 -2,1,8295,0.8841418812999998 +2,1,8292,0.8841418812999999 +2,1,8293,0.8821723288000001 +2,1,8294,0.8821723288000001 +2,1,8295,0.8841418812999999 2,1,8296,0.8900505372999999 2,1,8297,0.8959591936 2,1,8298,0.8959591936 -2,1,8299,0.8979287454999999 +2,1,8299,0.8979287455 2,1,8300,0.8990000001999999 2,1,8301,0.8990000001999999 2,1,8302,0.8990000001999999 @@ -34641,11 +34641,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8360,0.8990000001999999 2,1,8361,0.8959591936 2,1,8362,0.8900505372999999 -2,1,8363,0.8841418812999998 -2,1,8364,0.8802027765999999 -2,1,8365,0.8782332246999999 -2,1,8366,0.8802027765999999 -2,1,8367,0.8841418812999998 +2,1,8363,0.8841418812999999 +2,1,8364,0.8802027766 +2,1,8365,0.8782332247 +2,1,8366,0.8802027766 +2,1,8367,0.8841418812999999 2,1,8368,0.8920200892 2,1,8369,0.8990000001999999 2,1,8370,0.8990000001999999 @@ -34664,11 +34664,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8383,0.8990000001999999 2,1,8384,0.8990000001999999 2,1,8385,0.8990000001999999 -2,1,8386,0.8979287454999999 +2,1,8386,0.8979287455 2,1,8387,0.8920200892 2,1,8388,0.8861114332 -2,1,8389,0.8841418812999998 -2,1,8390,0.8841418812999998 +2,1,8389,0.8841418812999999 +2,1,8390,0.8841418812999999 2,1,8391,0.8861114332 2,1,8392,0.8939896417000001 2,1,8393,0.8990000001999999 @@ -34736,7 +34736,7 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8455,0.8990000001999999 2,1,8456,0.8990000001999999 2,1,8457,0.8990000001999999 -2,1,8458,0.8979287454999999 +2,1,8458,0.8979287455 2,1,8459,0.8939896417000001 2,1,8460,0.8920200892 2,1,8461,0.8900505372999999 @@ -34784,11 +34784,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8503,0.8990000001999999 2,1,8504,0.8990000001999999 2,1,8505,0.8990000001999999 -2,1,8506,0.8979287454999999 +2,1,8506,0.8979287455 2,1,8507,0.8920200892 2,1,8508,0.8861114332 -2,1,8509,0.8841418812999998 -2,1,8510,0.8841418812999998 +2,1,8509,0.8841418812999999 +2,1,8510,0.8841418812999999 2,1,8511,0.8861114332 2,1,8512,0.8939896417000001 2,1,8513,0.8990000001999999 @@ -34809,11 +34809,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8528,0.8990000001999999 2,1,8529,0.8959591936 2,1,8530,0.8900505372999999 -2,1,8531,0.8841418812999998 -2,1,8532,0.8802027765999999 -2,1,8533,0.8782332246999999 -2,1,8534,0.8802027765999999 -2,1,8535,0.8841418812999998 +2,1,8531,0.8841418812999999 +2,1,8532,0.8802027766 +2,1,8533,0.8782332247 +2,1,8534,0.8802027766 +2,1,8535,0.8841418812999999 2,1,8536,0.8920200892 2,1,8537,0.8990000001999999 2,1,8538,0.8990000001999999 @@ -34856,11 +34856,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8575,0.8990000001999999 2,1,8576,0.8990000001999999 2,1,8577,0.8990000001999999 -2,1,8578,0.8979287454999999 +2,1,8578,0.8979287455 2,1,8579,0.8920200892 2,1,8580,0.8861114332 -2,1,8581,0.8841418812999998 -2,1,8582,0.8841418812999998 +2,1,8581,0.8841418812999999 +2,1,8582,0.8841418812999999 2,1,8583,0.8861114332 2,1,8584,0.8939896417000001 2,1,8585,0.8990000001999999 @@ -34880,11 +34880,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8599,0.8990000001999999 2,1,8600,0.8990000001999999 2,1,8601,0.8990000001999999 -2,1,8602,0.8979287454999999 +2,1,8602,0.8979287455 2,1,8603,0.8920200892 2,1,8604,0.8861114332 -2,1,8605,0.8841418812999998 -2,1,8606,0.8841418812999998 +2,1,8605,0.8841418812999999 +2,1,8606,0.8841418812999999 2,1,8607,0.8861114332 2,1,8608,0.8939896417000001 2,1,8609,0.8990000001999999 @@ -34904,11 +34904,11 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8623,0.8990000001999999 2,1,8624,0.8990000001999999 2,1,8625,0.8990000001999999 -2,1,8626,0.8979287454999999 +2,1,8626,0.8979287455 2,1,8627,0.8920200892 2,1,8628,0.8861114332 -2,1,8629,0.8841418812999998 -2,1,8630,0.8841418812999998 +2,1,8629,0.8841418812999999 +2,1,8630,0.8841418812999999 2,1,8631,0.8861114332 2,1,8632,0.8939896417000001 2,1,8633,0.8990000001999999 @@ -34927,17 +34927,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8646,0.8990000001999999 2,1,8647,0.8990000001999999 2,1,8648,0.8990000001999999 -2,1,8649,0.8979287454999999 +2,1,8649,0.8979287455 2,1,8650,0.8920200892 2,1,8651,0.8861114332 -2,1,8652,0.8841418812999998 -2,1,8653,0.8821723288 -2,1,8654,0.8821723288 -2,1,8655,0.8841418812999998 +2,1,8652,0.8841418812999999 +2,1,8653,0.8821723288000001 +2,1,8654,0.8821723288000001 +2,1,8655,0.8841418812999999 2,1,8656,0.8900505372999999 2,1,8657,0.8959591936 2,1,8658,0.8959591936 -2,1,8659,0.8979287454999999 +2,1,8659,0.8979287455 2,1,8660,0.8990000001999999 2,1,8661,0.8990000001999999 2,1,8662,0.8990000001999999 @@ -34951,17 +34951,17 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8670,0.8990000001999999 2,1,8671,0.8990000001999999 2,1,8672,0.8990000001999999 -2,1,8673,0.8979287454999999 +2,1,8673,0.8979287455 2,1,8674,0.8920200892 2,1,8675,0.8861114332 -2,1,8676,0.8821723288 -2,1,8677,0.8802027765999999 -2,1,8678,0.8802027765999999 -2,1,8679,0.8841418812999998 +2,1,8676,0.8821723288000001 +2,1,8677,0.8802027766 +2,1,8678,0.8802027766 +2,1,8679,0.8841418812999999 2,1,8680,0.8900505372999999 2,1,8681,0.8939896417000001 -2,1,8682,0.8979287454999999 -2,1,8683,0.8979287454999999 +2,1,8682,0.8979287455 +2,1,8683,0.8979287455 2,1,8684,0.8990000001999999 2,1,8685,0.8990000001999999 2,1,8686,0.8990000001999999 @@ -34976,13 +34976,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8695,0.8990000001999999 2,1,8696,0.8990000001999999 2,1,8697,0.8990000001999999 -2,1,8698,0.8979287454999999 +2,1,8698,0.8979287455 2,1,8699,0.8920200892 2,1,8700,0.8900505372999999 2,1,8701,0.8900505372999999 2,1,8702,0.8900505372999999 2,1,8703,0.8920200892 -2,1,8704,0.8979287454999999 +2,1,8704,0.8979287455 2,1,8705,0.8990000001999999 2,1,8706,0.8990000001999999 2,1,8707,0.8990000001999999 @@ -34999,13 +34999,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8718,0.8990000001999999 2,1,8719,0.8990000001999999 2,1,8720,0.8990000001999999 -2,1,8721,0.8979287454999999 +2,1,8721,0.8979287455 2,1,8722,0.8920200892 2,1,8723,0.8880809851 -2,1,8724,0.8841418812999998 -2,1,8725,0.8821723288 -2,1,8726,0.8821723288 -2,1,8727,0.8841418812999998 +2,1,8724,0.8841418812999999 +2,1,8725,0.8821723288000001 +2,1,8726,0.8821723288000001 +2,1,8727,0.8841418812999999 2,1,8728,0.8920200892 2,1,8729,0.8990000001999999 2,1,8730,0.8990000001999999 @@ -35024,13 +35024,13 @@ weather_iteration,stage_id,timepoint,availability_derate_weather 2,1,8743,0.8990000001999999 2,1,8744,0.8990000001999999 2,1,8745,0.8990000001999999 -2,1,8746,0.8979287454999999 +2,1,8746,0.8979287455 2,1,8747,0.8920200892 2,1,8748,0.8900505372999999 2,1,8749,0.8900505372999999 2,1,8750,0.8900505372999999 2,1,8751,0.8920200892 -2,1,8752,0.8979287454999999 +2,1,8752,0.8979287455 2,1,8753,0.8990000001999999 2,1,8754,0.8990000001999999 2,1,8755,0.8990000001999999 diff --git a/examples/2periods_new_build_horizon_energy_target/results/objective_function_value.txt b/examples/2periods_new_build_horizon_energy_target/results/objective_function_value.txt index e99ad14cf..ad42c525c 100644 --- a/examples/2periods_new_build_horizon_energy_target/results/objective_function_value.txt +++ b/examples/2periods_new_build_horizon_energy_target/results/objective_function_value.txt @@ -1 +1 @@ --26966855745108.06 \ No newline at end of file +-26966855745105.86 \ No newline at end of file diff --git a/examples/2periods_new_build_horizon_energy_target/results/summary_results.txt b/examples/2periods_new_build_horizon_energy_target/results/summary_results.txt index ef4efc7b2..21ccbbd4f 100644 --- a/examples/2periods_new_build_horizon_energy_target/results/summary_results.txt +++ b/examples/2periods_new_build_horizon_energy_target/results/summary_results.txt @@ -26,5 +26,5 @@ Zone1 2020 Coal 0.00 0.00 ### HORIZON ENERGY TARGET RESULTS ### delivered_energy_target_energy_mwh curtailed_energy_target_energy_mwh energy_target_mwh dual energy_target_marginal_cost_per_mwh percent_curtailed energy_target_zone balancing_type horizon -RPSZone1 year 2020 250,000.00 17,991.12 250,000.00 999,999,990.00 99,999,999.00 6.71 +RPSZone1 year 2020 250,000.00 17,991.11 250,000.00 999,999,990.00 99,999,999.00 6.71 2030 250,000.00 175,152.00 250,000.00 999,999,990.00 99,999,999.00 41.20 diff --git a/examples/2periods_new_build_horizon_energy_target_halfyear/results/objective_function_value.txt b/examples/2periods_new_build_horizon_energy_target_halfyear/results/objective_function_value.txt index 1be4bb6e5..7bb79ecb7 100644 --- a/examples/2periods_new_build_horizon_energy_target_halfyear/results/objective_function_value.txt +++ b/examples/2periods_new_build_horizon_energy_target_halfyear/results/objective_function_value.txt @@ -1 +1 @@ --101086984772721.28 \ No newline at end of file +-101086984772719.08 \ No newline at end of file diff --git a/examples/2periods_new_build_horizon_energy_target_halfyear/results/summary_results.txt b/examples/2periods_new_build_horizon_energy_target_halfyear/results/summary_results.txt index 56ba71f98..98d6a98f1 100644 --- a/examples/2periods_new_build_horizon_energy_target_halfyear/results/summary_results.txt +++ b/examples/2periods_new_build_horizon_energy_target_halfyear/results/summary_results.txt @@ -29,4 +29,4 @@ energy_target_zone balancing_type horizon RPSZone1 halfyear 20201 172,280.00 52,720.00 125,000.00 -0.00 -0.00 23.43 20202 125,000.00 0.00 125,000.00 1,000,004,600.00 100,000,460.00 0.00 20301 125,000.00 101,008.00 125,000.00 999,999,990.00 99,999,999.00 44.69 - 20302 125,560.00 -0.00 125,000.00 -0.00 -0.00 -0.00 + 20302 125,560.00 0.00 125,000.00 -0.00 -0.00 0.00 diff --git a/examples/2periods_new_build_rps/results/objective_function_value.txt b/examples/2periods_new_build_rps/results/objective_function_value.txt index e99ad14cf..ad42c525c 100644 --- a/examples/2periods_new_build_rps/results/objective_function_value.txt +++ b/examples/2periods_new_build_rps/results/objective_function_value.txt @@ -1 +1 @@ --26966855745108.06 \ No newline at end of file +-26966855745105.86 \ No newline at end of file diff --git a/examples/2periods_new_build_rps/results/summary_results.txt b/examples/2periods_new_build_rps/results/summary_results.txt index 6cca9d0c9..acf1a0b1e 100644 --- a/examples/2periods_new_build_rps/results/summary_results.txt +++ b/examples/2periods_new_build_rps/results/summary_results.txt @@ -26,5 +26,5 @@ Zone1 2020 Coal 0.00 0.00 ### PERIOD ENERGY TARGET RESULTS ### delivered_energy_target_energy_mwh curtailed_energy_target_energy_mwh energy_target_mwh percent_curtailed dual energy_target_marginal_cost_per_mwh energy_target_zone period -RPSZone1 2020 250,000.00 17,991.12 250,000.00 6.71 999,999,990.00 99,999,999.00 +RPSZone1 2020 250,000.00 17,991.11 250,000.00 6.71 999,999,990.00 99,999,999.00 2030 250,000.00 175,152.00 250,000.00 41.20 999,999,990.00 99,999,999.00 diff --git a/examples/2periods_new_build_rps_percent_target/results/objective_function_value.txt b/examples/2periods_new_build_rps_percent_target/results/objective_function_value.txt index e99ad14cf..ad42c525c 100644 --- a/examples/2periods_new_build_rps_percent_target/results/objective_function_value.txt +++ b/examples/2periods_new_build_rps_percent_target/results/objective_function_value.txt @@ -1 +1 @@ --26966855745108.06 \ No newline at end of file +-26966855745105.86 \ No newline at end of file diff --git a/examples/2periods_new_build_rps_percent_target/results/summary_results.txt b/examples/2periods_new_build_rps_percent_target/results/summary_results.txt index 7f2369287..6c208c080 100644 --- a/examples/2periods_new_build_rps_percent_target/results/summary_results.txt +++ b/examples/2periods_new_build_rps_percent_target/results/summary_results.txt @@ -26,5 +26,5 @@ Zone1 2020 Coal 0.00 0.00 ### PERIOD ENERGY TARGET RESULTS ### delivered_energy_target_energy_mwh curtailed_energy_target_energy_mwh energy_target_mwh percent_curtailed dual energy_target_marginal_cost_per_mwh energy_target_zone period -RPSZone1 2020 250,000.00 17,991.12 250,000.00 6.71 999,999,990.00 99,999,999.00 +RPSZone1 2020 250,000.00 17,991.11 250,000.00 6.71 999,999,990.00 99,999,999.00 2030 250,000.00 175,152.00 250,000.00 41.20 999,999,990.00 99,999,999.00 diff --git a/examples/2periods_new_build_rps_w_rps_eligible_storage/results/objective_function_value.txt b/examples/2periods_new_build_rps_w_rps_eligible_storage/results/objective_function_value.txt index fc0494e19..b7815b7b5 100644 --- a/examples/2periods_new_build_rps_w_rps_eligible_storage/results/objective_function_value.txt +++ b/examples/2periods_new_build_rps_w_rps_eligible_storage/results/objective_function_value.txt @@ -1 +1 @@ --26966830249904.63 \ No newline at end of file +-26966830249911.2 \ No newline at end of file diff --git a/examples/2periods_new_build_rps_w_rps_eligible_storage/results/summary_results.txt b/examples/2periods_new_build_rps_w_rps_eligible_storage/results/summary_results.txt index 8f052f2b5..20d167e10 100644 --- a/examples/2periods_new_build_rps_w_rps_eligible_storage/results/summary_results.txt +++ b/examples/2periods_new_build_rps_w_rps_eligible_storage/results/summary_results.txt @@ -27,5 +27,5 @@ Zone1 2020 Coal 0.00 0.00 ### PERIOD ENERGY TARGET RESULTS ### delivered_energy_target_energy_mwh curtailed_energy_target_energy_mwh energy_target_mwh percent_curtailed dual energy_target_marginal_cost_per_mwh energy_target_zone period -RPSZone1 2020 250,000.00 -0.00 250,000.00 -0.00 1,000,001,400.00 100,000,140.00 +RPSZone1 2020 250,000.00 0.00 250,000.00 0.00 1,000,001,400.00 100,000,140.00 2030 250,000.00 175,152.00 250,000.00 41.20 999,999,990.00 99,999,999.00 diff --git a/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/objective_function_value.txt b/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/objective_function_value.txt index f1cce9103..7fa1a8245 100644 --- a/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/objective_function_value.txt +++ b/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/objective_function_value.txt @@ -1 +1 @@ --16980455713578.63 \ No newline at end of file +-16980455713585.2 \ No newline at end of file diff --git a/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/summary_results.txt b/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/summary_results.txt index 7aa34a43f..ddde58c58 100644 --- a/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/summary_results.txt +++ b/examples/2periods_new_build_rps_w_rps_ineligible_storage/results/summary_results.txt @@ -27,5 +27,5 @@ Zone1 2020 Coal 0.00 0.00 ### PERIOD ENERGY TARGET RESULTS ### delivered_energy_target_energy_mwh curtailed_energy_target_energy_mwh energy_target_mwh percent_curtailed dual energy_target_marginal_cost_per_mwh energy_target_zone period -RPSZone1 2020 250,000.00 17,991.12 250,000.00 6.71 999,999,990.00 99,999,999.00 +RPSZone1 2020 250,000.00 17,991.11 250,000.00 6.71 999,999,990.00 99,999,999.00 2030 250,000.00 175,152.00 250,000.00 41.20 999,999,990.00 99,999,999.00 diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index 2be3ecb16..9f1a83bfc 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -25,17 +25,15 @@ """ -import csv -import os.path from pyomo.environ import ( Param, Set, Var, Constraint, + Reals, NonNegativeReals, Expression, value, - Reals, ) import warnings @@ -197,6 +195,7 @@ def add_model_components( ########################################################################### m.GenVar_Provide_Power_MW = Var(m.GEN_VAR_OPR_TMPS, within=NonNegativeReals) + m.GenVar_Scheduled_Curtailment_MW = Var(m.GEN_VAR_OPR_TMPS, within=NonNegativeReals) # Expressions ########################################################################### @@ -251,10 +250,6 @@ def subhourly_delivered_energy_expression_rule(mod, g, tmp): m.GEN_VAR_OPR_TMPS, rule=subhourly_delivered_energy_expression_rule ) - m.GenVar_Scheduled_Curtailment_MW = Expression( - m.GEN_VAR_OPR_TMPS, rule=scheduled_curtailment_expression_rule - ) - m.GenVar_Total_Curtailment_MW = Expression( m.GEN_VAR_OPR_TMPS, rule=total_curtailment_expression_rule ) @@ -264,29 +259,19 @@ def subhourly_delivered_energy_expression_rule(mod, g, tmp): m.GenVar_Max_Power_Constraint = Constraint(m.GEN_VAR_OPR_TMPS, rule=max_power_rule) - m.GenVar_Min_Power_Constraint = Constraint(m.GEN_VAR_OPR_TMPS, rule=min_power_rule) + m.GenVar_Max_Upward_Reserves_Constraint = Constraint( + m.GEN_VAR_OPR_TMPS, rule=max_upward_reserves_rule + ) + + m.GenVar_Max_Downward_Reserves_Constraint = Constraint( + m.GEN_VAR_OPR_TMPS, rule=max_downward_reserves_rule + ) # Expression Methods ############################################################################### -def scheduled_curtailment_expression_rule(mod, g, tmp): - """ - **Expression Name**: GenVar_Scheduled_Curtailment_MW - **Defined Over**: GEN_VAR_OPR_TMPS - - Scheduled curtailment is the available power minus what was actually - provided. - """ - return ( - mod.Capacity_MW[g, mod.period[tmp]] - * mod.Availability_Derate[g, tmp] - * mod.gen_var_cap_factor[g, tmp] - - mod.GenVar_Provide_Power_MW[g, tmp] - ) - - def total_curtailment_expression_rule(mod, g, tmp): """ **Expression Name**: GenVar_Total_Curtailment_MW @@ -308,8 +293,7 @@ def total_curtailment_expression_rule(mod, g, tmp): """ return ( - mod.Capacity_MW[g, mod.period[tmp]] * mod.gen_var_cap_factor[g, tmp] - - mod.GenVar_Provide_Power_MW[g, tmp] + mod.GenVar_Scheduled_Curtailment_MW[g, tmp] + mod.GenVar_Subhourly_Curtailment_MW[g, tmp] - mod.GenVar_Subhourly_Energy_Delivered_MW[g, tmp] ) @@ -328,19 +312,30 @@ def max_power_rule(mod, g, tmp): is equal to the available capacity multiplied by the capacity factor. """ return ( - mod.GenVar_Provide_Power_MW[g, tmp] + mod.GenVar_Upwards_Reserves_MW[g, tmp] - <= mod.Capacity_MW[g, mod.period[tmp]] + mod.GenVar_Provide_Power_MW[g, tmp] + + mod.GenVar_Scheduled_Curtailment_MW[g, tmp] + == mod.Capacity_MW[g, mod.period[tmp]] * mod.Availability_Derate[g, tmp] * mod.gen_var_cap_factor[g, tmp] ) -def min_power_rule(mod, g, tmp): +def max_upward_reserves_rule(mod, g, tmp): + """ + Upward reserves can't exceed curtailment + """ + return ( + mod.GenVar_Upwards_Reserves_MW[g, tmp] + <= mod.GenVar_Scheduled_Curtailment_MW[g, tmp] + ) + + +def max_downward_reserves_rule(mod, g, tmp): """ **Constraint Name**: GenVar_Min_Power_Constraint **Enforced Over**: GEN_VAR_OPR_TMPS - Power provision minus downward services cannot be less than zero. + Downward reserves can't exceed power provision. """ return ( mod.GenVar_Provide_Power_MW[g, tmp] - mod.GenVar_Downwards_Reserves_MW[g, tmp] diff --git a/tests/test_data/test_scenario_objective_function_values.csv b/tests/test_data/test_scenario_objective_function_values.csv index f3ed29302..35018ccce 100644 --- a/tests/test_data/test_scenario_objective_function_values.csv +++ b/tests/test_data/test_scenario_objective_function_values.csv @@ -21,15 +21,15 @@ test_aux_cons,-3664910801437.807,-3664910801437.807,, 2periods_new_build_cumulative_and_vintage_min_max,-110384972580597.61,-110384972580597.61,, 2periods_new_build_cumulative_min_max,-27166044526940.195,-27166044526940.195,, 2periods_new_build_fin_lifetime,-10022366566.861605,-10022366566.861605,, -2periods_new_build_horizon_energy_target,-26966855745108.062,-26966855745108.062,, -2periods_new_build_horizon_energy_target_halfyear,-101086984772721.28,-101086984772721.28,, +2periods_new_build_horizon_energy_target,-26966855745108.062,-26966855745105.855,, +2periods_new_build_horizon_energy_target_halfyear,-101086984772721.28,-101086984772719.08,, 2periods_new_build_local_capacity,-10087189895.812916,-10087189895.812916,, -2periods_new_build_rps,-26966855745108.062,-26966855745108.062,, -2periods_new_build_rps_percent_target,-26966855745108.062,-26966855745108.062,, +2periods_new_build_rps,-26966855745108.062,-26966855745105.855,, +2periods_new_build_rps_percent_target,-26966855745108.062,-26966855745105.855,, 2periods_new_build_rps_variable_reserves,-4980266823.194146,-4980266823.194146,, 2periods_new_build_rps_variable_reserves_subhourly_adj,-4980266823.194146,-4980266823.194146,, -2periods_new_build_rps_w_rps_eligible_storage,-26966830249904.633,-26966830249904.633,, -2periods_new_build_rps_w_rps_ineligible_storage,-16980455713578.633,-16980455713578.633,, +2periods_new_build_rps_w_rps_eligible_storage,-26966830249904.633,-26966830249911.2,, +2periods_new_build_rps_w_rps_ineligible_storage,-16980455713578.633,-16980455713585.201,, 2periods_new_build_simple_prm,-10153045900.191605,-10153045900.191605,, 2periods_new_build_simple_prm_2loadzones,-613211671721885.6,-613211671721885.6,, 2periods_new_build_simple_prm_2loadzones_newtx_w_transfers,-17323444870.08402,-17323444870.08402,, From 250d07a2fae0824fdb03c333eaf25e0b1784ddc3 Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Fri, 23 Aug 2024 11:51:18 -0700 Subject: [PATCH 5/8] Update objective function values for test suite --- .../test_scenario_objective_function_values.csv | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_data/test_scenario_objective_function_values.csv b/tests/test_data/test_scenario_objective_function_values.csv index 35018ccce..3ba7667f9 100644 --- a/tests/test_data/test_scenario_objective_function_values.csv +++ b/tests/test_data/test_scenario_objective_function_values.csv @@ -21,15 +21,15 @@ test_aux_cons,-3664910801437.807,-3664910801437.807,, 2periods_new_build_cumulative_and_vintage_min_max,-110384972580597.61,-110384972580597.61,, 2periods_new_build_cumulative_min_max,-27166044526940.195,-27166044526940.195,, 2periods_new_build_fin_lifetime,-10022366566.861605,-10022366566.861605,, -2periods_new_build_horizon_energy_target,-26966855745108.062,-26966855745105.855,, -2periods_new_build_horizon_energy_target_halfyear,-101086984772721.28,-101086984772719.08,, +2periods_new_build_horizon_energy_target,-26966855745105.855,-26966855745105.855,, +2periods_new_build_horizon_energy_target_halfyear,-101086984772719.08,-101086984772719.08,, 2periods_new_build_local_capacity,-10087189895.812916,-10087189895.812916,, -2periods_new_build_rps,-26966855745108.062,-26966855745105.855,, -2periods_new_build_rps_percent_target,-26966855745108.062,-26966855745105.855,, +2periods_new_build_rps,-26966855745105.855,-26966855745105.855,, +2periods_new_build_rps_percent_target,-26966855745105.855,-26966855745105.855,, 2periods_new_build_rps_variable_reserves,-4980266823.194146,-4980266823.194146,, 2periods_new_build_rps_variable_reserves_subhourly_adj,-4980266823.194146,-4980266823.194146,, -2periods_new_build_rps_w_rps_eligible_storage,-26966830249904.633,-26966830249911.2,, -2periods_new_build_rps_w_rps_ineligible_storage,-16980455713578.633,-16980455713585.201,, +2periods_new_build_rps_w_rps_eligible_storage,-26966830249911.2,-26966830249911.2,, +2periods_new_build_rps_w_rps_ineligible_storage,-16980455713585.201,-16980455713585.201,, 2periods_new_build_simple_prm,-10153045900.191605,-10153045900.191605,, 2periods_new_build_simple_prm_2loadzones,-613211671721885.6,-613211671721885.6,, 2periods_new_build_simple_prm_2loadzones_newtx_w_transfers,-17323444870.08402,-17323444870.08402,, From fc45381b304e9e3572ab6603f9e22d1c670a9174 Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Fri, 23 Aug 2024 12:02:43 -0700 Subject: [PATCH 6/8] Allow negative power --- .../operations/operational_types/gen_var.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index 9f1a83bfc..7540d310a 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -194,7 +194,7 @@ def add_model_components( # Variables ########################################################################### - m.GenVar_Provide_Power_MW = Var(m.GEN_VAR_OPR_TMPS, within=NonNegativeReals) + m.GenVar_Provide_Power_MW = Var(m.GEN_VAR_OPR_TMPS, within=Reals) m.GenVar_Scheduled_Curtailment_MW = Var(m.GEN_VAR_OPR_TMPS, within=NonNegativeReals) # Expressions @@ -308,7 +308,7 @@ def max_power_rule(mod, g, tmp): **Constraint Name**: GenVar_Max_Power_Constraint **Enforced Over**: GEN_VAR_OPR_TMPS - Power provision plus upward services cannot exceed available power, which + Power provision plus curtailment cannot exceed available power, which is equal to the available capacity multiplied by the capacity factor. """ return ( @@ -337,10 +337,13 @@ def max_downward_reserves_rule(mod, g, tmp): Downward reserves can't exceed power provision. """ - return ( - mod.GenVar_Provide_Power_MW[g, tmp] - mod.GenVar_Downwards_Reserves_MW[g, tmp] - >= 0 - ) + if mod.gen_var_cap_factor[g, tmp] >= 0: + return ( + mod.GenVar_Downwards_Reserves_MW[g, tmp] + <= mod.GenVar_Provide_Power_MW[g, tmp] + ) + else: + return mod.GenVar_Downwards_Reserves_MW[g, tmp] == 0 # Operational Type Methods From bb511fca9ed605d7cd9a29719c80e61fcf264aa4 Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Fri, 23 Aug 2024 12:08:51 -0700 Subject: [PATCH 7/8] Update docs --- .../operations/operational_types/gen_var.py | 25 +++++++++++++------ 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index 9f1a83bfc..adc6245a9 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -118,6 +118,14 @@ def add_model_components( | Power provision in MW from this project in each timepoint in which the | | project is operational (capacity exists and the project is available). | +-------------------------------------------------------------------------+ + | | :code:`GenVar_Scheduled_Curtailment_MW` | + | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | + | | *Within*: :code:`NonNegativeReals` | + | | + | Curtailed power in MW from this project in each timepoint in which the | + | project is operational (capacity exists and the project is available). | + | This will be the available power minus what was actually provided. | + +-------------------------------------------------------------------------+ | @@ -134,11 +142,6 @@ def add_model_components( | | | Sub-hourly energy delivered (in MW) from providing upward reserves. | +-------------------------------------------------------------------------+ - | | :code:`GenVar_Scheduled_Curtailment_MW` | - | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | - | | - | The available power minus what was actually provided (in MW). | - +-------------------------------------------------------------------------+ | | :code:`GenVar_Total_Curtailment_MW` | | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | | | @@ -158,13 +161,19 @@ def add_model_components( | | :code:`GenVar_Max_Power_Constraint` | | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | | | - | Limits the power plus upward reserves in each timepoint based on the | + | Limits the power plus scheduled curtailment in each timepoint to equal | + | the available power. | | :code:`gen_var_cap_factor` and the available capacity. | +-------------------------------------------------------------------------+ - | | :code:`GenVar_Min_Power_Constraint` | + | | :code:`GenVar_Max_Upward_Reserves_Constraint` | + | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | + | | + | Upward reserves cannot exceed curtailment. | + +-------------------------------------------------------------------------+ + | | :code:`GenVar_Max_Downward_Reserves_Constraint` | | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | | | - | Power provision minus downward reserves should exceed zero. | + | Downward reserves cannot exceed power provision. | +-------------------------------------------------------------------------+ """ From 52a7dbd3e59733b9e7c6aaeed1b91c563acfdc79 Mon Sep 17 00:00:00 2001 From: Ana Mileva Date: Fri, 23 Aug 2024 12:14:59 -0700 Subject: [PATCH 8/8] Update docs --- gridpath/project/operations/operational_types/gen_var.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gridpath/project/operations/operational_types/gen_var.py b/gridpath/project/operations/operational_types/gen_var.py index 1b46371ba..da451cb5c 100644 --- a/gridpath/project/operations/operational_types/gen_var.py +++ b/gridpath/project/operations/operational_types/gen_var.py @@ -173,7 +173,9 @@ def add_model_components( | | :code:`GenVar_Max_Downward_Reserves_Constraint` | | | *Defined over*: :code:`GEN_VAR_OPR_TMPS` | | | - | Downward reserves cannot exceed power provision. | + | Downward reserves cannot exceed power provision when the capacity | + | factor is non-negative (power is non-negative); otherwise they are set | + | to zero. | +-------------------------------------------------------------------------+ """