{"self":"http://probly.dev/api/sim/SFems6SahwQBKrKtbbFPYy/","id":"SFems6SahwQBKrKtbbFPYy","created_at":"2026-09-17T10:24:12.204543Z","status":{"status":"SUCCESS","status_datetime":"2026-09-17T11:50:22.558894Z","time_elapsed":null,"done_at":null},"input_type":"esty","spreadsheet_input":null,"esty_input":{"content":"_cohort = 10 * 1000  # Arbitrary\n\n# Iron-deficiency anemia prevalence, children in India (any severity)\n# Global Burden of Disease 2016, see 'Supplementary data'\np_anemia = Beta(19, 22)  # p15=0.38, p85=0.54; beta by quantiles not yet supported\n\n\n\ndef anemia_reduction():\n    \"\"\"\n    In YLDs per cohort\n    \"\"\"\n    # Of children with anemia, proportion with mild, moderate, and severe anemia\n    p_severity = {\n        \"mild\": 48 / 100,\n        \"moderate\": 48 / 100,\n        \"severe\": 4.1 / 100\n    }\n\n    # Risk ratio anemia, iron supplementation\n    risk_ratio = PERT(0.3, 0.5, 1)\n\n    p_cured = {}\n    for severity in p_severity:\n        p_cured[severity] = p_anemia * p_severity[severity] * risk_ratio\n\n    yld = {\n        \"mild\": 0.4 / 100,\n        \"moderate\": 5.2 / 100,\n        \"severe\": 15 / 100\n    }\n\n    yld_sum = 0\n    for severity in yld:\n        yld_sum += p_cured[severity] * yld[severity]\n\n    return _cohort * yld_sum\n\ndef cognitive_benefits():\n    \"\"\"\n    In (present value of) units of increase in ln(income) per cohort.\n\n    These drive most of the cost-effectiveness.\n    \"\"\"\n    # The intervention targets all children in a school, but we model\n    # cognitive benefits as accruing only to children between ages 3-12.\n    # Proportion of targeted children between ages 3-12\n    p_children = 65 / 100\n\n    # Change in IQ points from short-term supplementation for anemic individuals\n    iq_change_sd = LogNormal(0.33 td 2)\n    iq_change = iq_change_sd * 15  # Convert to IQ points: 1 SD = 15 IQ points\n\n    p_wages_per_point = 1 / 100  # Percentage increase in wages/consumption for every 1 point increase in IQ\n\n    # Percentage increase in wages/consumption from increase in IQ from supplementation\n    p_wages = iq_change * p_wages_per_point\n\n    # Speculative adjustment to assess the long-term benefit of many years of iron\n    long_term_adjustment = 10 / 100\n    p_wages = p_wages * long_term_adjustment\n\n    # Increase in annual ln(consumption) for beneficiaries\n    change_ln_cons = math.log(1 + p_wages) - math.log(1)\n\n    delay_y = 12  # Average number of years between 'entering fortification program' and beginning of long term benefits\n    duration_y = LogUniform(15 td 3)  # Duration of long term benefits of fortification (in years)\n\n    # Present Value Income Benefits\n    discount_rate = Uniform(2/100, 7/100)\n    pv_income = pv(discount_rate, delay_y + duration_y, -change_ln_cons) - pv(\n        discount_rate, delay_y, -change_ln_cons\n    )  # Unit is still changes in ln(income)\n\n    # Multiplier for Resource Sharing in Households\n    multiplier_resource_sharing = 2\n    pv_income = pv_income * multiplier_resource_sharing\n\n    # Lifetime Income Benefits for Full Cohort (including non-beneficiaries)\n    return _cohort * p_children * p_anemia * pv_income\n\n\ndef altered_malaria_risk():\n    \"\"\"\n    In deaths per cohort\n    \"\"\"\n    baseline_deaths_100k = 5.14  # Baseline deaths due to malaria per 100,000 individuals 0-19 in India\n    # Convert to per cohort\n    baseline_deaths = baseline_deaths_100k * (_cohort / (100 * 1000))\n\n    rr = PERT(1, 1.16, 1.5)  # Relative risk of malaria mortality with IFA supplementation\n\n    direct = baseline_deaths * (rr - 1)\n    indirect_per_direct = 50 / 100\n    return direct * (1 + indirect_per_direct)\n\n\ndef other_adverse_effects():\n    \"\"\"\n    In YLDs per cohort\n    \"\"\"\n\n    p_condition = {\n        \"gastro\": (8 + 1 + 33 + 2 + 8) / (23 + 12 + 128 + 2 + 8),\n        \"loose_stools\": (1 + 2 + 6 + 2 + 1 + 3) / (36 + 8 + 128 + 6 + 44 + 71),\n        \"hard_stools\": (1 + 5 + 0 + 0 + 11 + 0 + 6 + 3) / (31 + 36 + 8 + 182 + 128 + 6 + 44 + 71),\n        \"abdominal_pain\": (0 + 4 + 2 + 15 + 1 + 3 + 4) / (120 + 36 + 182 + 128 + 6 + 44 + 71),\n    }\n\n    yld = {\n        \"gastro\": 7.4 / 100,\n        \"loose_stools\": 7.4 / 100,\n        \"hard_stools\": 7.4 / 100,\n        \"abdominal_pain\": 1.1 / 100,\n    }\n\n    duration = 2 / 365\n\n    yld_sum = 0\n    for condition in yld:\n        yld_sum += p_condition[condition] * yld[condition] * duration\n\n    return _cohort * yld_sum\n\n\ndef yld_to_val(yld):\n    \"\"\"\n    YLDs to units of value. Arbitrary normalization.\n    \"\"\"\n    return 1 * yld\n\n\ndef ln_cons_to_val(ln_cons):\n    \"\"\"\n    Units of increase in ln(consumption) to units of value\n    \"\"\"\n    value_double = Uniform(0.2, 0.8)  # Rule of thumb that 1 DALY = 2.5x GDP per capita would give 0.4\n    value_1_ln = value_double / math.log(2)\n    return value_1_ln * ln_cons\n\n\ndef death_to_val(death):\n    \"\"\"\n    Deaths to units of value\n    \"\"\"\n    return 30 * death\n\n\ndef units_value():\n    \"\"\"\n    In \"units of value\" per cohort (normalized to 1 unit of value = 1 YLD).\n    \"\"\"\n\n    anemia_ylds_averted = anemia_reduction()\n    units_increase_ln_income = cognitive_benefits()\n    malaria_deaths = altered_malaria_risk()\n    side_effect_ylds = other_adverse_effects()\n\n    u_value = {\n        \"anemia\": yld_to_val(anemia_ylds_averted),\n        \"income\": ln_cons_to_val(units_increase_ln_income),\n        \"malaria\": -death_to_val(malaria_deaths),\n        \"side_effect\": -yld_to_val(side_effect_ylds),\n    }\n\n    return sum(u_value.values())\n\ndef cost_effectiveness():\n    \"\"\"\n    Units of value per $10,000\n    \"\"\"\n    # Supplementation cost per person treated\n    cost_p_p = 2\n    cost_cohort = _cohort * cost_p_p\n    val_cohort = units_value()\n    return val_cohort * (10 * 1000 / cost_cohort)\n\n\ndef ratio_givedirectly():\n    \"\"\"\n    Cost-effectiveness ratio vs GiveDirectly\n    \"\"\"\n    # GiveDirectly units of increase in ln(consumption) for each $10,000 donated\n    gd_ln_cons = 25\n    return cost_effectiveness() / ln_cons_to_val(gd_ln_cons)\n\n\ndef pv(rate, nper, pmt):\n    temp = math.pow((1 + rate), nper)\n    fact = (temp - 1) / rate\n    return -(pmt * fact) / temp\n\n\nvalue_per_10_000_usd = cost_effectiveness()\nmultiples_of_cash = ratio_givedirectly()"},"output":{"simulation_data":{"_cohort":[10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0],"p_anemia":[0.48256009004646205,0.5245588485019599,0.4802076547367724,0.3603206998371325,0.566150403138338,0.45652195665403905,0.5929903306847558,0.458450378804052,0.5220520828748977,0.5086170840814621,0.3935670240310025,0.48253466398741796,0.5034491479628268,0.3163623287687911,0.4394494770997838,0.38232653531836075,0.4284765420876841,0.49384353405561726,0.42992124600250725,0.5540668540626458,0.43890531986004877,0.5239460121457603,0.39350826731168415,0.5299147953819234,0.5772563397043522,0.6248557210582268,0.5973217215724417,0.5758655472115858,0.438539519297686,0.37757463506658306,0.4920684703450017,0.4360805719022329,0.4570613082986848,0.36876679319333655,0.5798234889491961,0.36342557584756197,0.5776806296909469,0.4043987254045702,0.5381057095086517,0.5451257586038136,0.4466714180129908,0.5338511849424874,0.4812647893656154,0.6040780991704042,0.4232648755680537,0.3861134048434002,0.5650948327960481,0.45392786319903894,0.4110902601221712,0.35859304833273326,0.2609660392454668,0.46651684884302147,0.38408825547024256,0.4792267360345234,0.47414610247895306,0.3926687280659992,0.42311027088057895,0.5451567147754965,0.38602501819731305,0.3787023064517452,0.41803793100506753,0.34574491207935504,0.5031004248618203,0.5054440232170103,0.5890561420001456,0.37835931095498593,0.5003903614662911,0.40555363866477073,0.5069409134506726,0.5599505338185313,0.5292096732331149,0.4268783631957836,0.3874394488343301,0.36251533508343003,0.29152958465186996,0.4739076850850317,0.4492215285133699,0.4799542439108065,0.4710323242918469,0.44856801999461315,0.5330232577045406,0.5822226767689327,0.41015933509162145,0.4231568555987737,0.5034512589190225,0.3489346284477578,0.589461972527214,0.42752154897142713,0.28852025590065294,0.6233942552620062,0.41801699955489796,0.5363177354686929,0.290772600553721,0.5454207638923757,0.4251175680221279,0.47889106111749,0.4377999089312332,0.4621358062802069,0.3983765679974641,0.37802748280742765,0.44689699754771667,0.4137108746462241,0.3292774631922936,0.5440042707295458,0.4470814331225472,0.4490353174584837,0.4748652902349028,0.4127988394539875,0.4485866038941131,0.3522388447345221,0.3688586758646609,0.5545119560064191,0.4874531339930645,0.620804510241265,0.3983752037156806,0.46163712365450565,0.5430276589752231,0.4479039752739758,0.3982903239540619,0.34043873434514643,0.33071879024080275,0.4252866741111773,0.38150714217122533,0.5100344425012399,0.32928704249453633,0.441932228375383,0.4405554615012057,0.4223325874892606,0.3512118632468453,0.5212167378665357,0.39793944377839136,0.5278815371146007,0.5509961138789071,0.4232754675494783,0.364805857010728,0.5487683097668111,0.5313784872760917,0.5033931311215832,0.5559315163901996,0.5720445790533157,0.5579669790988275,0.4637487981018689,0.4736332293396571,0.47925641887962667,0.3164031960206197,0.44667235132603683,0.5413855781294136,0.49704032094639594,0.5192373612086234,0.5154194261328564,0.6000427517259628,0.45533039096026484,0.42481571777318183,0.41462559425684686,0.5916429537681922,0.4441391956226074,0.5126993743070524,0.5913386477899898,0.31273740334361533,0.47247820810112956,0.44611184003212495,0.5677704799428442,0.4577713248211866,0.45479240492702366,0.330953988616899,0.29417570818272426,0.31274288073110346,0.572664008684598,0.372466081767999,0.42540012145524353,0.525473350956237,0.5821289820578047,0.4271324562677182,0.5490801988783949,0.34366331341518375,0.41356002732308106,0.4735772708005128,0.5726365907854205,0.3932644809433449,0.3681994502593322,0.5667712721266392,0.6155360517076732,0.3844316957659576,0.5354100310085126,0.39383148252213496,0.38179784012718115,0.2951382549199462,0.423867795724495,0.6106257356605675,0.42220821488446886,0.42542449976229024,0.5061077223848602,0.6620080782919163,0.39812328453708534,0.3004148694680118,0.47208519584771996,0.4330000580349352,0.5364941843701253,0.4049197489241801,0.44719907275265625,0.35645666714945456,0.5672078303652173,0.46452716454100523,0.5498111965884014,0.48150867707202677,0.5583301885150964,0.505219034187153,0.46358979889224455,0.4181266694223049,0.4178550830879111,0.4372059807755094,0.5815363422711038,0.4661203990436019,0.457978884894054,0.5324087804316673,0.5157007256004604,0.36348072350320004,0.5373440418784584,0.43606073233915515,0.3390123587214337,0.3138656196705494,0.36467391502295343,0.5102477021656906,0.34859238492330175,0.4468227293264356,0.4180506469754934,0.4993962784436242,0.47113899433372114,0.4046342519127495,0.39630647068756863,0.43098167420500305,0.4919522825096156,0.44704477650148017,0.47887826018392154,0.4527616124326765,0.45983440322554264,0.4011726867165384,0.48892511947472184,0.6216941883572067,0.5822033451213067,0.6296247688639025,0.37015789153133943,0.47398752099945207,0.4188178404207783,0.4032214771322879,0.43639797580529244,0.39745502742146094,0.40128462561746403,0.3577141245832559,0.5681289611834893,0.4184006225809489,0.5977640056073312,0.4375707562751008,0.5107425437014801,0.3545247227166972,0.4705154894130148,0.4426702155780292,0.4798811917311805,0.5636920550944227,0.7237626813586314,0.4796083916095217,0.46578729357780163,0.4377077777300482,0.4409087561190978,0.6544666825181586,0.4497194812686196,0.46210190474257884,0.42661468912290773,0.43369416659237076,0.5867934438269778,0.41528207959318614,0.5970378958753426,0.4972061732801374,0.5282547819077807,0.4810544110157592,0.4315794765424827,0.41494691057346106,0.47820846539880585,0.46888141748881973,0.6437404991124469,0.562281995035057,0.49229568932063356,0.3986990724555665,0.5132880568945688,0.615503236184231,0.40321483977637523,0.5520857928658169,0.40701660703319736,0.477949648447082,0.46669693405916307,0.48348246958435415,0.305107194030743,0.4648832591829243,0.4311086724181226,0.4958917523740282,0.46222181054137756,0.41628621511530645,0.650588361101184,0.4010340926946585,0.5733849293710622,0.6286730924207453,0.43727570667326077,0.4527342736803449,0.4099491452012899,0.44473274356733694,0.4480393169002359,0.48329527575537323,0.5060781828061457,0.5447025557725986,0.3540902320007526,0.377819105789769,0.4394371890191061,0.5130685702808705,0.465972884834852,0.3606829687204032,0.47505875256798924,0.40918713641161136,0.4227271347458983,0.39332903029947264,0.44079218974904744,0.42952965472653487,0.42430518220428237,0.4918880716030749,0.4100095121790634,0.42844525070292644,0.4181831623904581,0.5256493631311462,0.32251696785160816,0.5287309522830133,0.48870891162756125,0.5611189521701861,0.4861214652589283,0.5968484557464597,0.4214519962223458,0.4953189885722662,0.4515133909082282,0.5077755056475555,0.4141829495009745,0.41596158354401874,0.49944465270566163,0.6135411441020636,0.40639812144893395,0.4891747060747518,0.5084846490137954,0.47061658390997235,0.47763819914536365,0.44637702074223,0.4159809332028354,0.5576417870614977,0.4665806402032289,0.39280964356821063,0.42285165832519855,0.42033889583301803,0.5990020848250918,0.5051642822563228,0.47603340112247633,0.3560346940671122,0.49035434967961783,0.37960359409615996,0.37458631673407544,0.5210182832891016,0.5572643957245399,0.41642695947681563,0.4804456408243645,0.4270646478682299,0.5084161604666346,0.5787762920124351,0.49822403728926334,0.4014674785244528,0.42893564904469755,0.46775759439938197,0.4858599039639382,0.479451330939179,0.44951935956608763,0.5112704256958186,0.3934722744579829,0.3499231124785586,0.5052241954100652,0.4324289145333609,0.6219969563917944,0.4111126770261856,0.3421712864494545,0.4918938210628404,0.5537790505676115,0.5146036117222965,0.27606826942848756,0.37728639586717905,0.6023265001248449,0.605749502047249,0.5759271094859229,0.5342408753038869,0.6326999420838969,0.5698640413131166,0.4759433674576895,0.5570554814526052,0.6017002619099133,0.4434320668469617,0.4743179178292897,0.5234545852083935,0.42283485337326193,0.5193889855025798,0.39235694323525533,0.5464815102982304,0.5375563616695825,0.2538675266008879,0.4537496788666762,0.41023090651228955,0.38322345590691365,0.5319950551534617,0.3387651178925235,0.41105980762370165,0.489553118213897,0.3762656783840642,0.37762002011976453,0.5825900004588168,0.4119448506172332,0.5778002546242511,0.4066130358123442,0.3665212215352449,0.38313258830173624,0.39248592757460243,0.5144582160290555,0.5236029319312445,0.42801044549694867,0.3875968809113491,0.5099487492667368,0.5493677105464094,0.4660894122584821,0.44900255877502926,0.4439065627773712,0.5188859908677091,0.45624207040590137,0.5010818935460202,0.38903563499594157,0.40335784652738305,0.6606999527967983,0.3468376921823792,0.3807671000896791,0.5194785698682496,0.3606033762475004,0.4250193298793602,0.4851795795163426,0.4398885374743001,0.38041406377351195,0.43226259681182677,0.4783156939704319,0.45011700558158424,0.5531916960998098,0.40346751461667124,0.5225291041985497,0.546426165832009,0.46557851785286836,0.5785166388314075,0.4315021893433644,0.5435630603823696,0.48108610999876433,0.4344427842230935,0.3904742461185754,0.44394893886990927,0.485972047264016,0.4862469163717896,0.37030880521939863,0.467428988542453,0.40645126534026677,0.3453519135900471,0.3650735930540469,0.429952286715325,0.4029003665823871,0.5524131997872044,0.3211355022750612,0.5238395268752737,0.2242409911619966,0.44503625000648195,0.27626216679751214,0.2790333122616359,0.3139875563665598,0.5835618294945893,0.5482123419517244,0.483510550193776,0.48837392145331926,0.44524954889133284,0.4608203480785235,0.41257780692943524,0.5009717292248695,0.4002186004343377,0.4781698161262938,0.3495307462123918,0.4881833218762927,0.5065377648062894,0.5737089202078991,0.4639855630584311,0.33182338707408215,0.3002345428906541,0.49441348891091064,0.5029262437907495,0.4318832087062713,0.4978957234864053,0.5295862548797693,0.4098373486432439,0.35387267439474973,0.4774595149417142,0.4397129742541657,0.3414398571157411,0.44764737791030274,0.3576964538667952,0.4055361950586009,0.5073192811980627,0.5226536627116719,0.49708259646332864,0.34941016100109706,0.31722770697102765,0.45333086974578474,0.4637329461243195,0.4701393529072371,0.4457313430507055,0.6362857792238129,0.5204855256669428,0.4457824927144525,0.5453340981563347,0.4175461649023972,0.4750564256619689,0.40809710598544197,0.3950927028717347,0.42274516726168876,0.43191503223406463,0.5940657573211151,0.5053916293966254,0.43124257762510626,0.5096764460197991,0.35957545950594266,0.4303177755749061,0.4333933323684663,0.4871992271880775,0.43154790802557547,0.4727169235532653,0.49811616516581286,0.5581909815306488,0.4995590956350772,0.3620122160997913,0.4447720490298662,0.3932600600250328,0.35541657551822203,0.4960129758502474,0.46510108657208316,0.44870100550319825,0.3257018545265636,0.4828513814182811,0.5283340694930005,0.5098859808735926,0.49455199641567726,0.4639903524376933,0.3627864684962766,0.44373766336730996,0.34549436625563934,0.407511891019854,0.3335218045216128,0.35247665039854903,0.5056531379463816,0.5548602913627054,0.4563651036579046,0.5151457745947202,0.5239609445049559,0.4990486740953812,0.3808754805270353,0.4884301992617267,0.4775921946471348,0.5416394629857278,0.3638666430081164,0.4875334522765504,0.4666230771950484,0.5166398757344116,0.4243122254262886,0.5112547645125213,0.5090894701809017,0.3423016429757351,0.5352265434313648,0.4212829780460422,0.4523151916607361,0.42794945060929945,0.6106215119380253,0.43655032455234316,0.44284215107012975,0.5370159786613323,0.3334256144052723,0.5026131543412622,0.4229150374495694,0.5418214677421785,0.5751130369190193,0.5665040259948467,0.4440658289985778,0.4623061267778594,0.45935299432260335,0.3465234281901587,0.5010233563562821,0.3688546381224496,0.351355061707332,0.5384094109344233,0.612746987495453,0.37784239919107543,0.36332181751058823,0.5153158381800989,0.2959977256995403,0.6508366767393949,0.37521221570472535,0.4958702034759617,0.6400766942792946,0.4499600047122433,0.44372427413131277,0.4753649176293684,0.4942382411311744,0.4647826666461621,0.4516532844642793,0.5231863336009335,0.6114130844254936,0.5073210117586253,0.5419583934920549,0.4956909509112111,0.3738216957722802,0.4318009391004175,0.5355983433438702,0.3473204802847998,0.46695126113829244,0.3561088031039403,0.4453239361247856,0.5337839645510132,0.4916810289026975,0.42917555391859663,0.43124616197516946,0.4341050104239295,0.3420687719862525,0.4870828492988682,0.5361273005663523,0.43508864759523896,0.38149722975252426,0.5037685858321478,0.35075131470749077,0.38138985791523705,0.4791897325400387,0.45770008263545436,0.5244041755209696,0.48274025904256757,0.43715006619530067,0.4687146058311429,0.3823163649417478,0.47878977719332944,0.29238423473579894,0.41720108145848395,0.46235355112943144,0.5672764646190532,0.4974735636191195,0.5926348902217256,0.42348917159320054,0.3674805592013863,0.4316914506885627,0.3579198490979438,0.390549354223405,0.3939568717765159,0.4657521563089753,0.5189590444439279,0.40322625140993806,0.3311093575856169,0.47023224289500803,0.438343887531033,0.3780176369578673,0.4954750580554975,0.3865863247833824,0.4056372080089582,0.42901354643799444,0.5385118106510689,0.4006558187413471,0.4377270418026521,0.4114680638237224,0.500001653839922,0.3986638134709731,0.4351912691624477,0.35880768722243306,0.3133001475366946,0.49808718256136697,0.49451234253449755,0.5041050987555661,0.44325834488613286,0.5615232622727555,0.42346792594971305,0.45828068083760465,0.517059708684569,0.49141574786403575,0.5149827026779751,0.4878735993808926,0.42728895701189024,0.5205718982310645,0.38996555250877557,0.34018457001362384,0.5459688490843944,0.4457741709710579,0.37254204685500497,0.41900903824978014,0.3121461649202162,0.4148033521673543,0.3715894883541827,0.36309214182855915,0.35655006743117745,0.4728614777967793,0.30620748932728636,0.3986433350091822,0.3832897309740936,0.45437437856159346,0.41198424418844354,0.49650803511454583,0.45197357784078773,0.5147435104042839,0.438405225678819,0.47362579722897596,0.4703151212980522,0.6442881998326265,0.5547878246800648,0.5024015379240966,0.4318307099139799,0.40885042917127856,0.528145930179712,0.5526074745264141,0.4231838798609465,0.49232253048309726,0.3744990520237635,0.44607862916592245,0.5601123015652932,0.5080712502272581,0.46129242635608964,0.6086468833195319,0.45384696178615364,0.40004412993699096,0.45817766950513444,0.3238938842960506,0.4363120157875087,0.39675389754479023,0.5023233854302738,0.4436152037727886,0.505547268814747,0.4342191246173265,0.39946778431643054,0.5150507717422256,0.5369960134177746,0.4965218377691052,0.45213435476251185,0.508190332611061,0.5052167898961699,0.49063884090666005,0.33899736623464893,0.3428150822179178,0.384539017856225,0.43462397594347685,0.316199932765046,0.4858761439577546,0.5480745820831404,0.3875643813414733,0.3737156533243476,0.5528939795478266,0.46093011144219076,0.45025690310469896,0.4480349587970095,0.4459168407040438,0.5227593941793266,0.34227154617202693,0.3865350394899102,0.5136439524238101,0.575447491647049,0.48638948157478273,0.45021678699611245,0.5217992898682576,0.4444173616686564,0.49233849155437864,0.4230719308379439,0.5359975018540868,0.5200802537752671,0.6475360789101289,0.42838828193422784,0.29997203294395197,0.49128653776634984,0.49424138266846546,0.3113850533704624,0.35350279122945727,0.513592382256635,0.44362540332447414,0.4002121612953364,0.2698210085440244,0.49937054987207047,0.3334673019557767,0.4607532519461626,0.4711965224237418,0.5472112152298851,0.5429494813720916,0.4381931605935677,0.4771373225423662,0.280511578203916,0.469799865533316,0.4441512815935832,0.5986481732734823,0.4342138648192848,0.4894751753019513,0.48131126624608755,0.49168707724448774,0.648598351014494,0.47679073389135707,0.5264364130891803,0.43852883679006616,0.31266689616514326,0.5321188155446349,0.5091295788706578,0.4191502144642881,0.4066005695217146,0.3843589910095451,0.3558631962826301,0.5394914527379897,0.40467244490693877,0.545699103766639,0.6756688967052039,0.5392058995477588,0.6082916422063593,0.5320580416296236,0.5076620238408992,0.4936423948885061,0.5512799361219404,0.387094338861527,0.5179085508762329,0.46159339968802976,0.5823858116846802,0.4180328711929018,0.3776402674488104,0.41999640818571105,0.4722489984253837,0.46314243485805084,0.3714589544545385,0.5204018387605621,0.4985277692425242,0.39339487835952125,0.4862989257663677,0.4738698778475552,0.5091378880999247,0.5222398121635647,0.4610482993310183,0.4301188408898417,0.6552836775011536,0.5549460252016296,0.3456381308305528,0.451424141733152,0.3989129099518391,0.41360432871845343,0.4040053731638791,0.3615603626854415,0.43281276716889006,0.399995775548416,0.4852327704358359,0.3919620296646151,0.3917416760489301,0.48381953476088113,0.4541056260422188,0.5529995381610665,0.35393337675154696,0.3895062312959609,0.5663034317883031,0.4392146070965025,0.5132237329408783,0.4763856787943535,0.4933392569270533,0.5290017038607251,0.3362906596081712,0.45011582890343144,0.3570707255120279,0.5042893647440114,0.37759712683798946,0.5369688606396609,0.4658166430489819,0.4229442853040651,0.5655695932679682,0.4844216553593405,0.3718580054329094,0.4057133894458667,0.41871231621810745,0.6041529601959339,0.3787926512595077,0.5481761867178644,0.26660873830285703,0.34436831085162584,0.42238795763541015,0.4258179597600469,0.509407034023185,0.40417668630388326,0.6103162466535814,0.32871194835127276,0.3298382112468774,0.5577560226716736,0.5598852269873061,0.6015022138207653,0.47640954917771333,0.41724412936384864,0.4881426380686862,0.5296705910816131,0.34309354706068873,0.5156095973154602,0.5285920255928515,0.34167487565914867,0.46674268344652664,0.5125674152268265,0.5185503634020927,0.5803963003985325,0.36806081981318883,0.4625371694933401,0.45630091559197933,0.5468692554978338,0.4683939992224452,0.5199050696033207,0.6086140977752112,0.46086863343629314,0.3373887861245436,0.4195459674316396,0.45347903700799475,0.42172421674417376,0.5380800594640558,0.4238540118940608,0.5063445209522566,0.4507850236638334,0.40216847660984917,0.4090559516566699,0.4190430450989748,0.4702835811812893,0.39264329306671086,0.5204215688281951,0.37721833196734195,0.5563373588415083,0.5093814429110015,0.43353558428488076,0.37524853156991994,0.4119150878220698,0.5177344095020819,0.48089503387186305,0.4751124440477553,0.4340938270287652,0.39909442126289296,0.5259545407249392,0.3603695109713952,0.4881441270524035,0.43664774004554097,0.6120637444748639,0.46299493603362185,0.40301375443712467,0.36724214681490047,0.547560766820364,0.44996842773721485,0.5218761659876641,0.47790441880847484,0.4633482012255119,0.4255536506577673,0.45779966171937236,0.47859997204074306,0.5342605055137818,0.4294856056317439,0.3871065351232306,0.4964245214822577,0.4492520248814741,0.36695961824486567,0.27347008682558976,0.4547487034922382,0.39998101582773776,0.43438315978020153,0.5052207519265236,0.46569888373193286,0.3868408810480318,0.4774483550666194,0.49307603352616924,0.47725183287873874,0.374083251783857,0.5369642642014334,0.550592738966112,0.4501049786128834,0.3868855731214866,0.3610353460277323,0.36766393519835344,0.4308499907576289,0.3705052092759971,0.3409841162311032,0.5497031058568843,0.48630688829736585,0.471751757870135,0.38157025290704594,0.3633924596474191,0.4327784351207977,0.5558960746579078,0.6231287755508731,0.49677050385029853,0.49687831208344874,0.46203157675219303,0.5412712825476161,0.4522705914041757,0.433716409770509,0.5052287583511764,0.6025550613060688,0.3940328459350312,0.4975612957126099,0.4928111803681468,0.331070492022748,0.4395024481833424,0.44242863230896606,0.46482727950613467,0.5047917422179808,0.46555017224491485,0.5098037526240139,0.3867967918376636,0.49501254256776017,0.44566859183216395,0.4960354782854592,0.4800210552733041,0.4778160070787324,0.37818944601369153,0.5742761493553422,0.46077872280710486,0.5134017789715986,0.479318597555955,0.5063761185411021,0.4020998011330505,0.4673926357224965,0.6569686181141399,0.44425489510878885,0.5099652506770512,0.35144547394622505,0.35880167122661627,0.42933092316419774,0.5214522107241008,0.33299722299903917,0.40892493871937446,0.6063730230237033,0.46443872635971545,0.47235025694272237,0.4645067308700927,0.47378609217393103,0.40098898358001656,0.594622780430909,0.38746477939945484,0.5670614368577509,0.4745666108354139,0.5698146873745213,0.44067599492474036,0.5208038042608611,0.3972613805232591,0.28855564714149146,0.48272087083542564,0.2958670225741048,0.3930323839070244,0.5472346011148124,0.3874817662951377,0.505338496742177,0.3528957741292547,0.5491978130732742,0.4276825547888448,0.3987197006444098,0.3577700877139045,0.414107556265399,0.517228996654205,0.4108743617082652,0.3637565746778731,0.4771853460694185,0.43891180360595805,0.43845747439689736,0.5392866086135901,0.3880252572147919,0.46399145897602884,0.40854592351851615,0.5146270636256791,0.4530477635457963,0.44248099085741893,0.4643521425448921,0.3416661508013226,0.4184077794133484,0.4094119557318495,0.5923342063682165,0.5660942092775424,0.5786452166368412,0.564045541856241,0.5132742598109142,0.43698872971493347,0.4890415969723365,0.4721134686763197,0.6008976044901776,0.5864260220045433,0.4365236733311542,0.43018012359847635,0.37544527404965927,0.5326269359845376,0.4043940680090911,0.41124702688714243,0.5001067441935869,0.40002103511812687,0.4910791168353495,0.45142152735519586,0.3945734965340925,0.3773935917985626,0.4266437592825415,0.34069443527154963,0.42633905911225817,0.3373967418133984,0.39255543531181347,0.36077515036644536,0.43195156159806075,0.5075407319552664,0.30932938519832176,0.5189302067892895,0.5035471982407801,0.4866088232939728,0.7010640288750604,0.38864418739722484,0.4426593609587532,0.4637658233574818,0.3515218425367045,0.3515006223328072,0.5066586774278625,0.48070649501682183,0.4559938774995731,0.4261894227220385,0.5233096968099259,0.41249001972645477,0.3629785806072945,0.32901381821785836,0.5678528520779724,0.383686772061797,0.41923000476689254,0.3966942816123387,0.4572659360145989,0.5387654927286002,0.549945393148666,0.38659570513882147,0.4891978804675881,0.4478830998492039,0.44561993072764233,0.45314924674306717,0.33815491051083035,0.32559192819251676,0.6036817449011636,0.4605563076681418,0.4224552330454509,0.4713638330531514,0.48134120320562784,0.5264454217291819,0.5543677810495924,0.5390470824320206,0.4345617564454172,0.4719797122258298,0.34466941324795275,0.4746821345659487,0.6225855629975249,0.5318119554751001,0.5596962404986726,0.5575580918660631,0.3597540979859752,0.49914031885806825,0.44698088632217037,0.444426651954588,0.451777199941144,0.4697044262431041,0.5053730648262793,0.4519902515016936,0.5017596332753392,0.3962265846339521,0.46742169410564066,0.5123843095357623,0.5355211350777872,0.50850406893092,0.3871575594484377,0.4860016961604519,0.5567960378123281,0.6703937082628737,0.49656116630948677,0.5520018341139776,0.3525811645178732,0.5067146647560276,0.49277932552653164,0.43916911576023254,0.5499538692459601,0.5121548025075306,0.48521328797902574,0.5323645693065634,0.5496506089435985,0.4949149384524272,0.4483208076037691,0.4885844999555045,0.40740680141287633,0.5150754246310377,0.5520246532826748,0.4666479393411088,0.5250431614656332,0.4450815170656346,0.33376990019908437,0.4330805842068138,0.47303151571389157,0.5708709163348932,0.5369248479558523,0.4181159592600251,0.4251156442268562,0.4892786081671137,0.48178782686933164,0.5290987252042664,0.5704103207613487,0.5854621126660337,0.4795435556852492,0.4602773415535678,0.3952140520594901,0.3896793455083966,0.4250026465431597,0.4580737814012451,0.5471612627394206,0.4887492049381378,0.49420945905187813,0.6070691016531191,0.5898543337944971,0.38144865380708354,0.5212903722163155,0.35566637437317206,0.45055514402302577,0.44854895002351924,0.47920375144007094,0.39613915244928527,0.6688908954999849,0.4381283762784516,0.45188896751814206,0.5632505263019538,0.5039941023561454,0.45079054867284396,0.5463981702323152,0.3243120670448562,0.43280840927161396,0.4827639021601223,0.5977100107682635,0.4014734423142558,0.4829984685387854,0.3541400677124241,0.533198283171372,0.41099847560813907,0.5205512829927739,0.3926082956548262,0.3433264840453387,0.44420007330276884,0.434229628840832,0.507349138488466,0.44362414389026783,0.4425954836564305,0.45536291482271407,0.38788706358600994,0.47477718485717074,0.5626310117098026,0.45676212978205954,0.4563921262187319,0.3513503383090925,0.36141713108165796,0.5183704287919793,0.465543409843782,0.4000683206412177,0.37815700185667106,0.48689066968079114,0.3652628189192565,0.46547814436588647,0.42109115437116856,0.46786184205549053,0.4480867039982393,0.38047202629209403,0.47261406435394643,0.6083774213285563,0.3802163703362628,0.520076953453225,0.4678673455209754,0.35558470857169466,0.5794942727609511,0.5409218390300342,0.4436313817770123,0.5337948063371083,0.5486391080690312,0.3361731150949829,0.5501209517481882,0.5210131285628112,0.5141123404507065,0.41917443025668216,0.46277738552935943,0.5751027475716133,0.49231530547237873,0.45013089540432955,0.4749244029084806,0.3867633210380958,0.4371229291531177,0.39918778958751994,0.46897949616013535,0.5536869728219888,0.4431890509224707,0.28833100344054996,0.4630953169191121,0.39415366129375073,0.42333611192736414,0.44987156396403905,0.3667791202134154,0.419380541889738,0.4083219521866398,0.37787404204831426,0.4443018455319842,0.38667069702909396,0.473127295564936,0.4339347832937614,0.383106301998357,0.5737407183131816,0.5310584228607138,0.49115709261157975,0.5388633131940889,0.47641194035617707,0.6236550353677001,0.4810894347254733,0.46599519242672904,0.4134232540900151,0.4704057702632412,0.4987155958885412,0.4458161242353625,0.3233548804589405,0.46572673093695094,0.5064679116980533,0.4472622661338856,0.49303239746949656,0.4629331772095005,0.4515324075958372,0.670292151624121,0.4986016421098991,0.5093190266790218,0.4899533736733131,0.43575335547415683,0.47581501408024224,0.38222695611328217,0.3884279614296742,0.42279906926344485,0.6010452180136256,0.4656871370318912,0.3827905677390013,0.4126052992296936,0.446136976064286,0.44013305647718565,0.48467096867319087,0.5117801508334789,0.46462138437914957,0.5109876070060696,0.4505773360314989,0.5168859062364805,0.49698926487201034,0.4883195600753476,0.5632291405093215,0.5206186594509385,0.4060969460967418,0.4023581605260074,0.535477644486738,0.40762370478038923,0.3902333987447346,0.5010821524576551,0.49267434065601645,0.4323869680524259,0.444180285233694,0.40722605751565155,0.402414606696163,0.49507944416830424,0.6044582897350682,0.4988142808857075,0.4092243024004966,0.39711958875075776,0.4780953968634039,0.3893621268480761,0.510817572393417,0.42565538818653187,0.5466811568828307,0.38699805449193314,0.4863949386055934,0.5669442643374036,0.4356432344517224,0.5704128556085193,0.34254154245702834,0.5580386265900994,0.5280097622792619,0.497818264893443,0.36081452512099793,0.4151506277369383,0.5167668476260414,0.5031043968469798,0.5161747994724075,0.36797616582134784,0.4746476201198398,0.37345268409779897,0.44538240218836306,0.302426653618668,0.5020321085295307,0.5847332968841564,0.6153133613459285,0.46137491269218917,0.4658952107702504,0.30757198823751236,0.4642867389125186,0.4450325316577342,0.4496222219236471,0.5120552234096847,0.49738734024753556,0.3789868581003078,0.37194045346484544,0.404280006166697,0.6141134798978379,0.614553236742967,0.49152414068535305,0.4101739026562278,0.5195544714098934,0.48781262257222163,0.505939114960787,0.34207021158818746,0.5485668806027868,0.4159915735210237,0.4494129003816837,0.37590484429902443,0.5425893648431507,0.513927308328892,0.4522926251723059,0.46731724300966276,0.3458978037115005,0.4716516796059147,0.4962841990896604,0.519621648716541,0.43638390060977106,0.3536393697019003,0.5103075688779135,0.5014489892622938,0.4819273746313027,0.5199889186359695,0.5108369670079895,0.5776270693873514,0.4890740483132651,0.42714145004350446,0.42295285388891346,0.5416731126483267,0.4997594831420992,0.47694042645528695,0.38246167129941305,0.4922875619957397,0.4160601318221758,0.4144131987909079,0.3060845828088402,0.4940649187368282,0.48091722477327387,0.442021500760408,0.3838669650482401,0.41125049995224955,0.5048742073835121,0.6200001602578395,0.46113414161332533,0.32793500250323954,0.4378875683608983,0.34384456008033953,0.4559032328448373,0.5034128450326513,0.37313869235596664,0.5502503368824964,0.44284105254863443,0.4101260049625901,0.4274150551217092,0.443914407151371,0.4256050724095565,0.5059922407458928,0.5930231275697105,0.5069995433975336,0.6847778593390533,0.4378782811697203,0.5244572678312802,0.4331317014010613,0.3048419955013142,0.43573786018493704,0.47770733087299894,0.43094024830550226,0.6417816790276392,0.4606436850885863,0.3834806644817288,0.4787930842274257,0.4397782952450502,0.5200729614655736,0.45291876457215735,0.44538223409799793,0.4810379084199738,0.43203749259697666,0.31923008119618207,0.41683862976723335,0.4960106116257495,0.5495480541068096,0.5419958122085698,0.2867539806934369,0.25039715483116154,0.34799519251655286,0.45833925721156915,0.5022077054585199,0.467971449909778,0.5255780225984203,0.3917735220712838,0.6293072350903149,0.4887408224732079,0.4244192372195597,0.5470834444736791,0.47298338704549436,0.6901084115218445,0.5798222524822411,0.33723494793289777,0.34939054515623935,0.4875522960291147,0.3203511700881934,0.6054798347104259,0.4841564867347087,0.4518180333168475,0.5606969617073081,0.4449842300323957,0.4923777457063309,0.5290577557415675,0.45130280903149217,0.46449645302232817,0.41911257737269203,0.44822166194070806,0.4433503666707802,0.41821055998318263,0.36248514379051516,0.37051517068106143,0.5068908237611957,0.412431347386967,0.42890667129494625,0.43278687666298504,0.4987623646925287,0.5160525311688955,0.551522710659426,0.6005996222644296,0.38537264585583375,0.5310321483711984,0.4344027590873527,0.3413142067333076,0.41012080526063266,0.6010214014532831,0.5330590804430716,0.4484787912100717,0.5504053337874834,0.5221379276497353,0.2825928777064049,0.5558966535085959,0.5282525376456007,0.43023966204825304,0.44871668980388213,0.5352275613335999,0.42708888811973456,0.4387684814174328,0.29660169285428517,0.36599968055002363,0.4496019577646312,0.4738238470161701,0.41256286876750237,0.3789210667507696,0.5217877952005964,0.42585064357250474,0.5740788028143377,0.4068910917254775,0.3880599453201879,0.36124234192395477,0.4680629910307797,0.46044716276027065,0.5298412976886948,0.4640214253731619,0.38645893125371683,0.3572559115551579,0.4491291717581711,0.49703439484010337,0.556732401640676,0.5294088576433199,0.4056328612575522,0.460922804656885,0.4215755306808783,0.5187050413767001,0.41592381743122714,0.40489567354839445,0.4954606439197345,0.47554726993906526,0.5174577073324163,0.48571072388472336,0.3886727478734833,0.42553858122534,0.46466788163188,0.4977982989829163,0.4763773265722184,0.4077323788074312,0.48081421629213755,0.38113116322160495,0.447220778072698,0.34762911312580813,0.4197508703966383,0.4945642189402901,0.49088548195461706,0.5215863000861868,0.4463227442606198,0.5178925350948551,0.502015098538239,0.46375575954590076,0.4407944343125603,0.4398399916589558,0.496872361003458,0.635709444437507,0.46382014741726335,0.5669930667688879,0.4392546647522848,0.38276175001926943,0.3569340886497589,0.4611170394942658,0.4190713088826725,0.47982061367626294,0.5753284266155251,0.27230294170351355,0.558906716172944,0.31621329033232315,0.3865005251282097,0.5100364281029617,0.5417312029627103,0.5341317927865527,0.3707951355307848,0.4580085524432506,0.5122972798590798,0.41638206586235954,0.42983904789387384,0.27003323253666317,0.5252979246499906,0.4634675804143221,0.4227860803771626,0.3551631678055209,0.4744780222666157,0.39166492108547923,0.43176186926622656,0.4666393833651891,0.48662021663881955,0.3988542065244093,0.36576460668400834,0.45803708956459227,0.5766357774665236,0.4110787729209768,0.49330340027479264,0.3956236037600531,0.3468646798875967,0.4819867507618219,0.4001767773053816,0.36387151682317737,0.5425632240107034,0.35725257355271706,0.5683458933977887,0.38536246462815016,0.49617566615301684,0.4749260971979753,0.25455502217303344,0.4780660911038474,0.3923607386644539,0.452365014170015,0.3680543446846278,0.5010115669286908,0.4185269758869114,0.5432873872534071,0.33903740680341776,0.5390560970577795,0.4644124439078415,0.5329492903531183,0.37443207337563394,0.3868763460974661,0.45602085205521714,0.5711014037696709,0.35365079556693646,0.35372086356863935,0.3419220088006988,0.47621074558546767,0.43427198642428466,0.49219489392587945,0.4510529698766519,0.5261483997463124,0.5252658228402018,0.4517004477950528,0.6077850063214916,0.39079296857710016,0.43306601921236154,0.41677737656011626,0.4080439384777728,0.42493601545345094,0.3418139504263216,0.4227609644555096,0.4315725012359248,0.3132265998042639,0.4689865343693063,0.38073938245612327,0.38750373667042143,0.33876688617122974,0.47750449927165134,0.48746919684495665,0.49023637227443473,0.4202743770852276,0.47239805525887824,0.49056239053534223,0.541790664620542,0.4054560028596945,0.4072512884901807,0.4654113793204934,0.40253864428769015,0.42897752107708637,0.2708756011900483,0.4777736365749154,0.5919888303149439,0.506823123532528,0.424382176250223,0.47365725723714625,0.48941894822938115,0.5089973573329533,0.5051420934781515,0.5556425870807583,0.5609334064821793,0.490348304512989,0.34827070103383695,0.47494588954375755,0.4030274233606307,0.32473937967011585,0.5568249360980014,0.6115565057215856,0.4429079769113794,0.5007060095003701,0.614994856603477,0.40084903167393976,0.4884401793513849,0.4922127083977585,0.4231054930139896,0.45812769064802067,0.40773525756032725,0.43841866300844134,0.2633788144419581,0.36342849693853274,0.3653721506012198,0.6561558677391811,0.464824511006981,0.5495862926760092,0.5532210582096383,0.4006577028418043,0.3448315551071399,0.5972652697140062,0.5523091318807475,0.5223986729457071,0.44069194929834904,0.6035461905259236,0.403016288992899,0.5130809707056718,0.47253047466313847,0.5635495630526078,0.4284716434271622,0.6030885096499332,0.4198841124963506,0.5232588589979807,0.5580047319937362,0.4201343757981378,0.5335958562394109,0.5134673189429739,0.5264684197048958,0.4528428119214134,0.46298510116272856,0.4022646802168487,0.43428239233607563,0.4248461950674682,0.47917661620365387,0.38274014229035674,0.5861361708118671,0.36526533390877003,0.6332414048696065,0.3969579819522631,0.5379442525259532,0.3904818873148197,0.5003007887029775,0.48620404303564774,0.349188488204157,0.5114725727245507,0.4795880337754352,0.5343626995555298,0.39325732384126255,0.3808109180080636,0.4957452512951044,0.28912346850163734,0.4287928118043294,0.4915967135181529,0.41457017905516097,0.5157634550842726,0.4571158777070032,0.46241578280624657,0.6957614039706884,0.5111430895581457,0.3829747124357027,0.5727894479503185,0.4031080060282434,0.5490328717107398,0.3125526926843375,0.354029084643616,0.3699332952737409,0.5267726269238875,0.4129046016642538,0.47212424702289835,0.36802419575972517,0.5284259531775767,0.4367890769474826,0.4510430398493893,0.5091816590248885,0.39080314145539524,0.5643596772872683,0.6262915146742443,0.389640441763658,0.4937953327493071,0.5366286349316064,0.47250291710815384,0.49248343179869486,0.3633721949398558,0.5656899987691333,0.40861084166386236,0.5386686565966291,0.5977766518253843,0.31039792359859925,0.5314189454933742,0.4755978771675896,0.36624479685739747,0.5057913947817015,0.5508982678632006,0.4224607879050672,0.43470870736079875,0.4566756897277626,0.3335512590594048,0.40671380016645814,0.424071923191316,0.3544629481401471,0.5346562338201004,0.3822364857885899,0.6469978401832771,0.3521406794142937,0.4662798227530992,0.46461544456798526,0.5169248197232051,0.6394711083137171,0.48589116464700294,0.45736004649054496,0.4469734671846209,0.5567737561156084,0.5019356307570372,0.4315946653558088,0.5394146250519898,0.4866512749547342,0.37719949763599,0.4408519071170726,0.5078906215871479,0.4331997274986048,0.5297700240056805,0.5058080644565303,0.45931562117840496,0.48156536207791034,0.48771292592043636,0.46166071095700273,0.3777615378640546,0.37153966908324604,0.42134720099542056,0.49063203716842624,0.4528008392864944,0.4353536154226163,0.4422242520342084,0.39417178410452963,0.5277813485231222,0.5146316460602843,0.5599352847468942,0.5048363304130413,0.40677296020711506,0.5058642575846899,0.4760044910430012,0.53532155202804,0.45052244891747895,0.4654541204575543,0.5237644466132372,0.44273944063825627,0.38455922835899964,0.5369869236503804,0.49608215168578085,0.4374943787532201,0.41100232640800655,0.4383269854958317,0.5528950067249929,0.3871197618770952,0.48620094531295927,0.5160831874068085,0.4485960099886278,0.466316349562975,0.407875326296636,0.6657170919667738,0.4755628613638077,0.5193095443232941,0.5242314926155707,0.3651579133601791,0.49970128517474116,0.6002791607932829,0.6354350195110413,0.5003598454999711,0.46461468919362126,0.41208817295397965,0.6286941438925636,0.5294848285888849,0.3454424898132919,0.4902141816666001,0.3450109216416861,0.484067548992884,0.5075248443782986,0.4640513253892005,0.3929184240833723,0.5397447267234519,0.43453230731084924,0.41345579917943437,0.38389403058288446,0.3786843601437589,0.5043227173985799,0.5434990558932693,0.49853845686065273,0.45550949043044076,0.3872453267214395,0.713517555678701,0.5016563715218811,0.5982242725514388,0.4800661975771022,0.47023940795314206,0.53276198509576,0.3117762157849232,0.3440507402242497,0.5362980872767399,0.413835609978827,0.3213441390452881,0.38371755523727497,0.4096617499592634,0.5346654131316335,0.5269065396938579,0.39792762658127306,0.32509641074548334,0.5058328782320382,0.328961059138135,0.4195325852260049,0.4491979890540883,0.5348753701426336,0.4134042903904909,0.5241396873622988,0.48413603858307014,0.49825276723817413,0.2814624553095925,0.5711230344208817,0.4460977396297003,0.5100930907167908,0.4735575736043677,0.503532324857906,0.4748326453245416,0.2880481172049409,0.42119295765982473,0.462762746557429,0.3665829939680597,0.5188564715299839,0.5216508989420807,0.39640439832816965,0.5074867358541924,0.49398696370465833,0.5633143513129003,0.4807822529942803,0.5156017991683371,0.5182219530682318,0.47993310241575593,0.3393003183303106,0.5026988292285662,0.6121184213228413,0.37244948975768377,0.5348014476323713,0.5626421516228463,0.4093940947759173,0.5973743998866272,0.5149650767256542,0.4500625853856275,0.49877334820179164,0.46754958831364085,0.43606667302777813,0.38357330520299643,0.5757085484334787,0.5127159188985563,0.4786196400956632,0.5328936495719706,0.4170356291857521,0.5182899776131747,0.6182518253615553,0.419561169011617,0.4340368626486584,0.3574032815375031,0.5998933413602838,0.56385128445517,0.3559313467200898,0.37964081543758227,0.3459239591972893,0.4785089587870779,0.37979168717722694,0.5395566175104638,0.5083093961964568,0.44952549546784115,0.39980058844216687,0.4677643030310798,0.5035759534788264,0.5887286566725252,0.33321156784643097,0.3939839054664198,0.384885490533935,0.46763359019107736,0.4022841285819815,0.42255461816851614,0.4678740327959174,0.4536358897968655,0.4918613064768406,0.4815505647065573,0.5911873919874084,0.37708291975136354,0.4007059338562283,0.31722821290539965,0.4032711405565726,0.4578937411951528,0.4383365044550048,0.5604422982765908,0.6791367884607126,0.3407075247797782,0.459608413057065,0.5292170336466555,0.5229619096490282,0.5580978340057714,0.4813622401058686,0.49652797541482163,0.4850162016771303,0.4961831511476453,0.5231377049873212,0.3666471922994424,0.43009770855753865,0.4347458833213146,0.5756129082938781,0.5115484794542802,0.2804263950046081,0.46413814250545904,0.46042279077968246,0.40868002231001244,0.4959880360197007,0.5050547877990552,0.5045908067427027,0.4308748834288674,0.36552156988180673,0.5228406761089338,0.3901679636423097,0.4576925674285959,0.49832227381110544,0.5137067715793279,0.4913749560146155,0.33800158360175014,0.412322672567732,0.47553759258082223,0.4228110007319944,0.5826365999828416,0.3974016940223254,0.43961057003032894,0.6357038898287326,0.4983920337331707,0.3938536954883768,0.5898868428709005,0.6240955964103564,0.5088960198019156,0.5161097060261404,0.419898814302171,0.40399308879253387,0.46667383765123005,0.488095135997878,0.4490510680002302,0.5338249188708365,0.5945555608637032,0.47240808703085635,0.5871594845687431,0.49200955728836004,0.501140217523653,0.573520146685317,0.3503636629999602,0.5023371799006575,0.3123694720166412,0.47934401603662835,0.530877601497325,0.43539764519853896,0.5820216900662325,0.42469168313904626,0.3612476712164334,0.4418127846708216,0.41481776805545756,0.4076186351479631,0.4435558387940452,0.35793596138112244,0.5340867383940575,0.5421384948556555,0.2851561952830751,0.4630208819176869,0.5656407850742062,0.47283111570729824,0.5089568876149554,0.5206109257957422,0.536271954401028,0.3660580129922161,0.5392913061356444,0.35114938635871124,0.44652379192423636,0.36082612033624234,0.3027026847785071,0.4408636357072146,0.470051723434504,0.48150228662142214,0.4797001502752573,0.5069619421333162,0.4581631747099353,0.44663824467916086,0.32653263406382965,0.4566872590424102,0.40822491168778363,0.33347621674530303,0.5129948925262988,0.5280630090957382,0.4545301879225687,0.42496327751691915,0.5780395958692207,0.3455927923909586,0.5574935132273618,0.5053593625935241,0.5098452057053593,0.5165367462043505,0.398903461424782,0.4340883197010232,0.3815562447982213,0.41772422806405646,0.6429332119695849,0.3628815459345086,0.5601687768265311,0.46164011646064984,0.5188382546589954,0.33815825873586847,0.40567098966705234,0.38943176943098623,0.5141470954122069,0.47693005762482776,0.4414194066137922,0.49426337402757775,0.42980402787930216,0.422122080009628,0.4375345212904128,0.5147209570443689,0.44242657594004636,0.5026935165471812,0.4604883077553131,0.43874557528473024,0.3869570003553839,0.3851666260172519,0.5889744621463002,0.5794590928302837,0.4416805433069439,0.48187582735456647,0.4123692132032902,0.5296676515339148,0.6025053463423464,0.4174089257855503,0.3392488200376443,0.30260037831892445,0.33222603941561046,0.60072094300723,0.4786945055160116,0.5602933455713711,0.3246148503093289,0.5558577427200248,0.40055911505840097,0.4257305549559004,0.6005666600723444,0.3271845643374856,0.5301737696281338,0.5135166339002586,0.47992075123693617,0.37538258108916245,0.5255755835086121,0.3785770396948766,0.41866882000963784,0.43312764108324886,0.6077920268422468,0.39767841953905986,0.3610997845907272,0.3928670848422431,0.5066510932886312,0.3972273500640777,0.3986305292798275,0.4670038893387456,0.41883867971079397,0.44521824693067386,0.5198795990920057,0.4702822679723898,0.4319769420446879,0.47406490607049734,0.3556453722199337,0.5485487059837695,0.5736431805001446,0.55153746109148,0.541947831410712,0.5166158506358205,0.4442269476977771,0.5786911559474224,0.3635523863836636,0.4446676909630079,0.5297350633614427,0.44742657500786287,0.5800679038507752,0.5759042203609607,0.515464175085745,0.3656591756306622,0.6103589804841226,0.5716993694000684,0.5142512679845943,0.4538187900839331,0.43605954305556704,0.5534713507021372,0.4473800458574985,0.3717970515301827,0.3538601404981527,0.3161675962971625,0.5346595739749456,0.3917029900369751,0.4490457746829532,0.48293483700637974,0.5362822249934271,0.41732585657375604,0.506554168190244,0.4634269588687693,0.5256164410782722,0.3871899922704132,0.40380178885233625,0.4991917807090868,0.46009860475183867,0.5505959679276988,0.4436795878476859,0.4364942643719905,0.24758926656349495,0.4894991265378785,0.4297704553499817,0.5987071690847339,0.4057986022140195,0.36773185469492814,0.2681878010971956,0.5374757677691903,0.4765229423733092,0.5792090442602293,0.3404110317315051,0.3954674311649108,0.4489884259482218,0.5371922646998161,0.48393881419917945,0.4164292571088784,0.5065142782021448,0.47626020811991543,0.3620084455217618,0.4657068477519378,0.32642653121658854,0.5084277835994387,0.528854994852778,0.29335617574064704,0.4288001152891102,0.5220163307006321,0.40466801707730793,0.5298827359513764,0.3782463531923146,0.38985497651821055,0.5632039869883309,0.5096678818471377,0.491910128417117,0.42579569200447376,0.300288426258791,0.3923850451812493,0.432195530143887,0.4177765716124062,0.5513096338779069,0.3936403341483427,0.5011249901367062,0.3883445709595644,0.46056802103844646,0.5312519961188452,0.544875024513817,0.45666729138863527,0.48983546179080867,0.47938519665981105,0.481805957183156,0.48825350553404046,0.5925397104516166,0.57770298814953,0.4687561806462251,0.4283500565924848,0.4742641998792695,0.4813116073539522,0.31474706857306034,0.5193610614430945,0.5005807923120227,0.554022243774674,0.5019647500013984,0.3768282860209337,0.39281957904060266,0.40513400846935577,0.4914833262431513,0.5236968626862478,0.5015373513062698,0.5003021751778299,0.4463779896289527,0.6582660833058736,0.6341705367481595,0.4672889580962569,0.4504931672345137,0.6354103448522146,0.37862589088705145,0.46822644640361205,0.38882140878051186,0.5582672957410654,0.5302538389762056,0.39646133851069315,0.5657022816267635,0.506327576432635,0.536205096436279,0.36618001162824076,0.5557455915834497,0.478412933247994,0.5584639306836334,0.5539973856203235,0.5709517635654936,0.40511470008844663,0.47804303410505483,0.5887907106612348,0.569746552019631,0.49406401994271054,0.3745646928557434,0.3220406228546461,0.38889772293291713,0.5034990887658329,0.43214140352236513,0.6252016070087948,0.4549055668045336,0.545835340528398,0.4753136580534782,0.5045891594003461,0.5589589032401576,0.5139859636036231,0.4829627580121806,0.5177238760919042,0.3573209906866499,0.625441077149955,0.37429200587657474,0.5093738480304322,0.3901086337501037,0.37228517043323656,0.57359881188063,0.4095931032411373,0.3616231859782485,0.31649987404549196,0.352885139288834,0.3141635222361984,0.4745513827433308,0.446757806299111,0.5120396270876101,0.3909988744556824,0.48733853040893693,0.5436771420352082,0.5004984884962983,0.42756048074374114,0.4449883318767314,0.5495151760706585,0.5216301772837774,0.5147073367100121,0.6009325275162125,0.3862453742739381,0.4593413188749273,0.4146987562697408,0.5892576577945638,0.46938458840014463,0.5251945414027724,0.5853976659831664,0.46149441139924957,0.515466451414947,0.4104807014074049,0.48097831457354934,0.36531783234144294,0.6001635862917514,0.40620225845729263,0.5142452022360753,0.5211968558087428,0.537485625709719,0.4768389767933184,0.35822524737421574,0.4347404092689607,0.37284992482396256,0.3639787540369466,0.35179981331084775,0.6357101392075182,0.4290982600860742,0.41970872386371,0.5717445738962614,0.5115333472873115,0.31152046730229904,0.5016268605704944,0.4325980173930334,0.4897579437220377,0.44247077221549785,0.44742788821727636,0.30509703716485304,0.46184061063922105,0.4689157063836031,0.5447854461945223,0.5037595412547942,0.5559577483546629,0.5101465383017634,0.4859427312479412,0.5228143923566793,0.5059261477712637,0.506214923439868,0.46126020725769584,0.4200026242232672,0.3790218143215078,0.42494789793615095,0.4623704230636489,0.4836103612203241,0.4681176528902515,0.4728627774386667,0.41002711773477485,0.537811436157492,0.5031040067904401,0.5118067492640594,0.6373196720864884,0.4150779224068743,0.4667268698490214,0.4901790431129812,0.40794102498981616,0.4064286090183202,0.5291366378789909,0.41941226880902016,0.44956218293835704,0.41853320836225477,0.5188605569791678,0.39988118963621216,0.6065633305573864,0.45444526464577245,0.554313256560666,0.4933556841717465,0.2701534028698932,0.4688466707653609,0.3694200236677159,0.574737412688204,0.4548428996528208,0.3515897988972204,0.44623287012710156,0.45312288466377487,0.5878565786023783,0.4933268676689764,0.411066100952215,0.4489185178417003,0.4633497041332944,0.5041552002444148,0.5148583856126879,0.5430680064046501,0.5584435157125961,0.4291221808916875,0.3744766539161999,0.4516748505399978,0.45693608275023434,0.4861341654437267,0.5192970667070169,0.5652446692935298,0.339233546451553,0.4059056482311733,0.37063531082952994,0.42610899386997225,0.40591598990324523,0.548271803357819,0.5583884011012054,0.4277983427563179,0.5049733427981532,0.582850012442843,0.4941866939006879,0.28586082542932517,0.5311118178778953,0.3825488390636388,0.4560212658305334,0.49990217034456913,0.4368311097683975,0.4432714739247687,0.46797829439220506,0.5042073419895396,0.5607039471527492,0.42730949093555576,0.48143039426748163,0.4300320593648721,0.5406242807955814,0.31162983775561404,0.5458267808113397,0.5137873060228729,0.5475090550903111,0.4868868966709981,0.674423764122145,0.4971288499312076,0.4834614063817703,0.3218082611638347,0.5734588701939094,0.5008453299851059,0.4176560004346314,0.5307909196527306,0.5595502613751427,0.5033075123693629,0.3587390340288955,0.46523586112798154,0.42330605824860656,0.3588129670647838,0.34793893757874655,0.4522818221496068,0.5063094550526728,0.4043875799242164,0.5767910288879725,0.5600653882205958,0.5323808049672829,0.4608672393340926,0.3499467477849968,0.5462842463621256,0.49388913878008195,0.44474454184168255,0.38595426237448044,0.444687228363057,0.5211366210406536,0.4545534018311826,0.5404174595470776,0.5288476033846157,0.29524889593462417,0.4246355057486093,0.47588557656604213,0.4671150404526939,0.43851713094302525,0.4924414013159977,0.25793254700019713,0.5445006685705618,0.3939894804133923,0.4199296194566324,0.3865086721370396,0.5195929032313682,0.4583758314662759,0.5180231961013511,0.520159856859238,0.4868909092575462,0.48955148064031223,0.35325167228932286,0.4347907208576651,0.4372324912620383,0.5128880912399507,0.5120545926675956,0.3659792854251608,0.47554438362583207,0.4483726829548689,0.44471301984630107,0.41227184280114476,0.49050819739286267,0.4610598903335183,0.5344559193837889,0.43277743915456174,0.5113092376915103,0.31606979590209494,0.4546052743417999,0.5196813820742313,0.5005739902974207,0.41225602797682964,0.4941379390902505,0.3947249919203437,0.565465856021867,0.4237181169807886,0.5045786994106665,0.3742472750091034,0.4724265681412035,0.4338900374469094,0.4313211084594507,0.47169242267970063,0.505315292674039,0.5346384555563425,0.35853733707976604,0.599494590296517,0.5066075961594462,0.39854637008571386,0.4150544401418077,0.3758642698046657,0.5717169903286249,0.4499734807595157,0.5477694390528238,0.41117057422307407,0.4373872301344119,0.5789465180543731,0.4342032073368385,0.5467914522936759,0.4240930720528151,0.4947997021192279,0.49003185053769915,0.4201798225438454,0.4045477820174575,0.6621977338404924,0.4996868518373525,0.4231861736361757,0.3996201862359161,0.5395881211812606,0.49107107321817084,0.49287264419806603,0.45852396404559126,0.4400575018701354,0.533820926945919,0.38850801532778517,0.4110605734191957,0.5541131585393072,0.45348563670955294,0.5666179336668435,0.4865384497800597,0.5842567885081457,0.3580912934371047,0.47546190988016324,0.46920440784090217,0.43100211767145635,0.5221449948207711,0.4836205771699669,0.5065546336626461,0.3284924539937958,0.3431684631949802,0.4860731586276454,0.3581173738637294,0.46884121259590456,0.5540581944674586,0.4827820744228384,0.46811853925886066,0.4372561895429481,0.36545998020997833,0.4589940905853864,0.456235989766171,0.5403969698735315,0.4657583913924254,0.49844170755307016,0.4502297639991866,0.5234101704770814,0.6546880820749699,0.5455295506790364,0.4006891767830358,0.4485912826533692,0.5567251602819412,0.5057608217101174,0.3188487604141616,0.46752676353456035,0.6554851666793537,0.48241017983203494,0.41462780292652684,0.4515414973355197,0.4586391308100597,0.28929576036108023,0.28411850153382406,0.43517696741565437,0.41377595301999204,0.521353711794469,0.4393217031612468,0.38226441244643294,0.27515757577576594,0.39653247880693415,0.4490464127488213,0.43319499593645255,0.419189918963071,0.2959130546284744,0.4895168776392817,0.43034803546240796,0.7082122804810945,0.5125351403027464,0.49088558075622285,0.4825393385652677,0.38783899141942096,0.49550789118197763,0.43617550462008864,0.4706240057849866,0.37302915748128795,0.5134806087943259,0.4957221141011855,0.6005471893393898,0.4141328891081003,0.4947679658860479,0.43334730067999117,0.5690763375914906,0.411800760168536,0.5346565651011952,0.6247717589756124,0.4646092675856566,0.5122588407240145,0.43489412165260205,0.6135459035958354,0.4448051938357974,0.38006575520578156,0.558304147359322,0.45816529951473517,0.4807422948963267,0.3389839953935302,0.577014278296533,0.5055823072856559,0.48645325445181037,0.4423345427361633,0.39986718852379166,0.5115611936582216,0.6256240597427307,0.623586360769123,0.5160525129513905,0.5999654828733348,0.5115003701178436,0.4802597000742297,0.34734530659405993,0.43948470628742264,0.4402876512979964,0.31236509591600464,0.3939128777912469,0.41282909960244774,0.39251551303151494,0.3559474096568203,0.3589801696378914,0.35764581092400777,0.46712342333957624,0.3963785665986331,0.49309653728412417,0.43356789561314013,0.4939057753029497,0.41152867669493315,0.5298198085911014,0.503185227184076,0.41607539013973294,0.47461683206935884,0.5151530250880133,0.5519340735882905,0.4318929787721719,0.5185430120626423,0.5096824484958624,0.41209033911656995,0.4008815456954526,0.37232224251646745,0.48207760469994854,0.5310233151276561,0.4039467605656945,0.4105011016152739,0.48064229549635645,0.361259062625991,0.47530721069473514,0.3995045341836931,0.509143568512765,0.4585129402402489,0.4311486940763373,0.526534722363579,0.45065307018679673,0.40230400618201945,0.44954685848117504,0.5188472595007811,0.5223312286834589,0.5415416225983347,0.5380320510407679,0.4577053212258845,0.526333621139572,0.4305977564219268,0.4737694803150101,0.42977349576510737,0.33996553635359955,0.4113375374488292,0.37977190485508894,0.437930362459987,0.5877084717482588,0.43726303525606164,0.41072260751988143,0.5243688239597986,0.5159967941350732,0.451495907214309,0.4564659937934132,0.47253595595738407,0.5392237132883303,0.5346703016974583,0.48488702540898365,0.43376973933799196,0.4542769116249267,0.516391779470002,0.25410902445009964,0.5006971313328191,0.45511214517900755,0.4449389950060422,0.45599970970262604,0.46565882241544754,0.6588915953322129,0.4105519191146486,0.4261078524362608,0.40420896629133835,0.4245681232710289,0.5619668924932247,0.40898398646495115,0.38136187774713254,0.43394269141664427,0.4606462261338578,0.5648630874785938,0.4676997625965767,0.4944561463655501,0.4182816680801188,0.3115636660183361,0.44985318336870256,0.411531974330293,0.5063066899937277,0.5963119354643387,0.5687913194713677,0.4899690107105309,0.43423528789205473,0.5269354303682494,0.501021604599718,0.42518661304332295,0.6288524992723464,0.45237125761196034,0.42497424108302306,0.474923983617943,0.26652474086851274,0.6028350490729664,0.3607108038292584,0.5889907667808822,0.5000718255269471,0.5461332711657324,0.6358678543578447,0.479851267413994,0.5293313623126387,0.36864412436924704,0.39836871787561134,0.5662177090764402,0.4744108942853969,0.5308026457535135,0.38248223460328185,0.32451233565006815,0.5053014608830718,0.46352990101968977,0.46899854349125464,0.38357048822321843,0.36001538906185676,0.3571825470049771,0.4083691650158301,0.5069319428112253,0.47669638564248246,0.4910229117092502,0.4430072359346801,0.37028134474206015,0.45727750463446676,0.4337408405730326,0.48779240938035,0.4787906090715399,0.4853728593893257,0.41170022798916384,0.3128668646713027,0.5560432815097901,0.33652403172810214,0.47997893849611484,0.45476148257640936,0.5414284395175792,0.4277178345761759,0.33078257928810306,0.3846758984835908,0.46912795107736394,0.4877353044688936,0.4955421603727234,0.41323605141905806,0.5404333989112992,0.5455771496573933,0.5117044379062547,0.4636023598331031,0.47628133234985515,0.4144117512792177,0.3845200294814402,0.5967764245909284,0.43961043023540664,0.5231307968969008,0.5187906007664186,0.35810158912079576,0.44921629305418276,0.4438424359508514,0.5043146266502367,0.544117653490876,0.521849296528576,0.39150528923438427,0.44852221525964553,0.49016591101575974,0.4016462134055326,0.6220733045596379,0.5617492138915259,0.5944223633832216,0.5487540310691933,0.39165235108334273,0.5285505684400295,0.49132748157875283,0.45118117343553843,0.4924553104585695,0.5942131648173565,0.4161400380474962,0.4012365410728809,0.36525650490929507,0.47924166730471845,0.376921134197983,0.3172509643488388,0.5619458117943231,0.4865242044841848,0.4374951600060498,0.30675373219883084,0.5146046893099931,0.3227681660957625,0.37766801188238436,0.4296509207405622,0.4268161629134837,0.543915131199464,0.4810174098950197,0.5472958930532579,0.5325441438102109,0.5186018426594267,0.5502990504883801,0.42749636459283386,0.5428391095367657,0.37120780829841543,0.48697952161541896,0.48591668545388694,0.5048953044797313,0.5222957428614223,0.5543274620560972,0.44432468223605226,0.38991599376502634,0.36177941824374193,0.44891099483960756,0.42934981956511936,0.513492257613464,0.5138913165595776,0.3752289844577254,0.41681313554137384,0.5110157589369723,0.4229626576893069,0.5026784351623236,0.4428340902195305,0.5058217491646257,0.4437572756794472,0.5121788151142568,0.46741595560009946,0.33384832824753735,0.626776769530783,0.4041773381159915,0.5692565538522183,0.4876829944076998,0.5442488651573615,0.544675865749347,0.6028516822788836,0.44880429323067267,0.4957365491162593,0.40736767230811266,0.3820967747655101,0.3643377014236086,0.4942596926739837,0.4306160640418876,0.36823192464819754,0.39382270604951497,0.5081827767230077,0.431941170541166,0.49521839447801824,0.46244383437298564,0.48731578472952164,0.5006212878098671,0.40019369310469005,0.41426886634088833,0.5041386898174015,0.6690003954253675,0.5395943862768844,0.46863048536956126,0.3865793050972851,0.5727785239432268,0.3899857810328339,0.5056359901736288,0.3672615987948464,0.5160037293810893,0.5440017947231032,0.34019547433122715,0.5136285168966752,0.569485106186269,0.46342889412530536,0.5184227192036159,0.5042884345115405,0.4707321896877857,0.43380572943927403,0.5184334513479751,0.4694472691730391,0.4743312370458091,0.5510725623267111,0.5554051902326993,0.3494748702026033,0.5582153376785128,0.3757053575394811,0.48327035620566894,0.4493403256409787,0.4423931700558779,0.4760213207436279,0.4784459415870693,0.375123190387204,0.4540698635550244,0.4288607972722674,0.5403666110850552,0.5639862144863753,0.4216963793976425,0.42628546975040366,0.4629108568660339,0.42211759957654604],"value_per_10_000_usd":[166.8953408475774,137.23895770502426,290.784705046461,36.58062320997027,630.145743144594,171.53240877365846,94.78598542512495,103.51224047819852,293.2963173037368,159.48362083023463,64.66613698073215,107.62204805188549,209.59237316327352,60.60886613067615,84.59370045012858,97.19503981665417,196.57335426760912,83.52768286926577,185.8646031387116,199.27101770438762,52.34760329879051,87.09392927644177,453.6369894552924,165.46782946968275,233.66259545964868,379.19444911224446,349.6087402534667,77.48783990971087,144.13914157445276,34.95805909901089,252.6678286174523,182.6582551873508,65.86050891581408,135.16739112118884,75.82122483505859,86.44183138500367,122.26208513281057,47.677284118523126,103.38468717922649,153.9023387421359,100.86194115037334,90.95751205269322,99.46664295493561,171.72962304158267,73.02924503119382,133.64143271242523,49.28745475332197,67.89583958807621,79.88003909712478,220.35717997743131,64.90269735650544,36.405151331728106,106.23475801830863,78.25649645474851,90.00597196844345,249.85347988748956,51.90096512630483,375.57972670556103,110.58914092955497,58.461594806209675,208.04926010170874,68.17469841901944,122.42743666559778,171.33367532814862,315.8241194681279,101.69213325819001,81.66959551696127,143.60871336301744,142.87071924325227,78.78781550111391,291.5331545089551,94.96315072041993,193.70069301094767,63.905096709810365,61.23266023391734,199.77428521863885,115.2567892546139,64.36273520905026,136.98234466123347,154.3838937336917,120.0709170678554,213.62212705600984,56.735147439320244,134.12668928494912,95.55941770245296,68.53517817216336,192.3471688705324,101.1482664967341,56.83492792878426,312.4886302909457,137.68057994992927,89.60710815486925,42.16641604273149,100.55991627772353,266.4013900705228,71.26350249881042,88.63072095648835,96.50560947796302,114.54550290562028,126.74432464669806,72.66785598890884,136.66255828950042,93.48806537139825,106.98097013795986,187.88070220640267,68.39897389519457,126.39516689451841,106.19985173892036,74.62481385412815,53.64648451047798,52.658511369019216,233.84102155622216,254.9527918622168,109.97012205621992,49.0412292397705,65.9907808590528,165.46515567758905,274.4485842393977,78.25613223674334,63.429156802686066,47.56666683785184,193.47774081449887,49.292206193778966,57.24421380698751,115.19824236484413,76.33291450013996,61.549002466118274,64.00155921083852,41.715512934080685,83.62322231657623,58.44872625300014,114.02258999825396,203.24154473065298,125.35266343446378,52.10175967388197,289.29228788525114,127.81433703201594,83.66648902739341,253.79566089817388,90.74760258566663,107.0949372812345,79.87698629956873,101.7459857295038,67.53659355538115,85.17971186891802,130.43700117225347,115.48552361614304,178.12974251854652,78.43383935576186,407.4048704469246,271.3495522949588,69.4520692577016,74.71192449308246,65.69716836133794,70.54923582438995,65.09590918443544,255.85555738182205,199.4683301535615,39.38306792308177,143.98434608773513,83.35278326186405,135.91655821950212,49.19971430436687,80.2188015473797,70.06793510649273,69.38443758960945,32.380221924162186,70.75220991702162,57.85076761483225,109.92457470720424,173.63448579964285,70.18811476985941,85.01311721968327,212.3584860419592,45.62742113001356,62.11230615900421,123.4133924182278,78.77910661010087,62.72608789698409,82.42147840321826,182.51732912324272,212.35416581473433,63.11353778299549,106.91222127077805,32.759495071279474,116.81745245515229,69.8475202421547,74.08283183386503,89.11456143783636,73.81708681495181,87.95254540101054,267.3843851885437,266.1239498312631,80.00530855479413,51.91279874533432,65.21964738550571,92.9344442513116,141.2060959706607,64.35813012726985,65.10041746676256,220.7575666139765,80.39175282222263,63.513047336250395,588.6618220848704,60.67703214993313,138.9880871539829,71.31015159436296,188.44332354436446,219.89968548525994,37.160687791414254,133.5827281648986,229.21010379291897,54.44630189805106,45.40304485062586,100.00627849937794,104.04659707966535,82.63677668650574,74.34534139116546,129.38968511923866,53.18317891435332,175.2628984752288,91.68447830434339,170.25461520304523,152.2996015927179,83.52749519629941,84.03414055496134,74.90677224449935,68.51968991926204,131.407279247255,66.56123050408921,74.62101983403065,182.3556104161184,82.1005529065316,115.468130382121,44.57546279012131,140.0799253138306,199.275324319894,224.08702821165426,116.36288664896033,108.32564205695677,139.26216608942437,78.97698924225087,61.555686707766924,49.365677134467816,70.40908181903603,45.83222195971795,73.12923823004135,124.56216076510444,111.22607526429613,78.55761673986517,72.20300312176641,235.94394632638122,59.460392889059484,149.81289439384835,56.7447023002162,136.59560284652264,62.325842841542624,116.17420579030944,191.22929462938694,175.93093000445526,200.75001090185754,75.95096527800253,66.79894393137458,182.6949212817613,128.49816617236488,112.2960850000771,59.96960149842516,120.30222515745824,78.62503889285341,47.936676658961055,41.94611000954106,154.34538094636756,91.41950363006818,170.6377833971508,48.50954230679168,55.742560448763626,151.0377184071966,163.89157650716652,112.12307677585191,353.1434195606361,171.22614395100655,70.18650438636689,249.9421358555162,102.49526447853658,129.39607196764055,35.689237446423796,511.4099118046343,48.512181932763596,88.86270144685578,291.1130615296768,125.73090751394864,87.62472005876008,99.75406317199148,78.90805986121504,146.69581856705253,181.5872033301347,84.01454398803034,172.4677283647784,98.55717178550375,97.88316504794413,221.802033937955,42.90281183432031,83.02692102466919,54.05882486239311,94.72611677601682,54.21505790229627,91.41205336955773,135.22867133959988,451.3139895654648,104.4004293100707,69.31070579079186,135.43336182739756,68.87977676752014,46.674193753291625,186.38448196584798,155.93133270399287,79.46450986111286,91.84856655005844,121.2795587141116,102.86257466107078,59.55574466166604,84.90007460194923,95.95108963035084,125.55525601285834,160.52648145812267,196.3777385199258,425.0974591732602,73.18049894936647,96.50574955593797,119.99974451208959,74.50720171624722,74.06431556288011,176.97746236316434,149.07149525712927,196.07021417795337,176.75221652728183,159.0255208680859,100.35633919904038,51.88759948218442,196.20570817306753,267.12857361694876,91.3672161497658,88.98689442224737,84.97113905235278,84.44389879011788,104.24312307210948,52.356725729285095,81.30651715186556,127.75305215922009,158.85400991351517,265.45024931405857,127.8238965145091,93.93855109358284,237.53073887105367,207.02382512718017,107.07387756876857,87.96607680444733,134.27453779980644,69.0410940108897,225.06755053492287,94.27147720285895,57.19169090305062,31.18856552388974,175.90274453874693,49.62720078635988,322.5285261579544,97.19895957289931,259.55036489650183,126.54364041342527,57.96776214597229,306.58041244444934,58.791596765584075,233.32331698133186,48.78327317833979,85.74712622765043,106.58913366542816,51.34901597020192,477.1772593152408,337.8536751289125,76.94741219707767,275.9114984261445,93.28115367355853,78.30303882577769,68.70737511597403,206.59266219818798,33.51686213741136,80.18128561404966,190.93176508956458,266.24893600734134,89.51053752480627,129.10135546862054,88.79446489084806,116.45511686787582,93.62032232694952,193.86093906696922,79.5230030858156,112.94533836870662,228.72087590026078,268.6251714313763,80.67660498416345,84.39592569368617,55.801931739417824,87.4866929513827,358.8953516971471,30.470859057189937,267.51500464093715,62.47264996514257,111.7248414079207,131.81182852466927,40.36125840966226,95.91484508984728,90.06934624309662,60.97621413346144,40.96787089677665,50.31591728983785,56.01002583321097,205.54620844057754,86.15346677388641,132.033482227211,49.945557868029006,86.13229881978177,63.81352356041735,168.16810703142778,120.68974516168744,106.202656784511,97.52792766874745,243.97628078451984,634.565069933789,78.75542627683356,62.99934147596623,255.12697584344994,107.14838701615878,106.43529322688208,64.07055591152964,212.175286433552,70.87102364495533,29.886007506987188,112.89886059636534,197.3481430092433,345.96570399989537,52.764874634661375,77.23887011801439,164.222654385214,107.56802924613507,112.40074843263763,302.5514698215479,64.18142599198016,54.07114578499075,82.06060730044,71.69993494177095,167.05221341488573,104.01788130888917,447.50377210694114,197.15602539123023,175.04841593410566,128.31648825164675,86.73884553909231,564.3384947788263,84.32570187809155,63.593702334963766,82.55128384846695,55.13006278951327,42.76596949207219,43.11413140817354,76.55515973102706,69.98128625645882,103.98626210829762,122.01752219386981,68.97518064399152,40.407513145877004,342.5887168978491,40.03599985911944,84.68104538394819,109.49570675187864,55.17846998490428,44.4151685668549,86.52217811507715,77.5611179733751,276.81451986137057,293.9341361794415,61.350817094735966,60.01636233784829,53.81482044527815,69.73579647621338,135.61596690051175,141.77996071257937,188.34553406235545,257.8137319814636,101.45053687849092,109.31244538851023,71.38511803704311,140.3440913356309,126.96573867181343,226.8136422307721,113.51535678242482,49.91870090377491,161.78632980728207,71.799597855904,67.62101553329175,88.61989625153328,125.05253980668105,79.47293550452984,97.77168315095324,109.00839255339255,64.8970993782952,93.70162191434879,106.01645897381165,120.41222376306158,158.56966641793363,150.45466107556615,41.81431395366064,72.44714954166045,193.0188737657584,44.90264537567682,176.58911529658837,119.35167990652894,76.01790239812378,85.72980136170862,73.19048070869945,68.3025880818012,142.87768410501988,53.66811682385043,44.04131931959807,60.91878636734599,68.36802373058354,111.94257438534781,53.23905614346928,110.67752392916505,72.65766861167234,58.55039372318521,114.49256769905975,59.693821199184306,90.18588772791674,341.3825488080674,125.59820851095479,106.83102885130302,117.04618093126393,188.0793223950016,87.27861581183646,39.253584719281534,41.49248073162484,118.78381913211572,96.06902163887055,114.62897024174445,117.45401369630156,74.00496998098053,125.39905461363496,60.21735132622577,72.15766993204788,415.2123887896415,122.72045158417995,49.50954945606243,418.80926454093185,136.26524027300277,70.83488461389655,51.32108059693754,76.07431930338149,86.83157333769985,320.36513886007776,156.3248604711447,101.60297155830747,218.95528450722537,79.38842761421527,52.848454694945836,62.4670980389055,238.23048222882437,302.0210907786995,400.16263075760884,221.2436228401997,73.76638684075105,71.40337390653815,92.42812784450244,86.90638964573449,128.0203617975761,245.75645197191434,120.9250733239205,92.82070529981759,271.5954656286987,58.06376884276867,65.10743985928119,110.46044124735009,87.96875816732046,106.40346972644691,98.49513601074477,115.45537276623999,62.31501392806151,90.51836690009296,130.02401702882392,114.74976042512175,85.09818337998934,146.14487328567006,86.17710865148179,191.6193207272724,184.7713250933969,38.61258098248144,50.10597206932692,103.12511087401803,330.1888947590358,100.26861593128265,95.92973472283454,171.5864495666095,41.001693387244465,182.96773903371792,156.087033154865,79.04424230867508,412.6796361218304,66.26590750277605,168.398335868197,53.15789990522545,116.21479956255126,117.73878789678132,107.92861535098692,47.77679113670219,463.4877392600379,76.65052864110955,77.16021487717676,98.29920020656097,139.78560740793088,68.17748161090176,140.67020323953727,216.04603934812752,137.71765937482485,61.062165341479265,154.43121576244002,99.44349014587456,234.39289143596116,177.89568578222196,46.16444681085509,316.0440215571225,66.15924860397153,76.01385795470715,78.4628677891993,93.53395482169198,107.54947065593574,226.30971204980267,46.150800918108864,46.731866287206046,77.26204042755079,520.606534572764,52.79442402875955,78.39473658304462,353.3946253372691,389.23493683909834,49.19835901805959,78.81588719099071,43.765369643958344,55.085003693324246,122.71007274361041,48.94641001409053,220.59743409385877,166.97263722220788,43.049847673565615,135.25872174886828,100.37314665563487,53.20461323849811,108.76894342189327,48.93968093519353,109.22949676382804,91.88381563454196,136.6751382835636,71.45421873264783,64.91490031365718,72.33866880904974,130.1570959567455,268.7465149275236,79.63775971829878,50.69524808684053,43.35859098021687,88.86218770153263,195.4421112745041,43.646403819435726,94.53131192749703,701.0324568428064,185.95536346910237,117.42730548844798,44.14828840416023,87.89827233365735,60.769352077625754,117.88463267921917,205.7268662710309,104.23637730009862,49.865325721132486,59.447286334695036,99.66246824068735,89.78817676699505,72.39634551919094,105.40744788169602,99.97048345647288,314.81541575889304,91.01034512752729,145.08877751960907,104.54172045107657,117.07166809881576,179.83782592004715,62.451366530409054,133.5193012460161,61.946946184963934,265.95763047720146,104.30017239624178,78.04315087286562,53.1502653487204,83.10167993445324,73.49112550105625,103.55844400437194,56.911354361186554,104.04814207525786,79.96210177344037,58.39800355852389,71.93816399382538,100.81204209008632,47.703616712361615,43.942963326737,179.3530023365897,57.68890085034228,66.27315461960849,154.283909701011,169.81994615077414,53.752008257634266,65.7506669295749,81.98449945892415,443.0616117191953,113.75346438027412,56.41402685313841,211.30212733221933,355.7007672710338,199.4292532964833,187.765686907229,235.3211275997894,86.1308490065966,53.617859620791556,242.55656279399966,43.23533857457503,75.07700268107051,89.68489080971734,87.86473546433224,52.18997478015467,152.38403243881692,149.72532529501362,409.2368937936192,53.99479682035193,147.68430530896103,140.21278958756434,104.37842509169472,74.13761507587917,135.7241965754334,277.7944119158373,37.39683978536671,76.84463241128252,66.02641304186056,306.9183110196112,48.46873036403549,82.91192101862585,84.40958380055409,64.0144067453769,74.51603205178938,202.27444460280768,153.07314883231993,102.12824558071505,124.29355191629936,220.48815600202911,101.69145464262469,71.86162551930377,50.42120384941198,82.33174951838275,129.89500833606164,79.35196353615109,228.1893814478226,125.13564243470671,108.76388344194034,102.26498054694439,66.18719541763099,280.9853467022731,147.88295118810558,130.09411982145224,130.656767371324,49.66698751175757,116.43009996684127,137.06307375571345,35.87700819368579,54.024867067412984,236.02953576088356,158.50295907277592,67.09360652169664,96.25696440688,75.46247313292022,51.03679880814728,245.49695905483563,84.59345361374838,177.9890330858763,52.449298294235405,74.31626771338807,190.076935659924,60.840704091309846,57.84959851454755,84.59267445117499,226.47108042928943,64.64934727426338,165.79607308188537,57.24863256883265,65.19758103262885,257.78751062123814,134.31142901274632,97.43126842934798,391.79284791850466,58.3394551762986,71.20992162665246,77.99975096043991,98.64207386295028,85.93718595550123,127.30113592433958,101.46900794387243,160.132930874282,51.39825256617197,121.07543876098674,152.15011055911762,171.7877315156216,127.11350894515154,113.61020923741799,74.77023002003925,92.26770133597188,141.36197531637018,86.15908603666573,61.578763898506914,122.12484450482539,83.44553956639454,71.87274223170718,59.752037000512544,27.196450502930528,153.59814635629243,136.64361067299467,72.58474051155851,122.08993543233319,75.0367533443948,63.32559591283963,106.3013640460677,87.5106390509526,103.03159091663485,193.20046999423496,136.40579904487515,76.93112285044387,224.61327473757632,137.6827369488934,95.43950894214204,58.65576231685835,88.06276455571602,45.71340044804367,75.80153050316684,65.70643263209189,132.64166253537266,60.78017244246263,75.74755566726665,185.6024082732792,75.59130518793616,286.9276487922355,88.36943108208074,101.72147357900599,47.52787420105677,49.472769680414046,120.80153485821234,43.804939120707544,52.10370684048913,104.98537767693394,178.67824486719212,84.81176728547662,49.04995853864061,68.31697598652458,153.57222369165171,64.40408891371263,37.144674598828075,67.2828660491884,308.5339344233665,172.48915614987922,176.1711586777027,39.680048674589464,52.28889415427039,45.0218057911645,252.80949504179935,79.68165771348274,111.31898967898468,205.61652029496713,31.573706761333238,198.6493912956611,88.08780578915481,43.43748564783675,69.88484412976918,182.84967183541536,147.9020179217713,40.307727237410724,80.4612106011557,87.47014513987838,145.22870223152927,151.3937437004381,113.24112109768909,104.36738443466268,66.97297608882789,149.52612188398038,55.85049278292993,66.10930058360323,73.85609679893066,45.820055897857934,141.29583766208992,244.96699558802936,258.1023070186115,104.51246728052278,64.04873919666669,47.020055405003355,58.25827041182584,708.9920272928742,65.50756881107695,124.08265873486546,245.0694043926858,98.33524004373622,25.919378715583495,232.58368477136412,100.57429527371225,101.22075367170149,143.33323197597963,197.0072645363823,229.21218460267497,29.012433149523584,87.83312787470572,54.20113739949588,88.23296173448014,66.6484014882527,87.78304170310389,67.12338717442925,133.71936268314792,168.56922273885445,182.5252612182182,51.141417815229026,72.60154566638589,105.91984135185196,173.8439775724298,56.04031723663424,114.60602842302602,53.79735689748479,79.14550801590339,73.59191988618468,119.51584379105967,94.26694762476768,84.61655388672285,125.35422784491463,114.02032189341733,50.57200337581655,45.86059396607268,249.38046227042807,64.70440196488285,178.7040176990556,150.90482668000112,91.26005099457755,90.67929908978562,78.7982482767379,156.89651654443054,98.96269059165199,258.0611468595781,50.219314279811385,121.65789462693493,140.5197177595448,55.37849079391541,31.809317671020434,132.22057869977766,161.182648349407,131.36905566896544,204.08114497571063,91.16856315053117,78.73229673636732,148.0422196600222,94.02753146703677,86.40643405530518,53.732644417320444,183.40062196907454,76.83336738166213,114.95210782936326,57.74735134328617,48.38399832395203,69.8128252418744,121.50960869545405,237.1137303050577,22.79105701070314,158.39623935529622,96.57158178758142,135.60206852608732,138.53167859308346,107.80267842107384,49.44422942248824,211.14537614720453,132.92787618592672,72.33423787942102,50.515645814608085,102.93534779955381,171.43014307382523,87.95193399961306,84.70202666308727,106.81843229368467,216.78685830647117,35.781856447019045,489.8078814432561,143.6777421651365,35.567393404403404,214.26287093439387,130.41124239784222,208.07654320906542,75.80069747688192,68.87861178310206,49.118951812323445,90.98992237783693,141.26162478105664,107.7665686810507,99.00756707074024,99.27521065259282,58.77718988665273,82.76242517036832,107.88632088127343,56.59242432426928,113.4814571789155,46.0121165037819,156.65014894299367,61.30716699924032,221.26976163768273,244.93069947789226,103.80556305492455,748.2823187918448,74.16408356295305,45.42891664064259,350.9896948861406,69.31515820158565,53.72334904083056,81.84223700736536,252.11533645041774,87.84761792090382,132.84243097293822,84.07873154472358,87.89867934666356,63.49533562461097,129.5324016120649,84.03340896502435,104.2519651309466,270.1563515545683,50.55654872206815,68.0163072140031,200.88950552199435,53.20592711330563,36.49909650463093,298.00643201685375,131.99340519167382,232.38506379067314,117.24609922138033,66.85662447647788,81.75051365684735,79.36688169934044,101.85276348346926,89.62869990806001,98.93335394945126,113.99007503046883,60.79102506665991,135.24699843345084,51.446947486646465,44.74167606676819,79.60140625224854,52.97425714917897,88.61573995283518,119.3423652381725,73.27741763439722,157.8325782895992,47.36671950507317,172.70231835705562,52.96442042582337,89.09567827222612,173.17558620197022,97.32905064218089,143.09475860827789,74.60889868534602,92.36126792167907,181.8150498874562,202.08475668248892,135.17894808071654,149.9032920996527,100.03871746487532,537.4620222232455,60.43112855355725,111.77187533274092,229.92459344464822,113.16742896187841,96.65187075582233,36.78039799874238,52.49205432804922,63.01344072152924,98.37280407786828,130.49828854472148,78.7987968612192,191.5180766061956,293.4025550250232,58.35160394886012,69.17278657805659,110.3765724785978,66.22478887551962,97.25438750619746,57.430355211393625,632.3599403647427,184.1836267290894,59.03223859014565,54.262454591868725,88.16875471438738,85.58438320138043,107.16945582920692,138.11996454939924,469.5030183897742,59.05706474034897,119.83432685095542,74.4249666492238,74.43830156989252,190.95864575458023,47.399488733823404,107.22815275534643,66.71295575915353,82.67141285901567,63.53962059212972,51.500327234916575,79.87609127710749,124.10410105336445,178.00175799020522,73.76811199319891,75.4888654360283,60.86791888778082,145.64048540595843,53.047951140711305,90.04581069809741,69.7592581900493,237.03000124598097,98.73022029135528,88.2226553547361,85.7611559071777,100.2171248684294,55.84903566396968,101.27489102175983,171.69105474139266,87.14891913769324,257.637720652936,299.04798735031716,54.15832999748572,357.23756105924065,52.27119430443491,96.6138822141424,77.50560474323765,119.73881181233803,400.4284394866673,69.13547991260074,91.81089561790787,153.55696202135283,82.32320635796083,65.36090769953404,82.16813135489302,165.35007027352364,190.06686622555506,57.88450160505378,132.65428792866854,129.4785828438184,124.03614465538047,49.0308658493672,194.89077127837172,294.5780209868917,229.93935230769404,104.455768493214,68.67332292492705,187.9256188213578,59.74289359615858,93.72910167932557,72.42323874262259,250.6290689846137,108.19989955251988,135.44282225627936,60.03526439832156,164.88847849616872,60.64175641715897,54.00475799451059,242.9142614066757,69.34235692074975,88.99396914079358,154.42436456542174,41.72963148044171,109.4176086542666,159.6701331426355,425.0907996967832,56.534595484404925,70.52630474644029,87.52659812683686,149.56636546194065,417.91885722265624,251.79803350867434,158.50977307952104,71.65331601090307,316.85271747184987,224.38995890009326,134.91030504087587,143.74512575220533,283.39791812852945,171.9722107954732,110.86748523579948,375.2996978112496,54.70386617338229,92.54488676610846,98.3538189488944,79.87477667284745,42.345218181101835,140.97445304161562,367.75727064754597,204.7001107397081,116.3437711175944,160.8989169047139,270.96392816980944,62.40459338578233,45.24508825965493,94.39702936012907,117.2181354912408,112.49614020456531,177.29436676791116,272.94249860921406,140.44014998443157,302.2205562662205,126.06119992183275,162.23983612038958,491.5217618983681,110.71196760903084,129.83348438046792,74.41692522160058,214.39190111061515,138.68334575724228,87.36935890420938,113.6840943581131,67.39013620081774,35.386910405929996,39.65474417381983,44.007745470544954,134.6846462739193,110.1205356704475,363.49056013779966,120.19912645431252,66.10978628199845,177.69316666592914,97.05662795613071,82.32670500013401,120.82609101283938,143.8108578096019,48.85000063139251,111.35320719712215,216.08286912514185,136.07092591290703,129.89604166570237,140.09330525821392,119.20713160588454,345.6418636323789,123.04597668620498,192.55538125730862,95.59169666017915,64.40804754648966,56.06862219081701,37.85326184945391,251.39237522234728,116.08507730063283,173.92003135286967,44.25922292446137,413.25072016170645,134.99791092359135,60.91124953566885,282.53641824062913,73.98865504471144,118.40020998400377,123.16996889168682,113.45520708054143,53.15621336059777,78.78640608040388,733.0419763979003,76.5457195939999,244.23896022868522,430.22188258634674,180.18498164294377,49.934310832507265,112.60017961099923,161.23848547611945,137.1146892732154,44.26603969957446,119.98738728315274,60.456522821998924,125.0771471646487,79.37455721186284,56.4275665746594,101.9057347383163,195.69402404695205,260.7891969206435,63.04839706468443,52.48503376211132,60.51475301625918,83.24734526614884,57.59911294674049,78.30035381291046,48.06882248652097,106.90045205590341,60.57445732933112,53.80031690248494,93.46633142674047,148.9089372664335,51.061776954627796,49.96397012345632,63.81889363307609,139.90150644734157,145.2017159510585,93.60343436735813,127.67874469727431,100.77742471020959,140.54255350653557,58.04456869924408,77.63144278519957,93.73795569952323,185.62089713923285,75.23193570292918,164.028576851212,92.69148290251553,60.204808139047636,139.65073072194878,191.99430378887536,152.21227242390003,193.17958675155023,94.17732899188073,52.00581494624755,139.38334996021544,66.61793400839292,152.7949961802192,66.83091682848894,176.71584597711058,46.88220556581441,144.3927186748166,58.936066484948334,58.86249708581521,125.43419348486553,149.6521138970026,90.61255311768703,65.14570958155565,90.09460800050087,81.26803768602441,144.17221313609025,369.80757981410153,102.98242610081284,48.19972102852637,218.42395038177304,235.08265569310979,83.73334003310377,43.34885323249862,146.17931778065875,109.59873305540086,217.3359545797684,38.244792802649144,113.1864055293119,198.95287912574895,111.45122126082282,268.82446414261193,39.41225388611155,33.25154644385804,85.25033006771126,51.589343918903324,115.28425192266806,60.697762235949675,60.918799189084694,63.88264200319993,64.0772350066261,105.01085625923926,197.29703104640123,39.30157865826712,102.74775459575312,52.44862614666715,156.28054466516073,122.9796777790658,94.45794252494942,44.992789023609156,170.8450073091487,126.59056592068016,114.23129865344974,124.26487102597441,100.35276242558872,271.9752475836424,93.94037819150067,256.35625796748735,59.65028112494616,131.9701288038185,143.8456410660059,129.85658292317015,59.33601212785832,227.2888357848451,82.16437918817289,308.15822569987745,84.87498076501112,44.67460236104221,56.66137094804499,231.72537622674673,255.10705153266622,87.18823992135971,59.13111210650038,171.24521538127863,109.62589557805808,118.65462088590257,372.67593058939553,274.1856136136425,81.54644604469719,299.9064288997048,212.03139081711282,121.01063823540406,79.45858472771299,99.5924480187306,279.024493433889,134.90414808572174,39.762719136055836,78.92738437479403,46.20287605788546,104.40294608147852,78.08497791504784,63.44030852093931,90.38029600037574,41.232540330794826,58.888015166777635,127.78223708432432,83.96224417129623,58.09080074117312,115.48867603687233,109.97474747985893,101.31040917300955,260.2428195671994,338.55759661538053,148.39215724803583,186.89243013112335,134.82183295556166,96.17229602593521,80.26338763329338,84.43199717093883,106.50095216617527,71.07937745765904,246.3148919975787,160.63685646334824,97.34510747007451,99.05973532469132,183.95422940261886,256.0319008988157,227.836299995687,62.78913706896815,73.45311300935579,58.1218891264805,170.4996636564641,255.94922616762,233.87089413677813,95.12712714468054,53.73780492722345,125.2726789656591,253.99169209749644,70.51746350853473,68.90241569217439,60.39532882181906,151.77883438798446,105.90031625475287,60.985836779356525,79.0105511499323,51.73448009583596,90.11636452405142,125.18293995668864,55.543874679686546,246.91419336790753,144.83344628879317,82.19983116093663,154.77082810163822,125.24281675519661,318.44233851152006,109.9009835535903,267.10161316929447,224.1291463299888,93.10420015683451,110.72799111155955,84.93422173498963,183.72483627038503,101.80344445001822,187.13377517143246,104.92766825519436,100.72919208683196,154.6202854298466,70.91137485428409,152.46189045069102,62.87379101325239,77.47421785062222,109.09927296979306,36.048436058152724,27.424554962564468,191.102155099625,69.99596424449156,298.68961734228714,243.5477143882051,101.01759312939788,90.40952465618719,299.72140965815527,62.33287263336595,137.41432808836728,94.80638944891825,54.993048499603866,106.37773779787749,126.82459506677792,55.00687698399475,72.16274382737646,81.56878032845194,29.331317113934933,64.06666486627955,66.28336485566368,124.03487941088302,105.29245738023056,60.46056528467257,80.59037994550236,55.92778773672098,67.26198929475513,43.972677839419745,48.33843563187781,49.4845354220978,53.67989061852295,94.97256489150817,37.28176262580193,49.52550511385897,92.06567441093577,72.52433125683842,83.92686170183329,219.6719794668461,121.04302768023503,186.90186089853498,167.959470049629,152.56696551984692,43.45730587738711,148.6397899690115,98.68401440262312,243.7972248743543,191.8403736424853,290.37814559933304,68.46353715040007,173.6157138131082,224.74953887817244,79.2665051181355,93.00794938649159,242.02317240731443,70.9635262749772,43.28867010513179,99.13674524241434,94.47632448441237,689.0962199479594,76.22429053682994,45.23262788502444,163.34931576241934,231.60382982787036,45.50604954604045,137.6539499748158,121.29741438522372,123.70782785442397,147.8678747634399,222.5983695371951,50.23345877020745,158.47733695204053,66.57172707434029,68.60570041334105,65.80228665260996,118.3945099246804,107.3144373454264,98.54255140832524,74.43398501791111,56.98010418311194,149.4196347407616,68.14850174765364,114.6237017704646,90.94541569665614,233.42072790918493,74.88155362526294,150.51056692714883,104.1691788438064,106.31916311345842,168.1144575960636,55.55795037533267,83.21100540841229,96.35279338562763,277.49738528555673,119.80328464011008,179.0182720233077,70.40059430508106,59.40577059229379,77.28232385067726,89.66082227263497,180.56260981751234,65.71903809716733,32.96352027154285,120.45072433323475,140.72511965988613,96.03504757919674,75.74456751543826,206.32663214013107,41.81517961710997,82.11102460248077,116.61433452713314,83.86072866038407,55.58561276931437,229.2805892582012,129.99745239667106,68.515878913379,108.94246854015827,70.77444568014647,42.95863635742372,57.873631219529756,79.0181017865053,80.11077465645107,53.3447794660972,637.2369178435397,57.93024127656419,124.1218227828036,82.45234253010263,129.44512582430443,221.76418520616846,77.1861941942113,337.1829165515156,69.26754752284226,86.45854988208625,90.32640788510453,263.48984503613735,112.3063810821348,66.17469154291214,59.838146084476364,77.57465999013145,62.656371242975396,111.62188938735034,92.26329888049621,221.47671073888645,292.76820219772833,219.32294449407559,91.87921054133362,70.69563287975714,51.871020400502196,57.25104289780032,136.15891144233237,86.56037941968971,143.2810912758682,84.49718727873038,46.22726346887542,60.83310416028437,51.54942086742122,78.81526370645823,59.70033790380799,58.49681409725462,170.74545275841683,56.71274771831467,76.68036431414154,80.2999105488905,63.353796042258665,130.11324029031286,94.89393249225847,63.24791934558982,64.02755922686416,46.946371271498215,116.85039024556744,174.94765148826104,40.75921245655978,101.19979099075152,95.35731155760318,127.02285235258668,79.5433673058418,56.35503695144493,51.61530306802753,264.54675626639084,110.56609451771564,38.24306412144502,81.0910242038048,210.43478620494187,60.11037386337942,191.51402835072093,54.062434564653785,125.52720381403898,146.47511678471005,114.39422409270514,113.63965405688991,96.19900232797627,247.17077432946905,62.90241853977024,106.4388143846496,196.8678487437739,77.94759136687988,326.08792555016936,110.30043921614238,263.75061342140935,147.83799188368283,65.73482989256331,330.39708152171136,38.913202562528035,145.0998278062347,357.89299767524574,145.76354254093988,110.67372615277743,91.18478731728118,71.11025055782939,183.43232499474254,83.98748446439612,43.52660207770179,52.99823266112214,108.11447359399118,67.47427339702386,40.776793095829426,250.03849918781478,61.63829061192422,218.63765586686614,72.88654214882504,225.83112701850808,82.27439531890963,85.92073424985335,56.73975096524286,193.0648939930082,213.240560722527,54.5060876056463,49.368376915625326,121.88470154119794,281.2907389059606,66.53766546181586,90.88101339423687,222.0733195284336,65.10692086119624,107.28338090197047,211.7727986486001,127.5647413123109,385.5687979556203,156.09447841248007,58.46026983796526,156.44250169813216,103.54513604246583,52.86367493164246,91.64141484616148,80.45058465738877,41.567620358289126,125.46967497613868,106.81043098267936,200.38216214130526,96.789830635302,50.66987413983159,94.87237769965765,87.0134047776531,154.87016928436287,208.56511891985505,84.59823664549992,252.0656720654139,152.71496200043129,143.7417378667319,79.9381372906773,255.34415073417546,62.1849472900377,121.04293532189696,53.520790027527546,104.16545325622583,90.97728610769005,100.64529439429933,75.62767356331786,66.6717196411324,118.94232987327285,71.46359085256483,43.25506648730088,107.00177396610749,131.56694295463984,133.31123319470967,145.8147267547326,46.91738368257549,204.23126250513758,324.3130171129213,204.95198258131663,94.73546652720586,77.72843110661059,50.78114529072416,219.0858377733991,69.23095674869838,101.40922109187518,480.2283743450721,342.2754460787196,349.88341601890176,215.006303232147,53.57167557248862,411.49510279415324,109.43533680396018,91.62654612755284,221.17547462651035,93.27210144306822,69.88282776542174,203.0859490627289,50.69246013838358,116.54559067302009,86.47376618210163,136.7907710319773,420.83944683288917,72.36328380019877,82.13892288634783,80.74526722713912,37.77004303144048,108.81278156622754,123.86287609717947,54.27005308435168,132.76662503974214,167.50053345356045,146.50051606954156,173.79121403184016,47.74698091545804,99.38207982690336,210.5272647389469,416.63788459210826,304.54411295077637,67.48161369113771,51.865883768851816,61.20251412905826,52.001440927060024,166.85182389466894,52.36593877037912,143.6070611859723,78.04014508227658,156.27665571896102,54.43889454752698,43.56436504037427,187.32863546613797,169.55133516205194,68.30755066159173,78.51497555783571,116.25222887585528,154.04875529872155,43.66188143361391,74.10885900015928,62.78686634451112,69.48117368503638,113.73713357856131,62.286974071706304,115.63899872500667,70.59606782160974,84.36935452885939,125.84352098568897,81.30803025604679,70.4443057693252,111.14387921665467,320.9184913536838,93.0318273609801,157.83432371692544,280.70374373157057,343.2205418953178,43.36175099560041,43.95224088424006,270.25989225266835,85.22593601931285,51.18699672624346,100.92298485091841,123.47338568972204,133.54759160110274,217.6576549437029,158.01809921671514,98.27457607685717,279.03117845379893,67.93928338313194,34.48419377760227,69.27388621924636,263.4852082963911,159.02318561930542,59.89066561023395,113.31354018740875,89.29478705704126,67.75030837523273,91.22740029805183,149.47758367788475,127.22343109287226,205.15215012729715,560.771461386659,186.092452581893,60.359503713186875,91.99640625882107,110.74557790954448,138.40700194654252,80.13800328639846,69.75183139066755,92.4789303742953,128.18691142716767,44.47417161278782,102.07960272916146,239.22035292141797,252.93169624121103,287.433911206009,268.38737496818305,63.30695356388438,112.86823696767986,78.29070389079064,109.39671344716038,272.77868630715477,137.1988392535801,195.1420759727047,72.2011106958527,72.9043718912427,188.48620660577342,33.96036776121312,200.52277078038628,236.05784749805503,169.1002528178078,95.61616985608799,152.07151799146243,99.52434147821316,173.4136411091661,100.01132282779825,96.6924464340592,83.62851888925883,91.61758696990573,247.52228797927347,87.19413264280598,78.42116630334054,56.41810582458136,77.96062482397178,204.3912897949702,148.04639314539008,55.174495096602854,66.51230036809541,64.50771491130008,148.93799424909503,88.26373678136609,81.7085896024859,65.46644869816924,141.8798327328194,128.1006777127925,90.34314126463156,69.84021910612772,108.34720205957225,71.35140074773442,85.926011926548,76.22959131124558,57.65843021211997,71.78217374898277,67.89818293390509,159.84526143730312,191.6369302887369,475.3213759705538,168.19145214294159,138.48662016227107,71.60806614145862,215.49703864255852,25.649148329670904,116.6386369956086,66.15953952228452,106.10782068490606,65.25295860096126,144.58036075031248,149.68048223046742,53.95019090480179,143.29183028527146,67.30233130532285,65.15213317241572,155.45439118435016,311.6274101670925,81.81077691434493,155.3794909790379,35.551039316029964,155.47881044814866,97.10152794015586,52.5602246757374,109.18197770692467,63.16305775765378,77.70453918567425,69.42091761978027,88.01588115854939,186.0926966481726,148.0316170423251,136.7411637534483,58.20442884936404,77.07282897746613,88.38242862467074,99.15464868798999,262.10599771603194,306.43365196389556,147.93411551946323,64.45291128835059,35.734399045314404,101.62794341189539,102.89288027522124,190.37212602143498,260.154328687924,52.47666188987862,65.45128568130252,238.826619388997,234.76946540468418,81.77221989133002,530.8496131937171,70.56514873779321,95.51886728366583,108.77658362633356,217.77829062558786,46.53654127173456,41.78883777992182,58.25388217441223,153.0947047730872,106.60856713959413,71.13304154513901,57.74980061365434,96.96932013837021,331.6117617920268,78.28301364028202,149.47264921704453,129.92115547514268,102.16259180653479,150.81352481317091,211.3282379846516,66.32811357969426,170.83858795263535,131.05234369743968,61.227609407332515,159.80073725621983,201.81453825719385,42.72029814156145,74.26705230604078,81.64382936138098,161.8510054136243,235.4973486774537,86.52430643747246,220.69635031882882,61.885632662392275,76.30194722730619,105.6245937570553,61.624386592281866,81.51034701823099,58.12320952621829,165.83859713022326,124.30233388201766,55.053693593160574,94.00061879808116,106.87646122547912,245.2163151077024,100.07915251250836,65.24520871060383,68.070465183995,97.07092292211172,132.60748652481539,188.46842870694192,165.90250973630006,68.46114868265265,90.27305426536792,235.70198927859443,82.69628530849552,26.677919700459032,113.19302408173417,71.85357877328991,58.41920606858571,79.29297642942258,69.93713339593715,98.47591464513215,241.1192784928738,340.7725010838024,54.591153501321415,137.5798269623922,164.59753365936277,72.14237106638913,51.28511079414842,64.86011963834203,85.66235914566124,238.11537883461958,56.62816461784493,72.99421931537732,83.23564409390097,71.17638315402777,78.05152034961206,88.21793206344864,115.35401078781557,86.84513961079276,123.7550404274325,307.36225335539945,472.8644154328037,109.54721186838663,77.14782432711517,86.98879037054337,77.26087557212539,510.82506292930566,33.860392226571165,130.17279079533205,171.99813224392616,83.3616675424528,145.89305891778142,131.56936202120795,118.2238338345186,51.465338696645595,44.545501076220994,75.28845148892403,52.904775964900246,71.50405768612315,88.36467395636198,525.3313376748986,184.4715898080464,112.09191823137628,73.35204456528,48.84613809223226,238.42475723237203,252.1300277945821,101.8836371942068,40.44226280021283,135.43072773546206,134.84827985422962,57.4194814242999,67.94374100024748,127.48469075427747,78.23091218862707,69.38675106208389,175.80206010853078,144.6759455506823,92.91853583693607,69.30443883167264,121.50090648058791,167.6205181880978,78.01135789319306,48.911895598018745,57.994341463322584,104.96346135349684,110.32839539572792,108.55470228595007,65.27760319482297,73.39144861087239,257.5687321794209,54.60280699832222,56.82923934374699,83.75600363656817,233.25607009156158,168.1036415806166,69.97236941421093,114.6397960953689,183.90191227062937,138.9601593457364,51.55713120012575,136.83848363737982,95.15423878284714,155.58441632885302,232.80606191424835,220.09948853057926,315.27263742093334,154.6392704606229,76.84206700989809,212.51116622332654,47.12578345830571,53.081394839559046,43.49683061496522,365.4802534149527,108.59176033029469,93.37135982293435,319.08071905560445,95.46962408896673,60.473268854141374,222.3045724399944,552.3822496938576,133.97026613432374,86.27079221107209,53.04134088295375,110.54565627943302,67.15569770466865,137.81275962605983,103.16331769879145,86.26941705280069,57.461517697570784,146.74758558436585,250.87307528599345,93.1621850027383,126.81476031258815,54.05163710203311,109.328443915683,130.08088391268845,106.39728530072104,47.163381672597794,54.04210161442389,70.11841273880437,134.1592499503188,202.59665519438354,87.83777974567909,197.02827850936333,36.99170010867018,113.03242080842492,74.35655044663744,32.01733259024948,74.64253682897723,69.28142091828794,76.57090061731412,76.27589197070199,120.3229603406645,48.21173515216611,209.37398696936464,75.89495719701115,49.142181381900954,183.10446883437953,160.0849077735904,171.76174335623904,66.72332426385529,86.8876500349086,105.01741872545962,50.54656490460364,120.08632956361595,81.38283266583105,90.1822777951858,59.405547232156785,116.69476057022035,54.729158352064346,154.86670785042884,281.19990596962333,64.10926318650584,92.05043877752043,207.6189707456384,74.60235842593994,143.4897740361966,506.4818517948925,81.955412614613,68.69786057842877,37.11510364797338,74.5380777570858,108.55609698612595,113.44114193844956,115.9253241800855,66.39121186032125,63.60917612774048,57.43976949453883,326.44274867643685,88.00674306819059,69.68092337418715,96.1242087032342,103.37343048966463,172.42390902966613,194.42468686977855,220.32785727340712,42.78682128367181,51.163335455237885,159.86095598033415,34.276648550408254,211.74157646846137,214.80476023791093,135.67813477532147,53.90749209601432,91.48593450617774,209.92204354638093,126.41034486438045,112.77320031590291,235.47489675915065,95.77066889435264,683.501743269188,70.60699096613666,121.9567759098809,45.35553119590822,51.7233037944433,184.20450783653936,165.21802968572413,173.73730797693645,95.18298300661957,47.54390247563721,83.2873629051281,76.72933782867594,140.1693561130066,136.86955420027488,138.69263087051127,89.10286845794069,106.84975997400437,131.03654192143728,177.11331358492478,114.57350136451473,127.19158792550726,140.40208091176495,95.6644296820277,66.78706078687523,46.18654905115646,86.96081479131557,255.97612748594526,57.17453003606514,102.32832030897332,61.24379995731985,67.93892861922549,67.36732831934954,182.2987349471833,70.33747072556734,69.06198930216429,224.57878245204702,56.158262767726676,222.03958350958948,48.70470163355636,76.6472995007888,56.75155446908981,244.52884950226544,170.5981208954028,58.913244263078035,71.5124638740419,30.914233038810355,82.3346896945626,158.54223269822944,112.83104275522582,51.75808235193614,53.61813750633475,252.66180125466028,88.2598747920715,212.44659633407466,106.36579045245647,73.60262793669492,570.4870419425839,116.78921149120896,106.43361265095481,34.55901437703955,57.31741382393084,150.16914425169523,271.4605292639142,117.18504600271515,97.54551841798178,47.71100451359565,62.682288234116676,141.3132697129027,83.53726202098042,125.04889486937846,96.22442537489856,156.8083010104161,225.50748309530854,352.0323947119026,312.1469525897302,50.940477701305504,231.33459648974298,139.7888839796289,41.763490767210435,106.76767799682769,48.98705533676319,354.05218940871373,71.45211942517415,80.07692692481021,90.263283001788,103.68955103155191,67.1155270755309,100.98638407079639,158.98586447771865,206.60410740122953,302.8567047482052,352.24768038738057,70.6470444667612,82.38233821847614,346.47193584302937,253.45267498675287,73.3153859701421,86.02683540536553,74.64283754019509,38.87064105525054,55.02100517174208,202.9709159792929,259.3949092133233,143.80654491262248,252.84899145659952,162.03443372537873,88.75054063455285,107.00714742579991,62.530168289449314,230.6291252071469,119.0674582070284,57.26740121908478,208.52294479000258,368.05022654067795,81.95979548889233,356.65631474652287,78.0482038828972,41.490098773985025,104.0942477139269,122.06135532681256,86.15425327492095,73.08620164829529,82.61176192601219,131.12725351160546,55.22058154580837,270.2109365365281,201.91457692726064,104.62556553803135,84.1655880254392,149.30226467913258,95.25323056441405,135.71448473379806,81.84465906220638,304.42795168584666,64.36357310331303,157.25597615390575,229.54669553341975,112.27718604975345,67.82068553254688,56.209518062525724,69.81005210298818,165.01804364596785,298.27362484091816,289.160984006735,78.59908012576204,331.4403053507745,67.15776463699763,79.9409176351911,53.35002737267336,184.91353917447648,74.55910240853133,170.7636909902106,200.43686300163918,115.84539564868965,141.90639352790018,162.74661239383016,87.12496447657064,67.65415651390552,64.31679583244734,107.71608646631324,390.1951253743093,231.94078786289637,139.3268700184742,98.67075408089228,112.03103311064505,78.13067168047692,95.49199422384062,189.89307633571713,79.3647615771202,81.05815676732861,48.547477646738095,102.0918658893064,181.42528437780098,81.11424271027853,154.21452805685124,76.93554348343949,67.90363033770579,112.60643959210303,87.98809000181274,98.70386432161419,42.00811867275957,530.814139557765,336.2694511403472,79.27894735022329,52.70414430652751,52.49923462342783,123.94737017476136,161.2342554342547,97.23636027067074,124.4782827088657,129.0512205670728,120.44329698607328,117.66446104056399,116.70980892213322,233.14334117226898,110.571655725918,64.88286179353022,104.5594323814105,46.06235029272728,99.36779119586761,68.407997949691,299.29693383491036,44.63954721257407,121.43529733565529,86.75199945633699,51.00758687806303,118.34039511997022,133.01396534607346,255.02504248760812,127.78739512844885,68.71259072778126,94.00794076383193,110.62721486610515,88.216043368324,131.1809780091671,38.58480699479669,152.99053446145766,99.57502237495993,49.186023825125474,494.86073719613006,58.477090629503955,66.1685395866025,117.91778091400342,292.230988521732,134.53938987599793,102.43179963104079,117.36898406333829,73.32184987306044,65.45255311268038,166.41926714574282,76.94433887830519,97.1362802016938,408.3946235174726,86.75138513154323,46.68363901430596,77.28862985436282,50.430002774145294,79.36663294435192,150.37373616006184,208.69525959663997,193.39702727712756,94.33891026314089,103.04391969152293,137.46278047577476,94.10549064004363,169.18876680663146,78.525962650581,47.16024912063472,82.87715006505788,58.16122268288593,128.2437012821215,150.88593911368304,310.0759212406433,101.62314968257702,198.260664796522,43.73035130749064,63.012445898857955,108.21957533176156,111.89373163263657,145.89825576149713,625.3738002919805,304.2504408392956,152.75313989170104,72.192831794736,88.09986313171491,161.69362049092075,49.133885851615354,99.5472173115766,199.4323219624961,272.83427191077675,203.15000154429006,93.57533245618997,271.9994661216335,57.952934682493975,77.2339714530655,80.88429900904129,267.87603787244274,34.82903131796615,57.421301469599875,97.55797658884336,67.34058438669695,67.1603863339667,116.92077450853964,64.41349094522658,91.4267185080226,116.93379204536228,85.81360992339349,141.35657928979882,109.91517116170934,74.19595278856033,45.717989819196596,317.78411676118543,292.67446110355473,115.52932045677316,73.0324650618259,248.63830034064245,107.65665603820558,93.26261304756157,179.26033815583003,131.71499224822315,312.01971925186814,91.07733081580132,96.64565428918301,104.16028058083684,177.957025030084,53.726866849130715,51.98938952882455,81.77397054720673,79.31247942046424,170.4167742840414,74.32801760690259,77.39550442995727,107.76020194847459,39.86536724822152,333.5260366056377,40.595621579878774,85.65873567585041,193.318492511429,99.37206115036395,449.0534159777338,85.66912241895167,43.65695873796354,249.35925159739867,168.49056468643641,141.55908100368544,71.4851536808732,73.40762240128934,60.275175790787486,43.9583197047808,131.9347632460632,84.34586987341699,318.54686209249246,76.433498024342,149.0741422939399,103.24628215301625,300.4377462124186,170.26121513571172,92.9223120732775,124.18319260182896,84.28376965477634,84.35301872240953,108.07382363297106,71.62374339886405,198.05039545269963,123.50162585123341,92.42955478633306,274.24747008875215,94.0044132600679,36.37938313594173,124.7956284224798,141.6553301172273,141.08688987269124,56.875566903527826,258.83025620083345,60.81342022293441,102.87429604280615,142.66776432433028,94.71037651075348,64.25424682097928,81.62455888854109,135.1245680314458,739.9572578628415,283.7270826102605,28.06816646155813,297.87641683897874,147.7509991588825,57.76252547515837,157.6402593867584,112.84398920636718,58.796034360983064,235.59626769606058,123.30674253030337,98.65350978569467,38.68498755201376,50.86172865995093,118.84757267893761,52.90441051117619,109.14983090963665,253.1118340453055,75.48322973782491,188.4505985866544,33.59991337753925,91.17937754939804,214.24162002322197,87.39138831649039,45.97940503456689,90.18247514658557,123.12766033964141,243.95078023523615,127.43548912155387,426.89550350994784,65.26342936210015,183.75843901042577,56.60301327657577,50.5380330447624,52.62603925832746,193.3893445672424,115.50853902028946,78.34563803585718,152.6427549438721,173.57376286299308,189.12013548992488,337.5005419412944,51.12874378473711,74.93981436331025,216.54268276887396,251.50242175987933,98.6017490500242,117.45412353107059,122.53669802559874,278.4490572476955,49.71261841200352,52.02169715721269,201.75576526001808,124.01773976097981,171.57875498325114,170.1633137106388,106.23504187710452,48.684729116856055,52.157886797097106,121.87148842959911,221.73602118762636,112.28718161896606,225.99918435469763,56.542042840797784,93.66871725213822,89.42795454134176,30.584790947910133,62.15275248876808,400.98877297590644,47.06007048825813,59.652636191263255,58.19484877522482,154.80852658286875,96.31491997050922,109.53868850108407,112.96997554263147,233.99246253258684,110.67722016316027,71.92004132006042,164.97877982684008,96.13140869245572,122.13926836745104,797.7738746148294,166.33118564658577,285.14965957453336,169.25849554906125,53.187878115981775,105.87211046753394,43.256754226414785,250.01200607629184,122.86655925763117,60.64565529708192,129.3533975995145,148.68937018315714,77.6323847219727,92.80567497158256,152.9867317624315,173.2864866948585,73.6524426048623,44.45215102643726,159.40870241311586,215.67750724630187,52.07131759497842,322.11034194076717,66.53232533175138,93.09705334811949,255.8014689709995,206.86408072685717,123.02961331451097,65.85153165372863,243.10965344660724,101.09988010598009,105.53994690778575,36.375918284615615,73.58172070615127,63.23409759780401,251.80480150022248,33.87394958880522,95.33459326105122,38.557090419167565,53.39155873673366,156.58747416345986,64.49476534869142,197.68627755911277,80.39056437542594,61.57600974786459,68.85389491188896,74.39914764238489,88.61869360325979,192.1838237940731,55.45533964104444,64.56249428549418,129.86115461608136,77.39631105681045,102.8602587433429,79.22882254329721,78.13068284426463,79.05070648332814,132.08492025115697,51.26626537186386,51.68286507192063,128.6262664608933,131.90334432352955,253.49607865317353,62.37915462855335,90.56127686824291,113.46804664178732,155.81793866495542,80.01338746842548,160.23031311329134,129.0696366298838,123.4320813699744,255.67285803862882,85.4249231855375,58.32515246640899,66.17848591859993,115.8739023513057,483.41418032591326,95.35948066346428,128.34874121522714,143.73916895503731,92.25497830850098,176.37621357059203,394.78622207071305,146.1790109594696,68.83441750175717,88.98952463014581,358.59801459376644,222.0145669408426,81.70126399305536,62.102310522566654,71.99790577310056,81.43302557969336,165.88448898293177,47.48848519043895,107.91401096895845,57.94808761067818,165.36099105677962,68.07699697567436,186.67265210297114,139.34747895298014,191.96698946894406,112.15456884200935,55.31972747543662,215.95384225214912,168.254054986752,88.50085722779495,74.57709260110455,193.37720673296846,159.69203497657625,246.5922352303284,53.406671387799214,44.99845226761791,108.63095213098866,170.13322854709415,101.7018148493688,100.98942751513913,157.05011199812523,119.82128903774927,101.21793037572276,83.95082930334252,151.8520815423643,180.77141283323726,312.81538316915123,100.87932930347796,79.11642779651555,157.0661780974651,312.96250744161733,246.97693188258478,56.633815378341865,218.09019431706184,108.92546571682853,82.3283686395532,114.09445815926293,59.585405487886995,188.97512165060954,83.37414877637845,82.64593092208752,98.45056946746764,237.5184046294131,62.28446463269902,130.78167570560743,82.17279611858649,141.5572847115277,90.8322363210566,183.44966232452336,370.64001283960783,161.85977454360426,141.3773005812464,49.21208663669563,72.98193335456139,131.06534075395123,90.0914106307012,49.949776467131954,214.51281999365784,256.55489407322096,205.81904123477074,50.56871774495138,306.10119652760716,41.85951060204176,52.60824984274577,66.66542322620457,95.80794916917941,72.07206527318928,306.8405084277304,66.83316059907152,77.7447095361742,57.895965175348955,95.66607241445828,99.14139427033548,130.75346661190636,52.23088283092135,60.39578226294934,240.26499495069865,121.4302877797401,53.92058241455475,85.32942298896045,120.83219321020232,72.15035844791224,217.59337490540645,209.0602647184585,122.57064495462113,129.8233280899871,313.62122723345493,106.78428225556479,137.60584725566522,153.11716287258437,108.36452930278065,75.82111676988616,88.2103306597301,39.353867366063724,97.72060301114473,65.3232653967348,75.07574305320094,138.55357583454378,62.3473624117276,66.87126841398303,67.80262728661087,49.24752567715734,72.89749681720542,171.67451331092832,481.0133362293645,83.433285237929,56.32826411576177,155.6159373107732,83.72369664334697,81.51800825222513,84.17711647345023,136.27000897824584,87.73516094908251,113.79816476292659,227.56544337038775,85.36745749179889,52.31567136345149,109.57337368675155,56.00685109945695,98.24253917912878,49.28900157530462,61.40435416770866,83.54258220507823,136.57522728011702,34.875402172770826,185.7202514232742,63.91499238779086,58.58039686299364,109.29360815947356,87.98379601005344,45.02777061054714,111.27110146151531,96.76890533122891,99.2834945116501,138.0546630908459,58.83178870588306,110.51087400516421,62.95191676518467,98.05777650430896,278.90466457025474,128.70182086993083,91.82205912950756,51.35427616626304,100.68722629347812,93.5508211855989,108.42196679464779,367.4801685840615,203.9681249600525,57.11291282799507,78.88103373892817,85.64296426667109,29.180162010591946,101.13810465622107,99.67673095889323,59.77553118860101,114.87952711553883,76.6874013527111,72.69975417293254,47.387480116820555,88.29267918714876,129.39789072648054,145.77889277031636,66.1344096070272,75.97353385133908,108.26240955654794,105.75474197820873,95.04234763159913,176.48609120916444,178.62392153513906,82.3995404545645,99.31994065273021,235.18854789571577,154.60011065100323,58.570909244582715,55.856739826754215,31.859199306547172,95.96146213049582,35.040702403164715,99.53486855587789,57.324081368271464,411.7501451758738,140.97012317943444,62.28473195506682,104.387326033002,170.85857820464508,39.54282375516767,60.17511117194952,117.90422191173434,174.46217564021416,108.24621292712452,135.2442625698231,134.81430611646363,302.06206275414024,229.51518200549742,49.58013132208622,78.339615394346,45.606738639232816,161.14761813569856,50.715841185681704,466.96069513379905,65.69852527717677,35.437369650527366,208.8353579274822,103.17274022405088,231.91392436352893,84.55671855364169,129.72980490427904,51.710728868741484,1520.3267626270988,68.35457551432084,178.04969463394954,144.54182779677961,88.18363546130652,80.49010756105906,97.56806550573549,98.59926756330525,79.05037289076526,133.60477727317942,80.15347349135061,54.17932483629982,211.11775832036673,73.88513066119506,119.07083345986416,51.89152145002071,142.97547731483004,475.1234894405963,105.11791706342547,88.60826981204059,72.6318739524554,152.13615225860173,418.1651960012063],"multiples_of_cash":[9.960720775068845,4.172484946218124,7.68017665179268,3.0345743666806255,14.094479094935389,9.008382610378533,7.308649637569003,8.48664013571986,14.945906155413367,5.327713948294346,4.562349699623207,26.017984193602747,2.2983731710528432,4.4699499462551,7.305903059182154,1.9911898599911229,2.176562980939287,3.6648312118525435,2.670751719092699,7.261697131607422,3.0435967026311825,3.3859068313266745,3.131113029790145,1.8168036374397378,2.27264494957317,9.40541767493839,5.37175368630078,8.674860574092495,2.9126438042754628,4.4298965194263,5.6549659192614605,3.2366346830774555,2.7485907192046515,9.55142879455999,8.142782007477756,5.603762866678713,7.083414357629836,10.521510632463109,5.444514049331957,10.101522342493755,10.882543320340723,5.97888493459818,7.2166560677940375,3.5467393375655116,3.7689929191740097,6.059355971590045,6.819393857369167,9.6347971340755,6.479276235598796,5.574503944785883,7.326959446052785,7.843417291523386,6.372845507981161,5.088400013089329,6.674771297625812,4.820903125752568,2.940703969691138,2.2553248002881574,5.0780267972546875,14.199264391118666,7.24861568766001,3.824553000449947,6.8172319369438465,1.8465960224074396,5.78702807664742,5.830142764214799,10.65543163402728,22.218459445684896,4.008599337848516,11.936810510921314,7.644045361122478,8.227216049183214,7.939075291142524,7.596461834947673,22.35578585194213,7.5449161985668205,9.774559708024888,2.9139105728983026,11.12934729268071,31.40327834458029,13.084739185308923,14.440649868072876,13.909759220129851,9.35332996815312,7.311928789421126,5.406594128936149,33.11880390393351,6.174354538047307,13.86322342044356,18.686949384526667,4.378406695509276,2.7867027454766746,1.7615600661305462,9.103796197191544,8.068724632901741,4.243133344138799,5.821590683201589,8.142548854338333,8.502473954835734,9.237792126759496,4.898315917381892,7.002292144798918,2.9207305704454036,14.190800254616184,3.892489754660071,2.4032119184978047,9.458940584135757,4.216553482575407,6.627491074764326,4.383260379723552,2.96027226544111,5.487159160404438,8.514823432060188,8.947680777857954,10.804464438830108,3.270666812993877,2.1196362875693304,4.154881940849226,8.704821735734035,6.495998415070264,5.596760997759562,1.8613312367482187,4.046418411891551,5.627970657745047,6.816312015578234,3.1885034448207725,9.898808671361913,3.006038023875631,4.793434770734655,5.820640236536568,1.9809308128935308,5.638683749951854,3.390067013333577,4.430976422140377,17.938215428139298,3.062331277878615,7.812811705977862,14.075439656705376,7.864558975084923,22.325752241141956,17.203513127929586,8.628095727022123,7.9007526132137595,3.80217433683053,3.5436508380387073,5.442537218154091,10.796548293895249,5.896314832251172,8.876048109515606,12.526999633358356,5.013121582043609,16.387071042965445,10.096693544637166,8.396984761042537,5.709079761215582,2.5779279495401832,6.756887955049022,3.7590206503228836,1.2637984716486752,5.991562295540733,2.6537073640911744,3.840326188701317,9.127254444708582,6.151760150641678,1.5508578551623073,6.236802068522357,6.192801492959014,5.1816019123573485,11.403378344888521,8.941214573648715,2.9206141776494183,3.5450267448431583,2.8981681970012234,23.381522597857554,1.1633498257916417,4.150373773586106,2.948787612685952,9.630253294844266,2.8062153371162,4.798014288478266,17.524758275592013,2.8004994369277108,6.116085548273829,4.9760620484308,18.739001605872826,7.665385288465566,6.8181474352468,8.035852386610784,18.170522304926642,3.1236522072261983,3.2849962042806626,7.429228741021337,8.030384476437437,14.971795094867142,8.61239091320327,13.24986578007583,6.40760264244153,3.816886517212697,2.009781480052439,8.342358471588629,6.269649262857857,5.017934705229303,11.550846348178922,19.478187468929125,19.100931669654052,16.890503426685907,5.621340707677688,2.741389372150484,3.936032366518898,3.544267567391472,2.6685025448315733,6.90313199915618,3.0632130163428135,6.169365338653364,14.451273124767978,25.943300062828328,8.706690043547958,11.60376203477019,14.10519150778067,1.3504068271453138,1.6512545329621229,4.253933542739289,13.009155562398215,8.610669437343585,3.4352226006833706,4.726846812522194,15.406748100400284,33.16544172998311,6.542313812749059,12.355666104131947,16.206331745464293,3.130944461963798,2.743390441559131,2.94102305320759,6.604587515154013,2.7267994460126372,5.240827232662141,6.218446936546998,22.80884761193826,15.124256569839186,17.07688521116309,5.821504307268376,9.724882588268349,3.4725295946253953,8.114531079422452,12.548669247443604,3.07414688272313,11.846677895079425,11.325803167565912,3.948509969034904,8.716774035650804,6.670532221630357,7.398344567687484,15.15591315081485,1.7393147499768955,6.156187567328842,7.14014724058216,3.6158291410058885,7.209308570803699,16.30642174364993,3.417591719722828,5.487208489313089,3.8960418564863772,9.803977178445777,10.904868902500088,6.052920014642685,2.6318665445023903,5.018867622586664,3.831866212578217,3.4883172634594453,4.316262419777036,3.868100546835412,7.319802199095872,4.126667670030725,13.523630892012243,4.964825189861802,2.0622479393732425,2.693015995374602,15.909493479850306,21.31725802674076,3.249061553113113,19.811442205879676,15.958552606380463,4.323707151401157,2.7153634468671783,10.403714990832853,4.987063381507545,4.17033663596871,35.685284985784214,4.493515771245354,7.527354105311948,2.587545193705252,3.4350145258941396,7.792442872631578,3.5255739681013263,27.760424858714536,3.0982024044740992,5.433188876152263,3.9133764598354412,2.996895043572764,5.494179096547888,2.7071665509685205,3.0344547299158102,1.838763988264436,6.700798111060491,2.009915789455335,1.5186554850171323,10.792322859384058,3.3863496034128153,4.56931142793021,6.421808565999631,14.602840582584708,12.707378757797231,7.928528931875183,2.8680478773330824,5.135283299463401,27.912879552512827,2.269799914820217,3.8592347619353604,9.156378759299734,5.189407043550588,3.1408574635900526,7.9696991698099735,4.94001795059161,5.720742567863805,4.910854616419861,2.8347019667816324,4.300655270898481,9.33844080775138,5.434327848907193,2.716900355784173,11.107099308548804,12.556178994502044,5.0891448938996025,22.193936979531443,2.9231264003073947,4.1778922795989235,3.3852618665786904,3.5327830479523468,3.862604912192523,4.049565702394707,6.370767468321122,8.762250177151031,13.289006746395948,5.0441180053538694,1.9243850136586358,6.252810904532957,2.7128691531717144,18.177520810719134,2.5176554863969693,11.223092789512293,5.759903793280571,2.004842059640989,9.510250318687923,5.961907099241975,6.848544627547511,6.030556593272954,2.7192433020388482,9.69088904892839,3.6979058576356194,5.833853083143191,45.646237790263044,39.80983826345513,5.652275564783002,4.6769844703469206,6.08108745709248,12.436964172986853,34.18017978795619,4.057856054185856,4.898775474208446,3.3749801624085216,1.6441056084304557,5.3979301195206935,6.212109454586054,3.8105351420690017,8.391435341205266,4.251078018040137,5.111771740422105,8.987069785057702,7.011562897322496,5.710604985520189,8.49348517253234,3.006355128728714,4.7414751107545285,4.203128353482343,2.3395942217635795,8.30587898762427,7.255735983486586,3.50810018574006,23.50479653942516,6.762770192748969,7.700839554021954,4.38059610039662,11.938371359615118,5.09973095001692,23.284897595445624,4.480136066455541,5.636161912561717,16.13667506581912,2.6754751944981776,3.4570270999946793,5.228432609111439,9.413623156776207,13.000565721097157,3.570732373039118,2.1959169667698077,8.836263680857225,3.088321106717089,7.432489131111458,5.92709811467341,7.748201901485557,9.9886917700708,2.9089854701947235,3.9516735728014147,5.826786406552726,3.019339077545894,2.8919547054353383,17.681279726236312,5.446423767582856,4.557770440566188,17.9671816497546,13.048562294038486,7.078900311236255,6.956839941846251,1.609306847144024,4.005136631960694,21.597799710242043,3.826611192062141,19.71425585202247,6.031564595941648,22.74196599030301,3.5640475973966748,8.148773249822527,8.970392774739002,4.28398878249184,9.560636541958697,3.125548992816822,2.75900469105765,6.238497935045973,7.459726720322369,3.2604695652184894,10.531059689940605,7.892261539638434,5.852199811913765,8.1770565041353,12.153812798602516,6.611573882841894,5.779488360713192,2.3286856524285704,3.189604452575409,26.604031188421637,4.642121533642493,4.945548278547027,2.2162751737115944,4.996864367865392,8.724137999551495,5.675257851637442,4.538704262128567,17.46609947149378,8.091481900688553,3.931244327481667,1.8729980743649737,8.550673496067343,2.368251536354915,7.959042207513826,3.044713109377418,3.2099327971715765,2.2843954331416847,10.692854810644029,37.560337880783436,1.915577387635902,1.1506676053359486,4.7010399298215795,5.571464716090137,12.106061639512854,3.863537959649675,7.780825331704158,3.5665478085157787,16.70296544027459,3.314087216529002,3.2073968480003034,6.244592460359261,8.302635254450676,16.379976485617735,9.945463733409007,4.755070931269439,2.096810844584561,5.154134505896308,8.094315491864334,6.455315258124513,6.213060610874094,1.6024265784096807,7.220069469207197,11.364087008550369,4.701724909395007,13.535950058808336,1.716688673142626,3.2564496986715943,14.940718566439282,2.2089234835636997,6.844467650874299,10.217876928875805,2.1645303484529426,10.53225419425963,3.745831628807759,5.025982342526218,11.728147003373017,11.672236382461273,7.212935432381261,6.135971477021274,3.2412998517076015,14.25300232793685,10.86886196310218,14.37423666719191,7.3255896265588705,6.471551837951531,2.357089445532076,3.1340653576528816,6.8828785835890445,34.19342385383455,3.1573655370204525,11.93684445437321,1.3146821367910893,9.444375693942098,2.3673532850423973,9.556878028150361,9.245776924020165,9.412840161370786,4.062495746056252,1.8587840800372022,14.552114248234467,4.170649948230387,5.749293942330927,3.6772454815093503,5.9053538420856215,4.992516327470671,10.181665960282645,21.795639464329252,7.1244654408942365,2.9320115493525685,11.904299488788997,11.065344866746877,2.5201382900120413,7.3868860176023015,2.559722846847306,10.314544042954893,6.117512579693868,7.671035130590538,2.214653861750302,12.619735808667361,4.217106204819371,9.511635669868904,5.051538846595433,4.828308629740848,4.5143207753488594,6.630676388020851,12.495704925393857,5.919676632176366,6.155848367091167,2.4316423277324417,5.212949280385109,7.619714905495292,24.199658893027703,6.553783543540231,7.268176231087217,13.91898941776625,3.9764403001139024,5.170721839832773,7.684976636149428,6.6189104978978115,2.50199152866973,3.221928170532045,3.4372821957685824,2.885509096692329,20.014176748361496,4.297465869743906,5.830094673827271,17.07037405520799,4.068085543812498,15.256187004361895,3.614442543645034,2.176829141334764,3.0795125660492344,2.5593709184735176,2.885623251473915,5.151723205327107,10.258403808891641,15.586254833891603,10.120787615323405,3.135320385883008,4.2858568340040994,2.32130687654164,6.4810695624026895,4.132130201143802,7.276519788682536,5.694700145026086,14.555225953588439,5.866973439896653,16.49626937591266,3.848519409020477,6.970726044314887,2.0292774964276155,16.216128441661567,3.0141933896792605,8.821853689632677,21.247939956092694,3.425595938811195,2.4569954679545565,6.775481640656282,16.525059359418073,4.410956041097441,4.3135829944618616,4.34430411007792,2.8568004331106587,5.366741336172108,9.428780116756002,5.300004862511119,10.527610421639542,10.701899697664961,9.956141053381316,6.158564222983871,1.4738361912374887,5.38808413577778,10.301380641950647,7.698246513410246,14.526514704399629,5.319966400615269,2.8917798829230983,2.626217937960835,4.838806340503555,13.078700192706824,18.316354729090214,14.530015834800462,5.439599441165242,3.4549048259439528,4.145902608298543,3.225644776337727,4.307757449229991,4.976458021255518,11.657064387668736,10.040106961595768,3.721281137888478,11.55239204282133,15.777598120659714,11.126063443271999,10.936887461967528,3.658178764548611,6.079897330482115,3.7681761755470142,2.721054398800849,4.510704130216388,1.9493396110457397,3.757709259507809,2.3029602534546383,3.0879929473457035,3.2207653423814535,4.168900318444524,3.8788783378490215,5.849713550693827,7.7418300371793425,1.4092846610697645,14.898928127676365,4.132906540705473,1.4029564181936813,22.26523094164699,4.690485531952298,4.934837924970814,4.43695378231295,3.9835413922731417,2.209679286000757,5.184590846255277,12.752985389606934,4.957320973931439,9.386423618796364,2.804516297797842,12.155786516467458,2.8652594146958696,6.312775552232804,10.618731795705903,3.3280532760587684,7.5558711380198735,7.492060498155572,4.989558762198245,12.242692106090066,7.313977785507088,2.901079011565344,3.8876416899284454,2.3632050848099015,2.663038505359579,12.040988710211394,4.487854986784999,5.607729135196748,6.337549017669778,6.709095771730959,7.0216051905400665,6.564890683253583,8.718304350434332,6.452133620484923,5.646621691174104,14.12295305201034,2.4855746997463055,12.876356674804114,9.453724737469368,3.2588559858904937,5.521448900963935,9.71458668067022,6.335971510494344,8.477131905076698,6.102124635095108,7.455028486886347,2.7945886025086586,11.905725582432348,6.886890341253342,5.628565183720383,25.79458691339405,12.099698772230099,12.066400947258533,6.89612420199671,12.804639899151617,2.7029544800867527,7.20320535680109,25.189127242743965,12.231079850876066,5.089318142788521,4.305297053978243,5.678323025098433,6.251988830127619,5.075593250452603,14.692775344144936,11.006039175798477,3.600295198604046,2.099105576123133,10.246659908689734,13.096749174437097,24.985788512279626,4.706803054666357,2.059028973518565,10.630742499799613,4.783730931799138,5.8628232708424255,4.314939645697033,8.912041535312078,5.080893496262068,5.607774018830273,9.564192605830304,2.9067561089549145,3.583103654673763,10.115696456054268,4.986145767477872,4.222577222253806,1.5759151374969134,19.785582357697802,3.555120931107532,4.572594196995859,4.439030188810114,9.613731174667178,4.920630798819577,5.818317389623368,3.760211297427188,11.414687909866151,23.34909687077475,2.44499793205463,2.8522929464734985,4.662570724209502,10.715932881452279,15.7548847733735,7.191164997076328,7.170835664592853,2.166393514997991,12.081341682058104,6.818524957756298,5.342524026816592,19.651311975594293,6.64939832585591,6.275880339440207,2.0026707918077626,5.383500507444905,13.45505856405639,3.876341250815808,6.637587246501902,12.550040206119805,2.094127341686519,3.372484651758185,2.885585539288803,2.875802583138396,4.15265246646373,8.675181869697315,2.7081440189836257,6.631318950231361,6.885046393724414,6.3199512377924085,8.98444486948741,4.825850600141573,4.130372358103235,2.6104344197680014,7.39664959970155,3.9108429854241704,3.7154968767746652,10.447838100417396,2.9438007387590455,2.939615656198436,6.763278162528274,35.71978682789473,3.90542404940188,1.1924054055766093,13.571350557903578,6.381930510999743,2.922590565289918,6.271941707338859,2.0708422153290678,1.5219123969180297,16.175090400261336,21.023334754861004,7.174430955969271,20.96226532891914,4.83678320103253,6.848089614001367,12.339889202254803,12.595812178178162,5.7024579337197565,5.311957849585064,8.169913584492475,9.08275728126021,12.283082563761317,3.8989148837851366,10.614918671807688,4.055191998645233,5.2855754473208325,2.7024484278615595,3.2024404356616687,15.774853906184775,4.794865944759684,6.471634366852114,4.6674395697787885,9.584774048399366,3.2892698635036157,3.302480849633843,13.467249101128033,1.5882959435833426,8.59128090397718,5.276487064599325,30.884804182854847,3.2123147760635735,5.220116261148497,7.0876903549900625,5.271167288978162,5.233076482624589,3.245428114328053,6.156184968099041,13.633591177461923,10.501293713166534,4.6514938504775465,6.987746902302933,4.030230481933612,4.512672859440978,3.2424649986052136,3.0849120909955894,5.391097644972625,5.584242561314284,6.522171551792128,5.1289643938475225,3.8855729013444407,5.497526048157948,3.024004790364468,8.331413821527233,17.580507123999173,3.82331061978733,9.140212600706327,8.084389144741083,6.165290889379916,6.662938053054778,4.736418219399898,11.744019972674648,4.365663593799336,38.091343467601135,2.4764444952663673,16.89608397522452,4.439107643069593,2.688822779647406,8.281039077945632,2.301082044590808,0.9254070244735724,2.7386039583799566,5.735894394639143,4.765283978436137,6.554482658270461,3.7298261295964874,3.173163090531846,11.519880589830128,5.508713390917921,4.876604013009263,8.470869135587913,5.588173616756053,7.542491827778058,2.355308746584757,18.46200383069247,7.22307631146467,2.785252961376089,16.61011902489478,5.9655556095268505,5.673298262770929,8.248896704664016,5.576068879470081,9.44580869315864,17.628197586762525,6.501939813895095,3.483589456185748,8.367692649915506,2.877766184527238,5.720331761788045,10.978275062952306,4.911336299559787,2.1191662836082217,7.128394956602909,3.713026565104404,8.614977643909024,7.099451805017648,2.934437652316504,56.55001526182649,16.372728640857186,3.539164340564665,20.206977232283297,31.137870583538636,7.576906535580636,3.455224533429331,9.164126529873155,5.637591473494109,4.835310393273077,6.577345548230329,13.596671939677474,7.730128754716552,3.716202140859455,6.84359232145987,2.3649537281794912,18.363729257467163,3.443347794883195,3.5216205214940244,8.63987081703462,3.4650447696361244,7.359811874667183,9.295513719461798,3.7281605409509555,3.6230272131792587,5.689951604828679,2.448490491018819,4.203813930441732,12.31405092050882,3.2504192553277655,20.196880127282547,5.637333473926514,8.35130008746783,9.142828461961722,4.385469637408672,4.7487258398255765,8.931422722422502,2.6207386353584217,5.114562457700134,8.235660961603331,7.017845180452855,3.5830547218735775,7.1616335680271614,2.086457950841749,6.2668661892773985,10.450493594073905,5.878252683646738,3.4855351195033886,4.432132915337468,7.818044129898607,7.455638434120998,4.259867659338591,4.41039006666054,13.089383189214564,13.064327163708722,5.135331042888604,15.44129326696006,6.255056768536078,7.800429582163735,5.142870162975385,2.6210017636224023,17.8085553681887,5.857708147652484,1.7126331244765265,4.1131772812899765,2.537386143523205,10.27568266362826,6.275333243036826,5.627001791149059,6.362807253814468,3.210850062395715,1.1711936125891298,9.784209532111971,4.025705588779472,6.164705195279622,16.206602834471077,25.03605876218632,2.755369160043542,2.5190394288543003,7.348058500612855,4.043951465317207,5.456536644673215,1.9276228168401908,5.980177865630971,20.58554022063711,5.432046820086095,14.58045239001432,10.47799411183875,6.533626835776065,4.972675126556739,16.564998773351387,6.606015484324074,6.53636253373045,2.7024191521788143,9.171990534367477,6.234254223463606,4.262012730897185,2.921265162490461,4.732717679023677,4.1698877878615,11.611640426287366,9.467589830123439,3.103806588591175,7.351818487293824,3.792189213089794,3.3995667381686596,5.350368944843714,10.737193299033555,0.8763853867119442,6.863858813712171,2.303078882794779,17.998566655914516,10.971403969920665,11.241440193945959,12.220847553147417,3.273196918611403,5.140335233647446,6.842341479021304,5.08698427402611,4.503822985663551,9.468349111241464,5.279068764928472,13.767409067502202,6.0966244944859795,4.390193546985879,5.337865259695093,1.443007002369651,6.294908259226007,5.3428684745270765,6.846104692638647,5.10087261075767,4.8212135515244015,18.74979707033997,4.032641277751938,4.441862545855298,7.076941896268677,5.098307958961719,4.615173450527218,6.254185812407405,6.997327934631821,7.9623384121286005,2.978371254419847,9.677910111263229,12.16461013650531,11.36781251111855,10.404748421907438,3.5383381508645213,16.94239202284753,5.168291420080733,12.82684013254213,5.358263341239757,16.656633521526718,3.7812105876230517,6.035980770571701,11.049310051764879,5.63513388193228,20.048660269985017,1.9134262924429832,2.193185733004674,3.4598494907677835,4.535890983726456,66.78122251062734,15.239394473104479,8.99060356001184,4.924067694728939,4.373134788790585,3.5373101667211166,3.6078083241828027,2.8005946640210224,5.438735282751506,4.43159694144708,7.321903359778198,10.742155897041123,7.059525629380184,9.959026539580314,11.810905633922953,3.8114111240328903,9.420919488659989,2.3713447288459197,4.464222073642808,5.466179990093635,6.1229708015384325,2.980151924893828,4.425261904633804,4.685596551280475,13.640095575047503,4.903435138915927,12.07691976931939,4.037958720683191,8.102040137789507,6.605107538183647,4.453552711212903,2.4221921164286515,14.33302869511509,8.61793080360142,13.300908156782885,8.414457923486909,12.14965205508271,2.121548939647378,2.8180191449773684,7.463111207836539,8.169352712715478,24.27927287089115,4.1758904392749425,13.586569392907261,6.884924031382695,2.5007599428145397,14.842515324762168,7.872290520912958,7.6832534670210295,2.827291025077257,7.79436518409594,11.878591821969902,7.930146984443978,6.558877020351284,6.085321508999704,11.131175683122017,3.4613938435604688,19.01951897810574,4.5414314129862925,7.738537364807612,9.4951036871112,6.806819255679878,11.518608288315013,2.4847023488886655,7.24025797304624,4.072067079743428,7.036358497097487,6.3126501789341,2.420113914657985,3.88702544563558,10.456693411259705,5.04426354445818,4.332004488365222,5.0327567789919865,3.417748704751591,10.127911037477666,1.9658413706381639,4.774836828453564,7.547661957643722,8.501547829112239,12.20952541563837,8.009301567494195,5.627781387054912,4.343191627943393,8.495876011887347,5.4119931371310726,4.312670624968434,6.676186682145098,17.87157193861545,8.382175842084289,10.568165076703377,14.673954550698307,8.436453933458063,6.594988386366878,4.285392455071523,24.268673411861926,5.397076589597841,4.516708583880535,5.819069803854539,2.997765830047716,2.7170629311335954,11.554730739802205,5.375859752012986,5.833019675380928,8.877651339409576,7.607100578616697,4.129166917003617,26.211150085595722,6.380303302739524,9.68965814823222,10.417397417875234,5.471937525275966,8.665910897855063,4.685208037434021,5.192351042977473,4.42657050007035,7.094548495707297,21.02918586711261,8.559953316821124,14.177347061121752,12.584582032120473,4.236908728000852,31.111269445604123,5.678860903780309,4.023876733557656,8.157149788894246,9.360993717750649,5.9242324314855965,4.63897998479402,6.387086451364867,7.845057222896774,37.44822935370411,7.503889809115035,5.661504465393073,1.8512637038805404,13.519006048011923,2.65894766873496,4.304053742073924,6.360828677643136,7.452745515206804,12.754293571322808,4.953210295173492,7.880655993346964,4.008953745610297,8.530256782560333,2.9616794012059433,4.0848049143504666,4.465263674928116,3.734965499258542,14.695168249944482,2.6827843754898018,9.882681713105056,8.68169970823792,3.786159181874495,21.954350399016654,4.875437279212735,12.002383900317007,2.025678800227797,2.938798515386182,3.782357941797211,17.95135625799023,1.9873517849443927,3.693358911482527,2.40667261023357,3.5048491834200237,10.051626569517612,16.53340197427199,3.6421872913999986,7.633348899880297,18.965569165770056,4.032969824316807,4.051985603138267,12.528233552175646,2.73935232639552,8.17286216041833,1.9710815229078733,11.543295433992265,5.649337388943008,2.3293706747675897,3.687992131104998,3.5819637713620196,7.189970156215865,6.515283203901876,9.720391590614726,5.579491475119352,7.816113575788176,5.2324504182562235,4.61442110303284,6.399453392482426,7.528347659176802,11.573491759457237,9.749521079829856,11.193055142883155,5.445386852656097,3.9745414702997617,5.815668909429163,11.360186044140633,16.155691442607,3.949688805373807,9.527876918941447,3.190962377733692,2.872273534063029,9.202298858546362,6.747505573590228,4.977947569229534,2.2720100546008575,8.367841471498835,4.5595502164998605,9.46438370912669,7.377418525213658,3.143663726929832,8.918761203186968,5.0948120393998435,23.427685708113586,4.724872576708242,2.555223504561557,5.586783994446334,6.455728351272501,10.265936066202418,13.277620984859583,5.8720886285507,7.3865728569176365,20.059477453389057,8.034265023811807,7.934221630638066,15.1116546108252,2.674995408690202,8.986827512494454,4.98535795937927,4.602833230887793,6.057723123970175,7.283786008021213,8.118358572644713,4.27195889635957,2.381820146738042,1.75244068944998,3.021240581129124,9.136920498423803,3.3975011725170936,3.1776251443199297,7.994104645229612,8.296172304707099,6.9130221579118505,2.9946860807239237,2.08992636704663,5.036764285130751,4.9594834383998645,3.4031802837483,2.7997372226294828,4.481049341105194,13.421292063392341,19.19045277009058,11.403925708000168,3.0112997584114245,12.334642289604597,13.079822412294984,13.407740636131589,12.582196407353191,2.964972167379055,4.697808457858691,7.820162049208386,21.82432625398175,7.397270153633906,4.458877973669734,7.539358561811914,17.66748748952567,5.721680564789005,16.635412034644705,4.7048010850274355,4.377503642602861,5.037408416974142,3.030955259396475,13.430372320829282,6.216523901378262,2.3331406417816183,7.879004105481329,7.887174240337958,3.5227210835464073,8.709279829228587,2.1860920008987765,5.4924624996067255,2.0035849988534276,8.192354628606086,2.1588733942357208,8.521247044138887,4.661576061489959,2.344428584035295,6.796323101247128,1.8877802889435351,22.6690450413619,7.481187034134441,4.22466395506636,3.4356891983015996,8.895672794138068,4.736351495659469,5.358149937781059,11.72684409535747,8.649011799972124,5.542085505027059,5.7918261744635124,4.436101288657843,12.124520487215767,13.129367143737815,5.590798643659854,24.31982305594767,5.002580475069618,6.8229268569536705,17.063171400107162,8.389914386625737,22.035894057819043,3.3139866266611944,16.635244459598784,2.002047326976268,7.532525743571349,2.217941913064908,3.3734267130660003,4.6857569223615325,17.26897028599633,2.517134645103541,7.673311771176117,2.2160495210394764,9.028317056367184,27.347804148689406,9.212353545875377,2.946282179634119,3.106109233272505,3.482825779800507,4.6762352247496235,2.835729341139021,3.9795450781848474,2.9253457935504823,9.067845080467931,4.140578035438937,4.2072027390270765,12.174400099161364,3.8276968567322056,7.939601794669902,4.417232583538206,9.932125959092435,6.798093046927367,19.305562653934903,6.596748696876886,3.677350952215757,13.565034723875709,3.4607902341557377,15.353743721618521,4.263684573573479,2.910270059438865,31.575020774427554,8.108711347597946,4.027974999270148,11.994559524910189,8.030303072964148,4.812216314620357,2.793955799445164,2.1936107374960483,3.4378516723329122,45.74999218281122,3.95105336499051,2.000077758508934,5.580030930311551,6.676871869644794,28.633676619789608,11.391252987500499,5.807136619555443,8.050766680667806,13.270176155981295,3.953631881072411,1.6057644652730896,4.863973175421121,13.825423347371514,2.5982741294833467,7.86330067959237,3.6774532187167197,3.7414255138388546,13.225518372579755,7.071103369039486,5.708672795909011,2.2383974346807856,3.3826061019375953,3.7294961495646377,12.337022813647193,6.803795926470141,13.132564707957718,9.59236874128598,12.285505684568967,3.2017454336839886,19.822369625918007,2.7550335137995945,12.87178694595285,5.272997849358463,19.265022652729368,4.4650355908197215,14.675387244122293,7.452477878756676,3.7420629355459734,12.075005376233523,3.821013362181955,5.01768888574213,2.236456110562813,6.784673562301706,2.664421551668689,6.0076094916397915,7.598661722583159,22.393654314827383,18.46642161742612,4.346817539236475,10.329548670167563,5.571553563416257,3.9284099128000256,9.147596923315204,10.583562387019898,5.520549942437099,4.391534453586199,8.985329508390942,5.360637320021025,10.125750556446825,2.3361896729160243,8.851223083388591,29.493144967267153,9.138452873144747,0.9244953799255489,3.7788587408791874,3.156024632923902,2.754063625586331,4.893846545830293,2.9912880575118876,4.754806473950307,11.754876017736315,2.7659236379194323,13.566784282465816,14.330795279394396,3.6622610018043043,3.37164349681748,10.97025259678267,13.674680245337349,7.458391954403631,8.557798438858004,4.378423140366446,11.874883612164142,8.697713863564777,2.0151504324516494,6.678267390480561,2.347053527005884,4.37441377520227,3.467647511928222,8.034896690967852,6.049247962581143,9.795153541728807,8.163150783155817,2.8761180938005886,7.736030921977298,16.912338791252882,20.605077321854935,9.328413941195114,19.941573964663498,9.21684769235338,6.801861464929765,5.798699166618514,4.3236404054812905,6.051772956225747,10.037433221723898,3.3826927761261474,8.71063620586609,2.141908818840895,49.05267967809086,7.4926507769110815,5.8096988572322745,8.299473089398374,2.1046725999717295,5.905404045993446,3.053236701913488,2.026455796244191,5.1515104043390885,6.030304211697971,3.084471377590787,2.4386614937776168,1.4104484961198083,4.548787266599974,5.233860440248367,9.517487997449185,7.497879330282533,3.1724290397427644,7.183759200344212,7.295702346826721,28.437812494387085,22.136591763507965,10.492182552482063,9.228440142972643,13.512424278992954,33.03627624587919,8.416993605623116,4.909463424623922,9.821296182651299,12.624738607169048,3.5985194045356446,5.188204855427233,2.5829789801871437,4.871531797836982,3.092755040180375,9.08728685224431,17.19530063828608,2.015963706223018,8.105727376411847,3.769864329949086,13.855001444280415,5.097633322074515,5.811881599583341,3.2160326907578716,8.46633275013368,4.141265251449411,5.160388779918107,5.105054996765289,11.123903816983974,7.371742530306831,3.5886495809873282,3.518983601189817,11.759495689641783,6.800158383595414,10.92574106666525,5.107261142908101,32.554143051671076,3.263695701049949,5.087360704095517,4.634573186215157,2.5819605002139374,1.8340344468480463,3.416109305821963,28.364043896891378,4.064368720179668,6.150688853440609,3.0362318455246706,2.182908298581023,12.748039525087988,10.655281304966406,12.323820505967474,17.211350555134526,6.085182115522799,3.5863498485539433,4.113923657528028,5.163033258060832,1.7476080195760806,6.288289572528601,4.4027256920443,4.449132904524386,5.695650832044228,23.014198289474304,2.5833058707992325,8.498760000120608,5.124802848036166,10.914285232907954,8.459898984785601,5.487933886690278,8.190971515239735,14.571943783431484,11.225204652334897,7.885506830209475,8.29831528708562,3.368744278574959,5.070747621375349,22.42160930457801,1.9843469991061111,11.428830952808816,9.24635094133759,12.75491251381753,2.3862743588995285,10.911994452843896,4.128392047144544,5.086689942198154,10.8657061602038,9.903970524820954,6.31453074101789,5.991184620185608,1.8439820306074377,10.494520360544481,3.301398954069351,11.999128472694432,3.9031685260024336,10.996773509090625,3.6803444089668753,1.512181863545033,10.483021763989472,3.0426179332662064,2.0072745506445657,4.171861216965625,43.915693091551695,9.510851502837367,4.1587257930415475,6.517723125487746,4.470931120867493,7.832929649678746,2.5534682467973115,11.993503930763078,8.750068926864232,3.870689671694509,2.3205461434171886,9.914000279588834,3.408517518127448,8.347739503104549,4.299153439865924,3.031074804407404,5.424764914073684,1.4644045330703812,1.4200006055561163,10.521636049742629,3.316674176157552,2.8047169845576327,1.959034312079754,7.924884376124984,9.534313530672938,3.606621059370903,8.0336610201768,4.580552480548509,2.018594148575583,5.234788284555168,7.265084496137236,3.012456351282417,13.795763892793003,2.6916423545228763,6.039424840222161,2.607849540404814,23.32720106784741,15.436344777526225,2.855532328205913,3.545984401291476,8.267718916524078,3.83959006521408,2.403630712701249,3.878320081689512,9.045367451403179,2.8623686659098344,8.278453414375301,1.8676075311619655,28.275657081316528,7.236244097338035,3.8681775267403147,13.663251092725602,5.0640324085239525,7.543281037602089,14.932332766617563,12.018956631608017,8.275372640709088,5.4286793471535395,3.758557520972035,5.234880035683934,2.406776845783007,5.1045116908308685,7.293766435092482,4.565090394150007,4.156430713096023,5.569398912965276,23.11449039049312,4.647834257473478,13.900753861261409,20.956492338634632,2.2892071724675462,45.987733681044034,6.185176221883787,13.942015231322703,5.238078409187541,24.19388765519385,6.958615416722777,7.688829203562283,5.167232416258607,11.291413096210272,8.005722073114123,6.596170067382188,4.5735342089428705,1.8361709895892697,3.4006970883443697,4.5871142547026995,18.204746504353427,12.989349774076233,6.7457102337222326,7.4015698813803645,3.0968118152240147,15.729088576928381,3.91289059197869,4.289041499599794,7.077671598802792,14.557238841937533,2.4149173467265084,5.1953902966087435,5.150632493065338,35.065738803695076,2.2461993874205786,3.703354132009978,8.099147232459044,3.4725959415789402,1.7347766443467072,4.276927659064787,14.065129618113835,40.19612214330774,4.841995113426307,3.8596032744641273,7.2773439309070955,23.54591679570909,3.444374847475599,11.374560728299587,10.562915703335545,2.12551386593692,2.8440380191922157,2.762194875224083,9.286801104174591,4.188582504356373,3.908973960060497,5.379121218815538,10.333816918085983,9.828012855368955,17.85538009138184,11.628007911853175,3.1430046982678115,2.0187382362400665,8.06292479474343,5.098480281280236,22.764159898336707,8.148175268455843,7.075380527257425,17.652325014651606,5.831076077158867,1.8260865311742718,9.881582346473246,1.9229766031483657,9.037530571537397,4.3956958320361945,9.892743222308516,10.718434071183859,6.127331736987926,3.7615225791393323,4.929234847878531,6.093798984658503,11.47138201856556,6.120644526361605,26.657402251713993,2.645118494075922,8.775611064288473,17.91594062358392,12.49063161060985,24.540014170692793,57.110997774734734,3.9856574868593864,4.668733212467674,8.162089354399267,1.259151191372172,13.862809235815286,2.5750762427039757,6.667403189823205,5.135872778976208,14.43784995609235,6.4800426986201485,10.72470722292966,19.527709711621565,27.402186500051304,10.452298719689509,9.535077331679569,12.855501133280796,12.948106794909707,11.601767709747218,9.843403666534588,3.0914705819315853,4.516481061538225,13.550657589970244,4.12739536650125,4.058123216597152,3.9619831263743386,3.9383509876551477,13.776186606446343,12.533687102154364,3.574583442834817,7.51183301582044,2.1892255853294857,7.134988568461955,53.70393109950202,2.5309668840073063,16.697696391587357,5.368398709368846,8.781237801327354,4.834024665572277,2.5428713801355842,3.598957189868407,6.0801313317028045,7.6347137037850565,13.630192891488681,12.966743053634744,8.979101708298547,15.555181815559575,6.134871860464855,5.073694648457696,3.776072695968551,13.379124656300611,17.600419392828393,4.028455743818236,2.565266010962991,2.521279386384492,14.26896808774153,5.69002544494822,6.646449516355838,6.373480997578533,10.760014406489296,3.8804811908098586,2.5860991633942727,7.96924553423625,4.73991024022858,3.0252805723116634,8.68680358254222,6.688440942773345,3.2223016253199916,7.289080395063624,7.482058273361601,2.5595504404446086,12.530128763459738,14.375032253751959,5.7614161493434555,49.51700415595603,20.468120650118863,6.046729623957149,2.941960254330253,2.0439978424497363,11.922146723619361,9.902678180835634,5.360711796458689,4.926343344806699,24.076475534531085,48.56242740716587,3.4045497394465873,3.8749581075497392,26.226203394707852,7.126872091127529,4.794363670821868,5.669222850536721,6.059325978705411,8.56841010782358,5.207775042794522,35.25599981983091,3.6228614210979817,6.9123522285465855,17.41329734750344,15.72760561230518,5.597724828849228,6.25769825332264,1.902180801222775,3.216609028335122,0.9963036843333033,8.245735692721528,29.136523968575574,3.6713566156467086,6.08678136154612,3.2217465628354343,9.101713730123404,16.956161568224747,2.292932901369508,25.443586095308902,2.3753659764306447,2.1015947245055626,4.501286175787054,2.3514856050275457,3.4886733632542755,13.598989764903937,4.325502592744475,6.381553724624022,9.016004189185084,44.22731186777132,6.896645071307287,17.02611735358492,8.69339156762553,19.560552810098624,11.684830313927192,12.10506612004638,16.771506781775454,5.697547020736038,6.308739127846567,4.5388634022577765,4.54352296479308,12.580894668666774,7.940185898256265,2.0318879791408784,8.775632875589313,35.54025505270121,3.4921412822556306,5.1608321552755045,7.543824395112121,2.711299807539335,12.48667475934771,3.443750909036379,13.769716207630317,13.092011063828817,9.636660372045004,7.552362403601984,7.674377152568904,7.126579485290317,2.922286234416243,11.177161468675642,4.067052354283392,8.805557273370516,3.9780188877268077,4.265802703539748,3.5622928896766255,10.040117476203827,4.455899946898853,3.0397198456170753,4.419717409244634,9.566148860908097,2.999792452618954,25.829746536762705,5.4323978143318605,2.846684548004207,6.189917988884269,9.958208793127058,10.659262405717266,2.894137607115335,5.787989814967724,3.2325689492826046,3.2073896584705595,2.4756965414455734,11.014237605822066,18.921823986233242,2.7775259777506096,11.732773470036493,18.098906316662873,15.381897081415167,29.54788866408476,3.2628234503376246,2.297450551100121,3.862106855491567,15.799668245174898,19.29475880128216,5.238186781217085,21.30213131472108,7.031843390640299,9.339489690309708,6.353013309470925,15.50198570733857,3.1827839386949175,3.9875358285840763,6.105771013845373,3.52735820740496,3.942590931943335,10.97179397766071,9.758221203042021,12.006189330901094,12.183118401656671,5.513245234984781,3.00440142874567,8.41615827932438,6.042349526271637,7.209094482062341,7.8852889365750665,12.467787010040192,7.138886431172559,9.957088156718969,3.4808955049217603,1.6786787401775978,2.120565449301927,16.787128273362896,4.580399449556013,3.7810931596039583,2.6194623125370686,3.6909446331397837,6.7604408475551105,3.3205408720289777,15.070654516795962,8.500067559575678,22.63264059321202,2.162700992015051,3.98461934102852,3.4911033174631285,3.603173264020638,2.536780603591703,9.5608368040766,27.65199768182519,3.008206482150727,5.741818453638411,7.923809116354081,10.697327481100833,3.524288505095837,2.324695343774527,8.719929682689026,10.125012664571656,6.14488649433419,2.8865102627908277,4.444349869623546,7.239976939933149,10.909632738358845,10.367931408548266,3.380954614536228,6.876051316327779,2.258051985568607,5.488802586805291,4.6351332916522265,3.9586154740464568,9.899631185113762,7.377589405954646,11.350819907604917,5.116625424048346,4.356064988634645,4.0458560933926035,4.10597442020205,3.3772550889758906,13.244512487072779,18.08182944151158,4.740872709298293,2.813898679354287,3.790872776345311,6.18489850591292,14.05366708556905,5.147650628123315,2.851455524061489,6.491630082521012,4.459028148415382,5.787661342757727,12.873014456823533,4.630405164168226,2.1394086136092607,8.869864446653006,20.173943504456837,2.6198788199370093,2.583543123536547,3.96619397829054,8.076329704792139,2.822049115517327,9.551325148512644,3.511887171349479,4.147069260591674,1.5753103881828159,2.4229987172155503,16.26714481111165,7.105155071050544,5.208588768047692,4.063601584351286,12.825273286725809,7.4927352715683835,6.701226809548812,8.839584269768526,5.296122969914029,9.233824609240205,5.670777694335441,7.2751891197886644,10.277504030175105,2.161362592748055,3.8641458414019687,5.049937665153638,2.563705868518207,4.909453727762665,2.161073856216199,3.0727554507960995,5.71003588044146,6.458545603317822,3.895314025647247,2.943722953699581,4.296158195394703,9.65979886991662,12.212962240205563,2.8658989772984946,7.913945756034796,4.240348667799659,8.875807918516806,3.205848750492737,1.5063601687876076,2.1318457693960675,4.239365386625326,3.1769827168839653,5.196239734118218,14.791013770239713,1.84001323126073,3.047305243383046,3.3895993831446636,7.122019990578255,8.582011264127367,5.448289278595955,4.812001197492276,23.610466672598402,2.2565319803225603,4.13980540523454,12.830660353682068,6.67959048803495,10.77485067401904,6.297824117028817,1.5606097478375605,4.094408229125067,5.591778788094329,11.387356685052533,6.418398674821497,7.7727530006680405,7.328768579059796,10.744932085667898,6.2123451014876006,2.338666269962743,12.741805858359815,15.556094707909583,5.651812032672463,5.134561294684145,1.6398767256369233,3.7169389127555985,11.540445134217984,8.353491441448671,15.062365389013204,4.246187309455771,19.382601999073703,2.3990105785825038,4.11087227565132,17.967800084192262,2.4610521891020003,13.62409363325326,2.2174870343368336,3.401277458549542,6.425595853067281,9.37495602316202,14.061428356918475,3.589417236708597,6.273502512961557,4.119988850825701,3.3957686859098226,3.971335836503946,25.122679049255336,5.486153564783941,3.0070019986390677,6.305924358528987,4.415088748035178,6.383817571374217,2.156285290250007,2.9223209178399108,4.024459616356668,4.131766233433906,3.8706080087836794,10.768526982853018,2.7804919808200936,10.710090093257339,7.809369553222724,14.726044833831883,13.447399699247436,13.865687684237326,25.117716798701075,4.836121993354695,5.202280090434647,10.021874906513697,3.8823023562964454,19.839711636745264,2.878211083062297,4.715913802373469,2.411115102062651,4.268218069739053,2.3310149978444668,4.279255177903452,5.629939657231012,5.159486242973941,1.5186089607594309,4.198550688662968,5.6773420860130095,3.413070011750736,2.44757913394388,5.251281253157602,4.154227167344067,9.498494143550095,11.023634856305854,4.748520981890851,7.5168511634871376,1.8639185863540146,2.5289641783230925,6.7256699916859874,5.010304811394912,7.302447031922365,9.542391449067985,9.24741476496823,7.387375297875903,2.828361992612635,2.5368001306900307,1.86616006142915,9.843348640689822,27.063724698386142,3.770200507290783,9.151096981800537,7.023121090336776,6.377924489259312,4.219801606216359,6.761143665229202,6.634230797841797,1.7915075789506647,21.445381913414604,12.04486964265459,4.307547263593269,6.580476997933629,2.2860360275273686,4.767075278865157,7.248752415441918,17.887088833610115,2.1075859696239245,3.331211884861771,2.690887012855217,2.7881718891001688,19.91678962409364,5.009644150287654,12.710369276416875,5.3856104788354955,7.195164883499727,3.9922658443865164,4.487927713629182,2.285063487499563,1.9336208106303685,26.1414855142332,12.22961924666443,14.057016847922004,14.88300807002217,10.173293784263961,9.431904472470904,4.727898979725026,6.422234108244301,10.48568325377818,10.187949333740294,6.30232322936238,5.914271551526112,9.714465286645684,4.726287524701415,7.922962796416341,5.9364803373896855,39.08722525043396,11.948412028945615,17.287405763819972,3.713837993137085,3.3431789187435155,4.2772286163493,3.2661931789524594,12.197429620461167,3.1920675939954215,22.115831239117544,4.765750601928366,7.980986567613653,3.3522012117961086,4.453658378806015,4.886703159377078,25.154413653676198,1.344898740615469,3.1555386774374514,14.645545424639502,15.053175068057651,12.703918187733182,8.565747677792801,13.352422584859436,8.574154938050253,4.2349926886253435,5.143627962368474,6.607285536776986,4.04760715550564,3.874476105348185,18.250204245912204,16.394475895477783,4.582363032336072,4.073929701462494,6.162947372468824,18.14692698295531,13.257967279918187,4.62453765545249,24.749101082830368,8.54226843376817,4.823628042465999,6.544008963482046,6.354829048697124,7.319332325206616,3.1379978325517475,9.709056342841883,15.231617389937227,3.233249823622939,14.822553031630996,29.808755540478746,5.245271091436644,7.06224086358248,5.417568300737376,9.338072588168863,15.213082171751973,2.4223309346792887,15.218377771752317,9.818655695426555,4.904801858081427,1.8915618765262188,3.335580227685894,12.846353783426009,7.076628883174788,12.475816400251324,12.43847440303165,9.780551741636886,5.505000016335357,4.365735333267621,14.786087107246559,11.550338718298631,13.84463707669831,3.843248979796661,7.2339074153034355,3.2948266541825704,7.186040643929252,15.899370435756737,3.916938634294218,4.090872130816682,2.6498449248761746,11.051148673866342,7.625543248816152,13.837013569037362,9.007345192587435,12.296406070366386,9.10033863783882,5.134302457473542,6.298261112267219,4.17772748119998,27.701042759448235,4.633607516674829,5.656783096799308,3.9363285097191696,3.6871742858302246,4.570819158600268,2.1431208265627544,6.467909399436166,5.3492491824684345,3.7541064298315017,7.788621892980485,11.862092676163785,3.3581427267238895,5.055639216316108,5.355979480174059,8.312533692031549,2.620770107979003,2.855547290955227,6.837552097903363,12.86947566425765,3.4916861669267925,9.158595983343696,8.342417226767129,7.671989155968334,4.4838953896902805,3.012312250496623,3.3186712576565607,4.791501397102381,6.0120506334074,7.3937604165328015,8.344066827072833,7.141391030181292,2.97181577296478,5.005935006699339,4.128992554726782,2.368123254773136,10.091049635910784,3.710918200123283,16.64254230810025,5.8813172091193735,7.7071888034236355,3.6035219669004586,3.291739757151236,4.7257463389596825,16.396527668667083,4.6945293712468095,2.0978272094028485,4.992197545579391,5.270033947768471,3.650963873226572,3.6141881421305975,23.835387257406648,3.0774588072584996,5.7350804121009915,4.983104925802145,8.88278626123184,8.856506594861441,13.024520117535094,1.8264714567867868,1.946364315278308,5.727664508844951,2.527342036169029,7.686865771147955,2.3296776505867776,11.49911183541454,3.3238923215101885,22.60820729003879,2.721119674991428,7.23067471182933,3.2343456869804164,7.716935906574579,3.909284533666715,8.844527964555645,4.79162298189708,17.880137332137988,11.259616087088261,3.4096599204488083,4.022842027030486,5.92716961016882,3.7543178735632923,2.488931909558371,3.417546440460504,3.975206707247432,3.2071990715539824,7.144623611660311,4.601701913921043,4.74616871964329,4.6438898579410095,4.842978909593946,4.283679660156467,2.753238816744391,15.884507168854853,5.103381657688549,7.719170613611618,10.998812882019347,2.1845297314985324,4.034595906377083,5.563506833208757,7.640991405902116,2.937258848619605,4.122243036793604,3.2245337742205313,1.6220026223305002,8.919674030590052,4.390906743910319,5.140918822543358,5.664872454128836,5.63227046431805,4.981615774405028,5.333637525446853,11.247148959814023,4.732047797319669,4.508753412869373,7.526702043029673,10.841011197901185,4.259644917598667,19.380004220763315,12.727195956266229,7.575461115995592,6.351365629971238,3.257498608987651,5.4203286572209715,5.544264962825134,3.183988501199931,4.822313141913789,9.309833971550237,3.7449404368216155,7.45630098475318,2.3862867303143465,7.924968827013411,6.5206811630877795,48.877384118090355,8.243001612726728,6.118816971758064,4.561462255910093,15.948580864298892,4.729002784702824,5.55515077192475,8.851473848403568,5.73489384540352,7.492572246760648,2.2307517554345924,12.247890672172234,9.808761083122295,4.9887209538075314,9.403061190254004,3.821095416238183,11.833381648923611,5.870776636201738,12.366168770514946,5.310614659256697,4.807728949623984,9.282697285188132,9.866443011156672,8.934740827371662,9.66750609449542,6.869841646336876,3.3737969497644844,7.398600891652824,2.8296750947553693,11.229431592869327,6.933694415215378,9.35050589739597,16.918808945936693,3.0762857946503974,8.356537901763897,8.156764292919437,7.589202361504519,4.289281655388158,1.7227598528028096,1.765504662379259,4.205919924437805,5.602812469539475,7.957886992971309,7.315209368796799,3.14260001644451,9.174681558011322,9.300877019026919,9.158156959924256,1.9990825370673322,5.646915948102843,5.878011355642836,5.078115302148725,3.131082290464424,9.362813384363601,4.7387170957633895,3.6215584595750703,2.0631874858923385,6.654830968424898,6.830790137831656,7.0910419603992,11.216515772371697,1.9914584289938273,14.309041723715087,22.726971815546605,4.1865869647883684,19.084292595363213,2.473099803808488,18.977242590430688,2.7362395858694724,4.8139697459713044,4.735485163965322,16.360684432687197,6.77658039411749,2.7401472374793863,5.7559611389310295,8.31556738425918,2.658350458709642,20.928398743309256,8.170068535670389,4.4351657073771,6.1024037073603115,4.040731946624667,5.115794312278482,3.0968070441433984,7.554514904111798,16.855193726219454,3.8822159570675576,10.38193768103758,4.274427833829104,4.342125153741087,4.252287215318939,5.365732566071054,4.7455990863839155,8.6859854535054,4.342946956312719,3.359001918247886,10.058872136064453,6.92014774443373,8.546562062349102,5.704257537795363,4.033236133744623,4.819334451394906,5.88105408205272,3.890044330981897,10.2236407025757,3.14405107496787,5.525486883024895,3.6567671957428636,6.757834084585091,8.367901651948879,7.6957487372442985,7.2957403100179095,3.922858677472396,3.1771229642944734,5.388367940980101,7.605968689790581,6.430806747281336,3.9776090519982708,2.5115347723577535,3.587669294484316,9.076862483966533,31.513216473453724,8.645724787422058,3.798757385163676,4.4432809419576325,8.873014962341154,10.335858973361836,8.115564392589002,5.430020634633436,4.009660853445815,19.183746279341126,14.000997655717265,1.7206423577535326,4.805903736703506,4.965702903148998,5.490441610383219,6.8083293108367595,4.064231609283071,5.5631276506948435,2.748120313987434,19.756888709580906,9.588004241849784,7.43794804161947,9.831214996161329,3.4428531119203187,1.657960684764476,15.659919023258292,10.06476245182939,18.94814396106063,3.3516805338531706,8.282697534775961,4.4969560299375635,2.309968849024609,8.293286954507794,11.6063006598177,3.483626574570965,3.0393409102475872,6.8531948464406405,8.412406882249988,3.6941243769545244,14.669077552783579,3.1519604918989823,8.573390941658811,21.659140399926756,16.242907599464214,2.496226984988743,4.227826381089706,3.0680378573423166,4.988806054652535,5.491984891521651,29.942667381991402,9.728248102821498,21.928856334436592,7.658238361773966,2.1288685776136482,10.772860394808383,4.91352912185513,1.6557757744315178,5.304259153197603,14.825336389508236,2.3614230127230305,9.389477558748135,6.45129726681901,2.2646535436571145,2.765418350318965,5.807893771855165,11.277932573227426,8.959471845826862,5.163518942438381,7.900832081050795,6.879985896142816,7.887896255337641,4.002714529851811,2.831217394644423,5.018451823728419,19.797124258032852,17.851195022802333,10.257559445804514,2.031824580530802,13.107811591599772,7.218560033087089,11.47062039571833,1.9183314872308648,1.776191135786967,11.914409552710639,2.6475671299796555,12.344100945486574,5.80541284893003,15.111883161181327,2.3738524803321317,7.032049346164688,7.427754894040315,12.30026034629806,7.531890243012404,7.947711821097771,6.511288271328386,3.010861393103707,6.367840825960993,12.285331366677674,3.187035210376475,4.129606307287137,7.958154232160159,11.065078021679957,9.863879931547922,15.321332551611993,7.203390262134504,14.885219435900522,7.086371906407862,4.719178636142524,3.3809855571071274,7.505803198206171,10.832695042442387,2.2322065081539626,13.025234975807276,4.719037746680382,4.440849950057722,8.31468976581715,3.388188216891052,10.466315564619512,27.071230281100863,6.8287976188143595,2.5605415375030094,8.721612827317662,7.140927947939629,5.760433811734037,4.75181288269909,3.0525076247478773,3.3017175178043123,4.3366122949807435,5.0234843323867935,9.45408289691047,7.400980397495133,9.257591066103238,5.3179305194614805,2.6354040455621313,3.7115196146585543,15.161472854457877,3.681143811456709,7.870018503254449,7.5348003832752894,3.9185632544885682,4.763650540075276,7.381345631361497,6.896113710096534,2.083341523767606,2.977590651997009,4.278535723731812,30.176560379341215,4.601389307178517,7.339831560741181,2.6233305509864593,16.515471483616786,10.834479079607691,29.555561890790944,7.116855123003005,24.36769891832171,9.411712186986247,1.928459739875994,4.820130213371151,74.64729461334888,17.292396071189238,4.63196160724001,14.915703021306888,4.4508528136176455,4.430583918335273,6.4012155750395365,6.87936080103469,8.904993833487437,7.365549276620377,9.712910070111858,9.747230541927411,2.378381736233845,2.5481041312868102,7.984173895599547,2.8112543114232986,3.3133622074548823,38.47898678156229,11.513867419368006,4.188803291197299,3.503271604599977,7.921437332848431,3.096738654815657,3.797388036528635,4.11533808344955,2.9057090736441498,6.8772895896099255,9.421708006000848,9.582825137503319,6.434077089962399,2.457951091130498,5.780358140232136,11.070954062650257,16.522078219275468,7.2340603620076305,4.756282617846595,17.13994275518779,5.28598658727663,12.018804910741842,1.293085639461164,13.915992525340618,9.814540289129136,20.104538480524607,9.186610548530759,9.743847916195184,3.1754893676091456,5.878094861827183,35.56199043092338,7.304308442812254,6.541608919142873,9.163515991810316,8.720707636339315,3.639714356539574,7.208929882936456,2.2907759123700826,2.4049418263281277,2.460441781963596,20.761135708666796,14.082706284741253,65.05307714764038,6.52953784821986,9.611899773632619,4.437281461629608,4.155767855792584,8.275720853687158,7.402230493784288,4.6113780204858985,4.074343089772235,3.9421646197623184,2.6534670661528414,3.622720341402702,2.0841533224593234,3.4430789984135535,6.222155756557164,2.65720881894371,5.174951875153486,7.346961082664528,5.98940813973813,6.0806832529263675,8.807757754470725,14.264909224302752,16.952022407779882,7.1265692856503025,8.872978257265697,7.260439944121271,11.711829342902561,3.501116559955399,2.855149341804365,11.052144534364814,27.495693888707436,5.89327447673855,2.7333321115779237,2.0388414947566766,5.143119030135599,5.396956136931842,8.79602825997782,3.9602997890448113,4.782675960462772,3.309745880728256,2.391639585245331,6.200718256623725,7.149256341298586,3.9548737001063836,8.50772741349952,5.985319453372984,3.2683745570440768,4.267659036398366,6.590447558748814,2.9598381256104416,6.129433070015227,5.49324188296713,4.780832544776797,3.8459415387909828,8.003588857618416,4.945394457701146,5.113245701784206,7.906249394326391,18.80173605670618,5.480412089161196,11.478042752206262,15.919322348688056,7.743372540497576,5.665512643247817,3.6416848161725466,6.169923610746086,3.7181124923035784,7.805066021910076,16.995399525312223,10.816080527254718,4.885953637123558,3.0599978748871033,13.178717374226647,2.775926530603649,13.746320359159336,11.97737469842255,2.5442470311358267,1.7351151816951436,2.7495709034322475,5.075557320370311,3.5971872652661157,3.7787812733797237,3.008205483389066,6.313380654653577,8.383316232451543,2.2827471547361635,31.41936109668358,4.605732729793109,2.2755224652282826,4.588911946868048,4.423266686094293,2.1518247130789936,2.763760767802214,6.363480598988168,2.0546530465033377,1.3942789504150819,3.880266786825004,5.797206420534554,1.7810356721958422,3.9315729961471564,5.311399926046497,5.079985386038159,3.6009056703405005,4.395647192126797,16.488491969683203,5.717871281697401,3.3020210473983065,4.54195449444509,8.875697728615211,16.865992394498054,5.9431847055171945,4.771879014566703,3.2739087899298296,13.342484649345334,2.218400380131797,3.5550624346206687,3.66294382220077,6.538446585908402,8.939294163234578,4.2304838612507645,4.358671105321945,1.9612370546876337,14.888060544679378,6.6295099209173705,10.397903007265864,3.8345504677904736,3.422329282875991,6.390374933061586,5.311926765034498,5.994137380241515,4.869139451012751,3.054116502850656,24.537554281715764,20.751584107171567,14.272508063034133,8.668761043933328,5.081020076651183,5.432452383634729,2.067745677262955,12.106861261191423,4.267852274108604,14.782388078451419,3.424597873090689,11.531133778960323,5.300004057416758,8.9729925925489,5.110074501314828,1.8747542756285323,17.999372285125443,5.525956265423174,8.20483283977479]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}