diff --git a/omf/models/derUtilityCost.html b/omf/models/derUtilityCost.html
index ec852ec6b..0cdf15a19 100644
--- a/omf/models/derUtilityCost.html
+++ b/omf/models/derUtilityCost.html
@@ -104,7 +104,7 @@
-
+
@@ -321,9 +321,10 @@
insertMetric("monthlySummaryTable","Adjusted Energy Cost ($)", allOutputData.energyCostAdjusted_total)
insertMetric("monthlySummaryTable","Demand Charge ($)", allOutputData.demandCharge)
insertMetric("monthlySummaryTable","Adjusted Demand Charge ($)", allOutputData.demandChargeAdjusted_total)
- insertMetric("monthlySummaryTable","Total Cost ($)", allOutputData.totalCost)
- insertMetric("monthlySummaryTable","Adjusted Total Cost ($)", allOutputData.totalCostAdjusted_total)
- insertMetric("monthlySummaryTable","Utility Savings ($)", allOutputData.savings)
+ insertMetric("monthlySummaryTable","Total Cost of Service ($)", allOutputData.totalCost_service)
+ insertMetric("monthlySummaryTable","Adjusted Total Cost of Service ($)", allOutputData.totalCostAdjusted_service)
+ insertMetric("monthlySummaryTable","Consumer Compensation ($)", allOutputData.totalCost_paidToConsumer)
+ insertMetric("monthlySummaryTable","Net Utility Savings ($)", allOutputData.savings_total)
//insertMetric("monthlySummaryTable","1 kW Consumer Savings ($)", allOutputData.totalSavingsSmallConsumer)
//insertMetric("monthlySummaryTable","10 kW Consumer Savings ($)", allOutputData.totalSavingsLargeConsumer)
@@ -337,15 +338,22 @@
new Highcharts.Chart({"credits":{"enabled":false},
"plotOptions":{"column":{"stacking":'normal'},"series":{"animation":false,"shadow":false},"spline":{"animation":false,"shadow":false}},
"xAxis":{"title":{"text":"Year After Installation","style":{"color":"gray"}},"type":"linear","tickColor":"gray","tickInterval":1,"lineColor":"gray","minorTickColor":"gray", "minorTickInterval":5},
- "title":{"text":"NPV:$" + allOutputData.NPV.toFixed(0) + ", SPP:" + allOutputData.SPP.toFixed(3), "verticalAlign":"top", "align":"right", "y":35, "x":-10, "style":{"color":"#333333", "fontSize":"12px"}},
+ "title":{"text":"NPV: $" + allOutputData.NPV.toFixed(0) + ", SPP: " + allOutputData.SPP.toFixed(3), "verticalAlign":"top", "align":"right", "y":35, "x":-10, "style":{"color":"#333333", "fontSize":"12px"}},
"series":[
- {"name":"Net Benefits", "data": allOutputData.netCashflow, "color": "rgb(102,102,255)"},
- {"name":"Utility Savings", "data": allOutputData.savingsAllYears, "color": "green"},
+ //{"name":"Net Benefits", "data": allOutputData.netCashflow, "color": "rgb(102,102,255)"},
+ //{"name":"Total Utility Savings", "data": allOutputData.savingsAllYears, "color": "green"},
+ {"name":"BESS Savings", "data": allOutputData.annualEarnings_BESS, "color": "rgb(0,128,0)"},
+ {"name":"TESS Savings", "data": allOutputData.annualEarnings_TESS, "color": "rgb(143,188,143)"},
+ {"name":"Generator Savings", "data": allOutputData.annualEarnings_generator, "color": "rgb(152,251,152)"},
+ {"name":"Demand Charge Savings", "data": allOutputData.savings_demandCharge_annual, "color": "rgb(139,190,27)"},
{"name":"Subsidies", "data": allOutputData.subsidies, "color": "black"},
- {"name":"Customer BESS Compensations", "data": allOutputData.BESS_compensation_to_consumer_allyears, "color": "rgb(255,102,102)"},
- {"name":"Ongoing Operational Costs", "data": allOutputData.operationalCosts_ongoing_allyears_total, "color": "orange"},
- {"name":"One-time Operational Costs", "data": allOutputData.operationalCosts_onetime_allyears_total, "color": "rgb(229,204,255)"},
- {"name":"Cumulative Return", "type":"spline", "data": allOutputData.cumulativeCashflow, "color": "brown"}
+ {"name":"Consumer BESS Compensation", "data": allOutputData.BESS_compensation_to_consumer_allyears, "color": "rgb(255,102,102)"},
+ {"name":"Grid Costs", "data": allOutputData.energyCostAdjusted_gridCharging_annual, "color": "rgb(169,169,169)"},
+ {"name":"BESS Ongoing Operational Costs", "data": allOutputData.operationalCosts_BESS_ongoing_allyears_total, "color": "orange"},
+ {"name":"BESS One-time Operational Costs", "data": allOutputData.operationalCosts_BESS_onetime_allyears_total, "color": "rgb(229,204,255)"},
+ {"name":"TESS Ongoing Operational Costs", "data": allOutputData.operationalCosts_TESS_ongoing_allyears_total, "color": "red"},
+ {"name":"TESS One-time Operational Costs", "data": allOutputData.operationalCosts_TESS_onetime_allyears_total, "color": "rgb(178,34,34)"},
+ {"name":"Cumulative Return", "type":"spline", "data": allOutputData.cumulativeCashflow_total, "color": "brown"}
],
"yAxis":{"title":{"text":"Income ($)","style":{"color":"gray"}}},
"chart":{"marginBottom":55,"zoomType":"x","renderTo":"cashFlowChartDiv","type":"column","marginRight":20, "height":250,"width":1000},
diff --git a/omf/models/derUtilityCost.py b/omf/models/derUtilityCost.py
index 0092a6fdf..a9b4d37ed 100644
--- a/omf/models/derUtilityCost.py
+++ b/omf/models/derUtilityCost.py
@@ -311,18 +311,6 @@ def work(modelDir, inputDict):
generator = np.zeros_like(demand)
generator_W = np.zeros_like(demand)
- ## Original load piece (minus any vbat or BESS charging aka 'new/additional loads')
- fig.add_trace(go.Scatter(x=timestamps,
- y = demand_W - BESS_W - vbat_discharge_component_W,
- yaxis='y1',
- mode='none',
- name='Original Load',
- fill='tozeroy',
- fillcolor='rgba(100,200,210,1)',
- showlegend=showlegend))
- ## Make original load and its legend name hidden in the plot by default
- fig.update_traces(legendgroup='Original Load', visible='legendonly', selector=dict(name='Original Load'))
-
## Additional load (Charging BESS and vbat)
## NOTE: demand is added here for plotting purposes, so that the additional load shows up above the demand curve.
## How or if this should be done is still being discussed - break out into a separate plot eventually
@@ -398,7 +386,7 @@ def work(modelDir, inputDict):
name='Home TESS Serving Load',
line=dict(color='rgba(127,0,255,1)', width=1),
line_shape=lineshape,
- stackgroup='one',
+ #stackgroup='one',
showlegend=showlegend))
fig.add_trace(go.Scatter(x=timestamps,
@@ -409,7 +397,7 @@ def work(modelDir, inputDict):
#fill='tozeroy',
line=dict(color='rgba(207,158,255,1)', width=1),
line_shape=lineshape,
- stackgroup='one',
+ #stackgroup='one',
showlegend=showlegend))
## Fossil Generator piece
@@ -423,6 +411,18 @@ def work(modelDir, inputDict):
name='Fossil Generator Serving Load',
showlegend=showlegend))
+ ## Original load piece (minus any vbat or BESS charging aka 'new/additional loads')
+ fig.add_trace(go.Scatter(x=timestamps,
+ y = demand_W - BESS_W - vbat_discharge_component_W,
+ yaxis='y1',
+ mode='none',
+ name='Original Load',
+ fill='tozeroy',
+ fillcolor='rgba(100,200,210,1)',
+ showlegend=showlegend))
+ ## Make original load and its legend name hidden in the plot by default
+ fig.update_traces(legendgroup='Original Load', visible='legendonly', selector=dict(name='Original Load'))
+
## Plot layout
fig.update_layout(
xaxis=dict(title='Timestamp'),
@@ -586,22 +586,35 @@ def work(modelDir, inputDict):
demandChargeCost = float(inputDict['demandChargeCost'])
rateCompensation = float(inputDict['rateCompensation'])
- peakDemand = [max(demand[s:f]) for s, f in monthHours]
- outData['peakDemand'] = peakDemand
- energyMonthly = [sum(demand[s:f]) for s, f in monthHours]
- outData["energyMonthly"] = energyMonthly
- outData["energyCost"] = [em*electricityCost for em in energyMonthly]
- demandAdj_total = [d-p-b-g for d, p, b, g in zip(demand, vbpower_series.to_numpy(), BESS, generator)]
- outData['demandAdj_total'] = demandAdj_total
- energyAdjustedMonthly = [sum(demandAdj_total[s:f]) for s, f in monthHours]
- outData['peakAdjustedDemand_total'] = [max(demandAdj_total[s:f]) for s, f in monthHours]
- outData['energyAdjustedMonthly_total'] = [sum(demandAdj_total[s:f]) for s, f in monthHours]
- outData['energyCostAdjusted_total'] = [eam*electricityCost for eam in energyAdjustedMonthly]
- outData['demandCharge'] = [peak*demandChargeCost for peak in peakDemand]
+ outData['peakDemand'] = [max(demand[s:f]) for s, f in monthHours]
+ outData['energyMonthly'] = [sum(demand[s:f]) for s, f in monthHours]
+ outData['energyCost'] = [em*electricityCost for em in outData['energyMonthly']]
+
+ ## Define the new demand curve, accounting for all DERs
+ outData['demandAdj_total'] = list(demand - BESS - vbat_discharge_component - generator + grid_charging_BESS + vbat_charge_component)
+ outData['energyAdjustedMonthly_total'] = [sum(outData['demandAdj_total'][s:f]) for s, f in monthHours]
+ outData['energyAdjustedMonthly_BESS'] = [sum(BESS[s:f]) for s, f in monthHours]
+ outData['energyAdjustedMonthly_TESS'] = [sum(vbat_discharge_component[s:f]) for s, f in monthHours]
+ outData['energyAdjustedMonthly_generator'] = [sum(generator[s:f]) for s, f in monthHours]
+ outData['energyAdjustedMonthly_BESScharging'] = [sum(grid_charging_BESS[s:f]) for s, f in monthHours]
+ outData['energyAdjustedMonthly_TESScharging'] = [sum(vbat_charge_component[s:f]) for s, f in monthHours]
+ outData['energyAdjustedMonthly_gridCharging'] = list(np.array(outData['energyAdjustedMonthly_TESScharging']) + np.array(outData['energyAdjustedMonthly_BESScharging']))
+
+ outData['energyCostAdjusted_total'] = [eam*electricityCost for eam in outData['energyAdjustedMonthly_total']]
+ outData['energyCostAdjusted_BESS'] = [eam*electricityCost for eam in outData['energyAdjustedMonthly_BESS']]
+ outData['energyCostAdjusted_TESS'] = [eam*electricityCost for eam in outData['energyAdjustedMonthly_TESS']]
+ outData['energyCostAdjusted_generator'] = [eam*electricityCost for eam in outData['energyAdjustedMonthly_generator']]
+ outData['energyCostAdjusted_gridCharging'] = [eam*electricityCost for eam in outData['energyAdjustedMonthly_gridCharging']]
+ outData['energyCostAdjusted_gridCharging_annual'] = list(np.full(projectionLength, np.sum(outData['energyCostAdjusted_gridCharging'])))
+
+ outData['demandCharge'] = [peak*demandChargeCost for peak in outData['peakDemand']]
+ outData['peakAdjustedDemand_total'] = [max(outData['demandAdj_total'][s:f]) for s, f in monthHours]
outData['demandChargeAdjusted_total'] = [pad*demandChargeCost for pad in outData['peakAdjustedDemand_total']]
- outData['totalCost'] = [ec+dcm for ec, dcm in zip(outData['energyCost'], outData['demandCharge'])]
- outData['totalCostAdjusted_total'] = [eca+dca for eca, dca in zip(outData['energyCostAdjusted_total'], outData['demandChargeAdjusted_total'])]
- outData['savings'] = [tot-tota for tot, tota in zip(outData['totalCost'], outData['totalCostAdjusted_total'])]
+ outData['totalCost_service'] = [ec+dcm for ec, dcm in zip(outData['energyCost'], outData['demandCharge'])]
+ outData['totalCostAdjusted_service'] = [eca+dca for eca, dca in zip(outData['energyCostAdjusted_total'], outData['demandChargeAdjusted_total'])]
+ outData['savings_adjusted'] = [tot-tota for tot, tota in zip(outData['totalCost_service'], outData['totalCostAdjusted_service'])]
+ outData['savings_demandCharge'] = list(np.array(outData['demandCharge']) - np.array(outData['demandChargeAdjusted_total']))
+ outData['savings_demandCharge_annual'] = list(np.full(projectionLength, np.sum(outData['savings_demandCharge'])))
## Calculate total residential BESS capacity and compensation
total_kw_residential_BESS = int(inputDict['numberBESS']) * float(inputDict['BESS_kw'])
@@ -627,19 +640,32 @@ def work(modelDir, inputDict):
#total_installed_costs = ## TODO: How do we deal with both costs per kw and kWh?
## Total operational costs (e.g. utility costs from API calls)
- operationalCosts_ongoing = float(inputDict['BESS_operationalCosts_ongoing']) + float(inputDict['TESS_operationalCosts_ongoing'])
- operationalCosts_onetime = float(inputDict['BESS_operationalCosts_onetime']) + float(inputDict['TESS_operationalCosts_onetime'])
- operationalCosts_1year_total = operationalCosts_onetime + operationalCosts_ongoing*12
- operationalCosts_1year_array = np.full(12, operationalCosts_ongoing)
- operationalCosts_1year_array[0] += operationalCosts_onetime
- operationalCosts_ongoing_allyears_array = np.full(projectionLength, operationalCosts_ongoing*12.0)
- operationalCosts_onetime_allyears_array = np.full(projectionLength, 0.0)
- operationalCosts_onetime_allyears_array[0] = operationalCosts_onetime
+ operationalCosts_ongoing_BESS = float(inputDict['BESS_operationalCosts_ongoing'])
+ operationalCosts_ongoing_TESS = float(inputDict['TESS_operationalCosts_ongoing'])
+ operationalCosts_ongoing_total = operationalCosts_ongoing_BESS + operationalCosts_ongoing_TESS
+ operationalCosts_onetime_BESS = float(inputDict['BESS_operationalCosts_onetime'])
+ operationalCosts_onetime_TESS = float(inputDict['TESS_operationalCosts_onetime'])
+ operationalCosts_BESS_1year_total = operationalCosts_onetime_BESS + operationalCosts_ongoing_BESS*12
+ operationalCosts_TESS_1year_total = operationalCosts_onetime_TESS + operationalCosts_ongoing_TESS*12
+ operationalCosts_1year_total = operationalCosts_BESS_1year_total + operationalCosts_TESS_1year_total
+
+ operationalCosts_BESS_1year_array = np.full(12, operationalCosts_ongoing_BESS)
+ operationalCosts_TESS_1year_array = np.full(12, operationalCosts_ongoing_TESS)
+ operationalCosts_BESS_1year_array[0] += operationalCosts_onetime_BESS
+ operationalCosts_TESS_1year_array[0] += operationalCosts_onetime_TESS
+ operationalCosts_1year_array = operationalCosts_BESS_1year_array + operationalCosts_TESS_1year_array
+ operationalCosts_BESS_ongoing_allyears_array = np.full(projectionLength, operationalCosts_ongoing_BESS*12.0)
+ operationalCosts_TESS_ongoing_allyears_array = np.full(projectionLength, operationalCosts_ongoing_TESS*12.0)
+ operationalCosts_BESS_onetime_allyears_array = np.full(projectionLength, 0.0)
+ operationalCosts_TESS_onetime_allyears_array = np.full(projectionLength, 0.0)
+ operationalCosts_BESS_onetime_allyears_array[0] = operationalCosts_onetime_BESS
+ operationalCosts_TESS_onetime_allyears_array[0] = operationalCosts_onetime_TESS
+
## Calculating total utility costs
- utilityCosts_1year_total = operationalCosts_1year_total + operationalCosts_ongoing + total_subsidy_1year + total_residential_BESS_compensation
+ utilityCosts_1year_total = operationalCosts_1year_total + total_subsidy_1year + total_residential_BESS_compensation
## NOTE: utilityCosts_allyears_total (below) assumes that the REopt BESS array will be the same for every year of the entire projectionLength (entire analysis)
- utilityCosts_allyears_total = utilityCosts_1year_total + (projectionLength-1)*(operationalCosts_ongoing+subsidyRecurring_1year_total+total_residential_BESS_compensation)
+ utilityCosts_allyears_total = utilityCosts_1year_total + (projectionLength-1)*(operationalCosts_ongoing_total+subsidyRecurring_1year_total+total_residential_BESS_compensation)
utilityCosts_1year_array = list(np.array(operationalCosts_1year_array) + np.array(total_subsidy_1year_array) + np.array(BESS_monthly_compensation_to_consumer))
## Calculating total utility savings
@@ -650,25 +676,48 @@ def work(modelDir, inputDict):
## Calculating total utility net savings (savings minus costs)
utilityNetSavings_1year_total = utilitySavings_1year_total - utilityCosts_1year_total
- utilityNetSavings_1year_array = list(np.array(utilitySavings_1year_array) - np.array(utilityCosts_1year_array))
+ utilityNetSavings_1year_array = np.array(utilitySavings_1year_array) - np.array(utilityCosts_1year_array)
utilityNetSavings_allyears_total = utilitySavings_allyears_total - utilityCosts_allyears_total
utilityNetSavings_allyears_array = np.full(projectionLength, utilityNetSavings_1year_total)
+ ## Update utility savings to include subsidies and BESS compensation to conumers
+ #outData['savings_total'] = list(np.array(outData['savings_adjusted']) - np.array(utilityCosts_1year_array))
+
## Update financial parameters
- outData['savings'] = utilityNetSavings_1year_array
- outData['totalCost'] = list(np.array(outData['totalCost']) + np.array(utilityCosts_1year_array))
+ #outData['savings'] = utilityNetSavings_1year_array
+ #outData['totalCost_TESS'] = float(inputDict['unitUpkeepCost'])*float(inputDict['number_devices'])
+ #outData['totalCost_annual'] = list((outData['totalCost_TESS'] + np.array(utilityCosts_1year_array))) # + np.array(outData['energyCostAdjusted_gridCharging'] + np.array(outData['demandChargeAdjusted_total'])))
+ #outData['totalCost_annual'] = list((outData['totalCost_TESS'] + np.array(utilityCosts_1year_array)) + np.array(outData['energyCostAdjusted_total']) + np.array(outData['demandChargeAdjusted_total']))
+ outData['totalCost_annual'] = list(np.array(utilityCosts_1year_array))
+ outData['totalCost_paidToConsumer'] = list(BESS_monthly_compensation_to_consumer + total_subsidy_1year_array)
+
outData['NPV'] = utilityNetSavings_allyears_total
- if utilitySavings_1year_total <= 0:
+ if utilitySavings_1year_total == 0:
outData['SPP'] = 0.
else:
outData['SPP'] = utilityCosts_allyears_total / utilitySavings_1year_total
- outData['netCashflow'] = list(utilityNetSavings_allyears_array)
- outData['cumulativeCashflow'] = [sum(utilityNetSavings_allyears_array[:i+1]) for i in range(len(utilityNetSavings_allyears_array))]
+
+ annualEarnings = np.sum(outData['savings_adjusted']) - np.sum(outData['totalCost_annual'])
+ annualEarnings_array = np.array(outData['savings_adjusted']) - np.array(outData['totalCost_annual'])
+ outData['savings_total'] = list(annualEarnings_array) ## (total cost of service - adjusted total cost of service) - (operational costs + subsidies + BESS compensation to consumer)
+
+ outData['annualEarnings_BESS'] = list(np.full(projectionLength, np.sum(outData['energyCostAdjusted_BESS'])))
+ outData['annualEarnings_TESS'] = list(np.full(projectionLength, np.sum(outData['energyCostAdjusted_TESS'])))
+ outData['annualEarnings_generator'] = list(np.full(projectionLength, np.sum(outData['energyCostAdjusted_generator'])))
+
+ cashFlowList_total = np.full(projectionLength, annualEarnings)
+ outData['cashFlowList_total'] = list(cashFlowList_total)
+ #outData['cumulativeCashflow_total'] = [sum(cashFlowList_total[:i+1]) for i in cashFlowList_total]
+ outData['cumulativeCashflow_total'] = list(np.cumsum(cashFlowList_total))
outData['savingsAllYears'] = list(utilitySavings_allyears_array)
- outData['subsidies'] = list(total_subsidy_allyears_array)
- outData['BESS_compensation_to_consumer_allyears'] = list(BESS_allyears_compensation_to_consumer_array)
- outData['operationalCosts_ongoing_allyears_total'] = list(operationalCosts_ongoing_allyears_array)
- outData['operationalCosts_onetime_allyears_total'] = list(operationalCosts_onetime_allyears_array)
+
+ ## Show the costs to the utility as negative values in the Cash Flow Projection plot
+ outData['subsidies'] = list(total_subsidy_allyears_array*-1.)
+ outData['BESS_compensation_to_consumer_allyears'] = list(BESS_allyears_compensation_to_consumer_array*-1.)
+ outData['operationalCosts_BESS_ongoing_allyears_total'] = list(operationalCosts_BESS_ongoing_allyears_array*-1.)
+ outData['operationalCosts_BESS_onetime_allyears_total'] = list(operationalCosts_BESS_onetime_allyears_array*-1.)
+ outData['operationalCosts_TESS_ongoing_allyears_total'] = list(operationalCosts_BESS_ongoing_allyears_array*-1.)
+ outData['operationalCosts_TESS_onetime_allyears_total'] = list(operationalCosts_BESS_onetime_allyears_array*-1.)
# Model operations typically ends here.
# Stdout/stderr.
@@ -696,7 +745,7 @@ def new(modelDir):
'year' : '2018',
'urdbLabel' : '612ff9c15457a3ec18a5f7d3', ## Brighton, CO
'fileName': 'utility_2018_kW_load.csv',
- 'tempFileName': 'utility_CO_2018_temperatures.csv',
+ 'tempFileName': 'open-meteo-denverCO-noheaders.csv',
'demandCurve': demand_curve,
'tempCurve': temp_curve,
diff --git a/omf/static/testFiles/open-meteo-denverCO-noheaders.csv b/omf/static/testFiles/open-meteo-denverCO-noheaders.csv
new file mode 100644
index 000000000..d2fa73be8
--- /dev/null
+++ b/omf/static/testFiles/open-meteo-denverCO-noheaders.csv
@@ -0,0 +1,8760 @@
+-15.9
+-16.2
+-16.2
+-15.7
+-15.3
+-16.2
+-14.9
+-14.9
+-14.4
+-12.9
+-11.0
+-9.4
+-7.3
+-5.7
+-5.0
+-5.1
+-6.0
+-9.3
+-10.3
+-11.4
+-11.5
+-11.1
+-10.5
+-10.0
+-9.8
+-9.7
+-10.0
+-10.6
+-10.2
+-11.9
+-11.0
+-10.8
+-9.8
+-5.7
+-2.0
+0.6
+2.8
+4.4
+4.8
+4.2
+0.0
+-3.8
+-4.1
+-4.3
+-4.6
+-4.7
+-4.5
+-6.4
+-6.5
+-7.4
+-7.4
+-6.8
+-6.5
+-7.0
+-5.8
+-5.8
+-4.5
+-0.5
+3.9
+7.9
+10.2
+10.3
+10.2
+8.9
+4.1
+4.3
+0.3
+-2.3
+-2.9
+-2.9
+-2.5
+-2.4
+-2.6
+-2.7
+-3.1
+-3.4
+-3.4
+-5.9
+-5.2
+-5.5
+-4.6
+-0.8
+3.7
+7.3
+9.0
+9.0
+8.8
+8.0
+4.3
+-1.1
+-0.7
+-1.9
+-2.7
+-3.7
+-3.8
+-4.5
+-4.6
+-4.7
+-5.0
+-5.1
+-4.9
+-4.9
+-5.1
+-3.4
+-1.5
+3.1
+6.1
+8.3
+8.7
+8.8
+8.2
+8.0
+6.9
+2.4
+1.1
+1.0
+-0.3
+-0.4
+-0.4
+-0.6
+-0.4
+-0.1
+-0.4
+-0.8
+-1.6
+-3.2
+-2.6
+-2.6
+-1.9
+0.1
+3.6
+6.9
+9.6
+10.7
+8.5
+6.5
+4.2
+2.3
+2.9
+4.2
+4.0
+1.8
+0.3
+0.4
+1.3
+0.8
+1.5
+-1.3
+-0.3
+-1.2
+-1.1
+0.9
+0.6
+2.7
+4.1
+5.6
+7.5
+8.4
+8.5
+8.2
+6.0
+3.5
+2.4
+2.1
+1.4
+0.5
+-1.0
+-2.5
+-2.7
+-2.7
+-3.7
+-4.1
+-3.0
+-2.9
+-3.0
+-1.6
+0.0
+3.3
+6.6
+9.2
+11.6
+11.6
+9.2
+5.6
+2.3
+5.0
+4.3
+2.8
+1.9
+2.7
+2.7
+1.7
+1.6
+1.2
+0.1
+0.3
+0.2
+-0.2
+1.0
+1.1
+1.7
+5.9
+9.7
+13.4
+15.6
+16.8
+16.9
+16.5
+11.8
+14.4
+8.4
+5.1
+4.0
+3.9
+4.8
+4.6
+4.7
+4.2
+3.6
+3.5
+1.0
+2.9
+3.3
+3.1
+3.1
+5.7
+7.8
+11.2
+13.5
+14.7
+13.7
+10.4
+8.7
+6.2
+4.6
+4.1
+-1.6
+-3.6
+-3.8
+-4.4
+-4.8
+-4.4
+-4.1
+-4.4
+-4.7
+-4.2
+-3.9
+-3.6
+-3.0
+-0.8
+1.0
+2.1
+3.2
+4.1
+4.5
+4.5
+4.1
+1.0
+0.1
+-0.7
+-2.4
+-2.2
+-1.2
+-0.7
+-1.1
+0.4
+-1.7
+-1.5
+-0.8
+-2.4
+-1.0
+-2.9
+-2.5
+1.7
+4.9
+7.5
+5.9
+7.2
+8.5
+8.3
+6.1
+2.3
+0.6
+-0.9
+-1.7
+-1.5
+-2.7
+-3.0
+-3.5
+-3.1
+-2.8
+-3.5
+-3.8
+-3.1
+-3.7
+-3.7
+-2.5
+-0.2
+3.7
+6.5
+8.5
+9.0
+8.7
+8.4
+6.5
+2.8
+1.2
+-0.5
+-1.1
+-1.0
+-1.5
+-1.6
+-2.5
+-1.9
+-2.0
+-2.1
+-1.0
+-0.8
+-1.5
+-2.2
+-1.8
+1.7
+5.6
+9.2
+10.7
+11.6
+12.1
+11.6
+6.8
+4.6
+3.3
+0.2
+-0.5
+-0.1
+1.3
+-0.4
+-1.1
+-3.5
+-3.1
+-1.1
+-1.6
+-4.6
+-5.0
+-5.3
+-5.6
+-5.5
+-5.4
+-5.2
+-5.3
+-5.1
+-4.3
+-3.9
+-4.3
+-7.1
+-8.3
+-8.8
+-9.4
+-9.9
+-10.1
+-10.3
+-10.4
+-10.5
+-10.6
+-10.5
+-10.5
+-12.0
+-13.5
+-14.3
+-12.8
+-8.7
+-4.8
+-1.7
+0.0
+0.8
+1.3
+1.3
+0.0
+-5.3
+-5.6
+-4.2
+-4.9
+-7.1
+-7.7
+-7.9
+-8.3
+-8.4
+-8.4
+-8.1
+-8.1
+-9.2
+-10.2
+-9.9
+-8.4
+-3.6
+1.3
+4.5
+6.8
+8.3
+8.8
+8.5
+4.5
+0.9
+-1.1
+-1.9
+-1.6
+-1.3
+-1.9
+-2.0
+-2.2
+-2.0
+-1.3
+-1.2
+-1.0
+-1.6
+-0.9
+-0.6
+-0.2
+3.0
+7.3
+11.4
+13.5
+14.8
+15.2
+14.2
+12.7
+4.5
+1.7
+0.7
+2.9
+3.0
+2.0
+1.6
+1.7
+1.7
+1.7
+1.6
+1.1
+1.9
+1.5
+1.8
+2.9
+5.5
+8.8
+12.3
+14.9
+16.4
+17.6
+16.5
+16.3
+13.3
+6.0
+5.1
+2.7
+3.4
+2.4
+1.6
+1.5
+0.4
+0.8
+0.4
+-1.1
+-1.0
+0.6
+-0.9
+0.4
+3.5
+5.7
+6.4
+7.9
+9.1
+9.5
+9.5
+7.9
+1.8
+0.2
+-0.2
+-1.0
+-1.1
+-0.9
+-1.2
+-1.3
+-1.3
+-1.6
+-1.8
+-1.9
+-2.9
+-2.7
+-2.9
+-3.1
+-3.3
+-2.8
+-3.2
+-3.3
+-3.3
+-3.0
+-3.4
+-3.3
+-4.0
+-4.3
+-4.3
+-4.1
+-4.0
+-4.1
+-4.8
+-5.3
+-5.0
+-5.2
+-6.0
+-6.1
+-4.3
+-7.7
+-10.7
+-9.0
+-5.2
+-3.1
+-0.3
+1.2
+2.3
+2.8
+1.9
+1.1
+-2.0
+-6.7
+-7.5
+-7.1
+-5.2
+-2.5
+-4.3
+-4.9
+-5.0
+-9.2
+-7.1
+-9.9
+-4.3
+-7.4
+-6.2
+-10.3
+-4.1
+0.3
+1.6
+1.8
+1.5
+1.8
+0.6
+0.9
+-2.6
+-3.9
+-4.9
+-5.3
+-5.6
+-6.3
+-7.5
+-8.3
+-10.5
+-12.2
+-12.1
+-12.1
+-5.8
+-6.6
+-5.9
+-5.8
+-3.5
+-0.6
+2.4
+4.5
+6.0
+6.1
+5.5
+4.7
+4.9
+-0.3
+-2.9
+-0.8
+-0.3
+-0.3
+-0.7
+-1.6
+-3.1
+-4.0
+-4.2
+-4.8
+-4.2
+-4.7
+-4.6
+-3.5
+-1.0
+2.2
+5.0
+7.2
+8.4
+11.4
+11.5
+10.9
+6.6
+4.5
+5.0
+4.0
+-0.4
+-3.1
+-3.0
+-3.6
+-4.4
+-5.2
+-4.1
+-3.8
+-3.8
+-2.7
+-2.6
+-1.2
+1.0
+3.5
+4.0
+3.2
+3.8
+4.4
+4.4
+2.9
+-0.7
+-1.4
+-1.3
+-1.1
+-0.9
+-2.8
+-5.8
+-5.9
+-5.8
+-5.5
+-6.0
+-6.4
+-6.8
+-6.0
+-6.3
+-5.6
+-2.8
+-0.2
+2.9
+4.9
+5.7
+6.4
+6.8
+4.6
+3.8
+1.2
+-1.5
+-2.0
+-2.5
+-2.7
+-2.6
+-3.2
+-3.8
+-4.1
+-4.6
+-4.5
+-5.3
+-3.9
+-3.8
+-1.6
+2.3
+4.1
+5.7
+7.7
+8.5
+8.4
+8.4
+7.6
+2.8
+1.6
+0.0
+-0.9
+-1.0
+-1.2
+-2.0
+-2.5
+-3.0
+-3.1
+-3.1
+-3.8
+-3.8
+-3.0
+-3.7
+-2.4
+0.4
+4.4
+8.1
+10.8
+12.1
+12.8
+13.0
+12.1
+9.7
+7.6
+6.3
+5.4
+4.0
+2.8
+1.9
+2.4
+2.4
+2.5
+3.4
+3.5
+3.0
+2.8
+3.3
+5.3
+6.3
+10.3
+11.8
+12.9
+14.5
+16.2
+17.3
+15.7
+9.6
+7.7
+6.7
+4.6
+1.9
+4.2
+3.4
+1.3
+0.3
+-1.3
+-0.9
+-0.2
+-2.7
+-3.0
+-3.3
+-2.8
+-0.9
+2.3
+5.3
+7.1
+8.0
+7.9
+8.0
+7.2
+4.0
+1.6
+-0.6
+-1.9
+-1.7
+-1.8
+-1.9
+-2.3
+-3.0
+-3.7
+-3.9
+-3.9
+-3.9
+-3.8
+-3.4
+-2.9
+-2.3
+-1.1
+1.0
+2.9
+3.7
+3.9
+3.4
+2.6
+0.5
+-0.6
+-2.5
+-3.9
+-4.3
+-4.2
+-4.1
+-4.3
+-4.6
+-4.6
+-4.6
+-4.7
+-3.9
+-3.5
+-3.5
+-2.9
+-0.2
+3.4
+6.6
+8.9
+10.6
+11.0
+11.5
+9.9
+3.9
+2.0
+2.1
+0.8
+2.2
+1.0
+2.9
+3.0
+1.1
+0.3
+1.3
+1.3
+-0.8
+0.2
+2.1
+3.9
+8.5
+11.3
+11.7
+12.5
+13.6
+13.9
+13.4
+12.5
+10.0
+6.8
+7.6
+7.2
+4.7
+4.5
+5.9
+3.5
+2.7
+1.4
+0.3
+-1.1
+-5.6
+-7.2
+-9.0
+-9.7
+-8.5
+-6.6
+-4.7
+-2.5
+-0.4
+1.8
+3.7
+4.5
+-3.5
+-4.9
+-5.1
+-5.4
+-4.3
+-4.5
+-3.2
+0.6
+5.2
+6.4
+5.6
+3.7
+1.3
+6.0
+5.7
+3.1
+6.0
+9.0
+11.2
+11.9
+10.9
+7.2
+6.4
+4.6
+-0.2
+-2.3
+-4.0
+-3.5
+-3.4
+-3.2
+-2.7
+-3.1
+-4.2
+-5.4
+-5.4
+-5.4
+-5.0
+-4.6
+-3.9
+-3.5
+-2.3
+-0.9
+2.0
+5.1
+7.1
+8.0
+7.7
+7.0
+2.8
+0.3
+1.9
+-1.0
+-1.8
+-1.7
+-3.0
+-3.9
+-3.6
+-3.8
+-4.8
+-5.0
+-5.6
+-6.3
+-6.2
+-3.9
+1.7
+5.9
+7.8
+8.6
+9.5
+10.3
+10.8
+10.8
+9.0
+8.9
+7.8
+3.6
+0.8
+0.5
+3.1
+2.9
+2.1
+1.6
+1.4
+2.3
+3.1
+2.8
+2.5
+4.6
+8.7
+11.3
+13.1
+14.9
+16.6
+16.8
+16.5
+15.0
+12.3
+11.4
+9.6
+9.2
+3.9
+5.2
+5.9
+5.6
+4.8
+3.8
+4.4
+1.8
+-1.7
+-3.9
+-4.2
+-4.2
+-2.4
+-0.4
+2.7
+5.3
+7.4
+9.3
+8.8
+6.4
+-6.9
+-7.1
+-7.6
+-7.7
+-7.4
+-7.5
+-8.0
+-8.1
+-7.9
+-7.6
+-8.1
+-8.3
+-8.7
+-8.8
+-8.9
+-8.6
+-8.0
+-7.3
+-7.1
+-7.4
+-7.3
+-7.0
+-6.8
+-7.0
+-8.8
+-9.0
+-9.1
+-9.0
+-8.9
+-9.7
+-10.1
+-10.0
+-9.7
+-9.2
+-8.7
+-8.6
+-9.5
+-9.5
+-9.3
+-7.5
+-4.5
+-1.0
+2.6
+5.0
+6.4
+6.9
+6.9
+5.9
+-0.2
+-2.2
+-4.3
+-4.8
+-5.3
+-5.8
+-5.9
+-6.0
+-6.2
+-6.3
+-7.1
+-7.0
+-7.8
+-8.2
+-8.6
+-8.7
+-8.1
+-7.0
+-4.8
+-4.2
+-3.4
+-2.2
+-2.2
+-3.4
+-8.3
+-10.0
+-9.9
+-9.5
+-9.5
+-9.5
+-8.6
+-8.2
+-8.2
+-8.3
+-8.5
+-8.7
+-8.7
+-6.8
+-5.3
+-2.7
+1.0
+5.2
+8.6
+11.2
+12.9
+13.6
+13.6
+11.5
+5.5
+6.9
+2.6
+1.5
+-0.6
+-0.5
+-0.8
+-0.3
+-0.1
+0.0
+0.3
+0.2
+-0.8
+-0.5
+-0.3
+2.1
+5.9
+10.6
+13.5
+15.1
+16.6
+16.9
+16.6
+15.7
+10.6
+5.4
+5.0
+5.6
+5.5
+6.2
+6.4
+5.3
+4.6
+3.6
+3.5
+2.5
+-0.5
+-2.1
+-2.5
+-0.6
+2.5
+5.8
+6.9
+8.4
+8.9
+8.4
+9.0
+8.1
+4.9
+4.6
+-1.9
+-1.9
+-2.3
+-3.2
+-3.9
+-5.0
+-6.1
+-6.7
+-6.8
+-6.6
+-8.0
+-6.8
+-7.0
+-5.3
+-3.5
+-1.2
+1.7
+5.2
+7.2
+7.8
+8.0
+7.8
+1.0
+2.9
+-2.6
+-1.6
+-2.8
+-3.1
+-4.5
+-2.3
+-3.0
+-3.1
+-1.7
+-1.1
+-1.6
+-2.1
+-3.4
+-1.0
+1.9
+5.1
+6.8
+7.9
+9.6
+11.5
+12.0
+12.0
+10.5
+6.4
+4.8
+4.2
+3.7
+3.8
+4.2
+4.4
+4.3
+3.9
+3.4
+3.7
+3.2
+3.0
+3.0
+6.0
+10.0
+13.5
+15.9
+16.4
+16.7
+16.7
+16.6
+16.5
+13.5
+10.1
+6.5
+3.1
+0.3
+-2.0
+-2.9
+-4.0
+-4.8
+-5.3
+-6.1
+-6.5
+-9.7
+-9.7
+-9.9
+-9.7
+-8.8
+-7.3
+-5.1
+-2.1
+-1.0
+-0.7
+-0.4
+-2.6
+-10.5
+-11.2
+-11.1
+-11.0
+-11.2
+-11.3
+-11.4
+-12.3
+-12.9
+-13.2
+-13.6
+-15.5
+-17.9
+-17.7
+-18.1
+-17.7
+-15.6
+-13.5
+-11.1
+-9.4
+-7.7
+-6.7
+-7.2
+-8.3
+-10.9
+-10.9
+-11.1
+-11.2
+-11.1
+-11.4
+-12.7
+-15.1
+-17.2
+-17.0
+-16.8
+-16.8
+-17.8
+-16.4
+-16.1
+-14.8
+-12.0
+-9.2
+-6.4
+-3.8
+-2.4
+-2.1
+-2.4
+-2.7
+-8.2
+-10.0
+-10.2
+-10.5
+-11.0
+-11.3
+-11.4
+-11.5
+-11.3
+-11.3
+-11.5
+-11.8
+-13.0
+-11.3
+-10.6
+-9.8
+-8.2
+-6.5
+-4.7
+-3.3
+-2.1
+-1.2
+-1.1
+-1.5
+-5.3
+-5.8
+-5.9
+-6.2
+-6.5
+-6.4
+-7.4
+-11.8
+-13.0
+-8.7
+-9.3
+-10.0
+-9.4
+-9.3
+-9.2
+-7.8
+-5.9
+-3.9
+-1.8
+-0.2
+0.8
+1.3
+2.0
+1.2
+-4.8
+-5.5
+-5.5
+-5.3
+-6.2
+-6.9
+-7.0
+-5.9
+-5.8
+-6.6
+-7.3
+-7.3
+-6.5
+-6.5
+-7.5
+-4.2
+-2.3
+-1.1
+-0.3
+0.4
+1.0
+1.5
+1.4
+1.0
+-1.4
+-2.6
+-2.4
+-1.8
+-2.8
+-6.1
+-6.8
+-6.1
+-6.8
+-8.2
+-8.8
+-9.5
+-9.5
+-8.9
+-7.3
+-3.2
+-1.0
+0.6
+1.6
+2.0
+2.5
+2.9
+3.2
+3.1
+2.2
+-0.8
+-1.1
+-1.2
+-2.8
+-5.1
+-5.0
+-4.6
+-5.5
+-5.6
+-5.8
+-6.3
+-8.6
+-6.5
+-6.7
+-4.2
+-1.0
+2.4
+5.4
+7.4
+8.8
+9.2
+9.2
+8.8
+4.9
+2.0
+-0.1
+-1.1
+-2.7
+-2.9
+-4.4
+-4.4
+-5.3
+-5.6
+-6.1
+-6.7
+-7.2
+-5.4
+-5.4
+-2.6
+0.9
+3.7
+6.1
+7.2
+8.9
+10.4
+11.4
+11.4
+10.1
+6.7
+1.5
+-0.9
+-2.2
+-2.6
+-3.8
+-4.9
+-4.1
+-3.9
+-3.8
+-4.3
+-5.7
+-4.4
+-4.1
+-1.2
+1.5
+3.6
+5.4
+6.9
+8.1
+8.4
+8.4
+8.5
+4.4
+2.3
+1.0
+2.0
+0.9
+0.6
+0.8
+0.1
+-2.3
+-3.2
+-4.3
+-5.0
+-5.9
+-5.8
+-5.5
+-2.5
+0.6
+3.8
+7.1
+9.9
+12.0
+13.2
+13.1
+12.1
+8.1
+2.8
+2.0
+-0.1
+-0.8
+-3.0
+-2.2
+-1.1
+-0.8
+-1.0
+-0.6
+-0.5
+-0.1
+0.0
+0.5
+4.4
+8.1
+11.4
+14.7
+16.2
+17.2
+17.8
+18.0
+17.4
+15.4
+11.1
+8.8
+5.0
+2.2
+3.9
+4.8
+5.0
+5.6
+5.1
+3.5
+2.2
+0.5
+-1.5
+-0.7
+3.0
+6.5
+10.1
+12.9
+15.2
+16.5
+17.3
+17.6
+17.2
+15.8
+10.9
+9.0
+6.9
+6.6
+6.2
+6.2
+4.6
+4.9
+5.0
+4.7
+5.1
+4.5
+3.1
+2.0
+4.7
+9.9
+14.5
+16.0
+16.5
+16.9
+17.5
+16.9
+12.7
+9.8
+6.8
+4.6
+4.7
+4.1
+2.5
+0.0
+-1.3
+-1.7
+-2.2
+-2.2
+-2.2
+-3.1
+-3.1
+-2.3
+0.0
+1.1
+2.4
+3.4
+4.2
+4.8
+5.0
+4.8
+3.8
+2.7
+1.1
+0.3
+-0.6
+-1.7
+-2.1
+-2.6
+-3.4
+-4.0
+-4.0
+-4.1
+-3.2
+-4.7
+-3.1
+-3.3
+-1.3
+0.4
+1.9
+3.6
+5.2
+6.4
+6.9
+7.1
+7.2
+6.5
+2.2
+1.5
+-0.1
+-1.3
+-3.3
+-3.9
+-4.4
+-5.2
+-5.9
+-5.7
+-4.8
+-6.1
+-5.8
+-5.7
+-2.9
+0.1
+3.3
+6.5
+8.5
+9.3
+9.7
+9.9
+9.4
+8.9
+4.3
+2.9
+1.6
+0.3
+-0.7
+-0.3
+-1.8
+-3.9
+-4.8
+-4.3
+-4.2
+-4.0
+-3.4
+-1.9
+0.4
+4.2
+9.7
+13.2
+14.4
+15.5
+16.2
+15.9
+15.4
+13.8
+13.2
+6.4
+7.4
+4.9
+1.9
+1.0
+0.5
+2.3
+0.1
+-0.5
+-0.7
+7.4
+6.7
+7.4
+9.6
+10.7
+12.4
+13.9
+15.0
+15.9
+17.2
+16.6
+15.7
+14.6
+12.8
+11.1
+9.2
+5.6
+4.5
+3.3
+1.9
+1.8
+2.0
+4.5
+3.2
+0.8
+1.7
+3.4
+7.0
+10.2
+10.4
+10.9
+9.9
+11.1
+8.9
+9.6
+9.3
+8.4
+5.0
+2.7
+1.3
+-0.7
+-0.9
+-1.6
+-2.6
+-2.1
+-2.0
+-2.3
+-2.5
+-4.7
+-3.7
+-4.3
+-1.1
+1.4
+3.6
+5.5
+7.2
+8.3
+9.0
+9.3
+9.0
+8.4
+3.4
+2.9
+1.8
+1.1
+0.6
+-0.2
+-1.2
+0.8
+-2.4
+-3.5
+-4.4
+-4.5
+-4.3
+-2.7
+0.7
+4.0
+7.3
+10.1
+12.1
+12.1
+12.9
+12.8
+11.8
+11.8
+8.4
+6.3
+3.6
+4.1
+3.2
+1.5
+1.0
+0.3
+-1.2
+-2.2
+-2.9
+-1.9
+-2.8
+-2.2
+0.7
+3.5
+6.3
+8.8
+11.0
+12.6
+13.6
+13.8
+13.8
+13.2
+10.6
+9.4
+7.3
+6.2
+5.3
+4.7
+4.3
+3.7
+1.7
+-0.4
+-1.2
+-1.3
+-0.9
+0.6
+4.9
+9.5
+13.6
+16.4
+17.6
+18.6
+19.1
+19.2
+18.9
+17.4
+13.4
+10.3
+9.6
+10.7
+5.5
+5.2
+4.0
+3.3
+3.1
+2.3
+2.2
+3.4
+1.5
+3.9
+7.8
+10.5
+13.3
+16.3
+18.1
+19.0
+19.2
+18.1
+17.7
+10.7
+8.9
+6.9
+4.4
+2.7
+2.3
+2.2
+2.8
+3.3
+3.0
+2.5
+2.2
+2.2
+1.8
+3.2
+5.0
+7.4
+10.0
+12.1
+13.8
+14.2
+12.9
+12.8
+12.4
+10.4
+8.0
+5.6
+4.0
+3.3
+1.8
+-0.2
+-0.3
+0.2
+0.0
+-0.1
+-0.9
+-0.5
+-1.3
+-0.6
+2.4
+5.2
+8.6
+12.7
+15.4
+16.8
+17.6
+18.2
+17.8
+15.7
+14.0
+10.0
+7.8
+5.5
+4.8
+3.1
+2.7
+1.8
+3.1
+1.6
+0.7
+0.1
+-0.7
+1.5
+5.0
+7.5
+9.9
+11.6
+12.7
+13.3
+12.0
+11.8
+8.4
+3.4
+2.1
+1.6
+1.5
+1.6
+1.9
+1.5
+1.2
+1.4
+1.1
+0.5
+-0.5
+-1.5
+-1.5
+0.9
+2.4
+3.6
+5.6
+7.6
+8.5
+8.8
+8.5
+8.0
+8.1
+5.9
+4.9
+4.2
+2.3
+0.1
+0.1
+-0.8
+-1.5
+-2.4
+-3.0
+-3.5
+-3.5
+-2.6
+-3.8
+-1.0
+3.2
+5.6
+7.1
+8.8
+9.7
+10.7
+11.2
+11.0
+10.8
+9.1
+6.9
+5.4
+4.9
+2.8
+3.4
+0.8
+-1.1
+-0.9
+-1.8
+-2.3
+-2.2
+-2.2
+-3.1
+-0.6
+2.5
+6.2
+10.5
+13.8
+15.0
+15.5
+16.1
+16.2
+15.8
+16.2
+12.4
+10.3
+7.9
+7.9
+6.6
+5.4
+4.4
+4.7
+3.5
+2.9
+2.5
+2.2
+2.4
+4.2
+8.0
+12.5
+16.7
+19.2
+20.4
+21.8
+22.6
+21.1
+19.8
+20.1
+18.6
+15.6
+14.1
+12.3
+12.4
+13.0
+13.5
+13.4
+12.8
+12.6
+12.0
+10.0
+9.0
+11.1
+15.4
+19.1
+20.4
+19.3
+18.6
+20.4
+21.1
+20.3
+18.7
+15.8
+13.2
+10.9
+10.0
+9.5
+7.9
+7.3
+4.3
+5.5
+4.9
+2.8
+2.1
+2.7
+2.4
+3.9
+6.7
+10.5
+14.1
+16.9
+18.5
+19.6
+20.7
+18.9
+19.1
+17.5
+15.9
+14.5
+13.1
+11.8
+8.4
+7.1
+5.9
+5.4
+4.6
+3.9
+3.2
+2.2
+1.4
+4.2
+7.0
+9.7
+12.8
+15.3
+16.7
+17.9
+18.5
+18.6
+18.5
+13.9
+10.9
+9.4
+7.6
+6.3
+5.8
+4.9
+4.6
+4.3
+4.2
+3.9
+3.8
+2.1
+2.3
+2.5
+3.4
+5.0
+7.6
+10.0
+12.0
+13.0
+12.5
+12.0
+11.9
+5.7
+3.6
+2.4
+2.1
+2.0
+1.7
+1.5
+1.3
+1.2
+0.7
+0.3
+0.1
+0.1
+-0.4
+0.8
+2.6
+4.2
+5.8
+7.9
+9.2
+9.5
+10.6
+10.9
+12.1
+9.6
+7.9
+5.2
+3.9
+3.2
+1.7
+0.5
+-0.1
+-0.6
+-1.4
+-1.2
+-0.8
+-1.9
+-0.8
+2.0
+3.9
+4.2
+5.8
+5.6
+6.0
+6.8
+6.2
+6.3
+6.6
+1.1
+1.6
+1.5
+1.0
+1.2
+0.6
+-0.3
+-0.8
+-1.3
+-1.8
+-1.9
+-2.9
+-3.8
+-4.0
+-1.9
+2.0
+5.7
+7.6
+8.9
+9.7
+9.8
+9.1
+9.7
+8.0
+2.4
+2.7
+2.3
+1.9
+1.2
+0.1
+-0.1
+-0.6
+-1.0
+-1.6
+-2.6
+-3.0
+-3.7
+-3.9
+-1.9
+1.4
+5.2
+10.1
+13.2
+14.7
+15.8
+16.4
+16.8
+17.0
+15.7
+13.9
+12.2
+9.2
+9.1
+6.4
+4.6
+3.9
+4.1
+3.8
+3.1
+1.3
+0.9
+-0.2
+1.7
+3.2
+4.8
+6.7
+8.6
+11.6
+13.3
+14.4
+15.0
+14.0
+7.0
+1.9
+0.0
+0.3
+0.0
+-1.0
+-1.6
+-1.8
+-1.9
+-2.2
+-2.3
+-2.8
+-3.0
+-2.9
+-2.2
+-0.1
+1.9
+3.6
+5.7
+8.1
+10.2
+11.7
+12.7
+13.4
+10.8
+9.2
+5.3
+3.6
+2.5
+0.9
+1.0
+0.0
+0.3
+0.4
+1.7
+-0.2
+-2.2
+-2.0
+1.7
+6.3
+10.8
+15.3
+19.0
+20.5
+21.8
+23.3
+21.8
+20.1
+20.3
+14.8
+11.0
+12.0
+12.6
+9.1
+8.0
+5.8
+4.5
+3.8
+3.0
+0.1
+-0.2
+-0.7
+0.0
+1.2
+3.0
+4.4
+5.8
+6.7
+8.0
+9.0
+9.6
+9.7
+9.2
+7.1
+4.6
+3.0
+2.4
+2.1
+1.2
+0.7
+0.2
+0.3
+-1.7
+-2.2
+-3.1
+-2.7
+-0.7
+3.1
+7.7
+11.5
+14.6
+15.8
+16.8
+17.6
+18.0
+17.1
+15.0
+12.8
+10.9
+9.9
+8.2
+8.9
+10.7
+9.0
+6.0
+6.1
+6.2
+5.6
+3.3
+3.1
+6.6
+10.9
+14.2
+16.5
+18.0
+18.8
+18.8
+19.2
+19.7
+19.4
+16.8
+14.8
+13.2
+10.9
+9.7
+9.2
+8.8
+7.5
+7.9
+6.8
+5.5
+5.1
+4.6
+3.4
+1.7
+0.7
+1.0
+1.7
+2.0
+1.5
+2.0
+1.4
+1.2
+0.4
+-3.3
+-3.6
+-3.5
+-3.6
+-3.3
+-3.4
+-3.8
+-4.4
+-5.1
+-6.0
+-6.1
+-6.0
+-5.6
+-5.3
+-4.2
+-2.4
+-0.4
+2.0
+6.0
+8.5
+10.7
+13.0
+14.3
+14.1
+10.6
+7.8
+6.7
+7.3
+8.2
+8.6
+10.3
+9.8
+9.8
+8.2
+7.7
+6.1
+5.9
+6.0
+8.5
+11.5
+13.5
+14.9
+15.9
+16.8
+15.8
+16.3
+16.8
+16.7
+14.9
+12.5
+11.3
+8.7
+7.5
+6.5
+5.2
+4.7
+3.8
+3.9
+3.2
+2.1
+1.8
+1.0
+1.7
+3.0
+4.5
+6.7
+9.0
+10.6
+12.0
+12.9
+13.0
+12.7
+12.2
+10.6
+8.7
+6.5
+6.4
+5.8
+4.4
+3.5
+3.0
+2.6
+2.4
+2.3
+2.8
+2.7
+5.9
+10.2
+13.0
+15.2
+16.8
+17.9
+18.9
+19.8
+20.5
+20.8
+19.4
+17.5
+16.3
+14.3
+11.7
+11.5
+10.3
+9.0
+8.7
+8.9
+9.9
+9.3
+12.5
+9.8
+11.1
+15.4
+20.2
+22.0
+23.5
+24.5
+25.0
+25.1
+24.8
+24.6
+23.6
+18.7
+15.4
+14.1
+12.0
+10.8
+9.1
+7.8
+7.1
+6.1
+5.8
+5.2
+5.5
+5.6
+7.8
+10.3
+13.8
+17.9
+19.5
+22.5
+23.5
+24.9
+24.6
+23.5
+22.4
+20.5
+15.6
+12.0
+10.6
+8.7
+7.3
+7.2
+5.9
+4.9
+4.2
+4.4
+3.8
+3.5
+4.9
+5.8
+6.3
+7.4
+7.1
+7.8
+7.3
+7.7
+8.6
+7.0
+3.6
+3.3
+2.9
+2.0
+0.9
+0.6
+0.5
+0.8
+1.2
+2.0
+1.7
+1.5
+2.3
+2.6
+4.0
+5.7
+7.6
+8.6
+9.8
+12.0
+12.5
+13.1
+13.1
+13.4
+10.5
+8.5
+7.0
+6.6
+3.8
+2.2
+1.4
+3.2
+2.7
+1.5
+0.2
+0.8
+-0.8
+0.2
+3.5
+6.7
+9.5
+11.3
+12.7
+14.1
+15.0
+15.2
+15.6
+16.0
+15.8
+14.0
+11.7
+9.3
+8.4
+7.3
+5.1
+4.1
+3.0
+2.1
+1.2
+1.0
+0.8
+1.8
+4.2
+7.2
+10.8
+15.0
+17.8
+21.4
+23.6
+24.4
+24.6
+24.4
+21.0
+18.7
+15.4
+12.9
+13.5
+10.3
+13.6
+14.7
+14.1
+13.6
+12.8
+12.4
+10.2
+11.7
+14.8
+18.5
+19.9
+20.6
+21.4
+21.2
+17.8
+14.3
+13.2
+12.5
+9.9
+7.8
+6.9
+5.7
+4.9
+4.1
+3.4
+3.8
+3.6
+3.4
+2.8
+0.3
+0.6
+1.7
+4.0
+6.0
+8.0
+9.6
+10.9
+12.1
+13.0
+13.4
+13.8
+13.7
+13.0
+11.8
+8.9
+7.6
+6.7
+6.2
+5.6
+5.1
+5.1
+5.4
+5.8
+5.0
+3.9
+4.2
+6.5
+8.3
+10.3
+12.5
+14.6
+16.8
+19.0
+20.4
+20.3
+20.1
+19.0
+17.2
+15.6
+15.1
+14.6
+13.8
+12.8
+11.8
+11.1
+10.6
+9.7
+8.8
+7.2
+6.7
+8.2
+10.2
+12.2
+13.7
+15.1
+17.4
+18.0
+17.1
+11.7
+11.0
+4.6
+5.1
+4.0
+3.0
+2.3
+2.0
+1.8
+1.5
+1.3
+1.3
+1.2
+1.2
+1.1
+1.3
+1.6
+2.5
+3.1
+3.2
+3.9
+5.3
+7.5
+8.2
+7.9
+8.1
+3.1
+3.4
+3.3
+3.1
+2.3
+0.9
+1.6
+0.7
+-0.9
+-0.8
+-1.5
+-1.4
+-0.6
+-0.3
+1.6
+4.1
+7.4
+10.8
+13.6
+15.1
+16.6
+17.5
+17.7
+17.4
+17.0
+15.1
+11.8
+10.5
+9.1
+6.8
+6.2
+6.1
+4.9
+3.8
+2.9
+2.5
+2.5
+3.9
+6.7
+9.4
+12.1
+15.3
+18.1
+20.2
+21.1
+22.1
+21.7
+20.4
+21.2
+17.8
+13.8
+11.4
+8.4
+6.5
+5.4
+5.0
+4.4
+3.7
+3.1
+2.3
+1.4
+1.6
+2.3
+2.7
+3.5
+4.3
+5.6
+7.1
+8.5
+8.3
+8.3
+7.9
+4.1
+3.5
+3.0
+3.0
+3.2
+2.3
+1.5
+0.6
+0.3
+0.2
+-0.6
+-1.3
+-0.8
+0.3
+2.8
+5.2
+7.6
+10.0
+12.3
+14.3
+16.1
+17.5
+18.2
+18.3
+18.2
+15.4
+10.9
+10.4
+10.1
+8.7
+6.8
+5.3
+5.3
+7.5
+8.5
+7.9
+8.6
+7.9
+8.5
+9.3
+10.6
+12.6
+13.1
+14.5
+15.2
+16.1
+16.3
+16.2
+14.7
+13.3
+10.9
+7.4
+7.0
+6.4
+5.8
+5.1
+4.6
+3.9
+3.1
+2.3
+2.0
+3.4
+7.1
+11.4
+15.3
+17.8
+19.2
+20.3
+21.2
+21.7
+21.7
+21.5
+21.2
+18.0
+13.5
+12.3
+12.0
+10.5
+9.0
+9.6
+7.5
+5.6
+5.2
+4.5
+4.8
+6.4
+9.9
+12.9
+15.5
+18.1
+21.3
+24.1
+25.3
+25.8
+24.5
+24.4
+22.0
+20.2
+17.6
+16.1
+15.3
+15.6
+14.2
+13.4
+12.7
+13.2
+12.9
+10.3
+8.9
+10.1
+14.2
+17.6
+21.8
+24.2
+25.7
+26.2
+26.7
+27.7
+28.4
+26.3
+24.6
+21.3
+19.2
+18.3
+14.3
+13.4
+10.6
+9.5
+9.5
+8.5
+9.3
+6.5
+8.2
+9.6
+12.1
+13.6
+15.6
+17.9
+19.8
+21.5
+22.4
+21.6
+20.8
+18.6
+16.3
+14.6
+11.6
+10.2
+9.6
+9.1
+8.6
+7.8
+8.4
+7.8
+7.6
+8.1
+8.3
+8.8
+9.6
+10.3
+10.6
+12.1
+14.6
+17.0
+19.2
+18.2
+17.7
+18.0
+16.0
+11.8
+11.0
+9.8
+9.6
+8.8
+8.6
+8.4
+8.4
+8.2
+8.2
+7.7
+7.8
+8.2
+8.6
+9.2
+9.9
+11.1
+12.7
+12.1
+11.5
+12.5
+11.3
+12.8
+9.4
+9.2
+8.8
+8.3
+7.6
+7.6
+7.6
+6.9
+6.5
+6.5
+6.3
+6.4
+5.1
+4.9
+5.1
+5.6
+5.7
+6.0
+6.8
+7.8
+8.6
+10.1
+12.2
+13.7
+10.2
+10.3
+8.4
+8.1
+7.0
+6.4
+6.0
+4.7
+3.8
+3.3
+2.8
+2.5
+4.1
+5.8
+9.1
+12.3
+14.6
+16.1
+17.1
+18.0
+18.9
+19.2
+19.5
+19.3
+19.0
+17.0
+12.7
+12.0
+11.3
+10.4
+9.2
+8.1
+7.3
+6.7
+6.8
+6.8
+6.3
+8.1
+11.8
+15.5
+17.8
+19.8
+21.2
+22.0
+22.3
+22.4
+22.6
+22.3
+20.9
+18.5
+18.3
+15.1
+13.7
+12.5
+11.1
+11.0
+11.2
+10.9
+10.7
+10.2
+7.9
+8.8
+11.2
+14.0
+16.6
+18.8
+20.8
+22.9
+24.5
+25.1
+24.8
+24.2
+22.7
+21.9
+17.3
+15.6
+16.1
+15.9
+12.3
+12.5
+12.8
+12.0
+9.9
+9.2
+9.1
+10.4
+12.9
+15.4
+18.9
+22.5
+25.1
+26.2
+26.5
+26.6
+26.7
+26.0
+23.7
+22.7
+18.6
+19.0
+19.0
+17.2
+16.6
+13.1
+12.8
+10.3
+11.1
+10.1
+8.3
+10.6
+13.8
+15.5
+17.3
+19.1
+20.6
+22.0
+23.0
+23.7
+24.1
+24.1
+23.8
+21.7
+19.7
+16.3
+14.8
+12.0
+12.2
+11.8
+10.6
+9.1
+9.0
+8.6
+8.6
+10.8
+13.8
+16.2
+18.9
+21.4
+23.3
+24.7
+25.7
+25.5
+25.4
+25.0
+23.9
+21.7
+19.1
+18.2
+16.2
+14.7
+13.7
+13.2
+12.3
+9.8
+9.3
+9.3
+9.2
+10.9
+14.0
+16.7
+19.5
+23.5
+26.8
+28.2
+29.5
+30.5
+28.8
+28.7
+25.3
+23.1
+19.8
+18.4
+16.9
+15.8
+15.4
+15.0
+14.6
+13.8
+13.5
+13.6
+9.4
+11.5
+13.6
+15.6
+17.2
+19.2
+20.6
+22.9
+24.6
+24.5
+25.1
+25.0
+17.4
+14.8
+12.5
+11.8
+11.4
+11.4
+11.5
+11.4
+11.5
+11.5
+11.5
+11.8
+10.8
+11.6
+11.6
+11.0
+11.1
+12.7
+15.4
+17.3
+19.5
+20.7
+20.7
+20.4
+13.1
+12.1
+11.5
+10.9
+10.5
+10.0
+9.9
+10.3
+10.6
+10.8
+10.8
+10.9
+10.0
+10.2
+10.7
+11.4
+11.9
+13.1
+13.9
+14.6
+16.7
+17.5
+18.4
+17.1
+15.1
+13.9
+12.8
+12.5
+12.3
+11.9
+11.6
+11.4
+11.0
+11.0
+10.5
+9.6
+10.5
+10.5
+11.9
+12.6
+13.9
+15.3
+15.9
+17.3
+19.0
+14.7
+15.3
+15.2
+17.3
+16.5
+13.5
+12.4
+12.1
+11.7
+11.5
+10.0
+9.8
+9.5
+9.5
+9.1
+8.4
+10.1
+12.5
+14.1
+16.1
+18.8
+21.3
+22.5
+23.2
+22.3
+22.7
+22.8
+21.9
+19.9
+16.0
+14.4
+14.5
+13.9
+12.3
+11.4
+10.0
+9.5
+9.0
+8.7
+8.9
+10.1
+12.9
+16.3
+19.7
+22.3
+24.4
+25.3
+25.9
+26.2
+26.0
+26.0
+25.6
+23.2
+20.1
+18.8
+18.9
+18.2
+17.6
+16.6
+15.1
+13.5
+11.5
+10.5
+10.1
+12.3
+15.3
+17.6
+19.8
+22.4
+24.1
+25.4
+26.6
+27.3
+27.9
+27.3
+25.1
+23.1
+21.6
+16.4
+20.0
+17.6
+14.2
+13.9
+14.1
+13.4
+12.6
+11.3
+11.2
+12.0
+11.2
+11.9
+12.4
+13.9
+15.4
+16.1
+17.3
+18.9
+18.9
+16.5
+13.7
+13.0
+12.4
+12.0
+11.2
+11.6
+11.4
+11.6
+11.6
+11.6
+11.3
+11.3
+9.9
+9.7
+10.5
+9.1
+9.2
+9.3
+8.7
+7.4
+7.1
+6.8
+6.6
+6.6
+8.9
+8.8
+8.4
+8.1
+8.0
+7.8
+7.6
+7.3
+7.3
+7.3
+7.1
+7.0
+6.2
+6.1
+6.3
+7.1
+8.4
+9.9
+12.0
+13.7
+15.0
+16.3
+17.1
+16.3
+12.1
+11.9
+11.3
+10.5
+10.2
+8.9
+9.7
+8.6
+7.4
+7.3
+7.6
+7.8
+8.7
+9.4
+10.6
+11.8
+14.9
+18.0
+20.5
+22.2
+23.7
+24.2
+23.9
+24.2
+24.3
+22.0
+18.7
+15.9
+14.4
+12.5
+13.3
+10.5
+11.0
+11.0
+10.6
+9.7
+11.0
+12.6
+15.0
+16.6
+18.8
+20.7
+22.4
+23.3
+24.3
+24.6
+23.6
+24.2
+20.7
+18.8
+16.8
+15.0
+13.8
+12.7
+11.9
+10.7
+11.1
+10.9
+10.0
+9.9
+10.2
+12.5
+15.3
+18.2
+20.0
+21.7
+22.9
+24.8
+25.6
+26.2
+26.8
+26.6
+23.4
+23.2
+19.8
+18.9
+16.2
+15.7
+13.7
+13.0
+12.6
+11.2
+10.5
+10.0
+13.1
+14.1
+17.1
+19.5
+21.6
+23.6
+25.6
+26.3
+26.4
+26.7
+26.6
+26.4
+22.5
+20.3
+18.4
+15.8
+14.9
+14.2
+14.0
+14.1
+13.3
+13.1
+12.7
+12.2
+11.6
+12.6
+15.5
+19.0
+21.9
+24.7
+26.8
+28.3
+28.9
+29.4
+29.7
+29.2
+28.3
+26.7
+23.2
+19.3
+18.5
+16.8
+17.2
+16.3
+15.4
+14.1
+12.9
+12.5
+11.9
+14.2
+17.5
+20.5
+23.5
+26.1
+28.1
+29.4
+30.5
+31.2
+31.0
+30.5
+30.1
+27.3
+22.1
+21.9
+22.3
+18.9
+17.8
+17.8
+17.2
+17.0
+17.6
+15.6
+15.3
+15.4
+17.9
+21.0
+23.2
+25.2
+26.7
+27.7
+29.4
+27.3
+26.7
+27.3
+26.8
+24.6
+20.0
+18.8
+17.9
+16.6
+16.0
+16.0
+15.0
+14.8
+15.2
+15.0
+13.5
+13.6
+14.7
+15.0
+15.8
+16.6
+17.3
+17.4
+18.4
+19.0
+19.5
+17.4
+18.2
+18.3
+17.2
+14.9
+13.6
+13.6
+14.2
+13.5
+12.9
+11.2
+11.6
+10.1
+11.4
+12.1
+14.3
+16.6
+18.6
+19.8
+21.6
+22.6
+23.3
+21.3
+21.9
+22.0
+22.6
+22.2
+18.5
+17.1
+15.0
+15.0
+14.5
+13.5
+13.1
+12.7
+12.2
+11.7
+10.5
+12.6
+15.1
+18.4
+21.0
+22.9
+24.4
+25.4
+25.9
+25.2
+26.1
+26.0
+24.0
+17.7
+17.2
+15.6
+15.3
+15.0
+14.8
+14.6
+14.3
+13.6
+12.5
+11.8
+11.7
+14.0
+17.5
+21.4
+24.9
+27.0
+28.5
+29.6
+30.3
+30.4
+31.0
+30.0
+30.7
+28.4
+27.0
+21.7
+18.2
+15.9
+15.4
+15.0
+13.8
+13.6
+13.0
+12.2
+12.4
+15.1
+19.0
+23.8
+26.4
+27.3
+28.6
+29.9
+30.5
+30.8
+30.8
+30.4
+28.5
+26.7
+25.0
+20.5
+18.3
+17.7
+16.9
+15.7
+13.5
+12.0
+13.7
+11.4
+11.3
+12.7
+14.3
+15.9
+17.6
+19.8
+21.9
+23.0
+24.1
+24.7
+25.2
+24.9
+24.5
+23.8
+21.2
+19.3
+18.3
+17.5
+17.1
+14.7
+15.4
+12.4
+11.0
+10.4
+10.3
+12.3
+14.9
+16.8
+18.2
+19.7
+22.2
+24.5
+26.2
+27.2
+26.9
+25.2
+23.9
+23.5
+20.3
+19.0
+17.8
+16.4
+15.6
+15.4
+13.8
+13.0
+12.2
+11.6
+13.3
+15.7
+19.2
+22.8
+25.7
+27.5
+29.1
+30.4
+31.3
+31.1
+30.7
+30.6
+29.2
+28.0
+23.4
+22.3
+21.9
+20.5
+19.7
+20.6
+19.2
+17.8
+17.7
+17.5
+16.2
+17.8
+21.6
+25.3
+28.1
+30.7
+32.2
+32.9
+33.4
+33.7
+33.3
+33.1
+30.3
+29.4
+29.2
+24.4
+25.8
+22.7
+22.6
+19.5
+18.2
+19.9
+19.1
+18.2
+15.6
+16.5
+19.4
+22.0
+24.2
+26.0
+28.1
+29.6
+30.2
+28.6
+27.8
+28.4
+28.3
+27.4
+24.4
+22.5
+21.1
+19.7
+18.7
+17.3
+16.2
+16.2
+14.5
+14.6
+16.6
+19.0
+21.7
+24.4
+28.4
+31.1
+32.3
+32.9
+33.2
+32.6
+29.9
+30.7
+30.2
+29.5
+28.2
+26.4
+25.4
+24.1
+23.0
+22.4
+21.5
+20.4
+19.6
+17.9
+14.4
+16.9
+19.7
+21.9
+25.2
+28.4
+31.0
+32.5
+32.9
+33.5
+33.4
+33.0
+33.2
+31.2
+27.3
+25.2
+25.2
+23.7
+20.7
+21.8
+17.8
+16.3
+15.4
+15.1
+16.8
+17.3
+18.4
+20.9
+23.3
+25.7
+28.3
+30.8
+32.6
+33.0
+33.1
+33.2
+32.9
+32.0
+29.0
+27.4
+26.2
+24.4
+21.0
+19.2
+18.9
+17.5
+16.9
+16.5
+16.7
+19.3
+23.7
+28.7
+31.4
+32.4
+33.4
+34.0
+34.3
+34.5
+34.7
+34.9
+33.4
+32.0
+29.0
+25.0
+23.4
+22.2
+21.8
+21.6
+19.1
+16.4
+16.3
+15.5
+16.1
+16.1
+17.6
+19.0
+19.6
+21.3
+23.2
+25.1
+26.5
+27.5
+27.9
+28.5
+27.7
+27.2
+25.0
+23.2
+23.4
+23.3
+21.4
+19.1
+17.6
+16.4
+15.8
+15.0
+14.1
+16.6
+17.6
+19.0
+20.6
+22.5
+24.3
+26.0
+27.5
+28.8
+29.2
+29.7
+29.6
+28.5
+26.0
+23.5
+21.5
+20.2
+20.8
+17.9
+18.9
+18.1
+16.5
+16.2
+14.4
+15.8
+18.4
+21.0
+23.6
+26.4
+29.1
+31.4
+32.4
+31.8
+32.0
+32.5
+33.0
+30.3
+26.5
+25.6
+24.3
+23.6
+22.1
+21.8
+21.3
+20.4
+20.0
+19.0
+19.7
+22.2
+26.0
+30.0
+31.3
+32.8
+33.9
+34.2
+34.6
+34.6
+33.4
+33.8
+32.7
+31.5
+29.2
+26.7
+26.0
+23.0
+21.9
+21.7
+20.6
+19.7
+19.4
+18.6
+16.6
+18.8
+21.1
+24.1
+27.0
+29.6
+31.5
+32.0
+32.0
+30.6
+31.1
+31.6
+30.8
+27.5
+25.4
+22.6
+22.5
+23.3
+22.0
+21.1
+18.7
+17.5
+17.8
+17.6
+16.5
+18.6
+20.8
+22.7
+24.8
+26.9
+29.2
+30.3
+28.8
+29.2
+27.3
+27.2
+24.8
+24.7
+22.7
+21.8
+21.4
+20.4
+19.3
+18.7
+18.1
+17.9
+17.4
+17.2
+16.7
+17.6
+17.9
+19.1
+20.0
+20.7
+22.4
+24.1
+23.9
+24.6
+23.1
+22.9
+17.0
+16.7
+16.1
+15.3
+14.9
+14.2
+14.0
+14.4
+14.1
+13.5
+13.2
+13.3
+13.3
+13.8
+14.5
+15.3
+16.0
+17.6
+19.9
+22.9
+25.4
+25.0
+25.4
+25.5
+22.6
+24.6
+17.1
+16.7
+16.7
+15.7
+16.0
+15.6
+15.2
+15.0
+15.7
+15.9
+15.7
+15.9
+16.5
+17.4
+17.6
+17.3
+19.7
+20.1
+17.6
+17.5
+17.1
+19.3
+18.4
+17.0
+16.1
+15.3
+15.2
+14.7
+14.0
+13.4
+12.9
+13.1
+12.8
+12.1
+12.3
+12.7
+14.2
+16.6
+18.0
+19.7
+21.2
+22.3
+22.9
+23.4
+23.3
+24.0
+22.9
+21.8
+20.1
+19.0
+18.0
+16.7
+17.2
+14.9
+14.2
+14.5
+12.6
+11.9
+12.5
+14.1
+16.0
+18.0
+19.9
+22.0
+23.9
+25.4
+26.5
+26.0
+27.2
+26.5
+25.3
+25.5
+24.7
+20.4
+20.4
+19.0
+19.1
+18.6
+18.3
+18.8
+18.4
+15.7
+14.9
+16.3
+18.7
+21.3
+22.3
+23.1
+26.6
+27.8
+27.5
+29.0
+26.5
+27.6
+26.2
+25.4
+22.6
+20.4
+18.7
+18.0
+16.8
+15.3
+14.5
+13.6
+13.0
+13.0
+13.6
+15.6
+18.3
+21.3
+23.7
+25.5
+26.7
+27.4
+28.1
+28.5
+28.9
+28.4
+28.2
+27.2
+23.9
+20.4
+20.0
+18.8
+17.6
+16.0
+15.2
+14.9
+14.4
+13.7
+14.3
+15.9
+17.2
+18.0
+19.2
+19.8
+18.0
+15.8
+17.1
+19.3
+16.0
+17.2
+17.1
+16.1
+14.3
+13.5
+13.0
+12.5
+12.4
+12.2
+12.0
+11.6
+11.6
+10.9
+11.2
+12.9
+16.3
+18.9
+20.5
+21.7
+23.1
+24.3
+25.7
+26.2
+26.5
+26.6
+26.6
+25.5
+22.3
+19.6
+18.6
+17.9
+18.0
+16.6
+14.8
+13.3
+13.1
+12.3
+12.5
+14.8
+18.7
+23.2
+27.4
+30.1
+31.7
+32.9
+33.5
+34.0
+33.8
+33.6
+32.5
+30.5
+28.3
+26.8
+25.2
+25.1
+25.6
+23.4
+19.6
+17.4
+15.1
+15.6
+15.6
+19.0
+23.1
+27.1
+30.9
+33.2
+34.5
+35.8
+35.2
+33.9
+34.1
+33.3
+31.9
+29.7
+27.0
+26.1
+25.5
+22.1
+20.6
+18.8
+17.9
+17.4
+16.1
+16.8
+16.4
+18.4
+22.1
+26.3
+30.9
+33.6
+35.4
+36.4
+36.8
+37.6
+37.4
+36.6
+33.2
+31.6
+27.4
+26.7
+25.8
+26.8
+24.6
+23.2
+21.3
+19.9
+18.7
+17.8
+18.8
+20.3
+23.9
+28.4
+30.8
+30.4
+31.6
+32.1
+32.3
+33.2
+32.4
+32.3
+30.8
+27.8
+26.4
+23.6
+22.8
+21.2
+21.7
+20.0
+18.4
+18.1
+17.8
+17.5
+15.5
+16.0
+16.1
+16.2
+17.7
+19.8
+21.4
+22.3
+22.6
+24.1
+23.2
+17.7
+15.6
+15.2
+15.3
+14.2
+14.1
+13.9
+13.6
+12.6
+12.0
+11.8
+11.9
+11.4
+11.8
+13.7
+16.1
+18.4
+21.3
+23.9
+25.7
+27.1
+28.4
+29.4
+29.8
+29.7
+29.5
+28.6
+25.3
+23.4
+22.4
+23.1
+21.9
+21.3
+20.6
+18.7
+15.8
+14.1
+15.2
+18.1
+20.5
+23.0
+25.4
+27.7
+29.8
+31.6
+32.4
+32.8
+32.4
+32.2
+31.1
+30.0
+25.9
+24.7
+24.8
+24.7
+22.6
+21.1
+20.3
+18.7
+17.7
+16.9
+16.7
+18.2
+20.9
+24.1
+27.6
+31.0
+33.3
+34.5
+34.7
+34.8
+32.9
+33.2
+32.2
+30.1
+27.2
+24.9
+24.7
+22.1
+21.0
+21.1
+20.7
+18.3
+17.6
+17.1
+16.4
+18.2
+20.7
+22.5
+24.8
+27.2
+29.4
+30.7
+30.3
+27.3
+29.4
+28.8
+29.7
+28.9
+26.0
+24.9
+22.7
+21.2
+20.4
+19.5
+18.7
+17.5
+17.2
+17.3
+17.8
+19.2
+22.3
+22.5
+23.4
+25.1
+26.9
+27.6
+26.8
+28.4
+28.6
+26.2
+24.0
+25.0
+24.3
+22.6
+21.9
+21.9
+21.3
+20.6
+20.0
+19.1
+17.8
+16.1
+15.6
+16.6
+19.0
+21.1
+23.3
+25.7
+28.2
+30.6
+31.9
+32.7
+32.8
+32.2
+31.5
+30.8
+27.8
+26.2
+25.5
+24.7
+23.2
+22.3
+21.7
+21.2
+20.2
+18.6
+17.9
+19.6
+22.6
+25.3
+28.2
+30.9
+33.0
+34.5
+35.5
+34.2
+34.3
+33.7
+33.9
+33.0
+30.0
+27.4
+24.8
+23.9
+23.6
+24.0
+23.1
+22.4
+21.4
+20.3
+18.6
+21.1
+24.0
+26.7
+29.3
+31.4
+33.1
+34.0
+34.1
+32.7
+31.2
+31.8
+34.0
+32.5
+30.5
+28.3
+27.8
+24.9
+25.5
+25.2
+24.5
+23.6
+22.5
+21.0
+19.4
+21.4
+23.9
+26.3
+28.7
+31.2
+32.7
+33.5
+34.0
+34.5
+34.6
+34.3
+33.7
+32.6
+30.4
+28.6
+27.7
+26.8
+26.0
+25.4
+24.9
+24.3
+23.6
+22.6
+20.9
+21.2
+23.2
+25.7
+28.2
+31.0
+33.4
+34.9
+36.0
+36.4
+36.3
+36.0
+35.0
+33.8
+31.2
+29.0
+28.1
+27.4
+26.3
+25.6
+25.1
+23.7
+21.0
+18.7
+19.0
+20.7
+23.4
+26.1
+28.8
+31.4
+32.8
+33.9
+34.3
+34.9
+34.7
+34.1
+33.3
+32.3
+30.5
+28.1
+26.2
+24.9
+24.5
+24.1
+23.4
+22.4
+21.0
+21.8
+19.4
+19.4
+21.1
+22.8
+24.4
+26.3
+27.9
+29.7
+31.2
+26.2
+27.9
+27.6
+25.3
+25.2
+24.4
+23.1
+21.5
+21.3
+20.9
+19.9
+19.4
+18.7
+18.3
+17.7
+17.5
+20.1
+22.3
+23.9
+25.2
+26.9
+28.3
+29.5
+30.2
+30.8
+31.0
+30.7
+30.7
+29.9
+28.1
+26.6
+25.6
+24.0
+22.5
+22.0
+21.2
+19.8
+19.0
+18.3
+17.7
+19.9
+22.0
+24.2
+26.9
+29.2
+31.4
+33.3
+34.3
+34.0
+34.2
+33.8
+33.7
+33.2
+30.4
+28.8
+27.5
+26.5
+25.8
+25.4
+24.8
+22.9
+21.4
+20.4
+20.3
+21.1
+21.6
+23.3
+24.2
+25.7
+27.8
+27.8
+25.5
+25.6
+26.1
+25.3
+17.6
+17.3
+17.7
+17.4
+17.4
+17.0
+16.3
+16.0
+16.1
+15.0
+14.9
+15.3
+15.8
+16.7
+17.6
+18.9
+20.9
+23.0
+25.4
+27.1
+28.5
+29.6
+30.3
+30.3
+29.2
+26.4
+25.5
+23.2
+22.2
+21.4
+20.5
+19.6
+19.3
+18.1
+17.6
+17.3
+16.3
+17.5
+18.6
+20.4
+22.4
+24.4
+26.4
+27.7
+28.9
+28.7
+28.9
+29.2
+28.9
+23.6
+21.2
+20.7
+19.9
+19.5
+19.9
+20.5
+20.3
+19.1
+18.3
+16.7
+16.1
+17.2
+19.6
+22.4
+24.7
+27.5
+30.3
+31.7
+32.1
+32.4
+32.7
+32.7
+33.0
+30.9
+28.3
+26.9
+25.3
+22.2
+21.1
+19.9
+19.2
+18.5
+17.9
+16.8
+17.8
+19.7
+23.5
+26.2
+28.5
+31.2
+32.8
+34.1
+34.8
+35.1
+34.7
+34.3
+34.5
+32.4
+29.0
+27.1
+23.7
+23.8
+22.5
+21.2
+20.0
+18.9
+18.9
+18.7
+17.7
+20.3
+22.4
+24.5
+26.9
+29.2
+31.7
+33.0
+34.0
+34.4
+34.9
+34.1
+32.1
+31.0
+28.7
+27.6
+27.3
+27.1
+26.4
+24.8
+23.2
+22.9
+22.4
+21.3
+18.6
+20.0
+22.2
+24.2
+27.1
+29.7
+31.8
+33.2
+34.5
+34.0
+33.4
+31.7
+30.3
+30.2
+27.9
+25.4
+26.0
+24.7
+23.8
+22.0
+20.7
+19.8
+19.6
+19.2
+18.6
+20.8
+25.1
+28.3
+30.0
+32.1
+30.4
+32.3
+31.4
+32.1
+30.3
+27.4
+27.8
+25.0
+23.8
+22.7
+22.2
+22.1
+21.7
+21.2
+19.8
+19.3
+18.8
+18.1
+17.2
+18.4
+19.8
+22.1
+23.8
+25.3
+25.4
+25.5
+27.1
+24.2
+22.0
+20.9
+19.5
+19.9
+19.5
+19.1
+19.0
+18.6
+17.9
+17.7
+17.6
+17.4
+17.7
+17.1
+17.3
+17.8
+18.7
+20.3
+21.6
+23.9
+25.4
+27.0
+28.0
+28.9
+28.7
+27.6
+27.4
+26.9
+25.2
+22.1
+20.6
+19.6
+18.1
+17.9
+17.7
+17.7
+17.7
+17.1
+17.1
+18.3
+20.6
+21.6
+23.5
+25.2
+26.2
+27.1
+27.5
+25.6
+26.0
+23.6
+23.4
+21.0
+18.6
+18.1
+17.7
+17.7
+18.1
+17.0
+16.6
+16.3
+15.9
+15.1
+15.8
+16.6
+18.2
+19.9
+21.8
+23.5
+24.7
+25.5
+25.0
+25.5
+23.3
+22.4
+26.3
+22.9
+20.8
+18.7
+18.3
+17.8
+16.7
+15.7
+15.6
+16.3
+16.7
+17.2
+16.1
+16.6
+17.2
+18.7
+20.3
+22.2
+23.7
+25.4
+26.5
+27.2
+26.5
+27.3
+22.2
+21.8
+20.4
+18.9
+16.9
+16.4
+16.5
+15.7
+15.0
+14.7
+14.3
+14.4
+14.7
+15.6
+16.2
+17.0
+18.2
+19.4
+22.1
+23.5
+24.9
+26.1
+26.2
+26.8
+23.3
+21.7
+20.9
+19.5
+19.2
+18.0
+16.6
+16.0
+15.7
+15.5
+15.2
+14.8
+14.4
+14.4
+14.9
+16.2
+17.3
+18.9
+20.3
+22.7
+24.0
+25.0
+25.6
+24.1
+25.5
+19.9
+18.0
+17.7
+17.6
+17.6
+17.5
+17.0
+16.9
+16.6
+15.1
+15.1
+13.8
+15.1
+17.6
+19.6
+20.3
+21.4
+22.5
+23.8
+24.4
+24.4
+24.4
+24.2
+23.6
+23.2
+22.1
+18.9
+17.9
+16.7
+16.0
+15.4
+14.6
+13.9
+13.4
+12.9
+11.7
+13.1
+15.6
+17.8
+20.1
+22.6
+25.1
+26.7
+28.0
+28.4
+28.4
+28.1
+27.8
+26.1
+22.8
+21.1
+19.4
+17.3
+16.8
+16.8
+16.0
+15.0
+14.2
+13.6
+12.8
+15.2
+18.3
+21.0
+23.1
+25.0
+26.8
+28.1
+28.8
+27.5
+26.9
+26.7
+27.2
+25.2
+22.5
+21.1
+19.3
+18.4
+17.4
+16.2
+16.3
+15.4
+15.2
+14.4
+14.3
+15.5
+18.4
+21.7
+24.1
+26.8
+28.9
+30.6
+31.4
+32.0
+31.6
+31.7
+31.4
+29.2
+26.1
+23.7
+22.8
+23.2
+22.1
+21.3
+20.2
+19.1
+19.0
+19.3
+19.0
+20.8
+22.3
+23.1
+24.6
+25.3
+26.5
+27.0
+27.2
+27.2
+26.9
+26.6
+25.5
+24.8
+22.6
+21.7
+20.8
+20.5
+19.4
+18.2
+17.1
+16.7
+16.6
+16.0
+17.2
+18.2
+21.4
+25.5
+28.8
+30.7
+32.2
+32.8
+33.0
+32.7
+32.6
+32.7
+29.7
+28.6
+27.6
+26.2
+24.5
+23.3
+23.1
+21.8
+20.5
+19.6
+18.9
+17.6
+17.4
+19.0
+19.7
+19.4
+21.3
+23.9
+24.7
+25.9
+25.5
+28.1
+27.4
+26.2
+28.6
+27.3
+23.9
+21.2
+19.8
+19.0
+18.5
+17.9
+17.4
+16.7
+16.5
+16.4
+16.8
+17.3
+18.1
+18.9
+19.6
+22.5
+24.1
+25.7
+25.3
+24.9
+23.6
+22.3
+22.1
+20.6
+16.4
+16.5
+16.5
+16.7
+16.6
+16.1
+15.4
+14.8
+14.5
+14.7
+15.1
+16.6
+18.5
+20.6
+22.9
+25.1
+27.2
+28.3
+28.7
+27.9
+26.3
+25.1
+22.4
+23.7
+22.5
+20.7
+19.3
+18.4
+18.0
+17.0
+17.0
+16.5
+15.5
+15.5
+15.0
+15.2
+16.6
+17.8
+20.0
+22.1
+23.7
+25.3
+26.3
+27.2
+27.6
+27.6
+26.5
+26.2
+24.6
+20.4
+20.3
+19.9
+19.3
+18.2
+17.2
+16.4
+16.0
+15.6
+15.3
+15.8
+18.7
+21.5
+23.7
+25.7
+27.6
+28.9
+29.5
+29.5
+29.6
+29.2
+29.0
+27.1
+23.1
+22.5
+21.6
+21.3
+20.4
+19.5
+18.6
+17.5
+16.1
+15.3
+14.7
+16.5
+19.7
+21.9
+23.7
+25.8
+27.4
+28.9
+28.7
+28.1
+28.9
+29.1
+28.1
+27.2
+24.4
+23.6
+22.6
+22.0
+21.5
+21.1
+20.3
+19.3
+18.2
+17.0
+16.4
+16.6
+19.3
+22.5
+25.1
+27.2
+28.8
+30.1
+31.0
+31.7
+31.9
+31.7
+30.9
+28.7
+26.5
+25.3
+23.8
+22.9
+22.5
+21.9
+21.2
+20.3
+19.1
+17.7
+15.5
+16.0
+18.3
+20.2
+22.1
+24.4
+27.0
+29.3
+30.9
+32.1
+32.3
+32.0
+29.8
+27.8
+25.3
+24.0
+22.9
+22.0
+21.6
+21.1
+20.5
+18.8
+15.8
+15.0
+13.8
+14.5
+16.7
+19.1
+21.5
+23.7
+25.8
+27.6
+28.8
+29.7
+30.0
+29.8
+29.5
+27.9
+24.3
+23.7
+22.9
+21.1
+20.3
+18.9
+18.0
+16.8
+16.3
+15.7
+16.9
+17.5
+18.8
+20.4
+22.4
+24.3
+25.4
+26.2
+27.3
+27.6
+27.3
+26.7
+19.5
+19.4
+19.1
+18.8
+18.1
+18.1
+18.0
+17.8
+18.6
+19.1
+19.1
+18.7
+17.9
+17.1
+17.8
+20.4
+23.4
+26.0
+27.6
+29.1
+29.7
+30.0
+30.1
+30.1
+29.6
+27.5
+24.6
+23.7
+21.5
+19.9
+19.1
+18.0
+17.2
+16.5
+15.6
+15.9
+15.0
+15.7
+18.2
+20.7
+22.9
+25.1
+27.1
+28.7
+29.5
+30.0
+30.4
+30.1
+29.8
+27.7
+25.7
+25.2
+21.9
+22.4
+20.4
+19.8
+19.4
+19.3
+18.8
+18.6
+18.1
+18.4
+19.8
+21.6
+23.4
+25.0
+26.5
+28.5
+29.8
+27.7
+28.1
+27.5
+28.1
+25.7
+22.3
+21.8
+21.0
+19.5
+18.9
+18.7
+17.2
+16.5
+16.3
+15.3
+17.0
+16.7
+18.2
+21.0
+23.1
+25.1
+24.9
+24.7
+23.9
+25.6
+25.1
+25.4
+24.1
+23.3
+21.1
+18.6
+16.7
+16.1
+15.2
+15.5
+14.9
+14.3
+13.6
+13.9
+13.2
+13.8
+16.2
+16.7
+16.8
+19.2
+20.6
+22.6
+23.2
+22.1
+22.7
+22.2
+20.6
+19.8
+18.0
+17.2
+17.6
+16.6
+14.7
+13.5
+12.6
+12.9
+13.7
+12.0
+12.3
+11.9
+13.9
+15.8
+17.7
+19.3
+21.2
+22.8
+23.7
+24.6
+25.0
+24.8
+23.6
+22.2
+19.9
+18.5
+17.5
+16.3
+15.1
+14.4
+13.5
+12.9
+12.1
+12.5
+12.7
+11.9
+12.3
+13.8
+17.7
+20.7
+21.4
+22.5
+23.5
+23.2
+21.3
+18.4
+18.6
+18.3
+17.4
+17.2
+17.0
+16.3
+15.7
+15.6
+16.3
+16.3
+16.1
+15.9
+13.9
+13.6
+14.1
+15.1
+16.4
+18.7
+20.6
+22.0
+22.6
+24.2
+24.5
+24.6
+25.5
+24.5
+24.0
+21.0
+19.9
+19.7
+18.2
+17.0
+15.7
+16.1
+14.9
+15.2
+14.9
+18.1
+19.9
+22.5
+24.5
+26.8
+28.2
+29.5
+30.2
+30.0
+30.0
+29.8
+27.8
+26.3
+24.3
+23.5
+21.6
+20.3
+18.5
+15.8
+15.4
+15.2
+14.9
+14.4
+14.0
+14.5
+17.2
+21.8
+25.9
+27.6
+28.4
+29.1
+29.8
+30.1
+30.0
+29.9
+29.1
+27.4
+24.3
+22.9
+22.2
+20.6
+19.1
+18.7
+18.9
+18.2
+17.3
+17.1
+15.2
+15.8
+18.1
+21.2
+24.5
+27.3
+29.3
+30.2
+30.8
+31.4
+29.6
+29.6
+29.1
+26.5
+24.9
+24.1
+23.0
+21.8
+19.8
+20.0
+19.9
+18.9
+17.6
+16.5
+15.3
+16.1
+19.8
+23.9
+27.5
+29.9
+31.1
+30.7
+30.8
+30.8
+30.9
+30.8
+28.9
+27.5
+26.0
+24.7
+23.5
+23.4
+23.9
+21.7
+19.6
+19.0
+18.9
+18.9
+19.9
+19.3
+21.0
+24.5
+27.4
+28.2
+28.8
+30.0
+30.7
+31.5
+32.3
+32.6
+30.8
+28.0
+26.8
+22.9
+22.5
+20.0
+20.6
+18.4
+15.7
+14.7
+14.4
+15.4
+12.2
+12.6
+14.3
+16.0
+17.4
+19.0
+20.6
+22.3
+23.3
+23.7
+23.4
+23.6
+22.3
+21.9
+20.3
+19.2
+18.4
+16.9
+16.2
+16.0
+16.0
+14.0
+13.1
+12.5
+12.0
+12.1
+14.2
+16.6
+19.1
+21.9
+24.6
+27.5
+30.2
+30.2
+30.5
+30.6
+30.6
+27.0
+25.0
+23.0
+21.9
+21.2
+20.7
+19.8
+18.7
+16.8
+14.9
+13.9
+14.0
+14.6
+17.5
+22.2
+26.6
+29.4
+30.4
+30.8
+31.2
+31.8
+32.2
+31.7
+29.5
+26.7
+24.7
+24.6
+23.8
+22.7
+21.7
+19.4
+19.3
+18.1
+17.6
+16.4
+16.7
+16.5
+19.5
+23.4
+27.3
+29.8
+30.6
+31.1
+30.8
+30.1
+30.3
+27.6
+24.9
+25.4
+23.3
+22.4
+21.7
+20.4
+19.1
+17.8
+17.8
+16.4
+14.9
+14.0
+13.7
+14.7
+16.4
+19.3
+22.2
+24.4
+26.3
+27.8
+28.6
+29.1
+27.6
+27.4
+26.7
+25.2
+22.7
+21.3
+18.6
+18.7
+17.8
+16.3
+14.7
+13.9
+13.6
+13.7
+12.9
+13.6
+15.8
+18.5
+20.8
+22.4
+23.6
+24.7
+25.5
+25.9
+25.9
+25.7
+25.9
+23.8
+21.7
+21.2
+20.5
+19.8
+19.4
+18.5
+16.5
+15.9
+15.2
+15.3
+15.4
+15.7
+17.3
+18.9
+20.7
+21.9
+23.4
+24.5
+26.0
+26.1
+26.4
+25.8
+26.3
+24.7
+23.0
+21.3
+19.9
+18.5
+17.1
+16.9
+15.2
+14.6
+14.2
+13.2
+14.0
+14.3
+16.2
+18.3
+19.7
+22.6
+25.1
+26.2
+26.6
+27.1
+27.1
+26.8
+25.5
+23.4
+22.4
+20.9
+19.3
+18.1
+17.3
+14.1
+14.5
+14.1
+14.2
+14.3
+13.4
+13.6
+14.5
+15.3
+17.0
+19.5
+21.7
+23.4
+24.9
+24.2
+22.4
+22.5
+19.7
+17.3
+16.5
+16.4
+16.2
+15.7
+15.2
+14.8
+14.6
+14.1
+13.4
+13.3
+13.5
+13.4
+15.0
+16.7
+18.8
+21.1
+22.7
+23.7
+23.5
+23.8
+24.3
+18.7
+19.8
+19.1
+17.9
+17.1
+16.6
+15.0
+14.4
+13.9
+13.6
+13.5
+14.2
+14.2
+13.4
+13.4
+13.9
+14.9
+16.2
+17.5
+19.3
+21.2
+22.9
+23.7
+23.9
+23.6
+23.2
+20.5
+20.7
+18.2
+17.6
+16.4
+15.8
+15.1
+13.7
+12.9
+12.3
+11.7
+11.2
+11.2
+13.8
+16.0
+18.4
+21.0
+23.5
+26.0
+27.5
+28.0
+28.3
+28.0
+26.9
+23.3
+21.7
+20.1
+18.1
+18.7
+18.5
+18.1
+17.9
+17.4
+15.7
+14.3
+14.2
+12.8
+16.2
+19.3
+21.9
+24.9
+27.1
+28.3
+28.8
+28.9
+29.0
+28.6
+27.0
+25.8
+24.4
+20.7
+19.9
+18.7
+18.0
+16.7
+14.0
+13.7
+13.3
+13.5
+12.4
+12.3
+15.4
+19.5
+22.9
+25.2
+27.5
+29.3
+30.4
+30.6
+30.3
+29.6
+27.9
+23.5
+21.6
+21.9
+22.6
+22.1
+22.0
+21.6
+19.9
+17.2
+15.2
+14.2
+13.9
+14.3
+17.3
+21.6
+26.1
+29.3
+30.7
+31.4
+31.6
+31.9
+31.5
+30.6
+29.1
+24.4
+24.6
+23.4
+19.7
+18.8
+17.5
+16.5
+15.2
+14.7
+14.3
+14.3
+14.9
+14.2
+17.0
+21.1
+25.8
+29.4
+30.7
+31.7
+32.5
+32.8
+33.0
+33.0
+30.8
+26.8
+24.0
+22.7
+20.1
+19.7
+18.7
+17.7
+16.5
+16.4
+16.3
+16.3
+14.6
+14.5
+18.1
+23.3
+27.7
+29.9
+31.1
+32.0
+32.8
+33.7
+33.9
+33.4
+30.7
+26.7
+24.0
+22.1
+21.7
+20.6
+19.2
+16.6
+15.8
+14.9
+14.5
+14.3
+14.3
+14.0
+16.8
+21.6
+25.8
+28.3
+30.0
+31.3
+31.9
+31.6
+31.4
+30.8
+30.0
+25.7
+23.6
+22.4
+20.1
+18.0
+16.8
+16.6
+15.7
+15.3
+14.6
+13.9
+13.0
+12.8
+15.9
+20.5
+24.2
+26.5
+28.4
+30.5
+32.2
+33.3
+33.6
+32.7
+31.1
+28.4
+26.6
+25.7
+24.9
+24.4
+24.5
+23.5
+22.2
+19.7
+16.4
+15.8
+14.7
+14.4
+18.0
+22.4
+25.9
+28.8
+31.3
+32.3
+32.6
+32.6
+32.8
+32.4
+30.9
+28.2
+26.6
+26.7
+25.7
+25.0
+23.6
+20.9
+18.8
+17.4
+16.7
+16.0
+15.7
+15.9
+19.0
+22.7
+26.6
+29.7
+31.0
+31.6
+31.6
+32.1
+31.7
+31.1
+29.0
+26.1
+24.2
+22.5
+22.3
+22.7
+19.8
+19.4
+17.0
+16.7
+16.3
+15.5
+15.5
+14.9
+18.2
+21.0
+22.8
+25.1
+27.4
+29.2
+30.8
+31.3
+31.7
+31.2
+30.3
+27.6
+26.7
+24.8
+23.1
+23.1
+19.7
+18.5
+17.8
+17.3
+17.1
+15.7
+14.7
+14.7
+17.7
+21.7
+25.6
+28.4
+29.6
+30.2
+30.3
+30.4
+27.9
+25.7
+23.6
+18.5
+19.1
+19.4
+18.8
+17.5
+16.8
+16.7
+16.5
+16.5
+16.5
+16.6
+15.7
+15.3
+16.1
+17.1
+18.7
+20.6
+22.6
+22.4
+24.4
+26.4
+27.1
+27.5
+26.3
+22.7
+20.8
+19.2
+16.0
+15.5
+13.8
+13.1
+11.6
+11.2
+10.3
+10.9
+10.8
+9.9
+12.2
+14.8
+17.2
+20.0
+22.6
+24.3
+25.6
+26.3
+26.6
+26.1
+24.7
+21.6
+19.4
+18.3
+18.1
+18.2
+17.7
+16.8
+15.1
+13.2
+12.1
+11.5
+10.5
+9.8
+12.5
+16.4
+21.0
+25.0
+27.3
+28.3
+29.2
+29.2
+29.1
+29.1
+26.4
+23.0
+21.8
+20.5
+18.1
+17.9
+18.5
+17.3
+15.5
+13.5
+12.3
+11.4
+12.2
+11.6
+14.5
+19.0
+23.7
+27.2
+28.6
+29.3
+29.5
+29.7
+29.5
+29.0
+27.2
+24.0
+21.9
+20.4
+20.6
+19.2
+17.2
+15.9
+15.2
+15.1
+14.6
+14.6
+14.0
+13.1
+14.4
+16.1
+18.3
+20.7
+23.1
+25.1
+26.2
+26.5
+25.2
+25.5
+23.0
+21.5
+20.4
+19.6
+17.0
+14.2
+13.7
+13.1
+11.9
+11.7
+9.9
+9.3
+7.0
+6.5
+8.0
+9.1
+10.4
+12.2
+14.0
+15.4
+16.7
+17.4
+17.9
+17.8
+17.0
+14.3
+13.7
+12.8
+11.7
+11.0
+10.3
+10.0
+9.0
+9.2
+8.4
+7.8
+7.5
+7.2
+8.5
+10.7
+12.6
+14.6
+16.7
+18.8
+20.3
+21.1
+21.4
+21.4
+20.4
+16.3
+15.2
+14.0
+13.9
+12.3
+9.9
+9.9
+9.7
+9.5
+9.0
+8.9
+7.4
+6.8
+11.4
+15.5
+18.3
+20.6
+22.5
+23.5
+24.1
+24.8
+25.2
+24.8
+22.9
+19.8
+18.3
+18.1
+16.9
+13.9
+13.6
+10.4
+9.1
+8.2
+7.9
+7.5
+6.6
+6.7
+7.2
+7.7
+8.5
+9.3
+10.0
+10.8
+11.9
+13.6
+14.9
+15.0
+10.8
+9.5
+9.1
+8.6
+7.7
+6.8
+5.9
+5.0
+4.5
+4.4
+4.8
+4.8
+5.4
+5.6
+6.5
+11.2
+18.0
+25.1
+29.0
+29.5
+29.6
+29.6
+29.5
+28.1
+24.6
+21.9
+19.6
+16.5
+14.3
+12.9
+11.7
+10.4
+9.2
+8.8
+8.5
+7.6
+8.0
+7.7
+7.7
+8.1
+9.3
+10.7
+12.9
+15.0
+16.8
+18.1
+18.8
+18.5
+13.2
+11.7
+10.8
+10.1
+9.3
+8.3
+7.5
+7.1
+7.4
+7.5
+7.5
+7.6
+5.4
+5.5
+6.8
+8.1
+9.8
+12.3
+14.8
+17.0
+18.2
+19.3
+20.2
+20.8
+17.3
+16.6
+14.5
+13.5
+13.0
+12.5
+12.1
+11.0
+10.9
+10.4
+10.2
+10.0
+11.0
+10.3
+12.2
+15.8
+17.6
+21.0
+23.3
+24.0
+25.7
+26.6
+26.4
+25.5
+22.4
+22.1
+20.1
+19.3
+16.7
+15.4
+14.6
+13.8
+14.0
+14.2
+14.3
+14.4
+15.3
+16.8
+19.0
+21.1
+23.9
+25.7
+27.2
+27.9
+27.7
+28.1
+28.1
+27.4
+24.1
+20.6
+17.4
+15.7
+14.1
+13.4
+12.3
+10.9
+10.7
+10.0
+9.9
+9.1
+10.8
+12.0
+11.9
+12.7
+14.1
+14.9
+15.6
+17.2
+18.5
+17.9
+20.0
+20.4
+16.7
+13.9
+12.2
+10.8
+9.5
+10.4
+9.3
+8.9
+7.9
+7.9
+8.9
+9.1
+9.0
+7.3
+10.4
+13.5
+16.3
+18.6
+21.2
+22.6
+22.8
+22.5
+16.1
+13.3
+8.9
+8.3
+7.4
+6.7
+6.2
+5.7
+5.2
+4.9
+4.6
+4.0
+4.0
+4.2
+5.1
+5.5
+6.3
+7.3
+9.6
+12.7
+13.5
+15.8
+16.0
+15.8
+16.1
+15.6
+12.7
+11.8
+10.7
+10.0
+9.0
+8.8
+8.2
+7.8
+7.0
+5.8
+5.8
+5.4
+5.5
+5.4
+6.4
+8.0
+9.3
+11.0
+12.7
+14.1
+15.3
+16.8
+15.6
+14.8
+6.6
+7.2
+7.3
+6.5
+5.8
+5.3
+5.0
+4.8
+4.8
+4.8
+4.8
+4.9
+4.0
+3.4
+3.4
+3.6
+4.0
+4.6
+5.0
+5.1
+5.2
+5.7
+3.6
+3.5
+4.9
+4.8
+5.0
+4.3
+4.3
+4.0
+3.9
+3.9
+3.9
+3.9
+3.8
+3.7
+3.5
+3.5
+3.4
+3.5
+3.8
+4.2
+4.4
+4.6
+4.7
+5.2
+5.4
+5.3
+3.1
+2.7
+2.7
+2.7
+2.4
+2.1
+1.7
+1.6
+1.5
+1.4
+1.3
+1.2
+0.9
+0.9
+1.1
+1.4
+2.0
+2.9
+3.1
+3.6
+4.3
+4.6
+5.1
+5.0
+3.1
+2.7
+2.6
+2.8
+2.9
+2.8
+2.3
+1.7
+1.3
+0.9
+0.6
+0.8
+1.6
+1.3
+1.5
+1.8
+2.3
+4.1
+6.0
+7.5
+8.8
+9.8
+9.8
+9.0
+5.9
+6.0
+4.3
+3.7
+2.4
+2.5
+2.8
+2.5
+3.2
+3.0
+3.0
+2.1
+2.3
+2.2
+3.1
+5.7
+7.7
+10.1
+12.3
+14.1
+15.4
+16.1
+16.6
+16.2
+14.3
+10.1
+10.8
+8.6
+6.1
+5.2
+3.8
+3.0
+3.0
+1.8
+2.1
+2.2
+4.0
+4.7
+5.2
+8.0
+10.8
+12.4
+14.5
+16.5
+17.5
+16.7
+16.0
+15.2
+13.9
+10.5
+5.8
+6.2
+2.1
+1.5
+0.8
+-0.4
+-2.1
+-2.6
+-2.9
+-3.2
+-4.3
+-4.7
+-5.0
+-4.9
+-4.5
+-4.2
+-3.8
+-2.8
+-1.9
+-1.5
+-1.3
+-1.4
+-3.5
+-3.7
+-4.5
+-6.0
+-6.3
+-5.7
+-5.6
+-6.3
+-6.9
+-7.0
+-6.9
+-7.0
+-9.6
+-7.4
+-6.1
+-3.1
+0.8
+3.6
+5.3
+6.5
+7.2
+7.6
+7.6
+7.2
+3.0
+3.0
+0.7
+-0.8
+-2.2
+-3.1
+-3.6
+-3.4
+-3.4
+-3.4
+-3.6
+-3.6
+-3.8
+-3.3
+-2.1
+1.4
+4.9
+7.6
+10.1
+11.3
+11.9
+12.3
+12.3
+11.7
+9.2
+7.2
+4.7
+3.4
+2.2
+1.5
+1.2
+1.0
+1.1
+0.5
+0.3
+0.2
+0.2
+0.1
+1.1
+4.6
+8.1
+11.5
+13.1
+12.1
+15.8
+14.7
+14.1
+12.5
+11.6
+10.8
+9.4
+8.2
+7.9
+7.4
+7.1
+7.0
+6.6
+5.3
+3.9
+2.8
+2.5
+1.5
+2.7
+6.5
+9.4
+12.0
+14.6
+16.6
+17.7
+18.0
+17.5
+16.6
+14.5
+12.8
+10.0
+9.1
+7.2
+6.3
+6.5
+7.1
+4.6
+4.8
+6.1
+8.9
+7.2
+6.3
+9.0
+10.4
+12.7
+15.2
+17.2
+18.1
+18.5
+18.4
+18.1
+17.3
+12.7
+11.1
+9.7
+8.3
+6.9
+5.7
+5.3
+4.5
+4.7
+3.9
+3.0
+2.4
+2.2
+1.6
+2.9
+7.0
+11.1
+14.1
+16.2
+17.7
+18.7
+19.3
+19.3
+18.4
+15.1
+13.2
+12.1
+11.3
+11.0
+9.7
+8.5
+7.8
+6.9
+5.3
+4.4
+3.9
+3.8
+4.1
+6.7
+11.3
+15.7
+18.6
+20.3
+21.5
+22.2
+22.4
+22.1
+21.3
+17.2
+14.8
+14.0
+12.6
+10.3
+10.5
+9.3
+8.5
+7.2
+6.6
+6.1
+5.4
+5.0
+4.5
+5.4
+9.1
+13.3
+16.2
+18.3
+19.9
+20.8
+21.0
+20.5
+19.2
+18.2
+17.1
+16.4
+14.4
+12.0
+9.7
+8.4
+7.9
+7.6
+6.9
+5.9
+5.5
+5.3
+5.7
+6.5
+8.2
+10.4
+12.6
+14.9
+17.9
+19.5
+19.2
+19.1
+18.4
+16.1
+14.2
+13.0
+12.0
+12.1
+12.4
+12.3
+12.0
+11.5
+10.1
+9.1
+8.2
+8.7
+8.6
+9.0
+9.8
+11.5
+13.1
+14.5
+15.5
+16.2
+16.6
+16.4
+15.7
+13.3
+11.6
+10.2
+9.7
+9.6
+8.6
+6.3
+7.7
+7.1
+7.3
+7.9
+8.3
+7.0
+6.2
+7.6
+11.0
+14.1
+16.3
+17.8
+18.7
+18.7
+18.8
+18.7
+18.2
+16.7
+13.2
+12.7
+12.0
+12.8
+9.1
+9.3
+9.3
+7.6
+7.3
+7.2
+6.5
+7.7
+4.3
+5.7
+9.3
+12.6
+14.7
+16.5
+18.0
+18.7
+19.8
+20.3
+18.6
+15.4
+12.9
+10.8
+10.2
+10.1
+10.5
+10.0
+8.6
+9.3
+8.3
+8.0
+8.1
+8.7
+8.4
+9.0
+12.7
+17.9
+19.9
+22.1
+23.7
+24.4
+24.0
+23.3
+22.3
+19.0
+17.2
+14.9
+10.4
+10.1
+8.0
+8.8
+7.6
+6.6
+6.8
+4.7
+4.1
+4.1
+3.6
+4.1
+6.8
+9.9
+13.4
+17.7
+21.1
+22.7
+23.5
+23.7
+23.3
+18.7
+15.1
+15.0
+13.8
+12.1
+11.0
+10.4
+9.9
+9.7
+9.6
+9.3
+9.3
+8.3
+7.5
+7.9
+10.7
+15.6
+19.9
+22.6
+24.9
+25.1
+26.1
+25.5
+23.1
+21.4
+21.0
+17.4
+16.1
+12.6
+11.2
+9.0
+7.7
+6.4
+6.1
+5.5
+4.9
+5.1
+4.3
+5.1
+5.6
+5.1
+5.1
+5.7
+5.8
+5.4
+4.0
+3.2
+2.7
+1.7
+1.8
+1.7
+1.5
+1.4
+1.5
+1.7
+1.7
+1.8
+1.9
+1.9
+2.1
+1.3
+1.4
+1.8
+2.7
+4.0
+5.1
+7.0
+8.0
+9.1
+9.5
+9.5
+8.8
+4.4
+4.3
+3.5
+2.3
+0.8
+0.6
+0.1
+0.7
+1.5
+1.9
+2.9
+3.8
+1.7
+1.1
+2.7
+6.3
+9.1
+10.1
+10.8
+11.8
+12.5
+12.0
+11.6
+10.7
+10.1
+7.2
+7.5
+6.5
+5.6
+5.0
+4.7
+4.3
+4.8
+5.3
+4.8
+3.9
+1.4
+0.9
+2.6
+4.3
+6.9
+10.5
+13.0
+14.1
+15.0
+15.4
+15.6
+14.4
+11.4
+10.5
+9.5
+8.0
+8.2
+9.2
+10.9
+9.5
+8.0
+7.7
+7.7
+6.0
+4.6
+5.0
+5.7
+6.1
+6.2
+6.9
+9.5
+11.4
+11.4
+10.9
+9.9
+8.9
+7.2
+6.4
+4.7
+4.0
+3.0
+1.7
+1.1
+0.6
+0.4
+0.1
+0.3
+-0.8
+0.3
+0.3
+0.9
+2.0
+5.9
+9.0
+10.2
+11.5
+12.3
+12.5
+11.2
+9.7
+8.5
+8.3
+6.6
+5.9
+6.7
+5.2
+5.5
+4.4
+3.1
+2.9
+3.5
+3.3
+2.4
+2.1
+2.4
+4.8
+7.2
+8.8
+10.0
+10.4
+11.0
+11.2
+11.2
+10.4
+7.4
+6.4
+6.2
+6.2
+4.0
+2.4
+1.8
+1.1
+1.5
+-0.1
+2.7
+4.3
+0.9
+-0.5
+-1.5
+1.4
+4.6
+7.4
+8.8
+9.7
+10.4
+10.4
+10.2
+9.0
+6.1
+3.2
+2.4
+1.0
+1.2
+1.9
+0.7
+-1.0
+-1.6
+-2.6
+-3.5
+-3.7
+-2.7
+-2.1
+-1.7
+-1.4
+-0.8
+0.4
+2.3
+4.2
+5.4
+6.3
+6.3
+5.0
+4.0
+2.1
+0.8
+-0.4
+-1.0
+-0.6
+-1.2
+-1.4
+-1.5
+-1.6
+-1.9
+-2.5
+-2.5
+-2.5
+-2.5
+-2.2
+-1.7
+-0.2
+1.2
+2.7
+3.7
+4.4
+4.5
+4.1
+0.2
+-0.7
+-1.4
+-2.1
+-2.9
+-2.5
+-3.0
+-3.8
+-3.3
+-4.9
+-5.1
+-4.5
+-4.5
+-4.6
+-4.6
+-3.0
+-1.4
+1.0
+3.0
+4.6
+6.0
+7.0
+7.2
+5.3
+1.1
+-0.3
+-2.4
+-2.9
+-2.2
+-2.6
+-3.0
+-2.8
+-2.8
+-1.7
+-1.2
+-1.3
+-2.4
+-2.9
+-2.8
+0.3
+4.1
+7.5
+10.8
+12.3
+12.9
+13.3
+12.2
+9.0
+4.8
+4.0
+2.5
+2.6
+2.2
+1.6
+0.6
+0.3
+0.0
+-0.4
+-0.8
+-1.2
+-1.9
+-2.2
+-2.5
+-2.5
+-1.6
+-1.3
+-1.3
+-1.3
+-1.2
+-0.9
+-1.0
+-1.2
+-3.3
+-3.4
+-3.7
+-3.8
+-3.7
+-3.7
+-4.0
+-3.9
+-3.9
+-4.1
+-4.4
+-4.8
+-5.4
+-5.5
+-5.3
+-5.3
+-5.1
+-4.2
+-3.2
+-2.4
+-2.2
+-1.9
+-2.2
+-2.7
+-7.4
+-5.8
+-6.3
+-6.6
+-6.8
+-7.7
+-8.6
+-9.1
+-8.8
+-8.3
+-8.0
+-7.6
+-6.0
+-5.0
+-4.7
+-2.7
+-1.0
+2.2
+4.9
+6.9
+8.1
+8.8
+8.5
+5.6
+0.2
+0.3
+-0.5
+-1.2
+-2.5
+-3.0
+-3.2
+-3.3
+-3.1
+-2.8
+-2.6
+-2.7
+-2.6
+-2.4
+-2.1
+0.0
+2.7
+6.0
+9.3
+12.2
+14.1
+14.9
+14.5
+10.6
+6.6
+5.7
+4.4
+3.3
+2.2
+1.9
+1.5
+1.3
+1.0
+1.0
+1.3
+1.2
+1.0
+0.9
+0.5
+2.8
+5.8
+8.5
+10.7
+12.3
+13.8
+14.3
+14.1
+11.2
+7.4
+6.1
+4.0
+2.7
+1.9
+0.4
+-0.8
+-1.6
+-2.2
+-2.6
+-2.9
+-2.8
+-1.1
+-0.4
+-0.9
+1.1
+4.9
+8.6
+11.0
+12.7
+13.7
+13.9
+13.0
+10.2
+10.4
+9.7
+9.1
+7.6
+5.1
+3.0
+1.9
+2.3
+2.8
+2.7
+2.3
+1.7
+1.0
+0.9
+0.7
+0.0
+-0.7
+-2.3
+-2.5
+-2.7
+-2.7
+-2.9
+-3.2
+-3.6
+-5.0
+-5.1
+-5.3
+-5.5
+-5.4
+-5.4
+-6.0
+-7.5
+-8.2
+-8.5
+-8.5
+-8.3
+-8.8
+-8.0
+-8.2
+-7.3
+-4.8
+-1.2
+2.3
+4.8
+6.4
+7.2
+7.4
+4.0
+-1.9
+-0.2
+-1.2
+-2.5
+-1.8
+-4.5
+-5.6
+-5.6
+-5.4
+-5.9
+-5.9
+-5.2
+-7.6
+-5.5
+-6.2
+-4.3
+-0.9
+2.6
+4.5
+5.8
+7.0
+7.9
+7.9
+4.0
+4.7
+1.4
+0.7
+-0.2
+-1.2
+-2.5
+-4.4
+-5.7
+-5.9
+-5.9
+-5.9
+-6.2
+-6.9
+-5.9
+-5.3
+-3.1
+0.2
+3.4
+5.9
+7.7
+9.0
+9.7
+9.3
+5.7
+2.5
+1.6
+0.3
+0.4
+0.0
+-0.9
+-2.1
+-2.5
+-2.7
+-3.3
+-3.8
+-3.7
+-3.5
+-3.2
+-3.2
+-1.1
+2.2
+5.4
+8.2
+10.2
+11.8
+12.8
+12.7
+11.5
+9.6
+2.5
+1.2
+0.9
+0.3
+-0.9
+-1.4
+-2.0
+-2.7
+-2.9
+-2.8
+-2.9
+-2.5
+-2.2
+-2.2
+-0.1
+3.2
+6.9
+10.5
+12.8
+14.2
+13.3
+10.3
+7.8
+4.6
+7.3
+5.8
+5.4
+7.6
+8.8
+5.7
+2.4
+4.1
+4.5
+1.4
+0.3
+0.6
+1.6
+0.9
+1.7
+6.0
+8.6
+9.0
+9.5
+9.1
+8.8
+9.0
+8.0
+5.0
+5.7
+4.2
+3.3
+2.0
+0.1
+0.0
+-0.6
+-0.1
+0.7
+-0.3
+-0.9
+1.4
+-0.9
+-0.5
+0.8
+3.3
+8.3
+11.6
+10.7
+8.4
+7.5
+7.2
+4.6
+2.7
+2.2
+0.7
+-0.8
+0.0
+-0.3
+0.4
+0.1
+0.1
+-0.2
+-0.6
+-1.1
+-1.4
+-1.9
+-4.1
+-2.6
+0.4
+2.4
+3.3
+4.0
+4.4
+4.5
+4.4
+3.9
+0.6
+-0.6
+-2.1
+-3.1
+-4.0
+-4.4
+-5.6
+-5.8
+-5.8
+-6.0
+-6.2
+-6.3
+-6.8
+-6.3
+-6.5
+-3.9
+0.6
+3.5
+5.4
+6.9
+8.0
+8.8
+8.2
+3.2
+4.5
+0.5
+0.3
+1.6
+-0.2
+-1.6
+-1.9
+-2.0
+-2.3
+-3.0
+-2.5
+-1.8
+-0.5
+-0.9
+-1.4
+0.3
+4.1
+7.5
+9.9
+11.2
+11.2
+10.3
+8.4
+5.8
+10.1
+9.5
+7.7
+7.3
+5.9
+4.4
+4.1
+5.5
+5.6
+4.7
+5.2
+3.9
+0.9
+-0.6
+-2.0
+0.3
+6.1
+11.1
+13.1
+13.8
+13.8
+14.1
+13.0
+10.5
+7.5
+7.7
+6.9
+6.5
+6.1
+3.6
+4.1
+2.0
+1.1
+0.3
+1.0
+0.7
+0.9
+0.2
+-0.6
+0.8
+3.0
+4.6
+6.4
+7.7
+8.7
+9.2
+9.1
+7.7
+4.7
+2.7
+1.8
+3.6
+0.9
+-0.4
+-1.3
+-2.2
+-2.1
+-1.6
+-1.8
+-2.3
+-1.8
+-1.3
+-1.0
+-0.5
+0.0
+0.5
+1.9
+3.2
+4.0
+4.5
+4.4
+3.4
+0.5
+0.3
+0.0
+-0.1
+-0.2
+-0.4
+-1.0
+-2.4
+-3.1
+-3.3
+-3.6
+-4.7
+-2.7
+-1.8
+-1.2
+-0.5
+2.1
+4.7
+6.0
+6.6
+7.4
+7.4
+6.6
+3.9
+2.3
+1.4
+0.4
+-0.3
+-1.4
+-1.2
+-2.0
+-3.6
+-3.7
+-3.9
+-4.3
+-5.5
+-4.6
+-6.3
+-7.1
+-5.3
+-2.5
+-0.3
+1.0
+1.8
+2.5
+2.7
+2.3
+0.3
+-0.3
+-0.6
+-1.7
+-1.8
+-2.2
+-2.3
+-2.3
+-3.0
+-3.7
+-4.0
+-4.4
+-4.7
+-3.1
+-2.9
+-3.1
+-2.8
+-1.7
+-0.8
+0.0
+0.5
+0.7
+0.9
+0.9
+0.4
+-2.0
+-2.5
+-3.1
+-3.8
+-4.0
+-4.2
+-4.9
+-4.9
+-5.1
+-5.4
+-5.7
+-5.2
+-4.7
+-4.9
+-5.0
+-3.5
+-1.7
+-0.6
+0.5
+1.1
+1.6
+2.0
+1.8
+-1.6
+-4.6
+-2.6
+-3.0
+-3.8
+-5.2
+-5.7
+-6.0
+-6.3
+-6.9
+-6.6
+-7.3
+-7.3
+-6.5
+-6.3
+-4.9
+-3.5
+-1.1
+1.8
+4.6
+6.9
+7.7
+7.0
+3.5
+0.2
+-2.4
+-1.7
+-3.1
+-4.4
+-4.3
+-5.1
+-5.6
+-6.2
+-6.7
+-7.4
+-8.0
+-8.1
+-6.7
+-6.5
+-6.4
+-5.8
+-5.0
+-4.0
+-2.8
+0.4
+0.7
+-0.1
+-2.3
+-5.7
+-6.9
+-7.0
+-6.3
+-6.1
+-6.4
+-6.8
+-6.4
+-6.1
+-5.9
+-6.1
+-6.4
+-6.6
+-6.6
+-6.9
+-7.0
+-6.1
+-3.3
+-0.4
+1.7
+3.4
+4.3
+4.4
+3.8
+0.5
+-1.3
+-2.1
+-3.3
+-2.8
+-5.2
+-5.3
+-5.2
+-5.0
+-5.3
+-5.9
+-6.1
+-6.3
+-7.9
+-6.9
+-6.5
+-4.6
+-1.3
+2.4
+5.3
+6.8
+7.3
+7.3
+6.5
+1.0
+0.5
+-1.3
+1.3
+-1.5
+-1.2
+-1.7
+-2.6
+-2.4
+-2.6
+-2.3
+-2.2
+-3.4
+-2.7
+-3.8
+-5.4
+-3.9
+-1.4
+0.8
+2.6
+4.1
+5.3
+5.7
+5.3
+4.1
+1.2
+-1.4
+-1.5
+-2.7
+-3.1
+-3.8
+-4.1
+-4.2
+-4.7
+-5.1
+-5.2
+-5.1
+-4.8
+-4.0
+-4.2
+-3.0
+0.4
+4.0
+7.6
+10.1
+11.2
+11.2
+10.3
+8.6
+5.8
+5.1
+4.6
+3.1
+2.0
+1.0
+0.9
+0.3
+-0.2
+-1.0
+-1.6
+-1.5
+2.1
+1.5
+3.3
+2.4
+4.0
+7.4
+10.4
+11.4
+11.4
+11.5
+11.2
+7.2
+3.6
+5.3
+2.1
+2.2
+1.1
+0.2
+-0.6
+-0.7
+-0.5
+-0.6
+0.1
+0.4
+-1.4
+1.2
+0.5
+2.6
+4.1
+5.6
+6.8
+8.5
+9.5
+10.0
+8.1
+8.0
+5.8
+4.4
+4.5
+3.2
+2.4
+1.2
+0.9
+0.8
+0.4
+-0.3
+-1.2
+-2.1
+-1.7
+-2.3
+-2.8
+-2.8
+-1.2
+0.5
+2.9
+4.4
+5.3
+5.8
+5.7
+3.3
+-0.3
+-1.3
+-2.3
+-3.2
+-3.6
+-3.7
+-3.1
+-3.3
+-3.4
+-3.5
+-3.5
+-3.1
+-2.8
+-3.1
+-3.9
+-3.0
+0.6
+4.0
+6.2
+8.0
+9.7
+10.9
+9.4
+3.9
+5.5
+3.0
+-0.3
+-0.1
+-0.9
+-1.5
+-2.3
+-2.6
+-2.4
+-2.6
+-2.7
+-2.6
+1.2
+0.9
+2.0
+4.7
+5.4
+6.5
+9.9
+12.2
+13.0
+12.5
+11.7
+7.8
+4.3
+4.6
+1.4
+0.9
+1.3
+0.4
+-1.6
+-1.5
+-2.5
+-1.6
+-0.9
+-0.9
+-1.6
+-2.5
+-2.9
+-1.0
+2.7
+6.4
+8.9
+9.9
+10.8
+11.6
+10.9
+7.2
+3.5
+3.5
+3.0
+0.1
+-0.7
+-1.0
+-1.8
+-2.4
+-2.6
+-3.0
+-3.3
+-3.5
+-3.9
+-4.1
+-3.9
+-2.2
+1.7
+5.8
+9.1
+11.2
+12.1
+12.5
+11.7
+10.4
+6.4
+4.3
+4.3
+3.2
+2.9
+2.8
+1.7
+2.5
+2.9
+1.4
+1.1
+0.6
+2.5
+0.7
+0.7
+2.2
+5.3
+7.9
+9.3
+10.2
+10.8
+11.2
+11.1
+7.7
+5.1
+4.7
+2.8
+2.1
+1.3
+3.3
+4.2
+4.3
+5.1
+5.4
+6.4
+3.8
+7.6
+5.7
+3.9
+5.3
+7.6
+7.9
+8.7
+8.8
+8.9
+8.4
+7.6
+6.1
+5.1
+4.2
+3.8
+2.0
+-0.6
+1.1
+1.0
+-1.4
+-2.1
+-3.0
+-3.5
+-2.4
+-2.8
+-3.6
+-3.4
+-1.8
+1.4
+4.1
+5.8
+7.1
+7.9
+8.2
+8.1
+5.4
+2.9
+1.6
+0.3
+-1.2
+-2.5
+-2.7
+-3.0
+-2.7
+-1.3
+-0.3
+-0.7
+-0.6
+1.2
+2.4
+1.2
+2.9
+6.6
+9.9
+12.5
+15.8
+14.9
+14.2
+12.8
+9.8
+8.7
+7.0
+8.4
+5.1
+2.9
+2.7
+3.8
+2.7
+0.6
+-1.3
+-2.5
+-2.4
+-1.7
+-2.7
+-1.5
+-1.1
+0.7
+2.3
+3.5
+4.9
+4.4
+3.7
+3.7
+0.6
+0.6
+-0.7
+-2.6
+-3.8
+-4.1
+-4.4
+-4.6
+-4.8
+-5.0
+-5.6
+-5.8
+-5.9
+-6.0
+-5.8
+-6.4
+-3.2
+0.1
+4.2
+6.4
+8.0
+8.7
+9.0
+7.8
+2.5
+1.3
+0.6
+4.4
+1.3
+1.1
+-0.2
+-2.7
+-3.8
+-2.5
+-2.1
+-1.8
+-0.9
+-1.3
+-1.1
+-1.1
+-0.9
+0.5
+2.6
+5.0
+6.9
+8.0
+8.1
+7.7
+5.1
+1.7
+1.2
+-1.0
+-1.3
+-2.9
+-3.3
+-3.0
+-2.7
+-2.7
+-2.9
+-3.1
+-3.3
+-2.9
+-3.4
+-3.1
+-2.6
+-0.8
+1.5
+3.2
+4.6
+5.4
+5.6
+4.8
+2.6
+0.3
+1.5
+-1.1
+-0.8
+-1.3
+-0.4
+-0.8
+-3.6
+-3.9
+-4.4
+-4.4
+-4.6
+-4.4
+-4.7
+-4.3
+-3.6
+-1.8
+-0.5
+1.7
+3.8
+4.7
+4.7
+4.4
+2.6
+0.9
+-0.8
+-1.4
+-2.0
+-2.7
+-3.0
+-4.0
+-4.6
+-4.6
+-4.2
+-4.1
+-5.7
+-5.6
+-5.5
+-5.5
+-5.1
+-3.9
+-2.6
+-1.4
+-1.3
+-1.3
+-1.1
+-1.8
+-3.3
+-4.4
+-4.9
+-5.6
+-6.2
+-6.4
+-6.9
+-7.1
+-7.2
+-7.3
+-7.4
+-7.4
+-7.3
+-8.0
+-8.3
+-8.4
+-8.5
+-7.8
+-6.8
+-5.9
+-5.4
+-4.9
+-4.4
+-4.5
+-5.1
+-6.4
+-7.0
+-7.1
+-7.3
+-7.4
+-7.3
+-7.3
+-7.7
+-8.4
+-8.8
+-9.1
+-9.4
+-10.5
+-11.4
+-11.3
+-10.2
+-7.1
+-3.8
+-1.1
+0.9
+2.3
+3.1
+3.1
+-0.7
+-2.5
+-2.7
+-3.2
+-3.9
+-3.5
+-3.5
+-2.9
+-1.8
+-1.7
+-2.1
+-2.2
+-2.4
+-0.9
+-1.8
+-2.3
+-1.1
+2.4
+6.1
+9.0
+10.1
+10.1
+9.5
+6.7
+4.5
+1.8
+1.3
+1.2
+0.2
+0.9
+1.3
+2.2
+1.1
+-0.2
+-0.2
+-1.5
+-2.3
+-2.4
+-5.2
+-7.7
+-8.7
+-8.5
+-8.2
+-7.9
+-7.8
+-7.8
+-7.5
+-8.1
+-8.9
+-11.4
+-11.7
+-11.8
+-11.9
+-11.9
+-12.0
+-12.2
\ No newline at end of file
diff --git a/omf/static/testFiles/utility_CO_2018_temperatures.csv b/omf/static/testFiles/utility_CO_2018_temperatures.csv
deleted file mode 100644
index 38543aa54..000000000
--- a/omf/static/testFiles/utility_CO_2018_temperatures.csv
+++ /dev/null
@@ -1,8760 +0,0 @@
--2.29
-2.14
-1.68
-5.89
-8.40
-7.59
-9.41
-11.42
-5.31
-2.06
-4.52
-1.69
--2.57
--5.89
--5.57
--8.01
--12.39
--10.79
--10.14
--11.05
--7.69
--2.80
--4.49
--2.31
-0.45
-0.71
-5.99
-3.72
-11.32
-5.13
-11.35
-9.20
-5.29
-3.86
-2.52
--1.28
--2.67
--4.39
--9.27
--11.73
--10.07
--11.26
--10.41
--13.06
--4.45
--4.67
--2.78
--2.72
--0.83
-2.11
-2.52
-0.38
-8.89
-9.21
-10.84
-6.54
-7.57
-7.93
-1.30
-2.56
--3.85
--6.83
--8.27
--9.07
--10.90
--11.35
--9.63
--6.09
--9.52
--7.81
--4.21
--1.75
--0.46
--0.88
-4.24
-6.88
-9.53
-8.54
-9.97
-8.52
-7.82
-0.81
-2.41
-1.95
--2.28
--2.13
--5.71
--11.14
--6.33
--8.83
--14.40
--8.15
--8.21
--6.63
--3.90
-0.01
--1.18
--1.63
-7.93
-6.92
-7.04
-3.93
-10.21
-4.62
-6.10
-8.99
-3.63
--0.90
--2.92
--9.53
--6.74
--7.54
--8.27
--10.76
--9.81
--11.39
--6.76
--6.39
--4.97
--0.97
--2.45
-6.12
-5.82
-4.83
-5.65
-9.12
-4.64
-10.91
-9.26
-3.80
-2.13
--0.11
-1.98
--1.05
--6.25
--5.54
--11.40
--10.50
--13.64
--10.43
--7.31
--7.76
--3.19
-3.90
--3.45
-6.05
-5.96
-6.77
-7.07
-8.31
-8.59
-5.85
-9.25
-3.25
-4.98
--1.97
--1.23
--3.48
--4.42
--9.41
--12.21
--13.07
--7.99
--8.98
--9.46
--4.29
--2.49
--1.19
--3.98
-4.64
-4.14
-5.32
-9.19
-8.50
-9.91
-8.58
-6.61
-4.15
-3.98
-1.79
--1.97
--5.95
--10.40
--7.65
--10.10
--12.18
--9.16
--13.75
--8.41
--5.60
--2.08
-0.59
-2.75
-4.68
-3.98
-8.38
-8.72
-10.51
-7.96
-9.28
-6.70
-4.04
-3.73
-3.07
--3.03
--5.54
--3.61
--12.66
--11.18
--10.52
--9.65
--12.53
--14.00
--9.71
--4.38
-0.49
--2.02
-2.66
-2.71
-4.24
-9.04
-8.95
-8.46
-7.60
-5.47
-7.19
--0.03
-0.07
--4.23
--0.51
--8.48
--6.44
--16.33
--12.88
--10.84
--8.90
--10.59
--6.64
--5.39
-0.05
--1.44
-1.56
-3.17
-9.42
-13.28
-8.28
-9.19
-9.40
-6.42
-5.35
-4.82
-1.38
--3.01
--3.76
--7.00
--7.11
--14.06
--9.75
--10.72
--10.53
--8.41
--5.72
--3.20
--3.80
--0.07
-1.48
-4.17
-4.53
-7.37
-8.79
-7.91
-6.72
-8.92
-6.61
-5.71
--0.98
--2.59
--7.40
--6.40
--9.20
--7.80
--10.53
--8.31
--5.29
--6.17
--5.42
--4.24
-2.68
--2.62
-1.40
-3.16
-4.49
-6.89
-8.63
-12.52
-10.39
-2.59
-3.69
-1.81
-0.14
--2.44
--4.45
--6.51
--8.47
--12.39
--10.95
--11.45
--11.93
--9.63
--7.88
--3.25
--1.04
--2.25
--1.21
-4.67
-5.45
-11.52
-7.97
-10.53
-8.92
-5.24
-4.79
-1.42
--1.54
--1.29
--5.27
--7.39
--9.75
--13.19
--10.90
--6.41
--8.57
--8.54
--6.08
--3.70
-1.34
--1.37
-1.15
-2.82
-3.43
-9.45
-10.03
-6.66
-9.04
-9.00
-9.76
-4.94
--1.01
--3.75
--6.27
--7.92
--7.63
--10.58
--7.97
--15.18
--7.72
--11.91
--8.81
--5.04
--1.59
--0.11
-2.43
-6.02
-9.21
-7.78
-12.57
-5.69
-8.74
-7.27
-3.88
-1.47
-1.23
--3.67
--4.17
--5.98
--11.14
--9.84
--9.19
--8.16
--12.11
--5.25
--3.14
--5.90
--2.87
-1.09
-3.47
-3.72
-5.94
-6.74
-10.36
-10.30
-9.41
-6.26
-8.35
-3.17
--3.08
--2.98
--2.08
--8.63
--5.56
--12.44
--9.85
--10.37
--9.15
--6.03
--10.42
--4.30
--2.34
--1.69
-2.18
-5.91
-4.25
-9.17
-10.44
-12.04
-5.10
-8.37
-7.09
-6.50
-1.03
--2.46
--3.18
--8.65
--9.31
--12.91
--11.72
--9.92
--10.00
--8.57
--6.91
--3.60
--1.28
--0.49
-1.61
-1.39
-6.51
-5.97
-9.41
-5.63
-10.21
-8.16
-4.24
-2.64
-1.48
--3.70
--5.12
--6.28
--11.20
--10.99
--9.70
--7.11
--13.86
--9.15
--3.75
--4.70
--3.35
-0.83
-1.37
-5.60
-9.18
-6.53
-9.15
-7.07
-5.17
-8.53
-5.26
-1.69
--4.40
--2.13
--2.58
--6.58
--11.65
--14.19
--10.70
--9.68
--10.48
--8.76
--5.93
--5.10
--1.07
--1.33
-1.85
-1.81
-7.05
-9.60
-8.66
-8.82
-7.98
-5.31
-3.81
-3.67
-5.24
--6.86
--8.55
--7.22
--10.73
--10.54
--14.31
--11.02
--11.55
--7.87
--6.75
--0.87
--0.43
--1.91
-4.44
-8.79
-5.60
-6.77
-8.62
-6.65
-7.13
-5.62
-4.32
-0.60
--0.78
--0.11
--7.59
--6.00
--15.03
--9.56
--8.96
--10.16
--10.36
--5.60
--5.51
--4.38
--1.59
-2.14
-2.25
-5.25
-11.66
-7.85
-8.40
-1.92
-12.18
-5.78
-6.85
-2.66
-0.29
--2.05
--2.29
--6.04
--7.82
--10.61
--12.58
--11.98
--7.42
--8.84
--6.16
--2.54
--1.79
--0.94
-1.07
-4.80
-3.07
-12.26
-7.82
-11.45
-6.31
-8.91
-1.70
-0.68
-0.39
--3.02
--6.82
--5.92
--7.59
--8.06
--9.48
--13.83
--12.46
--8.08
--4.62
--7.18
--2.46
--0.53
-3.24
-3.11
-6.55
-8.61
-11.03
-8.88
-10.19
-10.37
-5.34
-3.23
--0.09
-2.70
--3.03
--7.13
--8.84
--10.47
--13.72
--10.57
--12.14
--7.32
--0.27
--2.54
-1.20
--0.72
-2.84
-2.80
-5.60
-8.84
-8.82
-11.05
-8.72
-9.35
-3.85
-3.04
--0.02
-1.85
--3.63
--6.75
--9.38
--7.65
--6.02
--12.63
--12.36
--6.91
--8.64
--4.51
--0.47
-0.95
-2.44
-7.99
-6.27
-8.99
-10.46
-9.14
-7.21
-9.86
-5.85
-1.92
--2.04
--1.24
--4.29
--11.52
--12.38
--13.25
--8.45
--9.43
--9.71
--7.52
--8.78
--2.80
-0.68
--5.70
-0.67
-2.30
-6.30
-6.59
-10.23
-12.27
-7.88
-8.90
-2.99
-2.90
-0.88
--3.00
--6.58
--9.44
--8.48
--11.87
--9.31
--12.18
--9.96
--7.07
--5.89
--3.73
--2.04
--4.47
-3.80
-5.32
-6.18
-7.97
-8.80
-7.40
-7.68
-5.86
-5.91
-2.14
-1.27
--2.22
--5.90
--7.93
--7.94
--7.97
--10.32
--12.58
--9.29
--9.97
--8.53
--3.97
--0.24
--0.34
-3.02
-4.10
-6.82
-7.53
-11.64
-6.96
-6.48
-8.67
-6.48
-2.77
-0.34
--3.95
--5.17
--9.18
--11.83
--9.50
--14.73
--8.21
--13.79
--7.43
--3.56
--2.10
--3.95
-0.61
-1.03
-5.17
-2.75
-9.13
-9.92
-9.13
-6.57
-6.24
-3.85
-1.92
-2.34
-1.50
--6.68
--4.71
--10.60
--11.75
--9.13
--10.88
--11.80
--6.34
--4.19
--4.72
--2.45
--3.35
-3.87
-6.42
-7.98
-10.96
-11.20
-10.60
-9.19
-6.88
-6.86
-4.92
-1.99
--5.10
--6.99
--8.05
--5.95
--12.99
--10.39
--8.93
--10.65
--4.76
--4.08
--3.16
--0.28
--0.32
-3.63
-7.99
-3.28
-11.63
-12.79
-11.59
-8.84
-6.98
-6.66
-4.66
-2.12
-0.50
--4.37
--7.72
--9.96
--10.05
--13.46
--8.90
--6.59
--6.75
--3.89
--5.65
-0.43
--2.11
--0.46
-3.78
-7.42
-8.87
-10.58
-8.33
-8.22
-5.61
-4.96
-4.44
--1.60
--1.06
--6.85
--5.67
--9.19
--6.68
--9.45
--9.97
--8.25
--6.13
--4.19
--1.31
-1.21
--0.93
-3.22
-4.67
-5.33
-7.57
-8.92
-14.19
-7.80
-9.49
-6.57
-5.88
-1.62
--4.13
--8.90
--6.33
--8.20
--10.97
--11.37
--6.53
--9.03
--7.96
--2.66
--2.16
-2.78
-0.36
-4.87
-5.69
-3.38
-11.20
-11.99
-12.94
-10.15
-9.63
-7.41
-3.33
--0.98
-0.76
-0.71
--7.27
--4.65
--8.30
--8.04
--5.32
--6.33
--11.23
--6.79
--2.41
-3.51
--4.11
-5.56
-2.89
-8.75
-12.88
-10.86
-12.46
-10.23
-4.37
-7.36
-5.32
-0.65
--1.50
--6.97
--7.09
--8.05
--11.61
--5.83
--9.21
--10.62
--6.01
--7.70
--1.04
--0.31
--1.80
--2.24
-5.47
-6.70
-11.03
-11.02
-10.77
-8.20
-8.74
-4.01
-2.02
-2.85
-2.36
--4.21
--2.13
--8.56
--11.95
--11.62
--12.59
--10.59
--7.43
--5.61
--4.58
--2.49
--0.34
-1.41
-7.21
-7.84
-10.36
-8.05
-10.00
-10.66
-4.34
-2.67
-5.21
-1.72
--0.61
--4.45
--5.14
--6.05
--10.03
--6.73
--11.75
--8.62
--5.50
--3.25
--2.01
--0.40
-0.55
-5.07
-5.39
-6.99
-10.38
-7.58
-11.85
-7.91
-8.19
-9.77
-6.38
-3.35
--0.95
--6.83
--8.44
--8.28
--8.58
--7.30
--7.07
--8.30
--8.01
--6.72
--3.48
--0.32
-1.59
-2.48
-2.18
-9.53
-8.94
-8.71
-7.05
-8.47
-8.28
-8.65
-5.34
-6.34
-0.86
--1.91
--4.89
--11.04
--4.78
--7.81
--9.87
--11.84
--4.19
--8.95
--1.37
--2.05
--2.05
--0.24
-4.30
-8.40
-11.67
-10.29
-8.34
-11.76
-6.46
-3.10
-2.25
-2.95
--3.21
--3.83
--9.70
--5.49
--9.38
--10.44
--7.92
--7.22
--7.46
--7.28
--4.22
--1.91
-0.98
-2.21
-5.80
-6.40
-7.81
-6.68
-8.37
-7.44
-8.11
-7.42
-2.40
-3.38
--3.22
--3.51
--5.46
--10.66
--11.22
--11.01
--8.78
--4.79
--7.80
--7.07
--5.30
-2.34
--0.54
-2.27
-5.23
-7.30
-10.22
-9.49
-8.50
-10.09
-10.27
-4.19
-4.70
-0.38
--3.26
--5.58
--6.70
--11.01
--9.75
--9.95
--8.14
--5.75
--10.67
--5.40
--5.81
--0.67
--0.91
-1.74
-3.66
-5.87
-8.58
-7.78
-10.44
-8.99
-9.12
-7.73
-1.20
--0.72
-0.78
--6.06
--4.73
--8.88
--9.62
--14.77
--12.16
--8.02
--5.55
--5.48
-0.31
--1.29
--0.64
-0.48
-5.81
-6.51
-6.86
-7.81
-8.91
-7.64
-9.95
-4.48
-3.93
-0.92
-5.22
--0.84
--8.78
--5.32
--12.91
--6.42
--9.48
--9.23
--6.04
--4.43
--0.57
--2.43
-0.37
--2.98
-3.69
-11.21
-10.57
-13.56
-7.64
-9.79
-8.48
-8.62
-3.87
--3.93
--3.63
--0.18
--4.80
--10.46
--7.78
--9.92
--11.71
--10.69
--5.67
--6.52
--1.85
-2.05
--0.05
-0.67
-5.97
-4.27
-8.58
-7.81
-10.94
-7.85
-12.49
-10.08
-5.08
-3.29
-0.85
--5.36
--6.56
--8.35
--7.32
--9.09
--11.74
--9.55
--8.19
--10.51
--0.74
-0.54
--1.93
-1.92
-4.77
-6.88
-6.95
-10.05
-7.16
-11.32
-9.52
-6.92
-2.27
-1.55
--1.69
--4.50
--7.11
--10.55
--10.91
--8.42
--14.27
--0.53
--5.44
--6.60
--3.71
--3.88
-1.40
-1.28
-3.99
-9.35
-5.98
-11.53
-9.18
-10.41
-7.40
-5.19
-2.61
-2.50
--4.27
--7.64
--6.74
--7.60
--9.68
--11.27
--11.80
--6.68
--9.82
--1.16
-0.50
-0.49
--0.96
-0.58
-6.36
-6.79
-6.89
-10.68
-11.12
-14.66
-7.90
-4.24
-3.86
-1.70
-0.18
--3.12
--5.76
--8.97
--7.56
--9.22
--6.97
--9.25
--8.10
--6.06
--1.49
--1.32
--2.47
-0.96
-7.72
-8.50
-5.27
-5.02
-8.27
-11.90
-7.83
-4.85
-2.68
--2.81
--4.21
--5.35
--4.33
--10.32
--9.05
--10.84
--12.97
--6.67
--6.02
--4.40
--3.10
--4.60
-6.36
-4.77
-3.86
-9.24
-7.27
-8.89
-11.24
-10.95
-4.49
-5.49
-5.86
-1.97
--0.39
--6.51
--6.54
--8.90
--8.22
--13.08
--10.82
--9.86
--10.22
--1.83
--2.81
-1.76
--5.80
-1.67
-0.10
-5.18
-9.62
-9.32
-14.05
-8.94
-8.25
-5.56
-3.97
-0.15
-1.69
--5.35
--7.52
--9.10
--9.38
--7.16
--9.94
--10.89
--8.95
--4.48
--2.32
-0.25
--0.50
-2.95
-7.83
-8.15
-11.63
-7.82
-7.49
-10.89
-7.92
-6.24
-2.62
--0.59
--5.99
--4.71
--3.38
--7.20
--11.01
--8.61
--9.34
--10.94
--8.91
--5.64
--5.05
-0.84
-3.91
-2.44
-5.27
-7.15
-13.58
-10.09
-11.31
-9.20
-7.83
-8.38
-2.52
-3.03
--3.08
--5.20
--6.29
--6.96
--11.01
--11.76
--12.32
--8.77
--9.24
--3.75
--2.70
--1.90
-1.70
-0.67
-12.34
-4.16
-10.57
-8.81
-7.55
-9.03
-6.85
-8.49
-4.53
--0.52
--2.46
--4.60
--6.53
--8.74
--9.95
--13.50
--12.37
--9.10
--6.10
--3.74
--0.89
-0.48
--0.21
-0.47
-6.37
-8.51
-9.81
-12.69
-8.74
-10.64
-7.09
-4.96
-3.16
-2.87
--3.48
--6.35
--7.85
--7.32
--11.65
--12.16
--11.24
--6.96
--2.79
--8.63
--3.74
-2.51
-0.03
-3.74
-5.32
-9.64
-9.52
-15.26
-13.72
-7.15
-9.40
-4.97
-5.12
--0.96
--4.66
--0.38
--6.62
--7.07
--11.28
--10.27
--10.66
--8.65
--9.84
--3.00
--2.33
-0.04
-2.03
-7.49
-9.17
-10.53
-12.20
-14.66
-14.60
-13.15
-15.08
-13.71
-10.76
-7.63
-3.45
--1.72
--0.72
--0.08
--7.42
--6.32
--3.27
--4.67
--5.29
-3.12
--0.24
-6.01
-4.91
-7.96
-10.45
-11.28
-18.54
-15.57
-10.95
-15.87
-15.57
-8.87
-5.87
-10.45
-3.62
-0.01
-2.79
--4.04
--2.80
--10.88
--1.74
--4.41
--2.59
-1.69
-0.54
-5.77
-4.18
-9.26
-9.84
-12.72
-14.81
-14.82
-13.70
-17.06
-13.23
-10.08
-13.10
-6.48
--0.71
-1.09
--1.02
--4.17
--5.22
--6.07
--3.77
--7.60
--1.53
-2.24
-2.07
-4.60
-6.14
-10.07
-9.77
-12.01
-13.55
-17.14
-13.16
-16.45
-11.71
-11.39
-9.21
-8.71
-2.76
-0.08
-1.27
--6.49
--2.07
--4.55
--4.94
--3.69
--5.20
-4.74
--1.21
-4.46
-0.71
-3.54
-8.81
-12.75
-14.23
-17.17
-11.74
-11.86
-14.64
-9.26
-9.96
-5.65
-4.93
-1.76
--0.06
--5.67
--2.04
--4.46
--2.34
--6.20
-0.29
-1.87
-5.64
-6.20
-6.18
-4.12
-9.45
-12.48
-13.63
-17.13
-13.10
-11.82
-13.99
-11.76
-10.19
-12.38
-1.94
--0.98
--2.03
--3.67
--0.50
--6.00
--4.48
--2.13
--1.99
--0.24
-1.15
-7.27
-4.94
-6.92
-13.65
-7.74
-16.64
-14.81
-14.27
-15.77
-10.22
-13.60
-10.23
-8.05
--1.41
-2.73
--2.44
-0.09
--7.33
--6.36
--6.62
--4.40
--4.55
-0.92
-0.94
-5.34
-5.90
-8.85
-9.47
-11.56
-11.16
-15.17
-13.97
-13.97
-13.12
-8.89
-8.00
-6.88
--0.23
--1.44
--1.12
--1.54
--1.83
--4.98
--4.03
--3.16
-0.65
-2.86
-2.79
-8.11
-4.82
-7.41
-9.38
-13.95
-14.38
-11.96
-16.03
-13.80
-14.25
-10.28
-8.05
-4.28
-7.17
--5.37
--0.25
--4.53
--3.11
--2.72
--5.84
--4.32
--5.13
-0.40
-1.27
-5.30
-6.03
-8.75
-13.14
-16.06
-14.14
-13.64
-14.71
-14.03
-14.90
-13.37
-9.01
-3.91
-2.77
--1.26
--0.85
--5.16
--2.59
--4.47
--3.13
--5.21
--1.61
--0.25
-1.25
-1.78
-3.88
-5.58
-8.49
-11.90
-13.61
-14.00
-16.12
-13.30
-14.09
-13.69
-9.35
-6.52
-1.50
--0.49
-2.61
--2.89
--4.17
--6.64
--3.64
--1.06
--4.61
--3.40
-4.17
-6.39
-2.94
-7.65
-13.27
-13.04
-14.17
-18.23
-16.56
-12.40
-12.52
-13.98
-12.24
-7.37
-4.93
-2.32
--4.67
--3.00
--2.10
-0.41
--4.84
--5.55
--0.65
-0.25
--0.87
-8.04
-5.05
-11.31
-11.60
-9.32
-14.95
-13.40
-14.29
-13.11
-13.73
-9.90
-9.28
-6.34
-6.37
-0.15
-0.82
--0.33
--7.40
--9.24
--7.31
--3.59
--1.30
-0.50
-2.21
-5.88
-3.68
-10.73
-10.55
-14.74
-11.64
-17.08
-15.20
-12.71
-14.00
-9.83
-5.45
-4.74
-5.36
--0.77
--3.59
--2.22
--6.08
--4.64
--4.49
--6.47
--6.03
-3.60
-1.69
-4.12
-5.88
-7.32
-12.43
-14.24
-17.16
-16.22
-15.09
-14.43
-15.24
-9.60
-5.91
-5.44
-3.21
-5.95
--2.70
--2.30
--5.24
--6.48
--8.18
--1.82
--3.72
--0.68
-2.59
-7.13
-4.34
-6.62
-8.48
-12.30
-13.32
-15.29
-12.77
-13.05
-11.13
-10.37
-8.34
-2.60
-2.46
-1.84
--1.54
--4.60
--3.26
--3.79
--6.39
--1.39
-0.06
-1.61
-2.85
-3.84
-5.81
-5.43
-11.06
-11.63
-16.27
-11.21
-17.55
-13.12
-10.43
-11.07
-9.47
-6.20
-2.65
-2.08
-1.23
--4.84
--4.38
--3.74
--7.24
--4.59
--1.79
-1.58
--0.09
-5.24
-4.61
-8.82
-10.35
-9.71
-11.21
-14.86
-13.15
-13.40
-12.42
-13.39
-10.31
-4.50
--2.04
--0.01
--0.82
--1.92
--3.80
--5.71
--6.21
--5.26
--1.42
-2.85
-1.64
-4.83
-4.62
-7.92
-12.06
-10.20
-13.24
-18.06
-14.23
-11.91
-12.18
-11.81
-10.02
-5.46
-2.96
-2.56
-2.24
--2.37
--4.92
--7.04
--4.92
--1.52
--1.90
--0.76
-0.59
-2.30
-4.82
-8.04
-10.07
-11.08
-12.88
-15.04
-16.07
-10.85
-12.98
-12.44
-7.50
-7.02
-8.08
-0.89
--1.62
--2.07
--7.18
--8.31
--5.87
--4.70
--0.37
--3.42
-0.64
-6.86
-5.71
-6.48
-9.29
-11.50
-13.61
-15.45
-13.92
-12.86
-14.03
-13.50
-11.95
-3.25
-8.66
--2.24
--3.79
--3.73
--4.33
--1.85
--3.85
--2.48
--4.82
--0.59
-2.75
-5.04
-4.17
-5.69
-6.92
-13.04
-14.12
-13.31
-17.09
-13.00
-15.60
-12.38
-12.11
-7.39
-2.28
--0.81
-1.18
--4.15
--1.41
--5.97
--4.90
--5.03
--4.35
-1.67
-2.59
-8.19
-4.17
-6.50
-7.19
-12.05
-10.86
-17.48
-14.76
-12.50
-15.62
-13.74
-11.21
-4.88
-3.70
-0.73
--4.92
--1.63
--8.64
--4.07
--3.93
--7.89
--1.73
-1.09
-3.98
-4.41
-5.95
-11.40
-11.59
-13.26
-13.99
-13.01
-14.12
-11.70
-13.24
-10.08
-8.57
-9.36
-4.77
-1.14
--1.09
--4.78
--5.66
--1.62
-0.25
--5.05
--3.27
-0.10
-6.22
-3.48
-5.45
-5.22
-12.90
-11.21
-13.78
-16.42
-17.27
-17.45
-12.91
-10.62
-12.92
-5.02
-0.21
--1.94
-0.73
--3.27
--2.96
--7.98
--4.67
--5.30
--6.97
-0.66
-2.57
-5.48
-3.11
-13.28
-10.25
-11.49
-15.54
-14.26
-17.09
-17.94
-15.58
-12.98
-7.15
-5.12
-5.85
-0.34
--0.52
--1.16
--6.78
--2.93
--2.92
--3.13
--2.63
--0.62
-4.24
-7.93
-7.04
-8.52
-11.32
-14.81
-12.83
-13.70
-15.98
-14.56
-14.48
-8.99
-8.87
-6.48
-0.20
-0.44
--0.47
--4.25
--3.03
--5.24
--5.21
--0.61
--1.88
-1.94
-2.35
-3.22
-6.29
-9.86
-8.75
-10.28
-13.99
-14.50
-12.08
-12.81
-12.43
-8.46
-8.24
-6.93
-3.82
-0.28
--2.10
--3.02
--5.61
--3.17
-0.57
--1.14
--3.00
--0.24
-2.87
-6.35
-3.79
-10.88
-11.68
-12.03
-13.16
-18.32
-16.46
-14.94
-11.57
-10.08
-8.78
-6.00
-3.87
-5.10
--1.76
--6.04
--3.71
--2.77
--3.62
--1.11
--3.03
-0.12
-4.28
-8.96
-6.70
-11.99
-12.39
-12.76
-14.34
-14.18
-17.63
-16.38
-14.71
-12.11
-12.66
-7.42
-3.85
-0.23
--0.74
--4.22
--6.06
--5.58
--6.08
--1.08
--1.35
-2.80
-2.37
-4.59
-2.62
-6.75
-10.91
-6.75
-12.70
-13.22
-12.43
-17.42
-13.79
-8.94
-5.85
-8.89
-0.88
--2.62
--1.47
--3.17
--1.95
--3.29
--2.81
--4.13
--4.88
-0.47
--0.51
-4.66
-9.81
-15.41
-15.38
-16.58
-17.62
-21.05
-18.88
-16.84
-16.86
-16.43
-14.73
-9.74
-8.69
-7.75
-5.64
-1.18
-1.42
-0.86
-3.65
-2.44
-5.10
-0.75
-4.50
-8.66
-7.12
-15.87
-16.29
-15.23
-21.20
-16.72
-19.84
-21.50
-18.73
-16.94
-15.18
-12.75
-6.27
-2.79
-2.11
-2.72
-0.10
-3.95
-3.31
-1.61
-3.89
-2.57
-6.58
-7.43
-9.64
-14.32
-19.82
-19.09
-20.42
-20.00
-21.14
-19.40
-17.49
-16.56
-10.47
-12.38
-8.80
-7.19
-2.85
-2.40
-0.95
--1.26
-1.43
-2.55
-1.18
-1.09
-6.69
-10.66
-9.66
-10.76
-16.53
-19.49
-16.15
-20.42
-21.01
-16.23
-16.55
-19.93
-16.86
-12.79
-9.06
-8.67
-2.87
--0.38
--1.59
--0.91
-0.48
-0.87
-3.38
-3.67
-5.54
-12.00
-9.41
-13.10
-16.84
-18.78
-20.37
-17.40
-21.25
-20.69
-18.21
-15.97
-12.92
-12.59
-6.20
-7.81
-6.89
--0.64
--0.63
-0.81
-0.52
-3.20
-3.45
-6.12
-6.65
-9.07
-11.74
-13.49
-17.33
-16.02
-17.37
-20.46
-19.27
-17.43
-17.18
-13.19
-15.33
-13.01
-9.18
-7.40
-6.01
-4.52
-1.60
-2.16
-0.50
--0.92
-4.88
-3.29
-8.91
-8.17
-10.98
-16.49
-15.34
-18.66
-14.04
-21.21
-18.04
-18.61
-18.24
-18.10
-16.88
-11.61
-10.07
-3.98
-6.10
-0.52
--3.53
-2.79
--4.12
-3.95
-4.84
-2.95
-7.28
-9.46
-6.68
-12.69
-13.42
-20.00
-20.27
-18.91
-17.05
-14.99
-19.02
-12.31
-18.36
-10.71
-8.65
-8.94
-6.07
-1.98
-0.62
-1.64
--0.14
-1.03
-4.99
-5.66
-5.61
-9.46
-8.54
-9.63
-15.48
-20.09
-19.64
-19.06
-20.36
-21.06
-17.37
-17.39
-13.71
-10.73
-8.16
-2.93
-5.67
-2.41
-2.25
--1.40
--1.75
--2.83
-3.79
-1.40
-5.63
-8.93
-11.33
-9.49
-15.08
-18.01
-18.77
-19.24
-18.70
-20.91
-20.77
-15.39
-10.73
-12.40
-7.61
-7.92
-3.15
-2.05
-1.22
-1.41
--1.87
-1.37
-3.27
-1.42
-8.95
-8.95
-9.41
-11.41
-12.78
-17.79
-19.38
-20.32
-18.68
-20.71
-18.05
-18.01
-17.19
-9.21
-5.39
-4.79
-1.87
-3.94
-0.77
--1.53
--1.25
-2.64
-1.29
-4.44
-2.45
-12.40
-10.79
-14.29
-16.13
-14.17
-20.00
-18.83
-19.83
-19.63
-15.76
-12.36
-16.78
-10.88
-9.28
-8.04
-3.06
-1.76
--1.96
--0.01
-1.27
--1.14
-5.30
-3.08
-6.82
-10.39
-9.55
-12.70
-14.38
-16.85
-19.30
-20.56
-17.65
-18.55
-18.94
-17.44
-14.99
-8.17
-13.38
-1.06
-1.41
-2.58
-2.77
-1.36
-1.78
-0.50
-3.93
-2.95
-7.44
-9.88
-9.08
-14.11
-15.68
-17.81
-16.84
-15.21
-19.51
-18.81
-18.09
-17.46
-16.50
-12.41
-6.88
-6.79
-3.29
-0.21
-0.28
--2.20
--3.95
-2.28
-2.63
-4.78
-5.31
-10.33
-8.33
-17.87
-16.39
-22.68
-21.23
-21.88
-22.30
-16.76
-17.61
-16.46
-14.56
-11.93
-4.80
-4.27
-1.93
--1.34
--1.41
--2.62
--1.34
-1.46
-4.43
-2.99
-9.07
-11.22
-8.60
-13.29
-17.35
-15.82
-17.69
-21.60
-24.53
-22.63
-16.18
-13.08
-16.17
-13.62
-10.14
-5.82
-4.39
-5.89
-2.37
-0.19
-3.44
-0.64
-0.93
-2.39
-7.45
-8.07
-5.29
-13.34
-16.34
-19.64
-20.97
-19.92
-23.25
-21.45
-18.88
-16.18
-11.67
-11.81
-11.28
-7.02
-4.12
-1.50
-1.48
-0.02
-2.15
--3.90
-2.29
-5.35
-6.25
-10.37
-8.06
-13.25
-12.61
-17.71
-18.57
-18.17
-19.26
-22.28
-16.91
-15.29
-14.35
-10.95
-7.87
-6.03
-1.44
-5.57
--0.37
-1.72
-0.81
--0.94
-4.54
-5.11
-9.42
-10.89
-12.87
-14.60
-15.56
-19.82
-16.59
-20.15
-21.95
-23.79
-16.76
-20.01
-10.80
-10.20
-9.18
-7.13
-2.84
-2.75
--0.71
-2.09
-1.71
-2.30
-4.37
-1.67
-8.16
-9.35
-11.23
-12.79
-16.80
-19.06
-16.63
-19.77
-17.57
-20.59
-15.68
-14.37
-12.29
-11.83
-7.95
-7.10
-1.21
-0.11
-2.39
-0.19
--0.61
--0.93
-3.35
-7.39
-3.42
-12.07
-8.75
-14.14
-13.76
-15.41
-17.70
-22.14
-20.24
-22.72
-18.07
-18.13
-9.40
-17.34
-11.95
-5.82
-3.63
-2.50
--0.31
--2.37
--1.52
-0.40
-4.32
-6.64
-7.40
-10.92
-7.14
-11.20
-12.59
-20.39
-18.24
-19.21
-19.81
-16.11
-15.80
-17.61
-16.80
-14.04
-3.48
-9.17
--0.22
-3.36
--1.22
--1.64
-0.66
-0.39
-6.07
-1.47
-7.09
-9.57
-7.99
-14.63
-12.05
-21.99
-19.85
-22.69
-18.56
-21.42
-15.48
-13.23
-15.42
-12.89
-12.23
-12.17
-3.57
-3.02
--0.76
--4.64
--0.58
-1.97
-1.15
-6.56
-7.62
-11.15
-6.17
-12.65
-16.69
-19.65
-19.20
-18.20
-19.46
-21.46
-17.35
-15.47
-14.26
-12.72
-7.96
-6.15
-6.01
-3.51
--0.50
-0.01
--0.88
-0.02
-4.67
-2.89
-5.25
-11.41
-8.43
-12.68
-13.70
-18.48
-18.03
-18.80
-17.77
-17.30
-13.66
-17.12
-13.49
-9.65
-12.47
-8.34
-5.76
-0.60
--1.00
-1.94
--0.01
-2.71
-0.90
-6.18
-10.27
-6.46
-10.15
-13.08
-14.84
-15.08
-18.94
-22.02
-22.90
-20.54
-18.34
-17.68
-17.72
-14.77
-7.79
-3.69
-3.62
-3.52
-2.12
-0.79
-0.39
-1.33
-4.18
-4.59
-5.47
-9.05
-9.57
-13.65
-16.02
-17.39
-19.95
-19.87
-20.28
-20.68
-14.62
-12.56
-13.91
-14.41
-8.46
-4.08
-7.02
-2.16
-1.70
--3.65
--1.51
--1.67
--0.05
-4.76
-11.26
-6.13
-8.34
-14.13
-16.29
-18.75
-18.43
-17.13
-17.09
-22.70
-21.31
-15.34
-15.81
-9.98
-8.88
-7.28
-5.31
-2.39
--1.50
--0.94
-0.22
-0.30
-1.45
-2.25
-5.15
-9.56
-7.08
-15.06
-14.29
-17.32
-20.09
-21.60
-18.58
-21.59
-18.74
-15.19
-13.54
-9.54
-6.99
-6.34
-4.72
-3.87
--0.33
--1.23
--4.14
--0.51
-3.11
-2.74
-4.75
-10.25
-10.00
-10.93
-14.66
-16.79
-18.76
-19.12
-17.13
-17.54
-20.83
-13.78
-16.94
-13.62
-6.96
-6.07
-6.85
-1.58
--1.83
-2.23
-1.73
--2.02
-5.13
-7.45
-3.36
-13.57
-12.74
-18.93
-19.92
-23.78
-27.55
-21.99
-27.54
-22.35
-23.30
-26.57
-18.80
-15.05
-12.50
-10.90
-11.19
-10.52
-5.87
-5.53
-6.60
-9.41
-8.76
-9.25
-10.76
-12.26
-13.13
-16.31
-18.63
-24.82
-23.00
-28.19
-25.80
-25.33
-21.14
-22.78
-18.10
-11.65
-13.00
-7.32
-7.78
-9.75
-7.01
-2.39
-3.80
-5.57
-6.88
-7.34
-12.52
-15.08
-16.41
-18.07
-21.87
-22.76
-25.22
-26.94
-26.94
-26.07
-23.91
-23.50
-15.74
-14.15
-11.06
-10.27
-10.33
-6.46
-6.23
-4.38
-4.35
-5.90
-2.55
-11.32
-14.17
-13.31
-14.02
-15.51
-23.50
-22.78
-23.12
-24.18
-25.55
-22.17
-26.69
-22.74
-18.65
-13.52
-17.41
-10.22
-7.41
-7.47
-9.15
-4.02
-2.22
-6.30
-6.92
-8.02
-11.90
-13.88
-12.27
-17.46
-20.80
-23.64
-29.67
-26.92
-26.10
-24.73
-24.28
-23.50
-17.10
-14.97
-12.31
-10.66
-11.17
-7.36
-5.15
-4.69
-3.98
-8.06
-7.54
-11.86
-13.25
-17.51
-14.52
-16.51
-19.62
-18.53
-27.56
-26.02
-24.07
-21.25
-25.26
-24.66
-16.55
-17.01
-11.80
-8.37
-9.91
-7.91
-5.07
-6.69
-1.98
-2.83
-5.80
-8.71
-15.08
-16.47
-15.63
-18.73
-18.94
-22.96
-22.51
-21.78
-26.82
-27.99
-19.26
-22.29
-18.14
-15.02
-15.65
-12.78
-8.04
-8.59
-9.99
-5.66
-7.11
-5.20
-8.04
-9.74
-11.43
-16.41
-17.19
-16.10
-20.19
-18.81
-23.07
-25.20
-27.98
-23.71
-25.33
-20.49
-15.75
-16.21
-11.62
-6.96
-8.69
-7.99
-6.71
-3.25
-7.15
-6.44
-9.85
-9.97
-12.10
-13.89
-15.68
-14.48
-19.82
-20.26
-23.57
-24.88
-23.59
-24.73
-18.54
-17.57
-22.39
-17.45
-13.65
-11.07
-8.67
-4.19
-3.96
-4.05
-3.99
-5.99
-8.86
-8.37
-14.02
-16.91
-14.59
-17.56
-18.09
-22.82
-26.13
-28.28
-28.19
-26.05
-23.11
-21.06
-20.42
-18.03
-16.85
-10.21
-9.18
-6.96
-4.75
-4.37
-4.56
-8.69
-7.55
-10.07
-9.46
-15.22
-16.43
-19.97
-16.32
-19.10
-23.36
-23.20
-26.58
-24.03
-24.10
-19.25
-20.57
-20.48
-15.24
-12.10
-11.21
-6.16
-7.54
-5.31
-5.08
-7.86
-10.25
-9.85
-12.27
-14.72
-13.74
-16.53
-21.46
-17.05
-23.90
-22.56
-27.63
-24.06
-20.99
-21.97
-20.10
-16.13
-13.08
-11.62
-9.39
-6.90
-8.49
-6.18
-2.33
-3.68
-4.19
-7.72
-13.77
-14.68
-15.61
-17.11
-20.67
-22.96
-25.12
-25.49
-24.42
-24.55
-22.76
-22.65
-14.22
-14.62
-13.06
-9.38
-7.73
-7.33
-6.48
-3.72
-5.58
-4.41
-5.82
-9.47
-11.86
-14.70
-13.78
-19.15
-21.05
-24.26
-23.12
-24.88
-21.15
-26.14
-25.72
-19.25
-21.03
-18.25
-13.05
-8.06
-7.31
-5.61
-6.49
-3.03
-4.96
-3.67
-7.98
-6.98
-10.92
-12.14
-10.60
-20.17
-19.05
-23.23
-25.22
-26.18
-27.29
-24.27
-25.11
-19.67
-21.24
-14.45
-16.65
-11.75
-12.14
-8.71
-5.95
-5.15
-6.67
-7.10
-10.65
-10.99
-13.52
-11.19
-15.67
-18.34
-17.55
-23.93
-19.02
-27.03
-24.01
-28.56
-24.38
-19.84
-17.94
-14.59
-13.59
-8.97
-7.33
-10.33
-7.20
-4.06
-5.97
-5.24
-12.95
-12.03
-11.02
-15.55
-13.64
-15.31
-17.74
-20.96
-25.02
-27.23
-22.46
-24.53
-19.72
-18.86
-17.28
-18.57
-10.49
-13.49
-10.18
-6.36
-5.50
-3.39
-5.92
-5.19
-12.06
-12.64
-15.38
-11.31
-11.91
-18.41
-20.42
-25.94
-23.13
-26.63
-24.14
-22.25
-23.19
-21.87
-21.81
-18.70
-14.01
-14.13
-9.20
-7.89
-7.84
-2.03
-6.39
-6.30
-6.06
-6.08
-15.77
-19.47
-15.64
-18.57
-18.60
-20.24
-21.51
-21.11
-24.58
-26.61
-23.34
-20.14
-19.90
-16.00
-14.81
-13.83
-11.06
-6.81
-3.84
-6.75
-4.67
-4.50
-9.60
-7.58
-12.31
-18.67
-15.45
-16.55
-18.22
-22.92
-24.16
-21.53
-19.97
-24.44
-24.36
-17.34
-17.94
-16.86
-14.37
-7.63
-8.65
-8.89
-8.71
-3.94
-3.54
-7.14
-6.32
-11.60
-10.82
-17.31
-16.26
-17.16
-19.49
-20.19
-25.31
-22.93
-28.10
-23.98
-23.06
-19.17
-20.25
-16.40
-9.25
-12.59
-6.07
-5.06
-2.76
-6.28
-7.93
-5.07
-3.25
-9.48
-10.25
-18.61
-20.78
-18.82
-16.66
-21.72
-20.56
-24.56
-24.63
-21.76
-24.32
-19.96
-19.88
-14.31
-12.38
-12.43
-7.44
-6.79
-7.89
-5.29
-10.76
-4.29
-2.50
-7.58
-14.92
-11.57
-13.76
-18.30
-19.54
-20.99
-23.78
-23.90
-23.17
-26.20
-23.54
-18.96
-16.86
-14.99
-13.50
-12.03
-5.52
-4.68
-8.05
-7.60
-4.00
-11.51
-7.98
-7.99
-12.29
-18.00
-17.72
-22.32
-18.99
-21.45
-23.15
-26.50
-27.66
-23.07
-23.04
-17.41
-22.07
-13.17
-15.68
-8.15
-9.26
-6.44
-4.64
-5.35
-3.54
-7.52
-6.97
-11.23
-9.39
-17.00
-10.53
-17.10
-22.53
-18.88
-23.26
-23.01
-24.77
-26.57
-21.10
-21.98
-20.16
-14.93
-15.42
-8.93
-8.16
-5.37
-7.68
-4.55
-2.45
-9.11
-6.71
-11.69
-13.71
-16.80
-14.08
-17.01
-19.60
-20.23
-21.94
-24.19
-23.38
-23.51
-24.30
-24.48
-20.33
-15.02
-15.09
-14.13
-9.79
-3.39
-7.25
-7.29
-8.01
-8.52
-10.87
-5.89
-9.56
-13.12
-15.95
-17.24
-18.72
-20.68
-24.72
-27.28
-24.54
-23.80
-21.47
-20.51
-22.78
-14.62
-15.20
-14.78
-8.28
-6.57
-3.89
-5.81
-4.05
-5.18
-6.88
-8.21
-15.35
-14.97
-14.85
-17.21
-20.04
-29.86
-28.01
-23.44
-23.02
-25.46
-27.23
-22.91
-18.77
-17.23
-14.72
-10.87
-7.62
-2.74
-4.45
-2.70
-5.00
-4.84
-8.40
-9.39
-12.60
-19.31
-15.96
-17.57
-21.32
-19.32
-22.32
-25.18
-26.04
-24.76
-20.99
-22.93
-22.92
-16.23
-15.78
-11.09
-3.15
-8.04
-6.36
-4.28
-4.88
-3.53
-7.10
-6.03
-13.02
-16.43
-15.84
-20.64
-19.45
-23.74
-23.03
-25.81
-25.47
-26.53
-21.54
-20.50
-19.36
-15.97
-9.73
-10.02
-8.06
-6.96
-3.37
-3.98
-7.82
-6.31
-6.56
-10.94
-13.15
-16.40
-14.42
-19.55
-21.21
-23.22
-22.73
-23.61
-25.20
-23.11
-20.76
-18.32
-17.98
-14.95
-14.25
-6.39
-10.89
-5.68
-4.09
-5.34
-6.01
-3.11
-9.42
-8.82
-11.22
-14.48
-20.00
-24.17
-29.04
-26.15
-28.19
-30.82
-29.68
-29.34
-27.85
-23.52
-26.57
-20.12
-17.88
-21.85
-15.00
-11.16
-11.18
-10.13
-11.69
-6.86
-15.30
-13.40
-14.43
-21.20
-17.10
-21.77
-24.75
-24.94
-31.63
-28.70
-34.82
-28.57
-30.18
-25.96
-22.15
-19.24
-20.70
-20.16
-11.33
-13.58
-11.00
-9.26
-6.96
-9.33
-14.18
-15.10
-15.88
-18.19
-17.92
-24.37
-22.89
-27.14
-29.57
-26.94
-31.03
-28.74
-25.89
-23.76
-24.86
-21.96
-17.69
-14.79
-11.94
-13.31
-8.33
-6.30
-8.09
-6.80
-13.65
-19.78
-15.13
-21.37
-18.42
-21.67
-19.99
-29.18
-23.81
-32.92
-28.42
-32.29
-28.49
-28.41
-24.18
-23.52
-21.43
-17.83
-15.46
-9.94
-9.64
-10.70
-14.31
-7.06
-13.72
-17.18
-19.38
-22.16
-19.23
-23.32
-26.27
-26.57
-27.63
-24.54
-31.03
-29.13
-29.25
-25.28
-25.55
-22.15
-19.67
-14.03
-12.44
-10.99
-11.93
-7.09
-9.51
-7.40
-11.48
-13.82
-16.82
-18.98
-16.35
-21.20
-29.06
-27.67
-30.53
-33.93
-30.72
-30.60
-29.36
-29.27
-21.82
-17.48
-18.30
-18.68
-15.83
-11.55
-10.58
-6.75
-10.04
-10.75
-12.23
-11.77
-13.55
-18.98
-22.42
-22.37
-25.53
-26.45
-28.11
-27.39
-32.15
-32.16
-30.30
-27.59
-27.01
-22.37
-16.26
-14.15
-13.67
-9.84
-11.80
-11.73
-9.99
-11.63
-8.65
-15.33
-15.45
-24.32
-15.22
-23.25
-22.93
-26.55
-29.95
-30.53
-31.97
-33.91
-28.26
-24.84
-23.21
-20.06
-17.88
-14.73
-11.36
-13.96
-12.93
-8.65
-10.60
-13.21
-12.73
-13.58
-14.53
-20.62
-24.19
-24.50
-27.64
-30.14
-31.92
-32.96
-32.70
-28.19
-26.56
-28.24
-25.77
-20.28
-19.28
-16.35
-13.29
-12.56
-10.56
-13.14
-9.28
-9.46
-11.39
-16.92
-18.95
-18.47
-18.57
-23.01
-26.48
-30.34
-29.54
-28.12
-28.64
-33.38
-25.69
-28.51
-23.79
-25.07
-17.41
-15.93
-14.26
-10.81
-12.30
-12.72
-9.67
-9.61
-14.79
-14.68
-17.87
-20.94
-19.42
-21.50
-27.82
-27.45
-26.86
-30.63
-29.51
-31.62
-30.11
-23.79
-25.03
-19.52
-16.29
-13.84
-16.39
-8.63
-16.18
-10.10
-8.51
-9.23
-12.40
-20.94
-19.37
-21.47
-21.15
-23.05
-24.96
-26.30
-28.16
-29.83
-32.55
-28.29
-24.82
-24.13
-22.66
-23.67
-19.82
-21.94
-12.46
-9.67
-10.56
-7.53
-7.39
-10.50
-13.21
-12.47
-18.36
-18.02
-21.12
-23.79
-21.34
-29.30
-26.56
-30.46
-25.70
-32.58
-32.36
-26.30
-23.94
-20.08
-16.33
-17.12
-13.65
-11.11
-10.61
-9.76
-8.43
-10.08
-13.54
-16.99
-14.53
-21.62
-19.13
-21.04
-26.32
-27.10
-28.49
-26.86
-31.69
-31.63
-30.60
-24.68
-25.46
-20.86
-21.36
-18.82
-14.22
-12.12
-9.73
-9.89
-11.36
-12.07
-9.99
-13.28
-18.29
-17.46
-22.00
-22.07
-25.85
-27.15
-28.69
-32.29
-29.43
-24.79
-27.98
-24.68
-21.44
-20.24
-19.44
-13.21
-14.82
-10.58
-11.13
-11.03
-11.30
-11.60
-11.04
-16.89
-16.45
-18.25
-16.56
-23.04
-26.06
-25.21
-29.84
-26.45
-31.90
-30.35
-28.46
-24.60
-28.03
-22.77
-16.93
-16.24
-14.85
-10.97
-9.13
-11.30
-10.55
-11.14
-11.96
-15.79
-21.15
-16.53
-19.24
-20.25
-23.58
-27.25
-31.87
-29.72
-29.80
-28.32
-26.67
-26.12
-22.17
-21.80
-17.14
-15.10
-11.98
-10.42
-11.89
-5.17
-14.40
-12.14
-14.11
-14.48
-18.94
-16.78
-18.89
-25.29
-26.07
-27.58
-27.80
-30.10
-26.39
-29.94
-23.09
-27.86
-21.27
-22.55
-19.83
-18.24
-11.60
-10.81
-7.15
-15.39
-7.03
-11.11
-13.22
-14.56
-19.89
-22.06
-17.33
-21.25
-23.11
-22.64
-28.89
-28.34
-27.97
-30.98
-28.91
-27.37
-26.07
-19.27
-18.44
-16.76
-12.99
-18.27
-8.13
-10.96
-10.86
-7.91
-13.75
-18.91
-15.90
-20.80
-20.55
-21.29
-25.35
-26.13
-33.19
-33.51
-28.65
-31.33
-27.17
-29.92
-24.32
-21.50
-18.79
-15.60
-13.79
-9.25
-11.94
-12.72
-11.07
-8.75
-13.55
-14.88
-18.91
-20.26
-22.07
-23.05
-25.24
-23.41
-30.76
-31.01
-28.65
-28.40
-25.80
-26.28
-25.28
-24.64
-14.03
-13.40
-12.14
-10.87
-11.65
-10.65
-10.74
-11.77
-11.57
-14.11
-16.70
-21.45
-21.08
-23.72
-25.32
-24.69
-27.00
-27.99
-27.35
-33.15
-27.99
-24.29
-23.99
-25.87
-17.36
-14.18
-9.38
-11.34
-9.16
-9.03
-11.48
-11.11
-9.36
-12.13
-18.91
-20.05
-20.88
-24.64
-28.96
-25.34
-27.35
-30.31
-29.53
-29.40
-25.49
-26.16
-22.53
-18.42
-17.16
-16.09
-14.51
-10.78
-11.42
-9.24
-9.05
-11.19
-9.28
-17.44
-18.54
-19.52
-20.44
-18.27
-26.60
-28.32
-31.99
-28.34
-32.41
-28.33
-30.28
-29.33
-23.46
-19.92
-18.77
-16.47
-16.47
-12.63
-9.59
-10.11
-9.34
-10.03
-12.45
-13.88
-21.09
-22.29
-18.19
-20.54
-24.08
-26.00
-30.57
-31.60
-32.69
-26.84
-24.41
-26.85
-23.41
-19.52
-16.86
-15.61
-9.07
-13.41
-11.89
-8.77
-12.11
-7.15
-8.91
-16.80
-17.86
-23.20
-15.26
-21.83
-26.21
-26.96
-30.30
-32.01
-31.36
-26.35
-28.62
-25.59
-22.50
-21.61
-18.17
-13.13
-10.59
-12.53
-12.56
-9.68
-7.56
-10.49
-12.81
-12.40
-14.37
-18.59
-19.38
-20.74
-26.07
-24.04
-30.72
-28.22
-27.59
-31.06
-26.71
-27.70
-22.34
-22.09
-18.08
-16.64
-11.84
-11.49
-8.51
-8.35
-8.39
-12.94
-14.84
-14.85
-16.98
-18.27
-17.90
-21.58
-29.55
-26.86
-26.86
-28.68
-30.84
-32.96
-26.06
-24.70
-23.13
-22.47
-18.63
-13.61
-13.39
-11.53
-8.68
-13.04
-12.26
-9.61
-14.90
-15.08
-18.57
-20.48
-20.69
-24.03
-24.11
-26.66
-28.41
-30.39
-29.53
-25.38
-25.35
-27.93
-24.20
-20.56
-21.60
-16.28
-13.94
-10.58
-10.33
-12.31
-8.60
-15.80
-10.76
-16.10
-16.14
-21.74
-18.21
-23.35
-24.45
-27.60
-31.50
-28.73
-36.20
-27.06
-30.90
-26.76
-24.85
-23.46
-18.30
-17.06
-13.42
-9.98
-14.18
-9.83
-11.84
-13.00
-9.03
-18.40
-17.18
-23.36
-25.20
-30.67
-32.33
-28.86
-34.02
-35.11
-30.32
-33.44
-33.92
-30.55
-26.58
-24.63
-22.01
-20.23
-20.52
-18.64
-16.75
-15.09
-13.07
-13.27
-19.61
-14.48
-25.89
-23.50
-25.01
-27.93
-29.98
-33.44
-38.60
-33.73
-35.58
-31.78
-34.04
-30.02
-28.39
-24.16
-24.50
-19.97
-20.51
-14.05
-11.96
-13.13
-18.04
-15.78
-19.46
-22.78
-24.60
-25.87
-24.36
-26.52
-27.01
-34.60
-36.14
-33.80
-36.78
-35.28
-30.66
-29.37
-29.08
-23.11
-20.89
-23.05
-18.04
-18.89
-15.28
-15.34
-17.58
-17.33
-18.44
-22.97
-22.76
-23.99
-23.24
-26.07
-30.79
-34.57
-36.97
-32.19
-32.03
-34.57
-30.72
-28.12
-27.53
-25.67
-22.74
-20.14
-17.59
-16.34
-14.69
-17.26
-15.32
-16.80
-15.38
-22.93
-20.63
-24.90
-20.03
-27.97
-33.64
-32.25
-35.23
-33.54
-34.76
-36.78
-32.01
-31.53
-29.25
-26.37
-24.88
-23.47
-18.50
-14.52
-14.18
-11.36
-17.63
-12.80
-15.35
-21.97
-20.56
-23.80
-27.53
-24.74
-28.71
-32.58
-36.11
-32.92
-35.10
-35.26
-33.30
-26.39
-28.99
-27.02
-25.16
-21.15
-17.86
-16.24
-13.97
-14.28
-13.47
-18.22
-20.31
-18.65
-25.45
-23.03
-26.87
-25.47
-29.76
-32.53
-35.29
-36.58
-36.36
-33.76
-33.41
-32.51
-29.76
-26.03
-20.35
-19.80
-18.00
-19.08
-16.66
-16.78
-12.63
-15.23
-19.53
-18.67
-19.04
-20.79
-23.23
-32.65
-32.00
-37.14
-32.88
-33.86
-37.43
-35.58
-32.82
-35.11
-31.48
-26.76
-25.00
-23.04
-18.05
-17.26
-14.14
-16.12
-14.83
-15.92
-16.22
-18.48
-22.26
-26.74
-25.19
-28.36
-30.49
-30.12
-33.39
-35.95
-35.56
-36.67
-32.04
-29.70
-30.52
-23.03
-24.61
-22.06
-22.29
-13.08
-14.21
-15.94
-14.34
-13.84
-16.98
-22.07
-22.44
-28.46
-26.53
-23.66
-30.95
-35.71
-35.11
-37.07
-34.62
-34.58
-33.52
-27.35
-28.38
-26.44
-22.05
-19.68
-22.09
-11.95
-13.84
-13.70
-15.39
-13.99
-17.30
-17.72
-20.82
-22.20
-23.85
-28.68
-31.67
-33.01
-32.16
-36.33
-35.43
-35.26
-32.84
-29.18
-28.94
-28.04
-19.91
-21.66
-18.19
-16.46
-17.35
-12.78
-12.33
-14.44
-17.74
-19.39
-22.68
-25.72
-25.60
-26.38
-26.53
-33.13
-34.94
-35.92
-35.90
-35.40
-31.88
-32.57
-29.31
-25.23
-26.03
-20.32
-17.14
-19.71
-16.13
-14.12
-18.05
-18.99
-15.80
-18.12
-22.98
-23.07
-23.73
-25.55
-30.78
-33.48
-35.26
-35.03
-36.10
-30.09
-36.57
-25.85
-25.91
-28.06
-23.06
-26.71
-19.82
-18.59
-11.96
-13.81
-15.65
-17.59
-19.06
-19.00
-25.55
-24.75
-28.05
-27.89
-29.45
-30.73
-33.80
-38.04
-31.82
-35.95
-34.47
-31.94
-28.34
-21.43
-24.48
-21.21
-18.82
-15.13
-16.51
-16.49
-10.58
-16.04
-15.43
-20.05
-18.92
-24.44
-25.50
-29.13
-28.52
-37.90
-34.50
-35.34
-35.56
-37.46
-33.17
-34.31
-24.71
-24.96
-23.62
-17.07
-22.01
-22.50
-12.07
-16.54
-17.42
-17.26
-19.86
-18.06
-23.99
-23.39
-24.40
-28.91
-27.73
-31.27
-31.81
-30.45
-36.95
-34.32
-33.44
-29.03
-30.64
-26.45
-21.65
-23.16
-20.29
-17.53
-14.84
-15.76
-14.84
-12.12
-19.82
-19.84
-19.16
-26.27
-23.89
-27.09
-26.36
-36.54
-34.91
-35.34
-30.08
-37.09
-31.84
-31.85
-30.39
-28.70
-23.20
-16.60
-18.96
-16.67
-13.99
-18.51
-15.91
-13.53
-17.43
-19.69
-24.53
-27.15
-21.10
-24.01
-27.68
-31.75
-34.55
-34.72
-33.94
-31.95
-33.48
-30.29
-26.69
-29.05
-23.04
-18.46
-17.43
-17.12
-17.40
-17.43
-16.71
-15.75
-20.46
-23.05
-24.56
-24.73
-22.34
-28.03
-30.07
-32.45
-31.68
-34.54
-36.31
-34.42
-32.40
-32.12
-29.58
-26.75
-24.75
-18.76
-20.68
-17.06
-11.92
-14.87
-13.74
-20.49
-17.11
-22.10
-24.12
-22.44
-27.71
-30.67
-30.20
-33.28
-34.15
-35.73
-37.14
-35.11
-30.14
-30.94
-27.27
-26.21
-23.31
-24.21
-15.68
-15.85
-14.53
-15.07
-18.90
-21.18
-17.16
-17.82
-19.43
-24.60
-24.99
-28.93
-30.79
-31.41
-32.49
-36.33
-36.96
-34.20
-30.95
-33.24
-27.44
-24.59
-23.19
-18.73
-19.72
-15.87
-13.88
-17.96
-16.43
-16.70
-19.77
-19.86
-22.08
-26.58
-27.12
-27.98
-26.18
-32.66
-31.61
-31.85
-33.73
-34.88
-34.01
-29.49
-28.19
-29.74
-25.94
-19.62
-20.64
-18.10
-16.89
-14.88
-15.28
-17.62
-18.67
-20.71
-20.41
-20.30
-23.88
-28.58
-30.82
-31.81
-31.94
-35.50
-34.52
-32.89
-37.82
-34.21
-29.68
-21.47
-19.91
-18.29
-18.01
-14.79
-16.37
-14.19
-15.27
-19.61
-14.58
-19.00
-19.97
-23.01
-22.64
-26.96
-31.62
-32.65
-31.61
-32.95
-34.85
-34.41
-33.17
-32.81
-25.56
-27.18
-26.43
-21.15
-20.12
-16.59
-14.91
-18.47
-12.69
-17.85
-16.99
-19.82
-25.48
-27.69
-24.53
-26.98
-24.69
-30.99
-31.69
-34.35
-31.21
-36.26
-34.26
-33.06
-26.60
-26.06
-26.60
-22.60
-14.38
-21.82
-15.74
-16.99
-16.09
-15.97
-12.72
-22.53
-22.87
-28.90
-22.91
-27.69
-30.72
-31.16
-32.79
-36.55
-36.27
-35.66
-32.63
-33.52
-29.15
-22.86
-21.89
-23.92
-16.78
-16.08
-14.00
-13.43
-18.52
-19.06
-13.16
-19.97
-22.17
-22.72
-24.84
-26.89
-29.26
-33.05
-36.31
-33.19
-35.91
-32.49
-33.81
-31.10
-30.45
-27.77
-21.58
-20.79
-22.24
-15.22
-15.63
-13.94
-13.03
-17.66
-16.91
-20.78
-25.03
-28.31
-27.69
-30.69
-30.27
-29.58
-33.68
-34.66
-34.71
-33.18
-30.25
-27.52
-29.41
-22.00
-26.04
-23.72
-15.19
-16.34
-19.56
-14.48
-20.36
-18.77
-16.91
-15.88
-21.05
-25.65
-24.08
-26.68
-30.13
-32.56
-34.25
-36.22
-36.10
-36.08
-33.82
-31.41
-31.71
-28.74
-26.88
-21.65
-22.31
-15.15
-14.15
-13.42
-13.23
-17.01
-16.91
-18.85
-24.23
-24.74
-26.39
-26.27
-29.53
-31.51
-35.93
-31.49
-32.83
-33.01
-35.10
-32.90
-27.24
-27.74
-26.16
-21.66
-18.60
-16.65
-19.23
-18.52
-14.15
-19.08
-20.90
-17.56
-23.21
-23.18
-22.25
-28.55
-29.91
-31.62
-34.70
-35.22
-36.95
-30.64
-33.45
-30.31
-28.37
-25.16
-22.68
-23.76
-17.14
-14.21
-13.23
-12.44
-16.75
-15.64
-19.03
-20.72
-24.96
-25.27
-21.14
-30.74
-28.12
-32.18
-38.23
-33.99
-33.32
-30.62
-31.26
-30.39
-28.60
-26.34
-22.54
-16.94
-16.39
-14.87
-13.44
-14.06
-15.73
-17.03
-12.87
-19.69
-18.14
-22.93
-22.30
-28.34
-31.44
-31.66
-31.15
-37.36
-36.08
-29.71
-35.49
-34.65
-29.88
-24.50
-20.82
-22.38
-16.84
-15.76
-13.11
-14.05
-15.17
-15.70
-17.43
-20.32
-19.24
-21.78
-28.10
-27.54
-32.33
-31.23
-36.59
-31.92
-35.08
-35.44
-33.47
-29.17
-30.39
-24.56
-21.44
-18.40
-15.66
-14.01
-14.24
-18.54
-12.14
-15.06
-20.88
-17.12
-20.30
-20.52
-23.12
-29.67
-27.70
-34.57
-30.32
-34.79
-34.32
-34.16
-32.58
-33.79
-29.46
-25.22
-25.79
-18.15
-18.55
-17.96
-14.90
-10.51
-15.90
-16.69
-14.75
-16.40
-15.30
-23.44
-23.92
-31.65
-35.68
-34.38
-33.07
-33.20
-33.04
-36.19
-35.41
-29.33
-23.34
-24.95
-20.69
-18.76
-16.48
-16.37
-12.60
-11.95
-13.60
-15.31
-14.57
-17.51
-21.57
-19.99
-26.65
-26.88
-29.81
-28.93
-34.93
-37.46
-34.48
-32.94
-34.78
-31.22
-25.33
-22.89
-20.78
-17.76
-20.33
-16.54
-15.17
-14.09
-14.23
-13.92
-17.99
-19.65
-21.99
-24.77
-19.66
-25.16
-25.09
-30.64
-33.81
-34.67
-35.04
-32.98
-32.92
-30.40
-26.31
-26.42
-21.77
-21.06
-17.43
-15.44
-15.20
-9.27
-15.46
-12.35
-14.40
-16.93
-24.47
-24.14
-20.84
-22.61
-28.50
-31.14
-32.71
-34.02
-30.34
-32.67
-29.76
-29.23
-29.34
-20.75
-22.01
-21.27
-15.33
-17.04
-13.88
-10.66
-11.78
-12.65
-15.71
-16.53
-24.89
-21.39
-24.46
-30.92
-28.31
-30.32
-33.96
-32.61
-31.63
-35.93
-32.67
-30.19
-28.42
-26.57
-21.19
-20.61
-15.71
-15.51
-14.45
-13.52
-12.66
-11.00
-17.30
-18.03
-18.40
-22.44
-25.40
-27.95
-29.66
-30.22
-35.13
-35.82
-33.18
-34.46
-36.94
-32.45
-26.03
-26.93
-23.20
-22.59
-17.52
-15.23
-14.84
-15.10
-12.92
-13.44
-16.01
-20.53
-21.57
-22.11
-22.58
-28.39
-26.98
-28.98
-32.41
-34.06
-36.12
-32.94
-23.74
-28.30
-27.91
-30.49
-22.36
-23.03
-16.82
-16.72
-17.27
-18.65
-13.08
-16.71
-17.79
-15.87
-17.45
-21.27
-23.18
-24.42
-25.78
-30.55
-31.81
-36.27
-34.38
-32.98
-33.80
-30.74
-32.12
-25.81
-19.64
-17.35
-21.23
-13.27
-14.84
-11.59
-16.80
-18.75
-19.21
-20.83
-23.83
-21.27
-22.15
-25.93
-32.76
-33.62
-29.52
-31.01
-34.51
-31.59
-31.98
-27.76
-25.69
-24.78
-20.00
-19.64
-17.30
-13.65
-11.91
-13.30
-19.05
-15.09
-14.56
-18.71
-20.11
-20.72
-26.02
-27.06
-29.79
-35.16
-33.79
-32.68
-36.39
-32.86
-35.92
-29.55
-31.98
-23.10
-26.70
-21.63
-19.59
-13.76
-15.23
-16.08
-13.52
-14.80
-15.20
-18.79
-19.53
-26.78
-25.93
-25.50
-31.52
-33.96
-33.37
-35.95
-31.04
-31.35
-31.05
-32.40
-26.63
-25.21
-23.07
-19.11
-17.24
-15.72
-14.63
-10.95
-13.06
-17.52
-14.78
-23.83
-19.77
-24.75
-23.89
-25.13
-27.05
-31.69
-36.15
-34.96
-32.09
-32.43
-30.59
-33.29
-27.12
-26.33
-23.52
-18.05
-19.41
-15.96
-15.18
-15.09
-16.58
-16.50
-20.04
-18.65
-21.75
-23.23
-26.59
-27.37
-29.98
-32.55
-33.74
-31.97
-33.20
-32.34
-34.71
-27.05
-29.14
-26.19
-21.85
-23.79
-18.43
-12.40
-18.31
-12.23
-12.01
-11.37
-16.98
-21.18
-23.62
-27.80
-24.72
-30.98
-27.63
-30.01
-34.03
-37.05
-33.50
-35.31
-26.31
-26.17
-32.11
-26.22
-24.69
-20.28
-18.54
-16.92
-12.79
-12.09
-18.39
-12.91
-20.14
-19.28
-22.21
-24.24
-25.78
-26.46
-28.17
-32.29
-32.87
-32.56
-32.00
-38.03
-31.59
-31.79
-28.21
-20.81
-23.79
-19.98
-18.41
-15.80
-11.05
-11.49
-15.75
-16.31
-17.70
-19.59
-20.03
-23.32
-26.15
-25.43
-31.37
-32.27
-29.79
-33.01
-32.18
-33.52
-35.39
-29.09
-26.94
-27.99
-21.92
-17.04
-17.30
-13.02
-14.26
-15.04
-18.01
-16.81
-17.93
-22.05
-20.97
-22.72
-23.59
-27.52
-28.46
-32.80
-34.52
-34.68
-35.82
-36.35
-32.31
-31.66
-27.42
-26.87
-19.56
-21.47
-17.27
-14.93
-14.68
-12.65
-16.39
-14.47
-14.72
-20.15
-17.99
-24.25
-22.01
-27.89
-28.11
-31.29
-32.97
-37.30
-33.41
-31.82
-28.69
-28.06
-26.12
-27.13
-25.53
-20.16
-16.25
-16.10
-16.28
-13.95
-15.12
-13.76
-18.23
-17.65
-18.19
-24.39
-23.35
-27.15
-27.44
-32.56
-30.47
-32.55
-32.65
-34.04
-32.65
-31.44
-24.53
-23.60
-21.00
-19.85
-19.20
-13.38
-12.87
-13.88
-13.10
-13.47
-15.95
-17.30
-18.92
-26.32
-21.48
-31.44
-24.44
-36.01
-33.70
-33.19
-34.66
-35.73
-34.68
-31.34
-24.38
-26.10
-22.69
-18.20
-19.28
-17.86
-15.97
-16.17
-11.62
-16.73
-16.25
-18.27
-22.47
-24.56
-23.41
-31.40
-31.66
-31.38
-36.13
-33.44
-34.35
-35.75
-30.63
-30.56
-30.09
-28.17
-18.35
-20.86
-18.03
-18.39
-13.70
-11.30
-13.71
-15.38
-15.85
-19.04
-19.01
-27.44
-24.76
-26.78
-31.02
-30.84
-37.22
-31.48
-34.80
-30.33
-29.67
-30.64
-27.72
-27.68
-24.46
-17.64
-15.67
-14.12
-10.84
-13.23
-12.80
-13.74
-19.00
-20.50
-19.34
-25.04
-25.72
-29.75
-31.90
-30.19
-31.97
-32.04
-37.07
-31.10
-36.04
-30.31
-28.05
-24.94
-24.86
-22.06
-20.81
-16.00
-13.35
-14.39
-16.70
-15.25
-16.88
-19.06
-21.65
-24.33
-25.57
-25.69
-28.02
-28.59
-30.71
-35.96
-36.88
-33.01
-32.04
-31.95
-28.81
-22.40
-24.43
-16.42
-17.34
-15.35
-15.52
-11.12
-15.23
-12.47
-16.60
-17.13
-20.37
-25.05
-25.59
-25.72
-30.51
-32.20
-31.80
-34.02
-33.09
-31.18
-34.37
-28.15
-29.36
-20.80
-22.74
-20.14
-17.36
-16.89
-16.87
-14.78
-16.70
-17.16
-16.13
-18.55
-17.81
-26.71
-27.17
-26.23
-29.86
-32.62
-31.62
-35.25
-36.48
-36.09
-31.92
-30.20
-24.39
-24.56
-21.10
-18.20
-16.21
-16.08
-17.77
-17.60
-14.54
-15.89
-19.60
-21.82
-23.28
-22.24
-24.55
-25.26
-32.00
-30.34
-32.01
-31.51
-30.57
-35.29
-30.08
-26.83
-29.62
-28.07
-24.84
-17.90
-17.04
-15.82
-14.11
-13.70
-10.68
-12.59
-16.48
-16.68
-22.73
-20.91
-21.27
-22.90
-25.86
-30.74
-31.47
-34.35
-31.40
-28.42
-27.38
-26.59
-24.26
-23.01
-20.77
-14.92
-12.89
-12.80
-11.87
-8.91
-12.40
-9.79
-13.31
-17.15
-15.59
-21.47
-22.21
-21.22
-24.17
-24.76
-27.46
-31.67
-28.36
-29.65
-27.41
-25.09
-26.35
-21.08
-16.20
-16.57
-16.35
-12.64
-11.42
-6.89
-10.59
-13.79
-15.30
-15.87
-16.27
-17.71
-17.46
-24.08
-24.72
-28.82
-27.13
-29.82
-28.93
-31.59
-26.79
-26.38
-24.75
-19.58
-19.45
-15.30
-14.92
-11.95
-12.76
-10.60
-7.32
-11.99
-13.99
-15.61
-20.52
-17.42
-20.32
-21.49
-24.75
-27.88
-32.57
-28.74
-26.34
-31.32
-29.32
-29.47
-26.66
-20.05
-17.80
-11.95
-14.44
-15.76
-11.20
-10.47
-9.28
-10.35
-15.16
-15.00
-14.85
-17.88
-16.95
-22.29
-24.59
-26.50
-26.66
-31.57
-28.72
-28.24
-30.42
-25.93
-24.90
-23.94
-20.02
-16.84
-12.14
-12.73
-8.45
-10.21
-8.26
-9.36
-15.76
-13.60
-19.31
-20.89
-21.17
-22.53
-25.12
-26.88
-31.13
-30.44
-28.21
-29.58
-27.80
-23.12
-20.44
-23.35
-19.10
-18.66
-14.94
-10.56
-11.84
-12.69
-12.32
-9.57
-13.29
-11.29
-19.62
-22.26
-21.42
-20.34
-23.52
-26.51
-31.17
-32.28
-30.38
-30.22
-28.18
-25.39
-24.40
-21.28
-18.65
-13.64
-15.15
-13.57
-11.47
-9.00
-4.08
-12.64
-10.33
-14.21
-17.08
-19.49
-19.19
-23.30
-21.86
-29.96
-27.51
-31.67
-27.85
-26.01
-27.81
-28.25
-22.26
-22.25
-18.31
-13.05
-17.89
-14.51
-9.85
-7.55
-8.14
-10.14
-13.60
-14.83
-20.79
-23.07
-21.08
-23.89
-29.20
-28.50
-30.63
-28.05
-29.91
-26.96
-29.90
-26.57
-24.20
-20.92
-19.67
-16.38
-16.66
-11.38
-9.91
-8.48
-10.49
-9.68
-11.74
-14.01
-16.90
-23.44
-18.75
-24.41
-23.27
-29.58
-27.03
-30.29
-30.16
-31.26
-30.59
-25.63
-24.83
-17.55
-21.63
-15.39
-10.97
-10.44
-9.75
-10.01
-10.78
-10.94
-14.72
-14.95
-17.55
-20.88
-21.35
-23.27
-24.17
-27.41
-31.73
-30.96
-28.05
-29.11
-25.96
-25.28
-23.91
-20.04
-19.38
-16.00
-17.86
-9.75
-12.18
-12.60
-10.32
-14.75
-13.67
-14.28
-16.41
-20.57
-18.24
-19.89
-28.86
-27.50
-25.50
-28.12
-28.20
-30.71
-25.28
-23.52
-24.60
-22.52
-18.54
-17.10
-13.64
-14.17
-10.25
-12.11
-7.51
-9.70
-13.50
-14.93
-16.85
-23.64
-18.28
-23.87
-23.34
-27.91
-28.96
-31.90
-29.22
-27.66
-30.13
-23.64
-24.61
-20.99
-19.01
-16.74
-11.21
-11.43
-14.19
-10.83
-13.87
-5.01
-13.78
-17.24
-14.38
-20.40
-18.02
-21.27
-23.84
-29.79
-31.25
-29.07
-29.69
-30.43
-26.60
-27.28
-22.81
-22.33
-17.25
-19.34
-15.68
-11.77
-10.16
-13.42
-12.15
-10.62
-9.90
-11.92
-13.91
-22.02
-20.45
-24.62
-27.85
-27.11
-31.36
-26.50
-30.40
-30.42
-28.56
-29.04
-22.88
-23.29
-18.85
-15.36
-13.72
-15.46
-10.55
-13.29
-6.85
-11.56
-12.67
-13.12
-15.11
-17.53
-20.91
-24.88
-25.84
-27.12
-30.91
-31.17
-32.77
-28.92
-24.28
-26.80
-23.06
-18.30
-17.11
-15.36
-11.75
-11.61
-12.00
-6.60
-11.77
-14.45
-14.85
-16.33
-15.77
-20.64
-19.34
-19.44
-21.27
-27.90
-26.41
-29.13
-31.02
-30.18
-28.55
-24.95
-22.98
-22.18
-17.14
-18.40
-13.41
-9.63
-15.27
-10.63
-13.40
-12.46
-15.24
-13.48
-20.48
-18.74
-23.22
-23.18
-20.90
-30.40
-30.58
-33.47
-31.93
-29.69
-27.86
-26.09
-27.70
-19.46
-16.51
-15.73
-9.66
-14.66
-9.01
-11.93
-9.74
-9.62
-7.92
-17.15
-18.04
-21.35
-20.55
-21.14
-27.20
-27.17
-28.45
-28.83
-24.62
-27.87
-25.19
-29.31
-23.80
-23.31
-18.25
-10.68
-12.03
-9.43
-12.01
-8.63
-13.46
-3.76
-14.89
-15.65
-14.58
-15.46
-20.37
-20.64
-27.07
-28.42
-27.94
-30.74
-30.52
-32.30
-27.90
-25.56
-18.88
-21.93
-18.66
-14.82
-13.62
-11.73
-14.62
-9.26
-9.81
-9.21
-13.51
-14.50
-18.37
-18.55
-22.42
-22.15
-21.23
-26.10
-29.48
-31.65
-28.17
-25.48
-28.75
-24.16
-26.61
-23.92
-17.19
-13.55
-13.42
-10.58
-7.16
-7.63
-10.84
-9.88
-12.41
-15.07
-16.52
-20.17
-18.06
-23.31
-24.03
-27.33
-28.63
-31.76
-30.03
-26.13
-26.67
-25.92
-25.14
-24.35
-20.45
-16.38
-13.61
-11.35
-10.61
-8.39
-11.43
-8.62
-9.04
-16.84
-20.24
-22.70
-19.66
-24.33
-24.83
-26.11
-30.27
-30.94
-29.74
-26.66
-30.90
-25.77
-22.96
-19.29
-22.65
-12.30
-18.00
-9.34
-12.41
-9.70
-10.19
-8.08
-12.34
-14.51
-19.19
-22.38
-18.89
-21.68
-24.58
-27.13
-29.88
-32.99
-31.17
-27.60
-27.29
-24.83
-24.74
-22.05
-18.26
-18.67
-13.40
-11.61
-8.22
-7.32
-8.31
-9.32
-11.49
-15.93
-15.55
-17.20
-23.52
-23.79
-25.72
-27.82
-29.89
-28.82
-27.71
-31.86
-28.09
-29.21
-22.34
-22.65
-18.66
-19.44
-12.99
-9.68
-10.30
-11.65
-9.72
-9.49
-12.77
-14.41
-15.24
-22.94
-21.27
-22.68
-26.47
-30.32
-28.87
-33.67
-27.04
-29.43
-25.85
-25.99
-23.46
-20.38
-18.52
-16.39
-13.26
-13.47
-13.43
-12.66
-8.65
-10.33
-14.46
-11.93
-17.49
-19.69
-21.21
-21.22
-27.80
-29.14
-30.23
-28.12
-30.70
-27.76
-28.55
-23.56
-23.50
-21.99
-18.78
-14.27
-13.91
-11.19
-10.60
-8.04
-8.40
-8.29
-12.53
-15.63
-13.31
-17.56
-18.95
-22.92
-25.70
-27.18
-27.74
-30.87
-31.83
-24.37
-25.28
-28.51
-25.11
-19.64
-17.46
-15.10
-14.37
-14.85
-8.82
-12.22
-7.97
-13.19
-16.33
-12.88
-19.79
-19.80
-21.64
-27.69
-24.35
-25.75
-28.79
-30.93
-33.47
-30.00
-29.99
-25.57
-25.76
-17.64
-19.93
-15.00
-12.51
-12.87
-9.58
-10.31
-8.70
-9.76
-11.43
-15.64
-14.86
-22.71
-18.06
-20.25
-24.09
-27.72
-33.85
-30.77
-31.13
-29.13
-24.70
-25.86
-24.09
-20.42
-19.52
-13.25
-14.20
-10.69
-9.51
-11.21
-12.67
-15.88
-13.59
-12.47
-16.38
-21.85
-13.94
-16.80
-21.00
-21.46
-25.80
-24.69
-23.31
-22.50
-24.68
-20.94
-18.11
-16.29
-13.21
-10.17
-13.20
-7.13
-6.30
-5.19
-9.36
-7.50
-9.92
-10.04
-12.42
-10.01
-15.53
-16.48
-21.71
-25.65
-26.15
-26.19
-22.73
-25.68
-27.28
-19.41
-20.46
-12.28
-16.09
-8.52
-8.16
-10.70
-5.05
-7.94
-1.76
-6.73
-6.58
-12.70
-11.34
-14.11
-16.58
-18.86
-18.76
-23.74
-25.54
-25.24
-28.51
-26.32
-19.43
-24.26
-19.58
-18.62
-13.39
-9.71
-6.80
-7.50
-7.18
-4.83
-5.86
-6.35
-6.17
-7.42
-13.26
-14.25
-14.49
-16.75
-19.36
-21.83
-23.97
-24.08
-24.23
-23.87
-21.54
-18.30
-16.51
-17.71
-15.19
-7.92
-9.25
-5.45
-1.84
-5.02
-4.46
-5.29
-8.24
-9.81
-10.36
-18.45
-15.95
-19.56
-18.93
-24.85
-23.70
-22.61
-25.45
-26.51
-26.58
-20.79
-18.53
-15.81
-15.43
-12.31
-11.69
-6.62
-8.32
-4.08
-4.12
-5.79
-7.14
-10.56
-16.22
-15.28
-16.16
-19.49
-20.39
-21.48
-23.79
-28.26
-27.38
-20.85
-20.16
-20.70
-18.88
-13.73
-11.73
-10.03
-10.96
-7.82
-3.88
-5.03
-7.12
-6.04
-9.57
-7.94
-8.26
-17.05
-15.84
-18.05
-20.27
-26.64
-25.22
-24.46
-26.13
-24.30
-22.22
-18.64
-21.78
-15.22
-11.99
-13.03
-7.78
-5.66
-5.12
-3.35
-7.12
-5.74
-8.12
-10.69
-12.99
-15.71
-12.51
-20.57
-19.84
-26.55
-24.72
-25.32
-29.23
-25.43
-22.06
-22.52
-20.69
-15.17
-11.33
-11.17
-7.38
-4.72
-5.90
-3.41
-5.81
-5.95
-9.43
-9.78
-12.81
-15.48
-15.28
-18.47
-19.88
-20.41
-20.92
-25.96
-24.04
-23.91
-22.64
-22.58
-18.88
-15.64
-11.68
-13.29
-3.87
-9.62
-8.89
--2.19
-6.85
-5.09
-8.01
-11.38
-15.17
-15.61
-20.20
-17.91
-22.76
-22.21
-23.60
-25.95
-29.61
-25.94
-23.42
-21.05
-17.66
-19.81
-14.47
-13.33
-5.86
-8.19
-4.43
-5.12
-4.87
-1.33
-7.65
-8.35
-12.22
-14.94
-17.88
-20.16
-20.09
-20.39
-25.20
-20.66
-26.44
-23.62
-21.29
-21.89
-15.71
-14.02
-11.93
-9.50
-5.30
-7.42
-6.40
-2.94
-5.85
-6.36
-7.20
-8.84
-12.36
-13.77
-14.89
-15.68
-20.50
-21.04
-24.34
-20.33
-29.22
-25.68
-23.76
-20.18
-18.49
-18.29
-12.88
-12.41
-8.43
-8.64
-4.34
-3.86
-4.49
-5.05
-9.40
-9.63
-11.94
-14.71
-15.62
-18.11
-17.48
-23.53
-25.35
-26.90
-24.55
-26.65
-26.19
-22.89
-21.46
-19.55
-13.31
-9.31
-8.14
-4.79
-7.59
-6.43
-4.12
-5.58
-6.79
-12.23
-9.72
-15.39
-14.09
-17.17
-20.46
-24.86
-22.62
-24.51
-24.77
-23.98
-22.92
-22.52
-21.17
-20.52
-13.18
-13.95
-5.61
-4.93
-3.69
-6.53
-2.89
-5.94
-7.75
-8.80
-11.18
-15.96
-15.60
-17.77
-19.63
-23.60
-25.23
-26.99
-27.41
-20.71
-24.04
-21.68
-20.79
-15.01
-15.28
-11.32
-12.60
-7.84
-2.82
-4.51
-5.60
-4.84
-12.46
-10.15
-13.83
-16.79
-12.93
-16.99
-19.91
-25.45
-21.55
-22.85
-26.47
-24.15
-24.97
-21.80
-19.12
-12.25
-8.54
-6.40
-10.16
-7.19
-8.38
-2.75
-11.85
-7.24
-8.12
-10.75
-12.57
-15.94
-14.05
-15.90
-18.44
-23.10
-26.87
-24.52
-23.19
-25.23
-23.39
-25.09
-19.70
-16.06
-17.60
-10.42
-8.82
-5.34
-1.73
-1.94
-4.63
-7.69
-7.62
-7.92
-11.66
-16.37
-15.57
-17.86
-17.82
-24.01
-22.66
-27.21
-25.79
-24.39
-19.15
-20.44
-19.85
-16.57
-16.40
-11.67
-9.64
-5.51
-9.08
-5.90
-6.40
-7.96
-8.05
-11.29
-17.07
-15.98
-16.98
-20.75
-17.77
-24.12
-25.43
-23.57
-24.49
-25.00
-26.83
-21.46
-19.54
-17.31
-9.52
-11.99
-9.62
-9.26
-6.28
-3.37
-2.24
-6.64
-11.54
-8.86
-11.49
-19.04
-14.74
-17.62
-18.32
-16.42
-25.10
-25.56
-23.73
-23.34
-24.24
-19.45
-19.06
-15.11
-13.63
-14.25
-7.33
-6.93
-2.23
-4.32
-3.47
-2.33
-4.79
-7.61
-13.72
-17.25
-19.51
-20.01
-19.81
-24.67
-25.39
-27.49
-26.10
-22.83
-24.34
-22.50
-22.52
-16.55
-13.52
-10.92
-10.46
-7.68
-6.34
-2.10
-4.39
-8.42
-6.25
-11.98
-11.47
-16.37
-17.55
-17.45
-18.42
-21.84
-26.41
-28.16
-21.39
-25.30
-25.75
-17.59
-20.29
-16.33
-10.92
-11.42
-7.76
-4.89
-3.64
-6.44
-6.67
-5.37
-6.87
-9.88
-13.12
-14.14
-16.60
-16.68
-17.02
-18.51
-22.35
-24.34
-25.17
-25.60
-22.93
-24.37
-21.51
-15.91
-10.74
-13.13
-10.61
-8.95
-8.99
-7.20
-3.36
-5.42
-9.03
-7.18
-14.24
-12.54
-13.49
-17.81
-22.84
-19.95
-22.69
-23.90
-26.41
-22.94
-23.89
-23.00
-18.45
-17.89
-12.32
-12.77
-8.42
-7.39
-7.68
-4.20
-7.12
-4.21
-7.56
-8.43
-11.98
-15.35
-14.28
-16.78
-20.23
-24.02
-26.46
-22.69
-24.01
-27.18
-24.99
-19.67
-19.36
-18.54
-15.00
-9.43
-7.09
-8.14
-4.79
-7.62
-6.49
-5.00
-5.95
-10.05
-12.36
-15.42
-15.68
-16.49
-18.01
-21.80
-24.60
-27.50
-25.58
-28.52
-23.59
-24.08
-16.77
-19.62
-14.87
-11.78
-6.70
-4.06
-5.70
-7.24
-2.75
-3.74
-8.84
-8.40
-12.37
-17.29
-12.98
-16.90
-18.37
-22.52
-26.86
-21.67
-26.20
-24.80
-24.70
-21.86
-21.84
-16.14
-10.39
-6.97
-7.29
-9.89
-3.66
-4.41
-7.62
-1.52
-14.36
-10.24
-10.59
-17.59
-13.91
-13.57
-21.82
-22.51
-25.60
-26.93
-23.12
-24.76
-25.05
-23.74
-18.02
-13.86
-16.01
-13.60
-9.52
-3.59
-5.76
-5.66
-4.43
-5.96
-5.34
-8.16
-12.56
-13.86
-17.47
-14.76
-16.80
-25.47
-21.66
-24.38
-22.88
-24.26
-23.59
-22.31
-19.14
-13.88
-14.18
-14.25
-9.68
-7.04
-1.61
-2.04
-6.92
-8.99
-8.15
-14.84
-12.64
-12.16
-16.74
-16.91
-17.55
-23.49
-26.84
-26.05
-25.07
-22.82
-24.37
-20.36
-18.26
-14.18
-10.41
-11.78
-8.28
-3.62
-6.00
-3.84
--2.06
-5.61
-3.06
-11.43
-9.08
-14.86
-11.77
-17.69
-19.57
-17.71
-28.85
-23.90
-23.35
-21.56
-27.34
-21.71
-21.11
-16.39
-15.71
-10.83
-9.73
-8.30
-5.50
-5.50
-5.69
-8.27
-4.35
-9.74
-13.04
-12.67
-3.34
-8.85
-7.01
-11.10
-15.17
-19.18
-17.76
-13.86
-12.73
-10.94
-8.75
-8.86
-5.95
--0.33
--3.99
--5.53
--9.64
--3.99
--0.52
--4.12
--1.08
--2.59
-0.11
-2.29
-5.31
-12.96
-11.87
-8.97
-10.90
-13.17
-14.58
-16.62
-17.05
-13.70
-6.35
-9.94
-6.33
--0.35
--4.10
--2.43
--7.51
--5.11
--3.74
--1.48
--1.44
--1.56
-1.57
-8.20
-8.78
-8.21
-11.80
-9.31
-12.61
-14.33
-13.48
-11.99
-16.48
-10.41
-8.05
-6.33
-0.46
-2.66
--2.23
--6.03
--4.59
--7.23
--6.70
--3.87
--4.62
-0.54
-1.09
-4.39
-4.11
-6.35
-10.84
-10.99
-12.03
-16.72
-19.07
-11.33
-15.40
-7.53
-7.86
-7.40
-3.99
--0.90
--2.63
--4.54
--2.21
--4.16
--5.53
--4.31
--3.71
--0.28
-4.10
-1.39
-3.35
-8.53
-6.67
-11.62
-12.64
-14.12
-16.83
-15.06
-16.30
-14.29
-10.21
-8.37
-4.29
-2.75
-4.24
--2.03
--4.22
--2.73
--1.87
--7.08
--1.40
--1.62
-2.43
-5.64
-5.20
-10.43
-7.73
-13.42
-11.47
-14.16
-12.86
-15.56
-12.61
-10.26
-7.97
-6.26
-4.85
-5.28
-0.05
--1.17
--7.12
--3.02
--5.11
--5.31
-0.56
--0.30
-1.95
-0.54
-4.92
-7.94
-9.68
-14.60
-15.36
-14.13
-13.45
-13.41
-13.91
-10.03
-9.38
-3.55
-6.28
--0.66
--1.49
--2.46
--5.29
--4.74
--7.24
--1.46
--1.72
-1.78
-1.18
-3.48
-3.78
-11.03
-8.60
-12.48
-14.68
-10.38
-12.52
-11.86
-15.70
-12.93
-7.75
-8.06
-7.30
--0.98
--1.91
--3.60
--2.41
--6.63
--8.07
--4.99
--4.17
--0.35
-1.39
-4.62
-4.97
-5.38
-9.07
-12.02
-13.49
-14.00
-15.65
-12.98
-11.22
-12.31
-10.50
-7.27
-2.59
--1.52
-1.35
--4.65
--2.79
--5.79
--4.34
--0.79
--3.53
--1.11
--2.01
-6.42
-7.28
-7.13
-5.10
-15.04
-15.12
-13.50
-14.36
-14.86
-12.45
-11.70
-6.93
-3.64
-3.42
-0.05
--2.70
--6.21
--5.68
--4.05
--8.07
--5.33
--1.62
--1.44
-0.42
-5.77
-2.85
-9.03
-13.19
-14.77
-15.31
-14.96
-13.99
-16.23
-15.07
-10.29
-9.60
-5.43
-6.16
--0.93
--0.40
--2.44
--4.88
--4.11
--4.83
--1.14
--3.90
-3.99
--0.15
-4.73
-8.99
-3.46
-8.42
-11.81
-16.19
-16.56
-12.80
-14.15
-10.56
-11.97
-9.65
-5.12
-4.47
-2.28
-0.68
--4.56
--4.03
--2.25
--6.09
--3.95
--0.04
--0.60
-2.26
-5.43
-5.14
-8.39
-12.18
-14.87
-14.55
-15.52
-15.76
-10.39
-14.50
-9.75
-11.98
-2.76
-2.92
-1.40
-0.74
--8.58
--3.78
--3.70
--5.95
--3.49
--1.06
-1.63
-4.60
-2.32
-2.87
-9.19
-9.85
-13.88
-10.83
-16.60
-15.99
-11.91
-15.06
-9.61
-10.21
-6.44
-5.13
--1.17
--4.19
--2.35
--3.75
--2.23
--5.34
--3.34
--3.05
-2.39
-0.15
-8.20
-5.39
-13.43
-12.34
-13.94
-14.80
-18.15
-11.42
-14.05
-15.33
-13.35
-10.06
-7.19
-6.98
--1.39
--0.11
--2.72
--2.78
--3.26
--6.47
--2.41
-1.03
-1.05
-0.77
-3.44
-6.37
-10.85
-11.20
-14.84
-11.84
-15.24
-13.07
-13.81
-13.26
-12.11
-9.04
-4.62
-1.07
-2.42
--1.92
--4.79
--3.71
--1.49
--6.10
--5.20
--1.40
-0.25
-1.95
-2.74
-3.00
-10.24
-10.36
-7.23
-16.03
-16.32
-15.13
-13.08
-17.09
-11.07
-6.32
-6.18
-4.65
--0.15
-1.41
--0.38
--2.41
--3.62
--5.93
--2.22
--2.62
--2.08
-2.58
-4.20
-1.67
-6.13
-11.05
-9.03
-14.54
-16.87
-13.50
-14.21
-14.22
-11.63
-6.26
-7.63
-1.42
--0.54
-1.08
--0.49
--8.92
--0.44
--3.18
--3.60
-0.52
-1.44
-1.03
-3.58
-2.55
-3.86
-11.98
-11.47
-15.97
-16.52
-14.24
-17.89
-15.14
-10.87
-8.22
-6.26
-3.55
-1.37
--2.37
--5.43
--4.29
--4.11
--5.12
--6.63
--5.98
-1.46
-3.51
-6.06
-11.78
-9.77
-4.79
-12.20
-12.56
-10.89
-16.37
-15.39
-14.53
-9.51
-6.57
-6.56
-3.44
--1.94
-0.13
--1.46
--2.99
--4.88
--7.31
--5.08
--0.11
-0.69
-4.78
-5.58
-0.38
-6.82
-11.81
-10.79
-15.03
-13.76
-15.87
-16.32
-14.55
-9.22
-8.89
-6.29
-1.95
-4.05
--0.83
--1.03
--5.36
--2.15
--7.28
-1.62
--4.07
--2.28
-2.58
-4.69
-4.95
-5.99
-8.46
-14.06
-12.30
-13.02
-13.55
-13.46
-13.13
-14.70
-8.05
-5.79
-2.86
--4.92
--2.33
--3.60
--5.49
--4.99
--10.11
--3.64
--1.26
-3.12
--1.30
-7.96
-5.46
-9.55
-10.51
-12.20
-10.38
-15.16
-15.13
-16.23
-13.88
-13.47
-7.36
-4.95
-2.74
-4.86
-1.16
--1.31
--7.53
--8.24
--10.01
--4.98
--1.07
--3.06
-7.95
-4.68
-2.47
-8.58
-5.40
-10.72
-12.52
-12.25
-16.85
-14.46
-13.43
-12.31
-8.53
-6.32
-3.68
--0.31
--1.35
--1.41
--8.31
--5.19
--4.39
--2.52
--0.44
-3.59
--0.02
-6.00
-3.05
-10.57
-13.14
-8.27
-15.29
-17.24
-12.07
-13.47
-11.34
-11.37
-12.44
-7.14
-1.54
--0.68
--0.29
--0.49
--3.71
--5.23
--3.28
--5.98
-1.92
--0.67
--0.88
-7.33
-5.27
-8.34
-11.24
-14.35
-12.76
-15.38
-12.66
-19.00
-18.31
-10.97
-8.50
-7.65
-0.34
-1.28
-0.24
--2.52
--4.16
--4.49
--7.27
--2.17
--0.86
--3.88
-4.20
-2.07
-5.67
-6.86
-13.95
-13.53
-15.27
-15.01
-13.45
-12.99
-11.48
-10.22
-8.61
-3.65
-6.68
--1.97
--1.92
--1.80
--6.20
--1.18
--3.98
--3.71
--0.65
-0.39
-3.50
-5.81
-5.39
-10.02
-9.34
-15.05
-15.98
-12.25
-16.30
-10.06
-14.12
-11.07
-4.61
-6.04
-0.96
--1.55
--1.91
--9.85
--10.15
--6.04
--4.81
--3.24
--3.59
--1.89
-6.40
-1.50
-6.40
-9.65
-11.10
-10.89
-15.40
-13.46
-12.94
-15.24
-10.56
-11.89
-9.62
-6.14
-2.51
-3.43
-0.95
--2.60
--5.32
--3.93
--7.93
--1.81
--2.24
-2.82
-2.99
-3.81
-3.94
-6.65
-12.95
-11.24
-14.50
-13.66
-12.76
-13.82
-15.49
-9.72
-8.37
-3.16
-1.59
-2.17
-0.99
--0.90
--6.86
--0.06
--6.24
--0.12
--3.91
-0.73
-3.97
-1.39
-0.89
-2.40
-2.95
-5.50
-7.78
-11.35
-8.35
-7.70
-6.95
-5.17
-1.71
--0.47
--1.90
--1.62
--5.19
--11.54
--11.53
--13.50
--8.06
--9.14
--8.46
--2.19
--4.79
-2.89
-0.15
-5.89
-5.65
-9.96
-8.58
-8.28
-14.42
-12.72
-5.56
-7.16
-1.73
-1.19
--0.98
--5.93
--9.10
--6.70
--6.13
--7.98
--10.36
--6.96
--6.47
--2.11
--0.26
--0.91
-2.84
--0.62
-8.48
-9.24
-7.42
-8.55
-7.48
-10.35
-7.71
-6.61
-5.57
-0.29
-1.42
--4.90
--2.79
--11.50
--10.34
--13.62
--9.31
--12.63
--7.56
--10.08
--4.90
--5.51
--0.34
-2.34
-5.42
-6.14
-9.66
-6.13
-11.90
-5.83
-6.97
-5.80
-4.55
-1.56
--3.13
--1.89
--6.79
--9.23
--14.05
--9.41
--12.06
--4.39
--4.54
--9.72
--3.59
-0.21
--2.47
--2.16
-5.71
-8.39
-6.86
-9.76
-14.16
-9.63
-4.55
-7.61
-8.16
-0.79
--1.15
--5.98
--5.10
--10.59
--10.47
--7.83
--10.28
--8.01
--7.60
--2.40
--4.16
-1.01
--4.00
-0.78
-5.82
-6.52
-8.87
-10.46
-8.24
-7.32
-11.58
-6.62
--1.48
-1.96
-0.21
--2.04
--7.73
--8.63
--6.40
--11.42
--7.90
--4.36
--7.18
--4.94
--3.75
--1.86
-0.06
-0.48
-7.92
-7.36
-12.57
-8.64
-12.50
-10.50
-7.71
-3.65
-4.57
-1.55
-2.57
--3.11
--7.49
--7.38
--9.53
--6.99
--7.13
--12.28
--4.02
--5.55
-2.10
--0.91
-3.99
-1.13
-6.14
-6.87
-8.38
-13.52
-8.11
-12.28
-10.70
-7.31
-3.70
-1.93
--1.70
--6.90
--7.29
--7.11
--6.43
--9.56
--10.96
--7.61
--4.69
--5.86
--0.56
--0.15
-1.85
-2.73
-6.55
-6.50
-10.36
-9.63
-10.43
-8.10
-9.80
-10.16
-8.28
-1.99
-0.44
--1.29
--3.23
--11.72
--11.73
--11.62
--11.28
--13.49
--6.88
--7.27
--3.64
-0.13
-0.82
-2.57
-4.06
-5.20
-8.30
-5.86
-10.25
-5.58
-8.87
-5.17
-8.61
-0.25
--0.59
--6.12
--10.37
--9.35
--12.10
--9.82
--10.04
--8.47
--7.01
--5.22
--0.70
--3.16
--2.02
-3.32
-5.67
-8.42
-8.39
-10.61
-10.14
-10.01
-7.32
-4.21
-1.52
-1.16
--1.68
--2.60
--7.86
--10.91
--6.59
--10.15
--11.82
--7.03
--8.95
--4.08
--1.39
--1.61
--1.10
-2.38
-3.66
-9.43
-9.66
-9.65
-9.75
-13.55
-7.49
-5.57
-6.38
--4.13
--2.20
--3.54
--5.73
--7.22
--10.08
--8.76
--10.40
--7.11
--8.82
--4.63
--1.47
-3.01
--2.71
-6.19
-5.67
-5.15
-6.95
-8.58
-9.03
-10.00
-7.59
-7.46
-4.97
-1.74
--2.03
--3.62
--6.81
--7.54
--7.87
--9.68
--6.39
--11.00
--8.02
--6.22
--2.64
-2.15
-3.14
-2.25
-6.05
-11.44
-7.85
-8.81
-8.39
-12.86
-9.83
-11.29
-2.97
-0.87
--0.19
--6.42
--7.19
--5.00
--9.01
--7.69
--13.32
--8.36
--9.40
--3.70
--2.95
--1.98
-1.12
-1.84
-3.48
-10.36
-5.73
-8.79
-10.47
-11.98
-9.01
-7.71
-2.93
-2.60
-1.20
--5.18
--7.41
--6.22
--10.66
--10.96
--10.74
--7.22
--8.51
--6.65
--1.84
-3.25
-0.45
-3.31
-6.85
-6.27
-8.72
-12.50
-11.68
-10.27
-10.04
-2.97
-1.02
-4.58
-0.36
--3.95
--6.65
--10.72
--6.34
--13.05
--11.07
--8.05
--7.35
--5.08
--6.55
-1.66
--1.95
-2.62
-5.20
-7.16
-8.04
-9.02
-8.65
-10.62
-8.54
-8.36
-5.09
-3.37
--0.05
--5.25
--7.09
--5.96
--8.41
--11.43
--11.02
--9.80
--9.90
--3.50
--3.75
-4.85
-0.93
-2.68
-2.09
-5.36
-11.29
-4.94
-7.38
-7.58
-3.00
-2.07
-5.55
-4.56
--2.95
--6.48
--5.76
--8.70
--6.88
--10.28
--7.14
--6.28
--8.18
--3.99
--2.22
-0.93
-0.59
-1.51
-2.99
-7.40
-7.73
-7.52
-8.22
-7.98
-4.93
-3.97
-5.28
--1.10
-0.29
--4.35
--5.11
--9.33
--8.73
--8.96
--11.96
--11.05
--8.02
--4.60
--4.13
--1.42
-0.60
-4.83
-6.21
-9.71
-8.87
-11.21
-8.74
-12.90
-6.63
-4.55
-6.12
-3.28
--1.26
--2.95
--5.12
--9.36
--10.09
--11.65
--8.42
--14.60
--6.46
--5.24
--3.74
--2.34
-2.48
-2.76
-5.29
-4.63
-8.95
-12.27
-8.96
-8.68
-4.02
-8.24
-2.55
-1.54
--2.78
--1.59
--3.12
--9.25
--7.17
--12.74
--11.12
--10.99
--9.63
--6.66
--5.03
-1.15
--1.73
-2.15
-6.90
-6.93
-10.59
-14.45
-13.65
-5.40
-8.41
-7.64
-3.83
-2.63
-1.04
--3.00
--7.67
--8.67
--10.46
--10.43
--8.85
--8.14
--6.72
--6.34
--3.07
--1.91
--0.72
-2.38
-4.72
-7.22
-10.57
-6.51
-10.15
-6.74
-7.32
-2.22
-6.00
--1.06
--3.22
--5.27
--3.55
--11.36
--8.91
--6.88
--8.97
--7.54
--7.37
--3.58
--0.94
--1.93
-0.61
-3.00
-8.52
-9.08
-9.58
-8.32
-6.65
-8.72
-7.71
-6.07
-5.17
-4.80
--2.16
--5.47
--8.40
--10.27
--10.73
--7.18
--12.60
--7.83
--9.92
--4.84
--3.27
-1.63
-4.52
-5.31
-5.27
-8.04
-10.65
-12.03
-10.05
-11.39
-8.34
-6.76
-6.06
-4.52
-2.72
--4.15
--6.17
--7.93
--10.06
--9.97
--11.85
--7.24
--6.76
--7.31
--3.00
-1.78
-0.90
-4.77
-7.43
-2.10
-7.75
-7.73
-8.31
-9.26
-8.29
-7.47
-1.51
--0.10
--1.53
--5.74
--4.61
--7.83
--10.72
--10.02
--10.37
--9.04
--7.31
--6.83
-0.27
-1.47
--0.82
-1.57
-2.56
-8.66
-9.15
-9.21
-13.10
-11.21
-6.26
-5.61
-4.06
-3.71
--0.66
--5.66
--4.04
--8.15
--12.33
--13.47
--12.73
--11.90
--7.01
--9.05
--4.95
-0.83
-3.29
-5.06
-6.40
-7.81
-4.49
-11.11
-14.54
-6.52
-9.70
-5.90
-6.99
-3.48
--1.40
--3.24
--6.34
--8.00
--7.57
--11.47
--12.25
--6.98
--7.78
--5.73
--6.56
--1.39
-1.72
-4.76
-8.79
-10.56
-10.37
-11.23
-12.05
-6.91
-7.25
-4.42
-3.65
-4.87
--1.59
--0.33
--6.57
--6.42
--13.37
--9.21
--12.68
--8.86
--7.54
--5.12
-0.78
--0.28
-1.72
-2.10
-6.72
-7.84
-9.48
-6.97
-7.33
-8.81
-5.78
-5.64
-5.35
--1.62
--3.92
-0.15
--6.79
--8.05
--9.58
--10.34
--8.27
--8.29
--8.65
--6.27
--2.69
-1.85
-4.05
-3.82
-3.81
-11.87
-7.92
-9.10
-12.34
-10.33
-4.67
-7.62
-4.69
-1.57
--1.96
--6.81
--5.01
--10.24
--8.60
--8.10
--11.19
--11.19
--7.14
--9.10
--3.02
--0.28