{"self":"http://probly.dev/api/sim/5BKBsDo7eUotuF8pPT2Cya/","id":"5BKBsDo7eUotuF8pPT2Cya","created_at":"2026-08-05T23:14:03.457383Z","status":{"status":"SUCCESS","status_datetime":"2026-08-25T10:00:10.567977Z","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.49295789183968114,0.35934006710098376,0.4743491526488011,0.44950083848550426,0.38939499936767846,0.36469606585941505,0.4729928086381249,0.3739458769950041,0.5849027857972493,0.4471969864691407,0.39477996615608657,0.5804026587221206,0.3619060089586006,0.4118947909160266,0.5005959433213584,0.4022589544441368,0.3868106809894421,0.501823510493222,0.5675776674024058,0.4957040701562267,0.4621949672899217,0.3657505848335355,0.4594532685729983,0.5457483583715708,0.5676432049532673,0.6079358859020053,0.4601695439158396,0.4145507365346807,0.45470614266157156,0.4422227666867728,0.47963295288924035,0.5036454175081891,0.45533727714006533,0.4088945881700344,0.45142435510126805,0.42011009642432917,0.48910646196451385,0.47233246136434104,0.48202705635201365,0.5628452675788961,0.4573982084808179,0.5149980561849863,0.46568007948883394,0.3712512800285642,0.37618033686021635,0.46810662092497807,0.37013166486370475,0.5256310522544024,0.5044563494866784,0.5985320258517125,0.5051055295831347,0.5018547600158653,0.4570612478175477,0.4329215842674762,0.4009505629649258,0.43961259146330456,0.2544640488714824,0.4480892083203171,0.44534529990354815,0.3643913103701258,0.5256570613306326,0.46913947726420685,0.46915834130314504,0.5023806345772522,0.4173729085068859,0.4544541038690718,0.5536043735354406,0.40546615366590444,0.33146368749764593,0.40818389638180813,0.30642389929295855,0.5338417140610762,0.6079768982740555,0.496477432602506,0.6167193071970173,0.48917308190474723,0.31600386831419097,0.4417392405351976,0.3953899788819673,0.4697568460334818,0.4891504313944919,0.3926278785400715,0.4933441294173612,0.6246629148522493,0.4234972693734224,0.5708522244337256,0.389424237434364,0.5834271800717421,0.6789332517342616,0.2920219138581437,0.6250588546947107,0.42054484315851887,0.47467127873266823,0.5474162427636208,0.39938374779531144,0.520215607928725,0.4860203026705047,0.5203862950518697,0.40963564942968755,0.39186164802491164,0.5140295656489369,0.39379398739873755,0.5073319873528089,0.566371009284444,0.4401879775917573,0.5191322015369915,0.5042119347397181,0.37054132869412604,0.3655186418388288,0.4416968613266648,0.5437500204484959,0.487800668487665,0.5168275470242142,0.3977745503563116,0.40573508008921216,0.5157669657570858,0.48185836369663904,0.4401496545856488,0.4558676862725795,0.664812179088783,0.47883569269545734,0.5109556573770596,0.4675591991428378,0.442561598018148,0.4107112373830282,0.4220836559116339,0.4002443027342166,0.30851294971690285,0.5781581607653442,0.47291001784039566,0.42858637041246367,0.37953873684998984,0.45436390364336887,0.4833968630584804,0.5444591185084359,0.5530658010032011,0.44286341207678026,0.4263908685611378,0.4301449666005486,0.5402076190866345,0.47237392001055106,0.471931231299764,0.43170612861405605,0.4518674905329259,0.40698959453261346,0.5145529505367225,0.397993928317644,0.5504366777574959,0.4936684317374765,0.42298103464264936,0.5790690709964967,0.5628965731843679,0.5798746072134734,0.3634358335329062,0.44753186575867493,0.5539964645871494,0.4806174292359858,0.44743930878383525,0.5080947828746573,0.46611008713790053,0.5475052485547695,0.40190133953920726,0.5774029395736011,0.3945062824644243,0.39089967866827746,0.2911052343379764,0.4306206036937609,0.43571614560586025,0.36476734248283227,0.41367672774310293,0.48441827357309425,0.38279139471197715,0.4292977403879113,0.402945047312346,0.3027011358127058,0.4884971562161068,0.27234021159400185,0.6276664277431603,0.42608985009330275,0.39049618825401256,0.5375284981017351,0.3777989385600518,0.4878852034168348,0.41052282310154403,0.4697447566088258,0.5663390386778447,0.4045687848109492,0.40569482304499244,0.48553632097378246,0.5216164468228465,0.40666294105401424,0.347982592386718,0.45143901352036064,0.5546502414214125,0.5962169650508933,0.4813940568962396,0.37071096236436485,0.5257566279687128,0.3317181279810677,0.4207563716327304,0.5261054275518929,0.5891967792483369,0.5140871904687282,0.48008345575354155,0.4271887011386753,0.4305239350242501,0.5415474083339349,0.5008256346815696,0.5414280568421991,0.4171791734480985,0.40695867065547864,0.4597523095278621,0.43921837977820455,0.3410123546124387,0.5500400032927876,0.3922800187422291,0.5495596578300062,0.44099339701882695,0.3940188174706388,0.5139323549225187,0.5536311181037538,0.362504952754382,0.6075200456317768,0.43896065358669456,0.34812289159610244,0.4233008821978169,0.4293674748830424,0.48634702040395783,0.6184513786956913,0.5154366513190244,0.33875011125608834,0.5856514964660313,0.3452022681215051,0.331890541616146,0.48838341867010654,0.4593649015123585,0.6262274192493572,0.561069577707329,0.5032585340707302,0.2819359952728273,0.46170356380028604,0.4547320447131514,0.5116256408743011,0.5249535052041768,0.3691084911153451,0.5217579723428302,0.4945663797654769,0.5804051803313018,0.42330755090079986,0.3055203228472844,0.6086137221359347,0.6241987377017268,0.5456947739880074,0.5551814823522677,0.38380044258852763,0.5677018277338702,0.4193647812261744,0.4225302464171264,0.33255890039729685,0.48083291796193245,0.4351562263523207,0.43632829527010164,0.46408203478370313,0.626294435245786,0.4887595995148102,0.3844865757713505,0.38041436828066727,0.49930635833177106,0.5530723259483672,0.5087322667973837,0.5177841354682302,0.45650620085102833,0.3782873065138211,0.4210257977712965,0.4320299395372711,0.5133753112945157,0.38889361699529357,0.47302196962737375,0.34624302875500407,0.4803239417178746,0.477301664654715,0.3756627908007083,0.39722204444336695,0.513480487936078,0.45718472463461735,0.45776173075509774,0.48088630861530746,0.4641038564125409,0.5415140194613416,0.48077785259612704,0.6659378707947431,0.4944102353504627,0.5956618091999164,0.5318362837145026,0.2939287571774846,0.38904280477169834,0.38911855482406477,0.6365041024808662,0.4424837478003268,0.43045850460345025,0.33633690673179484,0.3976023736545912,0.43168677208359024,0.38994035244604797,0.4960003765391216,0.5734351300306263,0.37018209561570115,0.5663694391712958,0.5308282526800532,0.3690099495921505,0.47214951689423285,0.3710440511453043,0.5132956104094656,0.4703062056711536,0.49656971020064566,0.45033224844770353,0.31656295381476973,0.49576120543914404,0.42646460793710284,0.4793948633756811,0.36975604034437,0.5995476000648566,0.46238339056857847,0.36930030704128003,0.47628199740153426,0.48535821180939154,0.5426054998754618,0.6035369455164186,0.4607958781255943,0.41783130619805214,0.45174155315371095,0.43853407362818614,0.424138783095927,0.454695627433437,0.5405648305567041,0.42453240693681826,0.45792061616269647,0.4577493943790358,0.5142390974630522,0.3715944346881176,0.37895339298093983,0.4935958592754468,0.5870892235837064,0.5672900855863046,0.5015405059654624,0.44391128150843945,0.4611006263129199,0.5740032151093588,0.45138143559944344,0.5145509272669635,0.4681214712873978,0.5914148879076875,0.3861237452188759,0.484001977697398,0.4844638561305145,0.5591714927681386,0.44655057463007447,0.40147308076612226,0.4265580363927508,0.5207607990059823,0.5665158969509867,0.5003461048385659,0.5288760238083047,0.37507284792917445,0.5290040849085982,0.47333582949801495,0.5921781589113382,0.435894190211621,0.4136131749452988,0.4444810230741244,0.3533556269502299,0.3964211537495199,0.5345311884951274,0.49357347368198956,0.491344971945694,0.4520036391549928,0.4450412489201352,0.4450801050724083,0.42706374215882154,0.554229904965708,0.5512567924638511,0.5779811517558562,0.5012064980784701,0.3863037406902985,0.4301269595338411,0.5402972443612735,0.39048138281378586,0.5825352258387914,0.5543467765352739,0.5769556994220055,0.32265620655481103,0.49810272618809903,0.5226359733348058,0.4583925381253761,0.5011947818320197,0.5883096725908329,0.3399195704005801,0.45091455525106733,0.5837626911954453,0.5040207409700839,0.43139764519472756,0.48002003408824645,0.37419722848808196,0.43591288865985817,0.3013936690111535,0.389800635876457,0.5299196143629529,0.37951118252543864,0.4494444318880293,0.3795052223613428,0.3892477975237104,0.5111831640580583,0.4710777936854666,0.3345893674487045,0.49488462586024073,0.6004903660869718,0.3009074229638543,0.4903770695326718,0.511564461574756,0.527753501201073,0.5622032866615495,0.5731919623843368,0.4262560579191861,0.5146604836167876,0.6383894732971442,0.43763856127629214,0.5973293108983689,0.4727206870761825,0.44128229549631115,0.5080412880081313,0.4451318060358119,0.4736812746990257,0.48541081749463466,0.34582520887814633,0.4387875893755224,0.47287823135353907,0.5050211173628573,0.40887707837745074,0.406102660084991,0.42631253250337353,0.39279410778915885,0.36873561416819245,0.4539920370752395,0.41889391065392656,0.5162753160571473,0.4664101367593606,0.5576867369757281,0.5817127704350781,0.4116032178522271,0.3446851515539307,0.35156171212792026,0.4920337196741497,0.39798660320981033,0.3842370585396764,0.4834298536496759,0.28521886501299626,0.5294680658130557,0.44476288362008987,0.4860010311713668,0.502090847298695,0.40961870515411947,0.5561638291027359,0.3928411801267186,0.4779304726062104,0.46961547373391704,0.37699494327917876,0.27486101648579503,0.6156617783696692,0.2631845761276451,0.43454695819165107,0.4675503544571367,0.4128694262132314,0.42523351365976364,0.5242589845837686,0.4169140555711649,0.35100843535629805,0.39434655131796176,0.39898138023168644,0.5172965717792484,0.4178404375859967,0.4537946845546572,0.3752524396397076,0.5514153837500004,0.34947343953318355,0.5314309562890168,0.49828112152102805,0.4727535952841163,0.46107812005354437,0.37021505071550426,0.4068079093051762,0.44354081762279296,0.5373509857892778,0.3558859912784195,0.39275448688634607,0.39204546770077797,0.41251221024092194,0.540777975042228,0.3206840385917295,0.399779195018862,0.514037956122647,0.5256562442092344,0.5465661886019747,0.35111649295851644,0.510641811780523,0.4441858413532832,0.4951279045117364,0.4778328685754252,0.45936192782646745,0.41096285487957224,0.3107102038870295,0.5828174075959907,0.6031268732752041,0.48129744715743467,0.521152089655206,0.456759044126727,0.3657275738441031,0.5709003397103701,0.35125558503218574,0.46557695477501676,0.3294007286150855,0.5746283314396236,0.5440636982057113,0.5764919262459406,0.44405604456399983,0.417021114536442,0.5008505068257262,0.4721544769786386,0.47211783976848004,0.4590857826195733,0.48420817946012495,0.4808510604782382,0.4690944434461807,0.49973295177597343,0.43124852545603337,0.468347788858763,0.41686011247541643,0.4786569243795017,0.5604234783013744,0.5480664414952652,0.5651093051471426,0.5807000748582501,0.5085514975123497,0.46984804681958947,0.47555674028280837,0.49039138196581694,0.5542449422741088,0.4815392134843326,0.4773811394562786,0.46356396390261734,0.4439781303741678,0.35637670571489594,0.34433069494052804,0.43432745899782527,0.6384569337087317,0.4169045730936979,0.45613803706389733,0.5630834076839789,0.5206748920246587,0.4532484247765048,0.4219833578821308,0.43070779579849194,0.4745738512090232,0.4895197031080186,0.33031049317843875,0.5051910198909255,0.6089612370800063,0.4207656192204139,0.3761926292585534,0.6141396744338742,0.4426690321785849,0.542979654224161,0.4845280971437738,0.5051663656616212,0.5207293511936212,0.4867131020801008,0.38968794874858315,0.45830277555757565,0.3691502018433336,0.4327295610113831,0.4651228185446031,0.42024007407661473,0.49117165722418615,0.4515480795496833,0.43792514497081503,0.40906478987789646,0.5710626762064063,0.491063151292921,0.47689168884810595,0.3514909090529994,0.46973954294031134,0.4543943918133987,0.416684779249453,0.4248148806835644,0.4585887340006534,0.4484128387558478,0.44162232787296135,0.4905174905062933,0.5381506097956269,0.361343450573254,0.5297797653492828,0.4172736095089439,0.4674214613351453,0.3154091362402228,0.45603032196065457,0.5261570969453231,0.397802093622638,0.4416646832968794,0.43270367983109975,0.40436850200197166,0.6027472037850137,0.49521864180582703,0.4187173259884108,0.5670156381242366,0.4743870950947949,0.4598335107394429,0.4061448152744829,0.41139652972021756,0.5047116648589328,0.573731370588894,0.43632774341955455,0.5033448841748616,0.4740665832028224,0.4572475458518296,0.536761248532608,0.625729655807262,0.4077032976610161,0.41304713727087206,0.5894000834329177,0.35352437343532744,0.28805829057499893,0.5740877156655035,0.5207131555827755,0.4728893948278986,0.4966012190995835,0.433740213967966,0.5017661422270606,0.3624139035632306,0.5186070624034353,0.51353955453577,0.40885020937379457,0.47765342945818673,0.4859923883205367,0.4385537419646378,0.5318546029206278,0.47438984657561273,0.4857339106305794,0.3837772801200194,0.48183649216355506,0.38181083895145196,0.3715194069155281,0.5326392451595597,0.4326692074964037,0.54704985324479,0.3281845925070401,0.44416680213076287,0.5603368958513911,0.3646488434893727,0.3753381699184035,0.3932431015218079,0.42313877757002827,0.41603291578945123,0.4860630512431307,0.41324284497383906,0.40494878958833547,0.4463497487481266,0.5142191939795987,0.5232109198563113,0.6103175462107835,0.42394629320203364,0.4415545061404564,0.4165886781161219,0.5123444573775391,0.5678170495701269,0.5384679205226668,0.544963064239717,0.5227697329083686,0.485905222799371,0.42524437909816165,0.4857976529652795,0.42349877590802193,0.3204732857424415,0.43787725894922813,0.41847637517786657,0.3648323567468858,0.6231649291322183,0.44698777482486235,0.45145934430601947,0.30672644169756674,0.4471978695414653,0.3807483248883949,0.5034991198060983,0.4820825034029063,0.6072952009125379,0.36950389496997,0.5413983583840751,0.4151049232146177,0.5348532898492429,0.3836653078399402,0.38298722838149246,0.45949818700352796,0.39495916064384645,0.5312686109866823,0.5053989438569947,0.4426423876012583,0.5600015112486866,0.4377297142414568,0.40332548625790526,0.37065396269625256,0.5494009951609602,0.4029939174929294,0.40832495565740984,0.5547317158789232,0.548188284853655,0.3998720485561922,0.40104811735609663,0.5036747889213581,0.36920183039190396,0.5766217302956068,0.3721372938517357,0.39282976470380504,0.3435242080058518,0.4930346825403479,0.5361580321715107,0.47457790672899397,0.5012724262915346,0.5038745667420315,0.41186774339874305,0.3088089686405219,0.6226860535636207,0.5451861065058298,0.48566028840866005,0.4909094668943059,0.5185612158327512,0.48468038513361755,0.5263508139352732,0.32803297464089526,0.4848732054096965,0.4751774170495605,0.5521909629751007,0.35888025573578825,0.4537817542031595,0.3807000090714947,0.3014957961563369,0.5626081812360133,0.5102250466752649,0.4793922507430577,0.5077261875413455,0.4354043517640344,0.5854094300998387,0.5484955147470014,0.4015912780573301,0.546384285982237,0.38526220519787835,0.4678244934978391,0.3645030079019022,0.30693211486831506,0.5172987916810782,0.4566329590815907,0.5642242059868565,0.4604179860885421,0.5486979984795842,0.37797521924348065,0.5313174250648844,0.341609775725648,0.5621187198844413,0.5369970348540772,0.4472332114416064,0.4422900608693302,0.47491144709075783,0.42980415552074086,0.5072406830404047,0.5756323228421166,0.3622219778147304,0.4970631507631359,0.5632961624717395,0.6175081215556244,0.48970464692908106,0.4097889793231626,0.4344649259457375,0.5230566983296709,0.5239034289114354,0.3944827198378822,0.37587815979531847,0.5165424087941461,0.5154501508126389,0.3908866916057774,0.41822330612808073,0.41527311977225345,0.46525916013381247,0.5367918857879888,0.44650666316044685,0.44814764980000055,0.4202218261279834,0.48159316619757153,0.41925243533328843,0.43512974030019513,0.4296435334878593,0.4700165261346591,0.4603778295663247,0.42953421899234046,0.4157841829047017,0.40913043250980896,0.4842377449958595,0.4057175180091286,0.3870617894713476,0.4402056018673459,0.43617796426553057,0.47434340693305355,0.47032487439574144,0.5850488165535969,0.4940996952982995,0.5154383288977913,0.3897208487385471,0.45428747496168176,0.3612088942181079,0.3874472410059251,0.40001346197647114,0.4611010909788755,0.4587907967711954,0.4437615707134722,0.5521223758937519,0.4471584907866605,0.4710198154058211,0.4175083176995616,0.49101594400908116,0.39363560109344803,0.3446388546420965,0.496038723822517,0.3605233232511902,0.404473033852215,0.4860784848084876,0.41695733715533095,0.4260519074717059,0.5501597981984894,0.5218777687148556,0.5629491243034727,0.5120228288210354,0.4756697414766,0.4372774648070688,0.44626081359724373,0.39725156983222065,0.40034400917211177,0.511804119584228,0.4636545568381994,0.5000768585097681,0.5127382181125928,0.43437529415251014,0.46222067625005686,0.3199965734323627,0.3495971906071981,0.5365231009966435,0.5069049986527883,0.5998920935503638,0.523283213724658,0.4568408867544186,0.529752713920997,0.34091141649244744,0.4733034682273721,0.2984579260221574,0.495813666133985,0.5214539276183082,0.48406419727692535,0.42304881335321437,0.49866298097873646,0.554407505168739,0.38742158488723794,0.526226756999301,0.596757712183753,0.32641044215157616,0.44790072621490673,0.49236601987499473,0.48656760845446295,0.5330136711172382,0.5885067518555032,0.5171603086906207,0.4368417776589506,0.369961366228571,0.5362808480799574,0.5229467402904695,0.3669298919980678,0.48796182017709755,0.5184109758682803,0.3568261123071793,0.4205386148198954,0.43635062079742964,0.468087285549784,0.3916989115208619,0.4094688474281656,0.5356208122619749,0.38634322821720324,0.48298664496558086,0.5317393610556335,0.39817993377753735,0.4522130637835036,0.45028816841586283,0.41713420197414974,0.4407920772354774,0.4223603984668824,0.40641606706285477,0.3957495874585014,0.4233568696886613,0.4446677368679724,0.3671352733083636,0.29093996302119945,0.5265878652365522,0.4555950025654377,0.530787436510517,0.6050365692036955,0.49110186953421625,0.4580726653877643,0.4696656602853432,0.5451699589187817,0.36872711453867274,0.573483419161541,0.49918325542337866,0.561920174784185,0.3613879243009719,0.3719817574071296,0.5036906441025636,0.4874248541421372,0.2829176899428324,0.2938743545575852,0.534626096515437,0.5216741962749228,0.3955732678514725,0.4047958477328599,0.45011411810575147,0.4551737502687919,0.464619729556454,0.465356124922267,0.3664472083773428,0.4856471179247548,0.5574074352523499,0.43276289411831115,0.5355059303098291,0.4974533454533309,0.44464252801714,0.36052167770922144,0.3721930841061522,0.3888576382883021,0.5267142726745089,0.5057600505134182,0.46866877209596425,0.5030252085852744,0.5114352559671729,0.3914407420357103,0.44575463167038004,0.47437622124179596,0.5269696405832031,0.5949980043106226,0.4134471917365909,0.3938934752093512,0.27865619025184774,0.29634203976950885,0.43721514108145837,0.5606011230914089,0.4881646819260302,0.48018068359199917,0.47756214759611665,0.5652261227875104,0.40881887897706864,0.5995351350427717,0.5255575567407008,0.39841028687246177,0.31561443304510006,0.498720158983911,0.5342173144299792,0.38113279940084843,0.46608848429528404,0.4886093784861035,0.40912950813584853,0.4832529348254618,0.49951374981694724,0.44479920974368725,0.3821477902650055,0.5278330971581893,0.4430588226831688,0.5221519928666204,0.5068017651800911,0.32831943872169994,0.3799581867035328,0.41732492049262,0.4802191649575815,0.4216236549544527,0.5254678230467724,0.519820503382262,0.4928797444820784,0.4229556596066458,0.38805755147552273,0.36523251746854496,0.48518165461226354,0.5101090139734664,0.2939050041903895,0.5555946794747371,0.4323073642125218,0.4226478861451393,0.5616287998622583,0.5077227394279789,0.58339290329387,0.3613564635210094,0.4885384020117764,0.40564361712403785,0.5004205787204803,0.37978605906167934,0.5251348659704633,0.46425880207093145,0.44277245947057414,0.40298987707429196,0.3652259623499485,0.43620819108111714,0.5235248173364655,0.5460043675124501,0.36790011002829764,0.4976184556468059,0.3978720410243029,0.4875570320354718,0.42760475883598503,0.5065723153248112,0.4553015453538551,0.537661189636826,0.36130680113122776,0.4855614577524225,0.5233840597847378,0.4905906502844421,0.6121030285576995,0.3172471248303408,0.4430059821602896,0.49446654025072084,0.40800159145699283,0.3627101719945557,0.35941497619929763,0.44112975477176086,0.3450310343690221,0.5969679801571054,0.49703886898755256,0.6471563369749663,0.3181054345252893,0.42696652912752825,0.3536015220157172,0.6245463692827312,0.5667409408430957,0.42527144601691236,0.4333675324027789,0.5236350831343937,0.5393384307676018,0.48194885885279537,0.4891908005711207,0.4023382654533938,0.40944464026346206,0.41033575953402884,0.4356882013124309,0.4709933952873764,0.5081169505049347,0.4888363265474363,0.5176365384003773,0.3788019826452997,0.47040679051853385,0.42308296150864516,0.47212916480123296,0.4385279559664133,0.6459390431683023,0.6729239496036405,0.4658137605690095,0.5328745736249956,0.4521864749326715,0.38691033785088813,0.6080762300206553,0.5103902262421025,0.43970051292656936,0.5808967002494618,0.5359834018511196,0.4806698629496551,0.39123561447412436,0.49747484965563976,0.4929643671193811,0.37819553668535943,0.45326080420792114,0.5113589498169486,0.4753018390926221,0.4775261814297952,0.531189931695834,0.38029749010326824,0.4975177323779958,0.5834322905408432,0.4287969673126912,0.45340555989290066,0.6179919052810265,0.452501096552981,0.35822817958453596,0.41642215817063133,0.5305230784156296,0.48160566636083807,0.2979075505389839,0.5873557265507701,0.537524399848846,0.44333351392347303,0.4129243384566545,0.3550459151751865,0.4889002059081308,0.38194886853477084,0.4060047315398256,0.5062820370591421,0.47317811698858014,0.4082702182489649,0.501710638286867,0.4186278114543801,0.4885563815879171,0.3935873845315649,0.432277659758255,0.607988947709567,0.43672797259815566,0.3666529383232141,0.5054891480755694,0.47517564735001805,0.31578194622197914,0.4358341120432232,0.4019011957850498,0.48884258290439564,0.5469659424411359,0.47143136920311546,0.33632774066528787,0.5561488884100553,0.4254325974753754,0.5054178005055068,0.42014492713488566,0.39298970423515234,0.4979791706757345,0.42107736567903115,0.41775502939529435,0.34355979082626725,0.44280379572707784,0.6223228036684438,0.4872929860490718,0.46002470646561106,0.3534285496111175,0.44016944723809004,0.44283997334270386,0.4257484339898683,0.5441585666968449,0.3850450369481888,0.3828393045558439,0.5133523423424231,0.3662640721993841,0.46296852738138233,0.36398431166569495,0.5141178816847717,0.4675220618265426,0.3848004846806576,0.4662975288168755,0.4463310991625449,0.4999108001013883,0.5828026941214763,0.4778688460318358,0.5541897460050023,0.3291655561688232,0.6111157347146693,0.6431002209901117,0.5407583967948705,0.4681646447044646,0.41641816721716873,0.4357224068173557,0.506238853884059,0.3974359400638103,0.4979813188149961,0.5541254996570967,0.43313165313788204,0.3371260512448814,0.49659937311781716,0.3125327578025511,0.4775690478374821,0.37267815007391425,0.4504313450492465,0.4796370295066827,0.4066273873146358,0.3683008864255813,0.37983066697737267,0.3655999900810603,0.4462921827908397,0.5837950609895637,0.38260267026984335,0.5222590303792873,0.517744386800268,0.3686179583896522,0.46833206704543096,0.3253901592220627,0.48388149318871454,0.417042957127641,0.33780391150821193,0.3723202889042407,0.4784786869448662,0.5476817500656989,0.25947870105060805,0.4260842960415275,0.434280703646573,0.460197894006611,0.5620218691396847,0.43888612937481747,0.47416694101135215,0.46394695012868803,0.6494600727660832,0.43298727393718006,0.45463618136895007,0.5018598673551622,0.4575708417341899,0.5100689977118645,0.27821528682649743,0.4278769198447388,0.39316643097697523,0.4309355171474318,0.4513069673498105,0.5603284331970938,0.4730388989634575,0.3892681837382117,0.49912293115763995,0.47525765835189066,0.3882638430645441,0.46920225751748795,0.5123518188042268,0.576394080822824,0.42590015845129864,0.436700809260064,0.42339366126172523,0.45416312987981455,0.5141800250048744,0.5206460729903247,0.46464599486040375,0.5947554675974017,0.43051511745309456,0.549253462649486,0.44415266768456596,0.4589735657476895,0.5664906788909896,0.5358387721312015,0.5923289476672774,0.4848423858169869,0.3478455510077725,0.43517887827114754,0.3805727175654436,0.515057373182611,0.44122690204422615,0.4037846941093352,0.39388321147100736,0.500363776119998,0.43697974650261157,0.42223206313342865,0.5206792018994386,0.3597661406111607,0.5637398961353483,0.4301302478797569,0.415174659673653,0.44323905126633506,0.4513760083904974,0.6258060121003529,0.4143310622411811,0.4531635249273979,0.4954112302655139,0.35713554556821026,0.4207955842243491,0.5131496694645107,0.2581353432638216,0.5317766819820697,0.4985808693614619,0.519807963688377,0.37827316843326136,0.43365984823484244,0.4163018634235753,0.4577460053006208,0.49198110949158513,0.5148221990038326,0.44206404867724264,0.3753696736946749,0.5119918131607755,0.5144619528059795,0.4680264083097885,0.37605390963155155,0.48514907912217203,0.554932014942128,0.5668798675945311,0.5059655949599388,0.49955443266063915,0.3469458106476756,0.4159810444843209,0.6246208729973347,0.4979612227701788,0.4685551414336739,0.4866931404143009,0.39488312632610817,0.5289681700373313,0.501392190554849,0.4548451767619178,0.4302034441872722,0.4104756532906112,0.47740324269377205,0.36636324553811406,0.4289266330604766,0.5204776186239712,0.4306734911442095,0.6159539890838044,0.401194895113152,0.5715807097372039,0.4726642125180313,0.35299988763069695,0.5098118653099736,0.5038765657919064,0.44436586984416154,0.4043474542521356,0.45521621815477986,0.5195315965099485,0.5140108045183924,0.5394547919770513,0.4361128235764207,0.4368929052173193,0.4208213384893032,0.46887755586560365,0.5911893565205041,0.5127502714922743,0.4138926190596727,0.4029846507815575,0.46344518228068626,0.3286349546264153,0.41136329863816695,0.4482413409247738,0.36803700102471815,0.3542447759696276,0.46222435194851835,0.5252796967200358,0.41516131648802973,0.3590877344089994,0.33516139719342847,0.4915716572176107,0.37099862021861696,0.49720326132226855,0.4780157365983742,0.4466055196196647,0.37715200114060415,0.5280267149699929,0.5038844488802948,0.4553120602452939,0.5098519786206087,0.6343379909425687,0.47698492387209307,0.5095443797442563,0.4886810108429276,0.34644309575663745,0.5246153323536583,0.4610816405129771,0.6159022580495715,0.42878900513576024,0.5069711527435252,0.4226291406783362,0.5348210795436964,0.3720344984279701,0.45528042824438886,0.5150246282642503,0.5072477014530438,0.4391853964985791,0.43753829315542836,0.38355085830566116,0.5178059135823174,0.43724565660471354,0.48148568890380233,0.45201329533364837,0.4661471077777871,0.41096424077235216,0.3355768872218901,0.4024964168515711,0.5768997246193001,0.4333498107223245,0.48849084556212335,0.5040559104356914,0.4244848443769429,0.4852903391631598,0.33713919317525065,0.5341453341038871,0.54553972250656,0.6425745049751844,0.6209810705280958,0.4932198961539633,0.5450754143904378,0.5121207970064857,0.5841836194698645,0.3727319363137293,0.4133058687808009,0.5071246396113495,0.4967274419894437,0.3454863278384117,0.6026760478908776,0.5464233636721323,0.5624641195686423,0.5269881941827789,0.40587336837282845,0.4257518107015002,0.37498310032712134,0.44278202747115236,0.5063333576258947,0.5005240269689911,0.5994447816555994,0.4822886881106922,0.5223846439739035,0.4963172109597508,0.5026816958628669,0.5266006473969819,0.4162039143195135,0.4377477069432184,0.4183808867041288,0.48794148324529385,0.5101552151632717,0.5553436939669255,0.50321410293784,0.3643685321932326,0.5923312872397017,0.42744101327101397,0.4074929952559334,0.5208827616888566,0.4229079842308286,0.3830247906786994,0.5384588509559367,0.4608964371319445,0.5008812338895502,0.49503367776333085,0.39842432879391204,0.32669992134713555,0.38775032874359916,0.46857341754329934,0.49752747202134434,0.4256815916096878,0.4430076864822323,0.47751429194764894,0.47620029533120833,0.5071950718591702,0.40630795487501337,0.45717070579784114,0.46116557508628686,0.4112045144100043,0.4324980281511128,0.3811677542920092,0.36711348319818543,0.30290747163359477,0.359974000309653,0.6024274590085262,0.45901825497171256,0.42212280823199494,0.3546152896469218,0.5422378130447345,0.546863920701554,0.569497891341901,0.38318221144592185,0.3477170001506388,0.4502672521430336,0.501725229549338,0.3744566137292244,0.45932410935604606,0.5013502222373878,0.4332014598514735,0.4596699404039017,0.45996383203058,0.5669364063109221,0.43293199905916463,0.411501254719536,0.3279845219326843,0.3898969881093036,0.5281311007044482,0.5911934371508879,0.4631475966184125,0.4890384592498623,0.5023172638246826,0.3907369128295042,0.4898120411554042,0.4439651493747871,0.42452664228218523,0.4405569073607412,0.4362078065065651,0.47722688915137584,0.5118438547026004,0.486533600534909,0.4823462956805748,0.33158060804833733,0.4615669324648213,0.5734946013009637,0.4945147733399526,0.5038951939174511,0.4160524338655861,0.413278388177054,0.48619269839021495,0.3377981496091455,0.46634158688005645,0.3951762505633017,0.6594072820431093,0.47989852736642546,0.5142587671404505,0.45984162448860166,0.42499008430854834,0.5605042956666122,0.39731794883837096,0.41304151714114545,0.5047007148405178,0.4676514817845429,0.40699267469413347,0.43996339079211155,0.47078107933377733,0.5950231922989724,0.47944531405543095,0.43736493540624993,0.5278290876357116,0.4192442883399571,0.44829612012626424,0.45553329855056457,0.4977931067718087,0.508112759537143,0.49393311604968876,0.4091244439135538,0.5549313700767332,0.46593862097930083,0.31200343313964923,0.5743003232009566,0.46277927560015747,0.3757662275134534,0.46476968868002955,0.4738548371231614,0.5457822343609994,0.4158913963493827,0.4330121751526423,0.31283200371551434,0.45687900628667943,0.466614222708375,0.4527803992172803,0.4458504941431672,0.42701963902398643,0.3695243568764451,0.45439930681585555,0.45187098190033614,0.312452255328585,0.43061441670603084,0.5670277303352279,0.49116934740769674,0.4477817977975303,0.3774213285131135,0.40847540554828193,0.46361932778452114,0.40303205839271666,0.35838890649475125,0.447707966117357,0.4363900612058027,0.3768837283675584,0.5091666072220584,0.4485625000250448,0.4880533547090162,0.4418259056323243,0.49192193371945,0.3188821322890695,0.42341575488562233,0.3569899927257814,0.550328843368638,0.39869086580780766,0.37393794159448734,0.5465390866220665,0.5875075033928613,0.5250511247480332,0.5815008781198198,0.42071681108997594,0.6342520102900907,0.5005589289265643,0.32310894639437554,0.37306912728071756,0.38622721375173397,0.4035891527354276,0.418544148184659,0.40142523450834117,0.47482248049674725,0.5255507549279648,0.37078726473890167,0.5055256580973495,0.5781042891502504,0.42620673978690016,0.502535692040017,0.4967579767509899,0.49242716200864206,0.6258656835896312,0.3972203190803832,0.4356081553851967,0.3566587818568097,0.5412693806073429,0.5188632746567549,0.46322917939612707,0.5070725712819429,0.45465863960319997,0.37740588720219037,0.3982072304427979,0.4281091794287978,0.45741458005699526,0.5393975101431434,0.4709217158210668,0.32487953113379825,0.40248962140085803,0.3981622015884291,0.4181934499331496,0.44572203780263336,0.5411269367970897,0.3865176516507044,0.45171558229000824,0.45188717127628436,0.5189264438978448,0.44830065212161263,0.35888702059810146,0.5897813618462525,0.36629739961384933,0.47061090121368276,0.40922509575706495,0.47320241170865557,0.5176038644897849,0.4087832248015348,0.5868530935208918,0.45496520691598485,0.34345902394153977,0.5850072764605689,0.49733519816065014,0.5009964775792124,0.5660717413432838,0.4813030490058031,0.43972410331109896,0.5167332193851365,0.46658416793754254,0.6313515573030406,0.4602759325474171,0.2772507562160162,0.532944084077664,0.46585840329258815,0.3129526911103515,0.601715000488176,0.3912422599101794,0.40855216744977996,0.475867569140454,0.4956477355652305,0.4282733009469906,0.5528721639018357,0.404900420355597,0.4288331149829001,0.4574915803461494,0.45461606879697447,0.48954694515650976,0.5529442401564001,0.5384079699776931,0.5276341605687875,0.45465836645002133,0.37942943816268004,0.31742545534367217,0.5602216578354628,0.48450173696108845,0.4544844485563434,0.4749024316594339,0.4057950693061321,0.37543627730428664,0.5915469134594524,0.5838265490453637,0.584930339114058,0.4578308424141044,0.4451977724884306,0.6398837872859062,0.53211921115338,0.4227541609088411,0.4449446763317819,0.4044443650325804,0.5020673773635509,0.4818515307259112,0.4117312712960391,0.49587863717984354,0.5363375476402188,0.42689526233896063,0.39012655620204084,0.5517988777152871,0.4977810734004545,0.446649500921859,0.38332628770677535,0.3920029797908864,0.4798299770967715,0.37116495093906293,0.3962188808533081,0.49996198444145334,0.546227123589543,0.4415010680864049,0.541397805894149,0.4429000873870501,0.3515561566624523,0.49595643362596586,0.3122994382243454,0.41090183236426187,0.5471479994747404,0.39576689564790907,0.5314308446179343,0.44470093471777794,0.5743616992636447,0.371689230206051,0.4992896060575422,0.4702968166854878,0.44670772707258694,0.45440926453084796,0.48151824206348565,0.4952885944870707,0.44254245989037105,0.4986195944621607,0.5373596516525295,0.4222173398784039,0.3539488123707009,0.4224844074370188,0.5503658058692881,0.4388185122599328,0.3713374132343009,0.5112507848239395,0.4640399255807036,0.35718595550957855,0.40378057940220907,0.5330430777970696,0.549465584967515,0.422733980290026,0.47451158812465977,0.5410035412661757,0.3538216916883294,0.4171958364448747,0.4647803377648113,0.35804543007115536,0.4498085091774334,0.5605370907473155,0.3992391078560947,0.5563096564811573,0.35417105525436043,0.29138380507256484,0.41951602293102974,0.5684156199704096,0.4416721212006441,0.5028557511845665,0.4883856286908967,0.3493315163735997,0.5512069829191085,0.49544174501280225,0.23890694093912315,0.4191234126751114,0.4819557603502089,0.36701730621519685,0.591766133855374,0.41574422363331515,0.2499605773856124,0.4395549343801988,0.5135266669059253,0.524990415018028,0.37642088833095416,0.4624578880306498,0.40223311707431436,0.470261120721427,0.4538635946188036,0.5344636422968998,0.45127211919939564,0.4320273305333066,0.35806670979803945,0.30795140234641455,0.35216307408248243,0.41841319525400245,0.6234002462053924,0.6045188759637193,0.39927583993332844,0.5864135183421669,0.4398322729104739,0.3406488525855629,0.3786465208561482,0.41493978709486395,0.42653907128087687,0.5491752419347953,0.46288171607264983,0.43431557884980554,0.40676363467089377,0.43341109370601305,0.4873160975075821,0.5166400754399619,0.3700765652047437,0.4718371263305871,0.5592132764598744,0.43111365462610945,0.4566148650469247,0.330050103613323,0.4781294872194467,0.4367448842311538,0.5155307266895178,0.3881162811161242,0.3758365529889515,0.36854832345453226,0.33431637465268504,0.6170496270389059,0.37585458920759807,0.46792919418456413,0.46719834662399756,0.5638945427741003,0.38133474111076043,0.46865201973800613,0.5175624712584994,0.3710124544186068,0.43272711390934027,0.5184478257552142,0.5073902028544433,0.6485381944916416,0.5276631023206262,0.4638365832293197,0.48868840893945914,0.38596103872769955,0.5302805730170019,0.5073107777043676,0.46965440988788515,0.36871594754037645,0.495481647776995,0.5153549710646574,0.37933446200715415,0.47908053528786265,0.42826073746241344,0.5004665110808352,0.46397543915963074,0.4854276086299054,0.404358152962224,0.4979960392023804,0.5005861315828976,0.49322347237081193,0.5385040040736783,0.4625794480825469,0.369839094955197,0.4646401386343765,0.4329976658276724,0.44399561411102983,0.40496282839537695,0.6165874891118003,0.2741525469316314,0.3002893344210604,0.44554955336897334,0.5482005384731443,0.6076823462484604,0.3616496049865337,0.4697122664222743,0.468395120359916,0.4078566952251076,0.31334665618781865,0.411800765019435,0.4535159059923331,0.35054509062261124,0.2780979368806836,0.39580584198796237,0.4217632514319211,0.4947774052979733,0.3929241467753248,0.4635008736623177,0.5627904234359028,0.48544360865981306,0.5441790022477238,0.4088936053677267,0.2995183962274596,0.47835125006814744,0.3290832471696542,0.6030659107267451,0.5619011866063532,0.46000690690881796,0.36251546713562743,0.5720311546868201,0.4403876290031482,0.4528589546738187,0.3905789512675209,0.4276279386130388,0.27926788109022616,0.5465100495060363,0.5833097241374674,0.42272322728653466,0.3373434193971785,0.5534360784802947,0.5699575947021774,0.4088322408461031,0.487931702393743,0.43639044828844703,0.3900480115526862,0.494230253303066,0.4902223332761382,0.46887828508979074,0.5924056639914342,0.41253487865713745,0.6070918045235385,0.6354798798944981,0.5164519366637034,0.5172922904617886,0.38040406743120336,0.550969244111757,0.3238400294596573,0.45139343076835303,0.49812368727057904,0.37240494794756496,0.3946994535056306,0.43649869856276236,0.49211500957262483,0.3776860474225136,0.5235689832563742,0.4903251083784497,0.5025875563670861,0.46717528407807835,0.4037623299257,0.4652724855999837,0.507641294593628,0.46252694895018864,0.5278732757264897,0.4850484960493358,0.5626961376851355,0.4268299521497318,0.4238041413756921,0.5086381842514645,0.26309986870651864,0.4013540858181753,0.5014071553321235,0.38022455331584804,0.4492760081806758,0.4146586366846087,0.3927545948849341,0.5800671325624748,0.6378458085380292,0.3867399975126461,0.4517462224243,0.4727052327418759,0.45116128011085993,0.5122884192518216,0.5317142830815572,0.4810490330594185,0.45979401885561894,0.42041391895351543,0.49389425356901073,0.411362320871314,0.45973239378196146,0.3441815178809928,0.5262150209372637,0.5108979260886187,0.4956340696059605,0.5398061737982712,0.4437050206867003,0.5843974871249068,0.46442818058457297,0.34931704288729265,0.3783185938327296,0.48275299089367585,0.6654376437311721,0.28892119690329887,0.3634189647783271,0.6858445730286822,0.34429472918146964,0.3589071458177847,0.5069948468724776,0.2947295875469417,0.3795415010382083,0.47178273376623636,0.4469811391140607,0.32532857877407484,0.5321701254241906,0.6265698953683311,0.598722644910861,0.5280468910689093,0.4194699730287213,0.48613415960152806,0.5064320933901357,0.46526948409542535,0.3856804417798281,0.500276054957438,0.4832577791733997,0.6133318711937512,0.36482905320046094,0.47820235859647775,0.43612590094574316,0.5320033822380149,0.5393962963227275,0.49071649101550374,0.399147735638169,0.3716844424724908,0.42023578266969946,0.40894184292413926,0.4465644685134591,0.5957645567358775,0.4141069697452585,0.44361286640064973,0.6203745298679519,0.5074090289706938,0.47973228842045923,0.4288177599487919,0.5297151053331267,0.43761157321114563,0.5572184338768881,0.41714756493668237,0.5883434227723604,0.4457808887894189,0.3850036720122881,0.5847788079929861,0.5192737041970651,0.298893109645235,0.498912371625063,0.5322630199705106,0.47271962840546267,0.3373533642523543,0.46556492901744573,0.49933421837080605,0.5830669065961016,0.4420254038153056,0.49385693415638665,0.2915885963153572,0.47565624809493223,0.4290571973337551,0.44423812868066276,0.4865634459446497,0.4523447058541068,0.453185199490542,0.44370775993168066,0.47336482967500604,0.4079241081748747,0.47008279784009704,0.39430662094435115,0.4997297780490114,0.5204818251518466,0.37668120444747777,0.5085070920011133,0.5575569922355338,0.5108584141999681,0.4986299354650233,0.5115105556680706,0.5489496397830597,0.4936370464699904,0.4213472244405896,0.48771942216194086,0.5068545172880041,0.5522987898345575,0.5538733044621691,0.5146224150910076,0.5021447871911513,0.38410785929893587,0.44109368837112906,0.48679607014654397,0.44252434209931596,0.43183897668410914,0.5592164492721639,0.3885256679253896,0.3438512122196599,0.5437933411157704,0.5588003959530364,0.38380404712269206,0.5341192748287401,0.4496725857244987,0.41431526866394464,0.44455244266786537,0.5092452480617131,0.5333510441339911,0.5639691797892029,0.5497684956248405,0.46246148166083323,0.4986505953712882,0.4565758254546777,0.4298440564396456,0.5218466759517549,0.4686441066879084,0.3908215296170674,0.4105976162775425,0.5075750170399743,0.5104811354693808,0.47501710628681654,0.4877135768224909,0.5685734976049102,0.4462327661069667,0.29693007212991623,0.41051798826928926,0.5168231397548448,0.6162012986069004,0.49769580932524854,0.5534018032688867,0.35335625747774857,0.4014304620275851,0.40291838303573707,0.6160580526024769,0.566138556407603,0.32703742256874163,0.35897079573579477,0.5388659786582481,0.5164640055769558,0.49940873753241827,0.2977665138819998,0.3840110193059394,0.515076251799192,0.4599169343017725,0.38453465576152956,0.44323470051131564,0.5403781265134655,0.4414528676077588,0.529672254069858,0.4842819765104609,0.4313573767291873,0.40861989203539767,0.474167055033014,0.5093390965569405,0.560584679403531,0.3283643774069953,0.49904691756063807,0.5267762612701241,0.4119651717153666,0.4904296122245123,0.4102170385674655,0.4910217164493957,0.44781596780692734,0.4030671190230298,0.4164099439262166,0.43599682208561763,0.48476049651378084,0.4935521197854147,0.545017506238441,0.34442068246660545,0.4626301541457165,0.399029745670892,0.4834113343174193,0.457363954229255,0.35666163562570163,0.41216732177682636,0.5901620313845455,0.5415650447565292,0.3037523542505657,0.4449342728858649,0.45160838136403997,0.39712063876830794,0.5609186204146847,0.345870151751201,0.44351080942846594,0.5055639260970184,0.4418577214359127,0.4885885743665,0.5623218752371151,0.3900928954135966,0.34876931477973344,0.586501255364045,0.2968774574592824,0.6030083443263871,0.6713601229583374,0.3046872933438188,0.49000466919338276,0.5398921910992022,0.4443565525353695,0.3721826048887368,0.3597520804104863,0.6263233473459717,0.3279577548794432,0.42058919485518975,0.46137266455633813,0.3940057397661644,0.4501312854569667,0.5100085996699484,0.4959200409922091,0.4064580479813103,0.560182064440838,0.36185478398519266,0.4843628078445833,0.4335293492782696,0.3537881591744489,0.441203905321515,0.435694027518198,0.3373361621599957,0.5958351142472099,0.5053711376913431,0.42445468947400394,0.48993657962390225,0.6198502461982902,0.340076282365368,0.462173132319994,0.40296423528329967,0.48788221439943186,0.4748800787616575,0.3461176639931917,0.4914066712789637,0.5254797307727296,0.5167039188704526,0.5405542246578541,0.4001104481793921,0.2942762458586288,0.420408741992742,0.3764732142337189,0.5566288075728265,0.4248159103585283,0.5463035630765081,0.4120404801909199,0.38797914771256864,0.4828792575181009,0.4204014368505683,0.44705337437675013,0.5326391153420468,0.5673304181177613,0.4292161783760637,0.48499983009532566,0.3754488610408526,0.6724149767649639,0.3795547422887585,0.39446006006273726,0.38645159119503536,0.49958815034899645,0.3319635525840342,0.3499799781836194,0.4548258208874195,0.3851234313853957,0.4678022690813355,0.4695133840979968,0.49709002735660723,0.5614290301016877,0.39900769919941825,0.4318439379231996,0.3407795030923699,0.4811065544646603,0.6047846880986641,0.485202566591981,0.330865529557035,0.49437054326356045,0.2941212850644336,0.4270624194462496,0.5270202815959207,0.4721548953065648,0.48339427118293393,0.39045804910927573,0.5615785380059647,0.5397058176936135,0.5773128422152085,0.3829356589322497,0.3527822483335583,0.5249030371900522,0.3998822822147209,0.413149256013553,0.41620290299180274,0.4654360469677339,0.456768191565083,0.5100516805566984,0.406218658529876,0.3694229891082828,0.4399293681828879,0.5039476535422358,0.4389714822862905,0.4886920710609602,0.4794922053402402,0.5396361202052381,0.5552727334249524,0.4668748050011595,0.3792009389987328,0.5560695917811105,0.4408389059469906,0.5201362194101795,0.4081290195825374,0.48417606198565133,0.41830399018561193,0.5547214369556652,0.5110046725502257,0.47707947449222765,0.38524734468989585,0.3740289380922333,0.4882871730169491,0.40753841907375415,0.525423036971393,0.49064093530602954,0.5702263794754123,0.46867727250484303,0.49016431819698913,0.40474726410783035,0.42042777629456607,0.5196952458171048,0.5130997681279186,0.5392769025284364,0.6365570684700915,0.4676739663475367,0.6131762915717452,0.40031423241184716,0.4422543202247088,0.2922214427027894,0.4430564884582191,0.48139707565458545,0.6322344299978895,0.37426141321827866,0.45122070303135425,0.5206639607978387,0.394296240113884,0.5623372157311283,0.4219742871963292,0.4395802014313525,0.4955229860472012,0.4754545576943137,0.3477969633099542,0.5348240221131805,0.48252937452660194,0.47399589892732213,0.4253365845686353,0.47534774880637515,0.5060439663537311,0.5117847051782888,0.44808546779002695,0.5093639216259538,0.45970805836489453,0.5243900642697469,0.4805871595575635,0.5067756663212757,0.4583598976391891,0.4192440589276426,0.4832773117170889,0.5043534321692752,0.5615042108060116,0.43666021359631285,0.35661467783182726,0.41157318443300067,0.32607566130488347,0.5072469685465604,0.5002176690692027,0.5040957624266457,0.4447231598031991,0.3752704946625563,0.5051254011525153,0.4431607692028238,0.42193317253114504,0.4250699773503709,0.5255700645488128,0.44259559392743625,0.5167715838555222,0.5103154889657028,0.49771313012990986,0.46582716095749177,0.39621285656421523,0.38424099571200176,0.4419370632577866,0.4421056834731398,0.398996948743163,0.411532033057652,0.39851532866376954,0.4937924069916002,0.40892386046378565,0.42818846195251264,0.35227633596853314,0.5111898598129605,0.38264365509142073,0.38942753217475096,0.39179169431499367,0.47898343651199593,0.4574038355146168,0.34577779808974307,0.4186781082736731,0.5527111256160788,0.3641645874893336,0.563293562282298,0.5741977465287567,0.44229612341321545,0.4650813869234466,0.3307230144554115,0.38137359572922075,0.4037329363934042,0.5360602063620639,0.4237512314450082,0.6359749113284943,0.3786951966972275,0.44651581880595675,0.43529167052729,0.5091282487102531,0.5443620301617171,0.4828830924940941,0.4374936939913152,0.4616287194088243,0.36536842495738286,0.5713729658942889,0.4572976173438955,0.4277842484814024,0.5438069082956791,0.4564931789328421,0.523712950255711,0.4377574968696597,0.5950501931108597,0.3973442976833357,0.5410219720993804,0.4259601500493033,0.3702114752015901,0.5484615033410438,0.5851602060279357,0.31094828829408167,0.47056470693403885,0.4338626140138737,0.44098455044325735,0.541538833134645,0.41878505255902515,0.6698929513076844,0.38362332303261315,0.5130105574803592,0.5810082245762911,0.4585403366760312,0.49006291345893804,0.5907815969124393,0.5464078222397795,0.409556370873165,0.5278668980122297,0.5158905110800586,0.3832829465769549,0.5763761996524329,0.35432742802874884,0.29948853715026424,0.3765056039204413,0.47235816089492116,0.5391168370504663,0.46303515344010227,0.4864988810058501,0.6058605118599639,0.30895950875121847,0.47057580060325216,0.4648360091744949,0.47870947827577087,0.35384293270189493,0.4457585648022907,0.4098252056995738,0.37400083215070623,0.5726260031337999,0.48031354555373507,0.5050040753294414,0.401453279205032,0.47242661987255663,0.5270810084654427,0.4305794587056635,0.4625405153239783,0.4714140410121181,0.5093124706013537,0.5159934396408596,0.4000746344626656,0.3515551207782651,0.6341498691561328,0.49729805060469995,0.5523950490905633,0.5719344570534984,0.5449722937631224,0.49574782647439547,0.44049562024621935,0.48085564139528164,0.4798050074181904,0.46161488375432347,0.5344768074584149,0.4786092277819854,0.5521984754211007,0.40134333027249597,0.42666091898512126,0.4841227043914835,0.43711602298312346,0.47759478474491784,0.3820661774260342,0.5724047718574921,0.5109968168326082,0.38947906599723364,0.4305509697091075,0.5219482152056448,0.5122950386762867,0.4595627895727731,0.5409896256788619,0.3105834961965359,0.5963790067006615,0.3959896410408557,0.3660677185401104,0.4933886820494785,0.5395291310446412,0.44077458733297187,0.503273830515838,0.45554441074980656,0.4520466706501107,0.4676612648888938,0.4455506890267661,0.43572981264388355,0.4554772904497941,0.48380314767202937,0.4703515712319524,0.45452966924023724,0.41147559675515294,0.5614581824967144,0.497646422111919,0.4577329879416767,0.4191971420733328,0.4785906472382358,0.5081652203891464,0.46573192479028724,0.42309325223535726,0.5481357486445468,0.5608241692458016,0.3104505728007468,0.4701876835492848,0.34245570390941865,0.47686599899790316,0.45000166925310514,0.5228417011068519,0.5148593254775992,0.5177332158847485,0.5066006487254183,0.5001618980055725,0.2474514715565975,0.5060893429377784,0.47194396694680424,0.5021483605140444,0.5645570728450854,0.5819363627313827,0.5240656439782068,0.4307946084483868,0.4645218310358661,0.34494900819275803,0.5512310902418898,0.42484591677535033,0.4156127268016941,0.4656071246945516,0.5605518285186094,0.4118581038236917,0.33323580388476876,0.43800251676647517,0.43317005768072697,0.46655258260165033,0.5305887582896511,0.3144022714846427,0.37946470812293837,0.389584094318,0.4378882438473051,0.4782462549205713,0.5011410690923992,0.5724723643616044,0.42395605966510186,0.39852465262036646,0.5442521049748374,0.5681966752418509,0.42417566362937004,0.5062773515587209,0.47511017123604715,0.5413593738895466,0.5794471639731635,0.33896302557784946,0.58153364503255,0.36924711564217355,0.40549002266351347,0.48847567286106763,0.4689129253764561,0.5506088012935076,0.5840135840261612,0.7053930587396453,0.5700555139653221,0.39036477479173626,0.5058986769590982,0.5170225083193166,0.39428726171441564,0.3883580100071119,0.5126851523460222,0.3704567013458802,0.5420341081055664,0.4233489938774111,0.4457317482838512,0.5950259937233704,0.4665355095474994,0.3654771079990825,0.5357277290783872,0.4162021017292213,0.4613720421413379,0.4458719561403018,0.35748001062331586,0.44536649024605096,0.31095203195352916,0.5407057996580695,0.43882442511444614,0.5233772869640998,0.48863724141497117,0.3717117851582535,0.45690277444070687,0.5087822391932275,0.41071364137536465,0.34153836855851016,0.4867001811728439,0.5126967764591658,0.3105712563048355,0.47160540160344616,0.5048400355956216,0.3526795173975821,0.6195023030998688,0.4525888874153429,0.3972749130479463,0.49366677564010314,0.48196926077033253,0.5531754275184972,0.4843884392607304,0.515326341824244,0.3979899014836425,0.5219277932827215,0.5309023358457661,0.4371212265107238,0.35542744669672055,0.5129092577782345,0.363525142186236,0.38878590973800603,0.39750115275491427,0.4951096273926517,0.4448578244552702,0.46990588568793146,0.4281445664742172,0.5059113570574049,0.4686572911462354,0.545615092915124,0.43420376893452817,0.3812135211108108,0.43802512883908423,0.5444326681398444,0.49479682843733236,0.4341818745316238,0.4965419219268581,0.507292299412209,0.4751699765276793,0.5346497540851063,0.45042881988955535,0.40075079588358486,0.4016213142261373,0.365329494930168,0.4323359861459745,0.45832012419087775,0.4767030744495547,0.5103939172934521,0.5143335555572713,0.5121847174621704,0.418342736927134,0.5091787944562333,0.44281851766586594,0.42707159434894604,0.4651263457533786,0.4453833181125894,0.5315413700163389,0.5792075995462443,0.48077384513939875,0.40722792952672243,0.5578758782447785,0.5307770778963532,0.4571635894059464,0.38488240107489,0.4547655370873048,0.4737075112813355,0.4463918506125594,0.5161334784911475,0.43075181836311127,0.4498810692428482,0.46714794869547077,0.43261363904233924,0.3824591970269962,0.4848528968035943,0.5426086164829492,0.37979596889259776,0.44663840050178194,0.48556051235344866,0.4654088238859988,0.5219895044611317,0.48055722066732054,0.4973666767698624,0.682945901074003,0.5046325944749254,0.6157129176447809,0.4782378927560008,0.5109151272020908,0.4734632574412848,0.43690233735304285,0.6174530480050172,0.452837157562697,0.41709705277131987,0.47446942257410696,0.587816323999304,0.4850451788503734,0.37983048634604116,0.3612999290370368,0.5185901142730673,0.49140881810557896,0.42146899506577234,0.48963313196312663,0.5083100837776995,0.6268189747644001,0.35676337841311284,0.47589237094429143,0.48910749979840334,0.4606430643543915,0.5054850368491705,0.315438506392952,0.4279854870374363,0.37007048669029674,0.4553115179519978,0.4243397585919965,0.35756891216026576,0.3995935248179453,0.4831455291846493,0.4013752485583438,0.44580963074946567,0.49946097940075873,0.4020382441396956,0.587741430913408,0.5459483545755451,0.4540355371273198,0.4990055672011584,0.4361824839521116,0.5106170044928151,0.49311285466989235,0.5449480004935436,0.3727620667460074,0.44750277495051366,0.3078675280469098,0.5280280266134674,0.40295981355979,0.5631714828031396,0.45551660818328504,0.5335342723295797,0.308525065495254,0.4364818992441774,0.5572100901650149,0.5104430925861575,0.5497107993430734,0.4116093874652395,0.41953008818694293,0.4660582387662548,0.3993074075971101,0.39047918181591257,0.5033404331517318,0.3449581434738338,0.344587922306089,0.44032378522866056,0.48214027316018054,0.508155603903104,0.49710545057469635,0.42284795937765285,0.40079803377470224,0.4577456007165561,0.34160049272894394,0.5771422875846157,0.4203328805270918,0.36803902634260155,0.5494877773861084,0.4995253043272528,0.42127959225754397,0.444201236936898,0.3361326637132164,0.2947699488671235,0.4043979093938598,0.3742917147727923,0.47319601058391914,0.46471486178759797,0.4802303007275038,0.4686340341427641,0.44128868345990463,0.541162667999242,0.5059663988091077,0.4280774012581234,0.37450543283241694,0.3834405582343316,0.5408596479730132,0.493294792305278,0.41178049018930835,0.4156318103020145,0.39148053998495447,0.3976865374901121,0.5702831203228061,0.5094901030041777,0.5662417783117433,0.4337395140685929,0.4497853671622036,0.3988232982870094,0.5079164781211108,0.49252126146155584,0.5279413022242296,0.5411096608193705,0.4186406861822637,0.51938507901235,0.5184388228827821,0.4723761747597135,0.2670600583838722,0.377568552919185,0.39350530482049517,0.4813399865819541,0.4642483570644942,0.6364729244517192,0.4510292835669609,0.5530539529748102,0.4640534546053379,0.5667720664470288,0.2490717449317413,0.3975774030501412,0.49967878478283234,0.4103252732419429,0.44045596860928876,0.44651779950189946,0.42018166232818177,0.4318788805584111,0.4616458577387305,0.4223458106746866,0.4444861016948218,0.4088807467099848,0.41022541957138775,0.5588658456029331,0.5998727828623575,0.5139643369543924,0.4757457157059322,0.38741459135704126,0.5409896612399938,0.46269774106936834,0.671866863092602,0.41983445355964283,0.63136740782045,0.4484124005953643,0.4408012919344732,0.4136148428227232,0.37402861189482545,0.430737249562089,0.49931010363588585,0.4990207485164976,0.42769678120507265,0.3940998771688322,0.48481800285143156,0.4361594247995542,0.4657072329300818,0.5494673773845724,0.32199735488585796,0.5135586148571937,0.4228092711662308,0.47774665948968104,0.4591112315086919,0.4677636481113459,0.45854664070296286,0.48788917087920813,0.49523344160802607,0.42165343864461835,0.4542740115318768,0.46451100494002634,0.38505963487719735,0.30890547371655486,0.653970932268749,0.4407583897061784,0.41882042393804875,0.6809093997792057,0.46051040624025114,0.367067513781959,0.5169273064880257,0.36533741113256996,0.3065418303386203,0.3943589227459063,0.31615833991642206,0.39317786422899126,0.45832997176005696,0.4519380591828715,0.564968274043555,0.3022747236260518,0.36832981291474864,0.4396592712855897,0.48423009821814805,0.529815109554221,0.3721281737774404,0.5426257460854721,0.5009501767957067,0.37665339734913733,0.4460505905117742,0.49826655966457517,0.4574998422129171,0.5031624423732652,0.4781488482414804,0.41318929937842486,0.4972994539581648,0.4305360106759789,0.43178202393073434,0.36988611120300235,0.4539735195598872,0.6068310816016121,0.3443213138738919,0.5338434105635419,0.4537143569013027,0.4827748654878661,0.5151222287084597,0.45820054249975384,0.4781360031051202,0.5506048404247129,0.5097642143925893,0.5640850096740336,0.47680502233376965,0.45455802917492305,0.34631858841907925,0.6291202411455507,0.45172519864636107,0.4611311080464954,0.47127466222123116,0.44304473140442163,0.46406611509638523,0.4690254440393407,0.4457003987100666,0.5077076736495298,0.5246628656334724,0.4769606141362333,0.4693128654714658,0.4309397874858517,0.4890945373708379,0.41510340080840297,0.5474289666622828,0.43921808903696363,0.5568285811044545,0.5393044227908641,0.530579997234848,0.4415492379295336,0.5555866726451048,0.3484981866643429,0.3934666706780838,0.4871921847385914,0.5898324960822358,0.2628447213922683,0.45976891528861646,0.48025704586123086,0.5707799730557959,0.5780152492458188,0.39139596587420866,0.4003658862284015,0.4483903429467389,0.4810452884223677,0.5106664449362315,0.33821849682608895,0.42922470434541343,0.5647486038743831,0.5586774288785916,0.4935890608432945,0.5082748705372072,0.39463362268251606,0.44707056374018156,0.3198457790311101,0.5687579014524463,0.48881693830073386,0.5534785432294898,0.4587144881239076,0.4992602716206733,0.5033429787161312,0.3731687133394288,0.39636628660887957,0.40622767133344156,0.35656285791213616,0.45748325592207245,0.4637570976880623,0.5093204517584607,0.47601240786095655,0.4360428463361231,0.3929344473079633,0.5141993640490866,0.5103534005046331,0.4052813394641023,0.4047944297921307,0.6089240236090218,0.42393765208506473,0.3603442033195696,0.4128006289597875,0.46243062301655313,0.4685732347430542,0.5295981350303495,0.4007145365623867,0.41132212763328974,0.5208794237301532,0.5433885857983335,0.540471408649163,0.41784889403131714,0.4459274935998639,0.508047875289308,0.4676967414143622,0.48172367249547804,0.3801152609759767,0.45679063441933476,0.28201383311879236,0.42109021392207996,0.4794783358105717,0.45444580308973814,0.37907212552034786,0.5250364349646065,0.5357093810973044,0.4525518929089972,0.4835030606763126,0.42700811681859163,0.47244737018835364,0.38483167152787484,0.33030527831931206,0.5865962559651887,0.6619991782848127,0.4893154987619174,0.41042464211509216,0.42583984247608797,0.5251851788812512,0.4654973764417993,0.49082600764777073,0.40592843621203323,0.46850335997107945,0.42499297840575606,0.5384532458970538,0.43796082499344685,0.4903462531108685,0.4423981449569402,0.45302978293814977,0.40246826912388406,0.25493978657365396,0.5484154992850284,0.49759127876589826,0.4505071425487842,0.49844212406871863,0.5076187276124984,0.46385053161846473,0.3713128206923153,0.4659291712761722,0.6325984155044719,0.58318578566608,0.36165528790181595,0.3315437767589125,0.37160957688364094,0.4530694535564805,0.5002567532743832,0.36641064567158654,0.5795822451459197,0.46220136738678935,0.4463571202488532,0.37056006955837395],"value_per_10_000_usd":[59.721724911590265,59.896257746681776,77.17369735342785,64.53602908250477,123.11458922076147,34.352381006423606,131.2718276693478,43.636758157180196,77.95404279457917,56.90969662731313,53.57735962139734,92.79762320245428,59.76532457654594,98.68187502815063,202.5964345055925,46.425897643943706,69.00779778728727,148.98613614294416,223.54496703968692,291.5269828428672,91.7010564126338,167.35356630247352,140.45947868728155,113.67989734191137,99.46522926592375,89.69880935553562,90.34397834516525,95.51593956534236,80.91585853635547,128.59213385879008,105.66184584671042,94.12153607336765,39.82326012460321,55.93030833248842,72.58536829193946,88.45027704993873,205.74142842007922,50.34236359966292,330.19575610378695,104.89336260060752,96.48433681244478,141.89711006273166,77.02607112885906,61.52207444749521,43.7271331858982,105.41940378156248,122.26171095097824,102.41119552655161,285.16802961323907,80.9618685377038,64.3725512522742,118.25855479320326,317.4155447631135,136.71314344884735,161.08188026064857,71.50653016285763,24.625573871662553,68.89998723241949,57.252326885073614,42.202201678586235,160.76054791685013,194.00006350845675,79.27228169815571,48.99319503663192,104.77609169955825,38.19147932633025,97.2236461308626,98.824113323124,48.656443225707676,102.20095400778243,34.307144906734436,552.8368152848598,243.85779644597093,140.54197735615014,74.45101570849657,201.22263147246022,62.1161267785982,80.3060776363838,123.80926271624747,78.36913298431152,87.34305283936683,31.239446470435436,103.01830733308992,178.95124894267184,54.358322057202436,187.1894103522331,81.42332816241807,75.76473032737957,79.59909309789234,37.04619806969646,132.13168790376488,117.9327784364253,55.40531289152454,73.7284401098478,390.1213822617916,207.54523674360289,103.06018967268206,51.032912791604524,55.04897045349244,54.822249600468666,143.2344388393012,70.6989350448399,97.35795684009369,95.84345756647947,43.755941539971,92.2837073813381,148.4742308316505,34.85338094004427,102.81006043890291,126.57531459077215,109.95990928237983,109.97790144850556,45.03360421617802,31.77620903503372,81.02124427624425,116.05747859784597,152.85738577153901,63.35905287882285,108.88874511953209,634.0833224479198,44.59764037867868,123.18985384711807,71.12166870260886,85.13773660398918,252.48798137483894,139.1515326565476,173.49030675659353,39.62359793712178,217.18146167879434,77.14314566258177,141.00712016237944,227.5529517974041,389.4365162136015,91.92404446600804,112.81228300178233,145.73030449177548,135.35939063579687,80.1816192102408,115.93322926593486,105.10324232280114,131.70269193642758,180.71665085631736,49.35634070405613,185.51367137990871,42.4830856579804,182.6132531082252,79.4965477301206,165.77074206910942,111.75133025500807,39.65811602390092,186.73005649308405,178.68356482055478,123.51693427789388,51.51606739773718,40.31058342233108,127.9320361668465,80.53017463500464,101.49554552141716,71.6807322585221,167.21733629720788,512.0650404369741,63.991126604093466,106.31160796163293,168.9494477645328,67.69549551144866,160.5730579737323,49.40677769946553,89.78916926613122,117.91669205768287,143.1005467914713,169.61986499598433,69.14935629313393,72.86990944810223,70.91581978745896,91.55994032593564,260.6858846312562,38.55142819064933,420.62593331296006,81.48789438439003,484.06970100801027,439.0835623376688,114.90232965403399,46.558576815647754,144.6254515722,185.52172566457588,109.00519827064622,290.7846379768047,89.10594876827703,98.85724949180423,61.187801935964636,96.26939484293051,33.451944141813364,211.71316752583422,276.80887199334865,213.83822679969484,97.99844208173779,150.0627165996702,317.0164834814314,45.340047951193746,262.4514864476778,139.19835459713957,239.84132244741843,86.86756644522019,70.71191071046475,62.23190143144525,48.82525494367401,240.1032823062236,459.27465209076894,183.93914647759266,169.9072396903046,181.7423724678004,106.29102913393184,231.11760928719477,123.52210948532114,383.2632239854952,262.73674659814833,91.16002835786404,225.31515005695135,59.921205423649766,338.82773107431785,84.94135741028121,50.4822597247571,94.05239193387318,69.03599439204469,368.414705626874,85.93557307513366,118.98776833882727,80.43947974348298,195.18015941312635,176.28511716341285,229.23557644081873,265.3991866074599,65.62425331932528,264.2753173198166,58.300527110004154,161.84076299206131,326.9903708186095,67.50175422963989,63.337999629571826,51.688247544952695,118.3910443094673,267.3563787500385,123.24793924881857,96.26926667089091,36.46592795283146,94.0175870924471,152.05046880347007,239.66047987122846,156.5496142460845,95.30128392996819,268.3527402052244,219.50935955312488,104.00721492355837,120.67642889426543,112.31191929421387,270.7817779577904,177.04318242518968,47.10146480471163,51.993982478660406,104.60249768007206,122.13609221276808,66.27498900764007,257.3198380317325,88.9324025323601,69.83533211546121,262.28785200266856,161.6998716736722,70.39176524268446,170.65375866903221,93.31758897719956,129.72288308800256,85.6893875591874,62.13038581483818,41.721550078627125,69.06293835084065,61.678879699038646,127.34602360182453,90.55518318560219,323.18002182007456,779.1436757323105,146.87692764320622,138.0205841874237,94.43254290536983,54.84423316101483,155.14923196333038,40.938017443306826,313.29884536660467,77.69042131402504,289.89025485106123,61.73251858122192,210.68394660644233,138.39786780565927,97.41700989775732,128.9159851218163,30.55422803223202,104.42214500156936,121.96293912311047,180.68583413140672,44.314048377283456,252.15879118121222,110.21657057037602,120.90135361106034,49.28390548501835,72.14727544228428,121.56267715831497,61.61866450923894,138.10715508818035,90.2554486601659,121.47230614795146,111.13864013582813,98.77650438533759,50.563984763616475,275.20399866740314,107.2450602542505,196.39821171211983,166.2522836891988,181.79386062450385,652.4637011567436,212.62647266003873,83.62293569156587,219.40788656916143,108.37084302594748,86.55432537085207,87.78758203888302,62.088118371563574,194.14454375312658,140.07238881920588,98.25517459277445,164.7085404383588,50.342674600676865,88.90134011519032,224.72485736506565,75.66772215042486,260.8493889272347,61.04149977719163,70.38252992485693,98.3604486072571,69.157599242289,423.9493499824988,112.17008329665546,50.507433923474785,121.6643317791003,165.7576987506015,110.53378692766925,54.24131572370995,106.31748143519987,90.56910913996575,62.436992625063574,97.56730423413624,80.55230027549494,236.32054868805503,368.00497339887704,86.06988993294705,342.0828879515735,57.4739286250545,289.5927363924845,86.92156029870227,350.34345067088594,294.77605319063434,110.18213999478263,94.30224211787748,88.89571606030923,101.92777543269347,125.46949350067159,234.41590611866036,89.83116155130263,228.55863225756107,84.48337888485663,70.04221559109072,72.60675030218863,202.71907353959196,92.94446763633252,308.9859640070611,73.38476978496618,88.06970158423714,69.50505922590312,52.61549215855762,111.4349632541677,56.28978050587138,98.21379015050076,203.01559262438874,209.8011003314155,51.66745227184164,58.20897723118155,166.28845406492783,112.24112043255543,204.3532034334588,136.4345125112421,51.86943315828358,100.12331942293102,52.3606648069638,113.12234326170068,66.95206757202239,88.90765431115165,107.7680781812576,336.141049242106,95.16236752377797,63.42710482039631,387.7807897134672,68.30610297041733,67.57946718313855,259.58947440106493,103.1711022990329,112.29711104182522,47.578034345752215,56.33184634594342,94.61281737092932,67.83403680908697,75.58422346791025,236.5680645732764,75.06003059525251,189.30011912092627,125.72689746336596,151.20264143176087,61.383527431729135,142.4464905333635,63.07103099037596,87.24692005994594,86.78757797312292,115.0225689184919,76.79429191624958,207.47872669271908,59.941374747340404,92.68388294018615,79.50088520856802,125.63921350813501,139.9271997436699,132.99839922679044,57.55410193567727,55.209314162545006,126.47495030573981,302.03873030271257,114.84150010586235,46.96324648704332,67.484873651632,82.1558268519273,170.18154374490078,139.7130766263756,76.64510000964299,52.411424892332064,440.2919308352836,150.31419859600152,54.351625469376145,109.34846636950344,141.52004974286254,115.85955576356173,74.03471105716473,237.2903994276633,82.84468424258824,52.601680964928505,38.50072984516946,99.93260375509904,397.70259695876985,40.16597258154327,113.79941320794094,78.62887480159183,361.8097207310351,87.09430236243698,59.2205857297613,88.35399939330371,79.35982211260048,92.65648960358337,104.63561732398674,438.444469595178,97.3362708795636,109.63231188476666,31.71858568537981,132.51515805733598,131.28975173586022,92.49546854669441,93.73543733012269,92.82820723435245,64.36550383694916,109.56427487118881,58.26641194093444,96.77710386071011,102.95545000055805,118.08057157949946,44.105543059825855,81.17902561905511,112.23869664641978,56.69817767967066,1061.5331276671634,129.0423789427128,175.58310188999502,374.182054030211,59.524610211562056,253.1546722618167,55.3965210676644,75.6653002384111,114.82530013336101,84.52487637217571,46.6654277786566,66.25258280943642,96.91608562407188,100.80653247649445,66.19399712702734,47.89664962724284,69.75191261767549,199.57595936123008,102.53894924663095,125.1216359522843,35.03467868177732,60.48406534858673,60.69178044274747,187.5055098064684,434.15611780192745,55.03779114740683,145.03271164746178,157.18647290554225,465.4960453270165,185.50388855120787,199.51822449977388,82.55918225084959,102.11647980971125,48.261093333969804,112.02323750774617,64.82579276121382,130.81178473123174,25.23116225761464,105.20459618443068,76.77493231391682,121.71171611063932,60.36524056721469,383.03393803205853,98.7872259825366,117.53656619627634,138.69513326052748,70.20808924750209,69.64111206885299,172.7263273489389,113.5404641857119,59.132833191231384,63.3027224967861,162.4623273812558,43.62824131130685,76.06276630196705,73.02606944072168,286.2611670561373,147.16837304481024,101.93469820347723,232.1313034364259,74.25535960979332,92.63613064269104,163.1002922642739,61.74871429777458,73.68295249119465,108.97800864726968,159.34088307161113,161.36707548232152,76.19954114025244,150.5835981325674,80.92803678055031,149.89999531351026,54.64247227670561,87.14075417067181,77.129235955597,113.22219416910293,72.15166836424002,64.00153909401357,92.57046264806772,50.41852180794638,184.70377562405383,37.08930519543995,161.6122907359602,206.15529717543822,135.43509140828476,75.34893421402467,327.0746512795304,205.89395020673615,46.763778382337975,61.83688974671477,310.7496314004491,109.2269702225165,123.27643980043742,154.5285122625099,60.84986221393388,41.01473467646448,189.3210469141688,76.35936013778819,74.73560268646597,66.06823621674258,149.5201164541287,144.98018889392878,52.64438201366254,146.00189274850166,215.7426825912307,199.63965691229114,165.0765151393013,180.70334990722353,43.506451011103735,208.78363724505945,90.94620847753966,72.11533794775626,199.92721708175955,234.12139873900088,52.01277522398569,364.2281225638267,43.79909784824862,303.2875766466882,81.1678789042348,111.37889377687264,63.69151238935197,75.53059556104805,84.2896200020035,57.09228845780212,87.05628348676903,95.9233031150821,170.88007151856124,130.05688935321504,108.14002535998502,230.9337268585055,82.65900938144938,128.0831254151789,365.0200905576637,121.49871196888898,135.89229181021352,72.33887887294348,101.10328630323981,97.64515213751504,122.68513904779722,99.56140558809692,101.11372080031558,95.65514595388117,592.2584774164079,57.787656133586765,63.177519367022384,164.08216681297534,50.52096219303215,52.978822546229345,148.97009006086648,112.47040213755687,251.47010328970484,82.64301504392287,192.68999046276093,81.45681457116135,52.66766485898901,85.34347072418942,231.73214194587084,82.90561858734063,122.40626794085358,188.4930551393912,74.12745403141753,82.39851861623184,37.714094153409185,96.86757195239655,361.12471571411123,92.41854561508305,67.67359091073791,49.489399736824026,94.66769091042993,55.16765176688233,166.9869395389237,80.5882289803256,144.5068957165319,133.01653780936473,30.52445410981296,106.54099172863148,54.68781072825693,93.11484455718451,103.99604190149304,84.1436836728701,231.96771947142722,67.37862010747213,112.6459264236503,74.2781732680656,135.40157038973888,267.556602761018,140.88109280740244,87.93957130993174,41.59934363852679,107.36309238630403,318.8407988152101,92.32602556525191,144.77132470432727,70.80504156557227,34.057536307373425,109.31452562184609,122.84382239407587,137.992792331467,87.29796898290459,40.49091126237416,109.29066685714943,422.85844040320893,82.82685628144114,162.1753962515797,116.20171460467557,59.3719763241398,71.59760456788301,69.19207660003141,158.7363702589743,116.78035273574557,95.65536432049893,95.11656505158129,57.12909998570576,77.04950522191083,91.48256358021912,143.30892461073276,38.071762235619175,65.38926575301268,50.42781156800773,476.99881947624743,74.09423782133298,63.84848251575998,201.06485752833328,82.50246240203853,124.12161307324017,102.10899057048093,151.64265716121378,309.2282439255669,45.72452638044953,106.00467636092289,68.35210872863524,553.7800408061823,56.54177822710089,83.1259444155256,191.86012348658147,98.59934967056367,67.0764005841685,68.76833290841714,31.730079637438568,79.70371448414872,57.89486061230645,127.58100530565872,67.79040662272507,182.97118233409014,103.42012150945516,176.4409395628019,74.06476152079443,276.2802086735691,134.16402527891412,109.94273490322809,90.05089705441276,545.3418008702128,67.1570751348965,55.128056315386935,166.5860203004991,76.56965973044828,486.00592791181555,64.90649628405613,155.92789929788395,40.098729092323744,69.54194866900939,82.8732737031747,231.15852810327786,89.8342278906964,122.63505891321043,260.6007192738424,103.44630455028256,215.523781961417,78.8780670186023,201.50744783937864,126.55620692419014,102.94208841166173,174.14058251159534,138.05783570301034,193.04363539230448,122.41843683693752,59.03889105485129,55.62926795296903,57.90849105619752,128.1335390648871,98.87128771356085,58.4306147695131,76.0854045459542,71.64214201895791,139.166476180174,72.38289322839057,62.51026681463251,69.32634133175284,146.20485364998186,71.13252958888182,182.9474658247481,72.06747512417411,122.87488691788458,70.72570354735014,161.77149932083492,136.46234997846543,51.19702131210676,88.21803716126972,69.47265912716976,90.15024704986816,135.85159958288523,86.12886310532873,70.62506611316874,35.484209953037066,61.74536264623451,153.00568797251395,108.34814957453199,224.16859375214736,38.184243065806626,107.66595331612484,346.2182263576011,84.69339439776078,187.93181731733017,328.02217918119777,181.11089407128202,350.8693028172004,152.8042532917526,76.61844886242544,56.87799067427447,113.66116398664451,202.41660352077764,108.2215502014924,456.8006573925843,178.68410590674875,96.30719438522992,83.39114057749383,109.0475193846237,104.04757088105457,202.9662520025356,143.95232276601203,80.30509001153781,35.24171566973675,45.956201282089005,120.77144888157694,121.37178873878867,35.057336989813884,65.95988295431876,251.7094484879778,176.37689053049698,149.12180358659512,252.74665663340951,53.52700204860655,89.16148213003775,99.42498620671964,78.1201269681044,114.53399911626697,58.38886316106815,284.19460126274123,53.17672304571062,137.01725894287225,90.72209435266298,87.62602206967256,73.50213563509921,139.50106181527357,126.0315061991895,193.16584856802996,137.03217377592878,117.10447676202809,52.763864026537696,98.45103022234424,73.64291200398134,76.17534340505304,146.65305791840046,102.84747426889639,86.175105199281,108.27069190147209,49.47395382971193,62.562974540358894,110.50943060518568,161.16554307559716,81.21169994150752,104.27775477230165,117.41625605213406,167.47316230621178,40.7160023971182,140.03662437096918,81.87321944020613,56.13677169695012,122.62588145140721,173.7850445593329,234.60846197248836,201.3616275176416,81.63598829441948,205.60707715343062,62.570247381810795,98.64310021952795,193.869320584021,104.22726311790359,67.55624701145777,90.39362626995555,67.42181593135909,185.49896897865256,57.543704581519115,125.56971921441306,91.2245289770851,192.2170153861266,137.86672100003506,52.63112010477259,48.828741988903175,109.46787394733148,76.89075352395153,117.48385402275996,73.26220879861442,120.198839873557,67.59038921966393,81.65971845264471,305.5668141610375,48.11730113123355,179.65071397066703,177.46238444624177,145.87725929959984,88.86817235889933,67.2979145067683,65.58044621528576,52.42377587418186,65.88564077988089,368.8113265447983,56.85713515309033,116.26182785069591,181.62088052537968,130.8930949099619,31.944643939927378,71.05565107540295,103.46947011002332,214.48301714450676,110.94602773942262,172.90960180612697,58.959455571908634,77.78996107533884,104.4874880532133,62.25639866949065,49.42799727754586,114.19814120924784,63.69053259782555,213.73102483979216,49.60867344435484,434.968507476454,56.95645795272457,64.13189458255565,96.27080841557067,155.2860519397544,130.8654091037798,48.83640076052448,66.39160995787857,370.73528495191437,84.47490579623882,83.39453997157158,322.15333060714096,596.4963342932057,145.75258448046716,136.51382378188222,59.63761179608857,163.94429752529575,192.88144997584675,151.3880397854669,45.380424578178165,57.07109282482749,69.08320816772586,338.21578481399865,280.44717462212964,149.6746380806645,120.47248760768873,382.6750722344629,50.94720698371225,89.96199733752161,152.05487003126643,294.0009798538082,106.00176743304702,72.9875058947194,160.511394284525,71.4644591761649,28.942002384406173,284.2476093414736,111.89350517042946,78.67692511278389,96.11037583493437,100.44631684772386,215.04116460903379,54.511035148421136,45.212901432633195,460.1494414900628,162.4117822838133,74.83087632446933,125.89250099892345,96.48707348982943,45.4721747337418,79.13541173392653,209.10343052632456,90.6375848655245,50.35444275359536,176.00114832120877,110.39584400709533,134.87745937478664,207.0483257494468,48.64044556618204,202.51719755055294,60.40608618342618,98.8193782942304,135.5513933732244,85.30201090505396,128.78834913673336,41.81624673403106,173.2393360792818,105.30603804614239,149.00266919293426,54.90194059861661,106.32836161891264,91.18154080740304,121.17015114561573,44.86618328907386,67.44824860828834,184.7809547806573,103.44376840347888,72.62751650616994,105.36860917890978,63.53270251966836,112.36142891042175,61.170077085265845,102.62581663746734,124.68132522787138,240.99662806733554,72.84750897041457,138.43811206885678,157.42447391608832,59.35187661154039,61.510193610504615,63.36618348377456,70.96960092173876,290.2665646975025,116.90693265487542,93.68086591696836,58.779139527913,54.5300853419423,184.31222720365972,54.082712534199274,139.6626045780253,302.6807636841553,45.82715503425549,54.70621567822321,97.88285815547432,97.6131561046843,79.83748062554426,149.37609317183643,65.27694547911317,95.86790998453812,174.3573936231113,55.74008796333975,95.40877665178272,99.48282795390638,61.903794137054525,93.7830320085715,262.30276240397166,112.00398530682385,276.21756962975684,68.95365832187603,65.8097239534895,48.76694269115808,53.78672969614266,195.18961168842193,146.2208723703753,67.86571992413838,367.9329294704527,406.2391836592423,122.06264184100574,226.427077537196,69.23319014657966,60.95349520179431,117.02564069238035,33.89745806677269,143.74048916406272,90.0309591829683,71.4466754433378,304.21233940237494,135.88359017920828,246.81325582025556,62.78699702821456,111.30310456372904,490.74650092899384,157.89817961999566,147.0298595250722,119.28564844264858,182.47287596195522,90.00180489729014,118.98511051898629,261.28465429817805,94.76903770915092,213.28308023219122,85.7003225603529,116.83760090633908,69.80014359314745,40.38321897136413,124.3186568179276,94.64788189463393,56.9145431317791,151.73740947393767,57.131469099230564,110.1411320036025,51.142231215700924,81.02021450917371,73.79106180096207,79.62905187082646,114.78979195733338,185.90825792705405,74.29417937388757,100.64566327926057,175.0413975143249,226.81394182124023,76.59836020276889,99.37723391744024,41.29527279808049,64.56073978283477,134.81746779099544,399.63505195820284,145.80777416080653,120.01884550016594,60.82405113156456,73.59500358702226,154.80228659037118,135.0695534961526,58.65664913696432,81.20849457439779,53.676211468174905,133.4070050103175,100.61726631571038,95.94195478314522,500.45975226329267,93.81927876723255,95.40988440176616,78.62787146739326,75.77044760637983,324.5292609554686,106.47530849681131,45.92333607254083,141.2802141092901,43.22918556604268,101.4838284959012,107.41166834400771,160.30389924379654,180.1739791086541,422.18113827880325,87.63883670359301,388.09672298342736,76.02412807749135,45.74443678381854,152.9570440299696,68.88297821021293,97.71512039481219,72.50929448679246,93.29829559216539,74.88858101001935,100.52261157578332,59.68865756053979,91.97663376905533,59.96621312284789,90.21312055345285,103.73399890190717,151.35735877562425,115.88437233718243,53.82619393670753,100.11633100161158,52.924403943403,222.37425804667095,125.00467266617565,145.54531787147232,71.6824473597,54.89748901884375,56.81506917160414,121.65279495815892,68.39092655456467,176.50372310969396,73.18003612485968,89.70755911346056,443.5332717759403,68.30306017983388,95.78025844062321,172.78726234392872,61.66824090175898,117.37980179439559,57.240524305511265,62.41784959974192,58.50414191007271,202.8017821122502,152.46816888571857,105.55594785147714,55.799201254518785,92.02073941156885,52.3557983222889,113.71438359069549,205.93798652552024,132.3574497011312,61.16915750860534,92.96582135394827,62.30637086318013,32.541362962500955,73.9978474303817,65.88313770901073,86.44752151905816,130.8984775259615,157.5156059519474,119.04649079006828,42.834640389893494,79.6594721710419,114.76705739833065,154.1859685716915,101.62737697275321,106.17772875846089,168.8013101516659,98.69783303183286,230.83197243792642,47.43068095688339,54.574272085071115,88.18290079886367,154.13757265334235,73.2962313440771,75.28647562838192,138.64418441931113,111.8139314000537,204.61151859849372,65.64469343491726,62.24671820598687,309.6627932536214,84.89988319780812,98.0547609168857,37.690618860110256,110.61090007191189,227.42861097995643,88.74921349898455,59.03057231871912,337.28546218998514,47.77275166313824,101.46904551366121,67.59055378992502,62.73882549607911,37.21000534695428,42.24248668922793,117.50973004342703,221.05258553295647,153.62943483581057,85.86627833297814,64.84469324731084,83.68856888779578,289.06710032529566,259.1393787773054,267.8171433246192,90.97514199056452,53.45892653031186,66.26734410615413,60.1364923528213,35.1379777026736,85.15726479105876,57.207017498988726,291.6535060321869,77.77983579293122,320.6042228805916,51.14496838874772,56.19822587640767,123.11867611424239,68.40172396921105,77.34319020414698,56.58699682876052,63.50515626264901,182.23528147272495,82.41312311617493,100.49212936212942,40.791729671548325,107.35929638455231,157.63501381857233,44.89330425476409,76.94753105929856,123.72536146882722,64.23311926512274,60.93349928178421,150.65307048306255,74.7270324713574,59.529040541934464,72.51488424384837,92.65856307908216,49.721411968303656,588.219479186006,87.71383533202176,141.251891163107,92.40451057319375,90.04604928151801,76.141261104804,68.4731121129042,68.31430790112802,123.23349449934946,114.15701384212628,67.90654285197299,111.6633473834757,232.6492852526636,61.19966947157792,81.73047816678962,83.1672582324324,102.97949449877544,46.6369904608782,96.3872531907986,91.86443565845263,151.6215744975673,45.146462529163266,56.935395262674405,78.01221577562927,213.1806734822501,413.9595758755473,110.03211684182037,77.21578572923622,76.93522161915972,63.73710893083897,63.495973716145244,42.38476973600245,102.49591823842485,72.01164181415744,148.52036098273956,326.18249845738023,85.22171995085604,123.02584109630612,58.144399217897096,136.19229710345743,69.36099428852614,155.2672836160053,378.66933831641916,225.84529724888975,80.30070514254061,84.66201716273035,104.67649459691054,90.59884981915853,145.67123697767533,279.598331731097,93.90936719105376,76.25234172571612,74.73302287832396,108.4706232321136,265.1943105856847,79.865347227028,52.65988693651114,149.52527493268278,81.00398197224901,189.55405220132693,53.40837290987754,45.27124782359387,109.53067305723361,101.9171252601443,61.55338825727397,176.96836452174082,64.96989175568379,52.05654050600397,76.36164261874654,70.64132369282954,298.8457805981803,72.38905383008716,487.82919567758046,111.70757256031145,67.70961869360266,77.39678777185487,203.3243066171841,174.39543248607274,194.33147209631701,175.344681846193,101.29458972262711,94.68361815991253,116.93625767048276,65.81002379316168,84.2994843311216,76.67807213242766,129.88283258529867,86.95645167307492,95.71079204207928,90.05454042265261,151.16304446017443,57.25670729285425,51.06332393212547,55.93645230650728,65.25955543699838,81.7070632873997,67.85709922512562,134.78346852094108,83.82081517328041,70.83518279606598,103.07292535858208,87.01288398202101,77.24014703243648,59.141910825280135,38.424511858597725,67.02485097617593,176.96804645052038,64.74777407016282,216.50675209794832,60.90975967193362,50.886866096061915,118.5515358029895,95.34211705065661,104.11659435126417,118.91039608132404,106.67494156861481,188.1893661737188,85.45016216153641,100.58624357608458,40.13780672462165,98.73525269793497,251.36287514201229,46.30996688603758,85.84421582383878,111.88253022789154,148.63904296710783,74.98759132832132,60.112743961367016,109.64796936786577,67.50275587441217,33.84566628263163,73.11238617928097,44.91771060633194,68.33563656999074,120.28053294177028,534.0038162298969,170.42482727647692,190.48885875343197,183.1932067285436,59.22653347531696,177.9618391063757,219.34111396165088,99.37098241678373,169.46638823794132,53.15645211073515,106.89190695532841,300.04248355702606,174.06943290121504,63.806556196597455,61.67895487829194,90.89691158935847,86.32085615725434,167.32185781058502,109.7071086467715,92.00981326065315,84.94344928299743,108.53814579954805,243.72736403785086,137.83394649552403,136.4314711111575,98.8309047873217,55.93089984562111,52.63126862454635,215.55487184495516,127.01901433490498,110.44488790744613,72.21384479683601,224.16751381442685,73.93468449739134,101.67127911733074,128.13572033113746,127.22776964362109,95.52534934267034,68.62453127322442,92.52495271995416,239.3213658892148,65.88714288043154,139.06762780168518,107.19665026748042,166.24291805001974,114.14415643591428,64.9375414672763,100.00439015759358,155.1998435859204,73.73847163437121,126.45765622295905,112.11999605376158,86.48846001288149,88.849526453441,62.470043937286846,145.47761532187266,182.62308526482843,87.61706337855586,79.39746393989049,151.75188817065757,74.50649235784229,234.3298983253327,94.36965940704255,52.50998313106553,103.567198441919,72.50896568243101,99.26198665425146,146.9423759319949,150.78527799090872,115.46151990074348,116.59596211870772,168.6631673035991,212.2822102942857,394.88472759215364,155.49453187334635,56.8531363839792,60.99132278308005,285.49257189522706,132.87627858673815,85.06647658643831,69.34800175671282,290.93441808374405,68.44442015563033,169.39442090474182,108.44304490047519,110.23068144828294,74.98353971606107,222.72155312087224,199.0057785089918,31.82537930720895,49.011836812330564,290.8806592000946,145.97213016847252,121.13360676240394,218.87767081120595,100.7091216674693,91.31369937210823,119.2807433316613,41.580531325392805,83.348655617501,405.17172558649804,277.03981417622515,56.11957192755703,59.78792705601063,64.59940632149726,153.59037938989468,82.52562735325462,89.9493786035477,89.38265867390666,244.26287292085155,103.4662488411951,136.32894815780787,101.96500569046522,89.06739640639039,69.80682101587911,165.50631256039782,87.2955896495911,77.92473543769636,62.49466544857949,84.7459024052794,104.05248206642231,93.00547658946651,57.142834442590555,107.75452144261375,112.96672113982024,119.83895461468414,44.63076012977345,87.92423874175438,146.89648473762455,58.22033440360689,174.49668009221264,187.1177827347166,57.99588978171714,97.34742337373869,184.7007738413132,257.96389263638457,238.68043962419966,144.7761494755954,181.12067721485772,64.56480417799541,61.59130686945791,83.48831899291112,44.612639892698084,97.69712525081438,66.86515945032838,95.23430958918637,71.19069677693192,196.46011019085884,61.770556542696866,87.06752808102745,70.77755348604768,281.53458054968735,38.71095523040884,128.84158637352218,58.243847844071915,281.2919236523274,56.27550633067399,85.20394081359063,122.61220843657298,71.41630751250365,224.1668073533729,219.7287646291955,70.3884120166431,84.7152709252179,114.01247454818447,228.49411111816215,93.94660215837989,34.108073281037676,65.96952098649538,138.7140127670434,74.09851897571552,55.64581435710183,66.58071079359196,44.06823772412342,70.68399289536643,40.00268745182147,86.15591663071196,96.06562932080615,348.5447931204002,95.06818752030746,60.46064944790448,235.6611923240173,153.39752476893943,161.5759127586358,98.59848360524997,207.8215870970783,64.84150952653617,68.61456698666215,176.27983985331934,107.44612260165579,174.80578372940846,124.6770529055191,60.69998268643146,96.4344257258488,99.89652390770114,163.71675012007776,150.50881340253608,90.89816528964678,87.01847551072484,116.09216073841215,72.38704228926775,103.35900136284596,80.38003790470972,306.87355038190066,170.86837748702033,68.80025653255703,47.83654537998105,91.50956810984565,54.473188981544894,124.2210838108306,31.45119826668314,49.01967111827921,69.97391329208507,63.27899800148914,69.52746107522708,157.93194767493415,242.75168725209977,42.89057239705046,52.98248378895346,113.80059181273292,52.608878623966234,66.6981197242211,145.91821506107092,342.2583755114032,420.686631657796,461.0860821365049,186.2294239859139,90.7481287159078,57.822183980500476,71.17545592994155,94.97049117777186,143.92370339096746,144.7471946394918,131.33027288494185,92.20443204420437,153.45173969882256,152.91164025550103,63.771924150013916,195.79586238704124,69.32016747503701,50.17007950381878,252.87074306912834,46.136460992640295,104.77005186901285,51.20639273270182,136.66370357802754,249.72815281962252,249.42676080250328,90.70123094580191,67.39177273438001,61.28490770165125,144.84640786903435,67.7727552185364,280.46178853759255,80.63288638011603,119.14976763423117,80.24238685638558,146.95162675239263,98.52124407270641,102.73228434494666,45.55797431402666,64.70060817846587,114.59853476185215,239.5868448671942,86.32846036734306,76.38242382001023,81.0507765055542,410.64781555082465,119.476982704892,334.81759780495383,84.84722507237811,111.29764068983032,84.76742914416644,57.51901046482826,122.0703816083509,115.97167904871611,48.29541635373453,71.8689833854322,69.38592182662445,76.6012296967818,77.5031015138372,47.828376589304426,66.88199746772537,177.31621198186832,78.26423655773449,663.4670458515593,207.37487504998373,87.79531379447491,102.26003394119628,62.255384345291446,82.00567605416529,74.22062850312436,221.69200209480542,84.01943121771404,182.1267592523658,71.3954343744764,67.50537624539278,142.04298346697166,62.149439938185516,108.50870275716608,59.58163707014838,126.20130368344317,44.13892601272734,56.520077051174994,70.74525045504296,148.4560004587428,70.28866215373637,55.23221614958376,92.21511131351852,92.66082917120627,116.15523204801669,111.19880691088024,117.26911148476448,82.11830485965633,154.13756425895167,134.83607197366123,181.7402181631156,50.2047350713519,74.30601245315403,82.87751920566026,206.06978432932658,108.21122700486256,72.91414336690035,60.82920982020542,77.0248720060555,112.00113691153764,87.56520741720294,52.35040377359102,76.53086377606154,74.3502043849451,85.08168861309105,56.15398392966725,65.16341705599847,113.05205688746125,147.45948997702766,333.82444256102303,87.24371579636308,122.3173207426791,175.5625099961921,39.77408320996657,44.64763286216705,84.25558248253394,201.04138698384003,190.25956149075208,77.09886101788823,81.4683915026516,91.52799669643483,331.2085640073998,87.03943426909643,134.37577943674637,248.3799357356104,114.45427443224492,66.02417387537051,129.13798301536067,186.25441522562505,60.64720894278777,60.50356400601738,60.57585544186926,223.05680265849188,54.075038169051666,97.79998972816414,220.94015273246006,113.75469932806861,84.63756772642463,421.81008145027516,88.73944297352068,73.08694120487657,26.88547156349664,121.227292168099,65.822977897162,75.74916296996123,53.42378735376073,81.87004672525279,73.30513235864825,175.29779680205402,52.2169600932353,68.4971006035214,79.44628992779447,122.56940449522536,129.39380209914893,220.07260988542228,117.87785016909356,100.76588552192895,82.21306842689947,81.33156744528698,73.879871618148,89.98091998533808,37.38824628756432,33.09671441531104,28.502816901337642,100.76229857832308,29.303014444876045,84.93004342253424,89.08533718435544,113.6052629836869,35.50027649577575,76.96657987081787,230.8388944651342,99.58572256762446,124.68932350703672,171.22886981833418,231.71087946103663,160.17986658286043,68.7643444856262,125.70124230298687,248.5632204214297,266.08431294579924,88.12036731061393,104.90327588656565,78.87811746487179,100.75010231950155,121.27219571500734,76.09569077865271,35.31924412000493,58.684016755062345,63.08554950832702,73.42926963563303,129.1502910291229,473.19820455497785,100.88177997953119,206.97374038122655,88.76362274610071,66.46758882605887,208.948555815669,70.77311801299233,82.97116152206578,93.61407676509181,92.34747008382463,168.7269144169005,48.31220244760888,264.43123781256963,66.25141815862376,35.9884043444446,247.17280005655758,221.66187188710396,196.0245197730099,55.21633787061217,75.09038211611632,95.59260008781143,59.960442864857846,63.71765057381042,69.42202509882183,118.9906192080636,183.81444284923836,69.12192806175425,168.60741837457795,109.36281239338858,112.58792986221121,199.26048205266213,180.61194148128592,154.62183602400572,106.99431529788576,213.51051048903273,70.3175042126256,74.20139974305229,76.89890791038884,104.35629779748197,155.01272613018486,179.53817891793867,92.71343824415835,78.70147268015388,521.5252841262027,67.88805148020549,101.75733192557462,68.15107681451313,142.24152204149212,52.07289958411802,202.22285401019548,70.2964901624429,200.09959788433858,138.1061266120349,72.63790773110115,54.470650248959494,151.53199934204363,81.5187884538976,68.83204033006056,245.2704209795399,189.15540481209413,73.29094247586586,56.17791508741307,129.4686930277248,56.67023098294202,531.2588500232522,207.64500489332025,119.40615359408605,79.70974342018657,45.18554032299315,62.18711835963837,33.46747581198965,149.0202700748684,84.96313344013761,177.83036039493408,46.580922609811495,123.3756994567802,108.49680068910651,115.3313145255638,119.22855802254364,224.14977803481145,86.63806319053641,171.38432074579833,68.35625378494102,86.24268116152311,172.2503907683818,128.57877313247673,47.6384159625108,91.86880555559787,231.11540447935093,102.86649584356911,181.1953601886702,168.49825012970553,74.43326597668573,145.85085692509492,116.69238547878156,126.89748078189953,107.3377949231397,117.41693253729909,65.42444132965282,82.17252941422133,62.859907908334065,174.93647925295582,69.5017836592472,182.26730888389238,69.29665233256667,173.85907664893853,56.75005967082855,142.31835915019522,137.49500156340332,71.30815066735254,82.43831687277529,86.80882631863923,94.80492729853216,54.48084288984435,226.14215267711353,68.21900567984642,129.1602178285207,71.14477850580533,85.35148656804424,152.04559876309568,91.20249051643138,60.104233941963365,54.57854144027363,82.5135746438556,198.33494528494094,131.88478603758423,46.24898759224309,158.82966518865504,49.93828415401114,86.8238270868741,76.62726723587754,151.30480101723694,100.33333754250395,242.8904495741158,64.55964410775348,64.96185773282241,133.6294068031464,65.59277911229721,206.2842500041672,99.10196833694985,33.16574574245294,233.9926481728576,57.283153077355074,123.56983939693454,36.41224902459441,118.87867364751064,110.98878410529865,239.24669661718454,76.46569710019037,36.83483612374218,97.51678077279233,141.70156436909852,88.66435759822656,110.6474339137728,38.795258076666194,41.681115633977804,281.86208644472003,51.70151001765631,120.42245076981217,114.09015897510892,61.064746432793015,205.87983286640142,409.699841340592,92.38493466688547,84.18674875953948,145.0603514350875,301.25908069169225,88.79409002293748,100.19053215732511,52.93010198768933,83.41972568948562,65.44552483108244,57.41854348776011,95.94639513780449,269.27841908953206,144.86180342410282,58.79124764677262,139.87001075302396,85.95749147561702,36.29319670568191,197.88407635639322,107.66543241450552,52.98236639516118,132.25136135059657,110.86515266433967,44.9497657468608,83.75531756971745,79.08616320975682,76.58526875658796,158.4945182435369,57.2328535515244,61.85746334420739,108.15218006310761,313.5396830148389,76.38856817604363,73.50269496265537,60.734870467031314,67.58543012146662,177.33898736903345,51.676259680768354,187.49311412611408,86.19169823125027,100.30108393993818,191.717996255201,140.31975781829473,118.06948154257499,455.73510583186516,146.2381682924882,74.53491080094051,91.74010004878087,52.87780326648878,110.90271374621436,95.4646487887099,140.56822509078495,100.06290584332223,75.98380539870548,257.59450359131455,86.63014773907965,44.856098214731134,115.15231221634512,73.93565934005593,68.14191919138968,100.35210130529296,87.09035546502619,237.87764729687848,423.04323386378206,188.4507271789778,184.29458232215882,113.7516485171564,104.75648132367127,114.59910986812314,106.61978979331812,96.12727957860946,67.98844547975908,88.15588792787314,126.29108310560248,79.93778631224116,103.72426764619294,83.95997936562618,443.59180058344555,119.79750591541699,65.70002496311129,166.9612903616806,341.1875057562932,309.1169196002107,97.948699284901,99.16954486623567,38.44371993508173,139.7057004533041,371.2653639926081,56.641491127474325,133.3483475156964,281.0362227169809,50.65438109834507,46.36603301910518,101.44730284810139,125.03338122414027,94.23392729936059,59.03058202145388,216.86318061078342,150.83293619924802,126.82376255396626,181.34153551101687,63.35388968716737,43.5599979983982,117.3091468597635,74.08652369440567,257.22115062581264,161.6757417821009,183.74443609401033,67.69728925070983,69.61713757627338,78.01753190440684,91.1371794497637,84.17193592926921,281.1648977806973,57.53757004163733,90.38262279975957,34.98221858314407,533.5708865473651,290.86951736009974,38.547034153685615,59.18308443793942,180.6636207384608,49.202170244974276,137.19571269056954,47.13853103379676,239.32099877218408,65.81419251811093,56.878379874945594,88.49667997477796,73.20732354931695,55.96753248176039,57.48939427648893,97.65834049281136,67.56385115369197,99.41144385692435,58.344667946913845,50.26650341882127,92.21856378704166,50.67234636035097,62.6325061335338,109.5008408199696,80.55441210186956,138.5156541439832,159.85224355390156,143.54768175857086,61.76592154389259,62.60984140774117,110.8796268910266,127.64130035312391,138.68362156383768,213.3972969840848,60.61392547691784,119.95987475773066,45.733304887416494,280.3600220589623,82.82943011458956,74.18395126910968,330.676952166218,235.9802953061721,108.27455443625028,77.97434044372518,53.09050757447159,128.9633538505163,75.06213180074495,100.52572639810049,77.06079196883348,102.52058515167894,121.01156806761631,117.25154975957808,76.55130255026742,117.12207731303343,246.63510027364654,161.87515324938937,72.5518024812447,82.62138207367505,106.03980733008945,49.86087075134192,554.4219365264942,106.30939783823412,80.78244006599841,235.96745426306913,114.89934763262406,71.8561519205537,818.2175852389029,55.270062731972416,335.76245429885876,39.60119571297573,78.56530215968813,138.30434699658707,45.46475451494067,103.66238674797836,54.1930894159235,112.40359179751874,78.09132327644181,36.13498766602869,18.46770629040304,84.8441866503258,101.24779198172693,133.8890906363803,51.070110198210855,315.64702601083815,64.77656284071995,247.06507727923298,269.2067814156543,221.40235870108214,216.03140826687022,150.50350775299157,240.03137864201423,114.17835442133341,67.83128358399593,55.12066119158081,134.98687393378412,37.14398970095657,90.82824047179591,111.04724131101167,96.338804907468,163.47652131746315,102.25231275158666,74.92709108262261,44.68027104713448,491.4734009303779,212.01606430254353,71.57809424156369,67.28678306924937,81.63968350943223,77.44598887158152,57.87944803324323,102.78331996993242,236.04908807455155,105.03449130634397,47.97238794962568,144.36057916354346,61.81900704758976,64.85419936151357,444.3169155330794,108.9761606646354,118.62852807564789,59.05742264293266,80.06812554356485,258.57745277450323,331.43027598360385,71.46216942834678,32.71683777188844,157.18323255213124,129.41553393639535,45.37920708960224,122.13763322720719,74.4872179327469,73.40704772586018,117.2284233572677,87.85696691425775,80.54568007146936,52.73119011807664,51.23059308562327,89.60707909666957,84.73523202925156,140.64295281964743,427.9870107652806,188.69415132343877,80.94747403344417,70.82371329014018,337.100848017986,109.38613950539023,314.70092926726306,110.57077342331851,58.22840506547495,107.17459358871443,154.59252554048513,191.85399380130926,105.81483194290543,169.77849084245884,91.46737566311491,457.9793391168388,115.98336446718633,110.68255002300083,54.95949072391194,93.15147864235564,233.96725971882503,34.165874167148324,151.30366795095966,392.1979416394978,111.21529857532572,108.1533304915693,139.86919735482064,87.15879190341339,104.86173603530142,102.09654469376723,81.90290219131664,85.287914148993,107.76336584036164,84.23140310196823,64.75019443620981,534.1113568541347,136.45662937373913,75.54235040687121,157.78889514006298,58.16755546850137,243.73409485462543,88.15009636027473,184.7285637412629,153.9660852665602,65.60063994581827,369.7858893068646,51.58904991515732,72.07894837138136,60.7425038526265,84.08274028451868,44.42515845274045,136.1944940443972,100.51725707150882,117.6681216690066,85.0820985220375,69.9879081133505,142.0764670066467,209.79746227098508,100.7750958685235,60.705347429387956,62.38465075716573,238.77111214189514,74.03190775290865,119.92226920107014,55.455220331837396,32.026255789832376,129.8114765686289,108.36415593553414,110.3231551668577,140.71097163038746,55.93074499825878,70.91366684207898,73.23685626940758,253.91767354955962,59.13398634687653,267.72645556336636,98.34983641490057,66.50311848586344,96.1381922823991,89.06189455349269,86.96473456652052,140.852651824827,45.62891540732659,61.75065781679074,156.4943258248249,80.43263152823377,160.86020892992002,69.43121053952132,69.18402098261843,122.24038185993396,51.75178324225897,55.54347230985437,85.32690247721321,268.2566709594989,155.80200492646725,88.67367499735843,80.4906133761587,481.95956825176046,206.632468048711,171.79852117232784,159.7879717858659,136.01630863963936,364.54227153055916,80.07030272339962,77.83203700304125,243.0298058927074,132.28105306267554,53.38941593962525,56.03696158605809,44.85608274662677,122.1576236089383,216.34879913963323,62.630589985912394,120.4281367320722,35.7114788764262,214.02660886067144,55.804118922154814,136.2343095609636,56.09830226471665,81.28107898191189,102.23158721467108,106.39344252616957,205.40351862502203,165.7960198300596,172.65474534173143,90.31015050569252,414.5601215328799,106.69216111753869,428.3657190775536,163.16858882064705,118.26472811028235,39.486377402952066,75.79202629409781,51.563009989268515,66.09368101109199,231.13151193336526,152.54809617764707,71.37587804430801,207.7080020952254,40.669980454661314,301.50916593934807,78.9428858848993,113.02861853854833,166.80057885709718,299.9701587690705,99.95369088963245,125.02073342040967,128.11645395524707,88.01303329889434,387.0863974928,76.23137611337255,103.55793622053268,155.83073319057954,76.2491149463135,421.52711317882756,82.90753844719048,62.956976382065555,54.85782861474887,99.21958452916607,92.32800553145819,121.91920459211683,67.4527081545814,46.86738445379224,222.8749129533579,38.38693443701466,112.96489750222383,121.54455282591397,50.2662851438852,70.82436400252453,54.34699526792835,202.96040156594304,105.6800244208965,115.04398780749875,86.64892808649793,85.96156873400943,31.245981248351054,82.59210221596086,386.5961910640827,122.83766788530069,58.282054864568195,112.72994155771262,175.28776656888564,230.65371996889436,65.7189786438111,90.08594927428383,59.37601102576395,145.6094237606792,102.39619093264166,100.61997886706354,287.54605069872275,136.46854665052416,83.70371009915124,175.68239895204746,103.89854415060842,644.58327619748,161.23644814850067,114.2780628401362,247.49486904277254,77.17805926143947,100.73235771171203,65.3411927335076,82.5340190221494,82.92323588281137,196.32210670129317,274.95320253273144,148.0384123854636,107.22518266686919,186.13332644424065,123.43284849602053,127.40345602307232,83.93364087012908,218.9541217445711,64.02640655503663,107.12948535878958,108.8621645685056,72.63743687541293,67.44740314084633,83.39216221868209,73.6228229248379,149.3255823533101,104.3267891689195,107.65012050760086,159.83617455011571,95.840332703595,77.85997574670706,47.586046492216276,76.46495084021724,69.60525230636262,104.61212598582762,96.90200763799108,77.66293186984839,193.68082072022113,234.38637065564237,65.12845146867699,57.09687268792086,89.44065249769683,107.3132089049568,105.27500550062558,114.03900745054239,60.09505640072149,74.13927234020932,188.67507532852656,60.11183407655996,180.91808188008102,189.43879414946022,59.43874775826296,210.42912486982885,67.8020247213491,129.24178406262263,83.09784907997187,31.383842742213286,597.413144397952,47.343693011099916,109.52662896668795,101.36098191050381,182.20462811439708,57.320597772000404,116.64647354457418,86.40455103919047,68.01321422260229,152.0628204218271,156.701030677492,81.27201823840882,51.12888027095212,109.46061852118196,98.55187920585216,60.9063291689132,126.12547592814772,161.27385198810495,213.71125145063422,85.16463525742094,50.7489387261199,123.17348250635739,60.51960066951798,84.07038738510916,283.87802752421334,188.98534922691667,71.08924901468653,68.32089602448815,352.57733318844714,165.462697120393,113.55582610731255,129.62406047449784,85.80402791791307,77.91358843770314,78.06178598874983,98.1525568425683,95.28636960421983,149.01584435668985,72.04897765334854,56.87852836449385,65.90673507038821,69.62716841140717,117.39384111098613,276.077393364119,316.22708385136804,139.73477437470527,88.40512616513871,252.39085804053624,148.81744028886808,31.092817118843517,78.42688534589297,81.26182652021531,118.14151528541458,377.4247434443459,106.07202651018078,90.46474799450483,203.16019352843298,191.9385184895841,57.01256151704755,80.03383958243714,76.61084520844473,154.10598133167278,60.72642814812549,40.821701957112445,91.00497256403864,119.94565660029856,254.4307839400351,32.363530398791085,141.24967888469442,345.4021393635545,67.72110980558033,67.16105369714641,144.9061830050262,50.63628791818227,43.43862493692864,476.04145166817744,158.84867123427912,276.2881478772194,110.93480281226798,158.1148630220527,102.24613255186271,158.2927890373575,127.25812502001193,75.22987708922108,121.27993793260664,72.61599054172102,86.60864617555252,140.8106351404259,104.61188301051025,83.95767688211595,189.9590250932297,164.10243129044767,50.55462854247032,130.6993752377723,364.2239696551207,97.98690082410717,137.9331334886867,45.96476620878158,137.96842237566855,56.68474036532136,89.6622558161375,75.44145037624307,264.97586450044815,79.48719321497474,112.01241675315822,114.13367226617635,103.63726086316103,330.00107825755646,91.78651069578427,155.3885079222848,279.97914542989497,213.19148735567487,127.65366417620208,117.50985769576907,217.8383463289275,387.41743722671646,79.5121580502033,42.968040959956284,52.602953519783384,102.93014725784107,77.15682653292737,200.16375333230974,112.49639280063987,259.53970646796927,120.69799489507155,89.37026858690557,329.9676104444815,61.20776029648652,54.05194963276661,60.29307979726495,42.94614909903213,117.1678402407355,81.92600285918894,77.20010238220708,130.83748179455355,214.69552318391735,62.64298725838024,84.43515965187085,102.95320561510813,84.99474468446267,752.724990928293,203.93140239834577,80.83178538289779,48.45562300652993,48.38212865443917,83.26810530765538,67.4798232744045,145.39687318513342,166.88273339232072,165.29218805833682,70.41514640814358,148.20583933460537,126.64269997865915,45.277736906260884,83.87978175791555,99.74274938015878,570.9516741255949,164.53628737677283,65.2144909545744,113.41518280537613,82.246654603745,181.36730628677523,441.45099633073653,401.35512195626393,101.39420505290278,294.49242253812787,59.63662760521249,193.90908676769732,154.8661266840575,316.9770692584895,47.39833967175938,96.09404729809101,227.83949348843447,203.98699605744267,47.46049989939857,97.49697566143806,89.51699563716289,151.8963074188036,47.18688364749801,180.99002288888997,84.05925277314883,132.56313401018136,340.4249538976151,143.94064936783855,88.91425016899254,59.8292825932946,67.70751576929713,77.80719160146941,25.85396091619659,70.11074563452448,55.08190969025644,55.89591111798255,99.0411334499645,48.95819748859478,84.94548856885628,217.60642704230486,228.36043662018284,63.58470153316962,90.47893391171749,45.96827454002123,246.7284764679093,74.2417309835711,137.31197727511466,115.24207333413325,107.80594205992263,103.02392519707418,273.09528925958807,70.91148766777668,118.4426322282756,208.47701917622996,102.27676347472173,37.21289770745864,74.37132342581552,200.32629488120966,90.50310870244964,70.51502905846297,62.51533479764832,135.679332724421,86.94028961149117,91.1855102418751,280.25017875627185,114.06476112824961,59.009984210307486,77.17336640603611,162.8827899904509,160.2913504055768,194.37529206621724,82.36991574538692,75.82721573400403,65.21568263533418,250.51116863696708,46.53673111973445,117.4235238898669,38.5146504247027,73.30207038484589,135.16700213813058,147.39440894910462,49.18000976321169,132.2808411953729,65.43137105449853,76.24950963031802,133.8570872635905,220.54014044795292,276.48682967382814,46.43938699597419,127.3662905348236,73.15500715232271,67.578286729386,123.71489759148298,82.59935234926999,105.86611291615958,370.1910729733981,91.27037542779837,444.7159853321816,202.96730019215767,99.3060582230071,80.78947841535658,53.77094408994511,116.90024158855336,66.47492373833333,103.66640156143741,79.34855048831214,48.232062540157244,111.80856490915805,36.14670202651047,82.97653381739613,100.60768075855547,407.2652274055726,144.95077113093987,400.60958063293145,73.11695196488733,287.7854038750863,58.53057524032681,48.75402669537992,447.3902778858805,123.59358696639593,71.84599660495554,59.08916065476231,137.87755795283311,98.00824311107206,80.84382878172335,144.23436937240382,160.3941994347496,46.840886430392764,45.4836928324072,150.21266199631594,60.103495120746686,62.14896253584432,107.91388179849545,76.92320158347707,320.4288442804744,63.482292533276876,64.64197889262024,59.878337228584066,548.6568485072144,37.60142080799058,225.61126144250977,42.60029915598735,78.95597471968348,152.4892427436988,73.2450237951871,310.4213323266497,60.23276792584295,240.72742693325722,225.8962899606997,181.41726798466388,120.02021546048994,41.049374240035526,73.96542983082405,89.68682752264976,162.64637441354847,101.56387503167672,108.80871763157336,254.18434905184648,76.11415253675216,76.19731527684378,81.64592633118502,174.36803065287754,69.87404506420168,91.48028605411527,134.11618719594688,91.91537115466302,138.7779961496348,66.04923549950367,229.85965085247165,75.79874686061659,134.93174316716363,183.62945807916722,48.14585278772896,135.46118255123503,225.45942538877853,109.1613813197847,184.4954153870728,200.38767036698675,118.04446098227753,141.39755831816947,122.03158580047356,52.10392165374789,53.93838547786112,100.83966696039289,259.9324997496027,98.05826472620102,61.00631802312236,98.55695988486264,73.6896637210336,100.75516096062564,38.31527376871653,99.598262312064,38.369252945453155,157.13190946608046,45.87013692907776,249.06493569316447,134.0774143061212,165.3036779164152,116.77906618091157,90.90007211262285,56.88626528094534,70.32131044195982,430.0422543130827,140.9316451109382,60.822998271096935,301.1025227210971,71.76228573071933,194.9786428828526,93.24576713162048,106.85539851051352,74.48857381282065,538.5786174869119,154.4449885654696,260.4022931494995,136.41893006868818,48.630308321021595,240.92894385645917,376.4764842941484,88.1162748483779,83.76139720199032,152.00016710812002,148.2148611901278,168.5468226927369,167.79686417972033,91.75973125478313,150.13934623174643,294.0571813229533,85.31154696265364,212.10150915507117,62.73221776251468,66.44530120262849,209.72624182924054,46.26864259847477,153.96727537281686,219.8586084757367,61.34735033167574,79.60955649776646,97.34672101454491,79.61105679565095,77.93837041202596,44.7022447262737,78.336216967968,189.5419923908232,85.76580814968624,367.04058624803474,60.68220055931293,137.03064433763797,120.23942411670122,154.32105329068864,98.2098684743333,63.106814772202746,53.50057389565281,42.93243214466167,81.79747879247337,285.3299480385379,167.40656107820692,48.422783304437644,48.18827304962082,95.18877631822703,78.64472198096813,69.13561700709484,166.30459100737744,70.3575082129265,103.46125879186435,259.2139950869264,232.73140402787473,57.205489468065814,59.217836182039505,66.5106576913769,233.51748641403495,77.3110486205135,86.81873407071085,96.52623871581353,149.69652581407314,120.36498344679507,134.71274875607966,56.72569867043041,34.532459410232164,41.636476500246516,73.25951469384002,38.563539517110726,122.19448143934592,313.7150763515403,69.36474113489683,85.57159220462502,64.0012624056264,98.89037282049806,54.47684019699366,77.58552069079002,160.25294336659462,60.8993778028761,98.94521505769164,115.58819468288226,64.03019338144384,37.93166124098883,207.84914550924722,240.38594950197077,243.16726217820198,57.923721806990244,188.38086900573438,84.03323300696738,105.75992482710326,86.99290338541105,101.4636901586987,145.15078024251008,344.3587332446896,41.333566578338655,188.93679519823854,76.6007285266679,173.7362157180346,49.4464619682913,169.8669227701475,69.07021249431585,55.75709739410099,32.52413458660297,62.5423108049544,70.35360143197546,202.18499736330526,62.88421278871026,60.81146259365763,109.29289241965274,164.65108218000466,68.89076071219472,55.70777187853392,206.79817854556046,129.5862682657392,77.58065731832572,83.78289948528099,49.17041278754056,152.59498332861307,53.538116979547006,108.77343006662805,152.19167540930135,251.21152786969753,46.937354436291564,57.00810730253488,102.23041414731779,46.49639121689952,137.3957179589496,54.34397542690743,42.80051652470728,63.42047927599094,207.6094533765419,305.6058221325239,150.37994945213603,117.09244136165177,51.56830870525854,41.893227884674715,37.29777812235208,168.18827287139572,234.23183912442627,88.58264597725505,67.45960441407695,46.20384489636969,38.9352957296384,51.80422760399219,99.05493947451748,144.95148444023454,54.940518168944024,81.21065760144789,71.63752940791744],"multiples_of_cash":[3.4521975647719616,6.044840330938869,5.450093309791317,5.931541490907369,4.3551320770952735,2.5248745746253873,5.409823575857308,1.7120668093688023,3.585359018296471,6.641181747081866,16.312638744065477,11.235094970332236,6.399962967681788,5.505357618684677,7.507448915744687,7.4248190388448485,2.4941512281749616,11.677159835532212,61.929627375744126,11.634012845482037,18.119500981523142,3.9924103695521564,2.2244292363306872,10.323578992218232,3.3909705822130736,4.3346270733297505,3.8768116473184344,3.7462885631229805,8.551748850407668,3.603378505853314,11.974006622033281,9.95115861259698,5.5194438886211135,4.380571916191296,6.016040451354661,30.285233497369298,4.519584518187664,5.93593503686161,5.612688874987379,9.097642164899156,3.6874093755842083,3.464064218642178,6.661491763133915,12.08076619710504,4.723190938299315,13.55411212440018,17.521361979102398,11.31970291245492,15.705498405349068,16.621098145797205,4.097548563399087,12.115254060261352,2.9827614981760995,5.983291607492795,9.287235308065084,3.4651680371849993,2.033601299670021,4.544918199607174,3.7971792307497525,2.889308350111103,9.25263850871344,4.5718816144723,7.251902392066852,6.479822034995676,3.454555443844058,3.682015270255096,5.384323705443096,12.902146095358153,4.525902703797186,11.916215898315986,3.04411454381747,2.6096257507636347,2.7649236115896803,4.3334297843861505,10.642141730022024,3.585854035286676,1.5873794297922152,3.5275601348668832,2.016338925800381,15.449433227838037,4.059716014622325,2.7325199063363717,14.568501071707665,9.8039702864687,2.5685594875547735,25.830114542189417,5.627100793076597,8.473774557784003,65.71410485709997,2.5869994675842616,6.460545975542278,7.145768024811958,4.336891342030777,12.759181068411602,8.269004489908061,10.376490613522893,11.490408490946695,2.737367607523941,2.6133473015292985,18.749912349128614,15.703684056973762,5.038634677507507,28.34423182387869,5.1891245775107775,11.026518874142235,2.813451182760082,3.111786135060244,7.832060174568873,3.197703225949183,6.108133419430893,7.271989424156279,2.6043657569313132,6.147929889366378,5.989039311833833,26.92894782060992,39.37026415095172,3.642427928729508,8.83175406185732,4.170415782752822,15.141568288560263,10.159897591415886,11.614499369484253,3.18754663681696,5.5262612235843465,3.860796576125563,5.258322671853194,4.767273150152749,6.310871491054409,3.2508213562152517,3.8416747729121066,17.041343130292816,4.957688458492523,7.296665175605353,5.6800967250787275,6.4179603662055325,6.618980247929867,8.512703130130616,23.12705457381585,14.425177141100807,6.195687696088935,11.482332461417627,3.2164894580631698,4.76298778095042,2.704397989728116,9.734531115498736,12.973916929936815,3.121183342743282,15.204062003251531,27.266258127159812,7.5562446467661255,19.990830121098234,6.858392903381959,4.186405164640255,13.510682714406892,7.925083976166147,23.438023565993042,6.374959560218773,14.271118435953241,8.934159906736387,4.250360976920352,13.561723803975122,3.5802623314007938,31.121576797110528,13.941655665823067,4.545872318902092,5.641647282955002,6.4249793976513,2.883916285837686,5.335373107422764,4.8865377763815525,2.683434812604098,15.097063484978044,3.039481341247597,3.6601174256364377,6.074018168939542,8.441410762983498,4.827767321630206,13.53195207524216,19.174137374643124,5.578058958606687,4.8363480953054925,17.354671586630023,11.958472152387852,4.507388433784191,11.210382668085254,21.508060240570185,7.303066697215851,2.235003532801763,2.771336557608282,6.134939137548363,4.1823703893525925,1.8911277667129776,4.280606616073482,5.1653255006077075,24.631560890822726,7.48860055180732,1.69184261739959,9.893750091355367,10.571986638631579,5.793796618502248,2.507662737374399,3.9040604449718725,6.193716448932466,5.195344643421155,6.597476934698762,10.277353710064796,18.187008871935205,18.42483630953387,5.078403132431193,2.7676458269713535,5.470026094938141,3.2554935517569223,7.657784360498586,13.698677908220905,5.718015477983508,7.099076710607841,5.456271285356075,19.973815359106336,13.870233308400282,7.689849315095909,3.017054652451083,2.4984557057101804,4.6457284249819475,4.020066770025103,3.564631261200516,12.603674868295691,5.462304845669679,6.863020016233876,13.803763016835807,2.480222838523249,1.9303234573235104,4.7890815168049095,6.25806500073094,3.447182219995764,26.06991207486242,11.11307254173548,5.9392862702939215,3.930435937450402,6.6334830502699305,2.13888610103981,12.772513684102401,10.913681123248242,5.364547285150813,4.983750144453726,1.375518502004985,51.986702575770785,4.180295438479646,4.058979302207686,12.348324246705893,2.154845792432922,31.764033081646154,4.9728855799646725,7.499264988144849,2.432088639492658,1.8933862681163791,7.544617778067677,3.285690060335133,9.278335012714066,17.647940969724413,11.239396850413653,12.582244542081737,3.4149942651678185,5.25485003981934,19.899463558766104,7.8224423498274875,8.446611005427348,8.367740595651172,3.7349634055124272,3.969251167487435,5.226291855085841,12.338198320552424,7.766153928802305,10.304641688454131,6.497746210135899,20.0574574951684,5.276322448512302,4.900407860879469,4.924935182770312,3.795510105978031,5.43751776743581,4.573158673777537,2.123589686569506,7.909041783659587,7.9347787446427525,1.9064511444094216,12.135786130104139,2.984475074571021,3.0351811930395853,8.98988042068664,6.348900225728914,4.904781052311125,33.405996614771674,9.984424066711023,6.666179046604058,2.191473509648669,6.561254030413612,3.5888331883761833,23.7774205849475,5.683734337903662,3.7850131525043413,2.7299733376805047,5.086517695896583,2.529328173634158,2.535361736521881,6.599889379892984,15.529486989043477,1.5143936547457018,13.810345413011776,3.9891240713781375,7.378704493198494,8.00779855477773,2.2474966519949398,9.803666579445016,3.027164791720087,5.949272673673176,2.1227268966947115,6.840471745053106,6.236569431734589,6.958624902572261,9.29012798004314,1.79299036079103,8.246890372431253,15.737198786828742,6.706511275967872,4.153619987476803,3.6070754147801223,10.666948534143382,6.322503256473594,4.848245215683218,4.25084570729604,28.070340634622067,38.72660285409121,2.7056952447769427,5.653657627020306,7.0236851337745065,23.230414007840952,11.248588799304066,13.313525966591621,15.849548378368882,4.620169009041648,7.277128413316466,53.04950274543642,5.947525845053869,4.443086628030026,4.361661082254889,5.554203136376454,34.664449535802326,10.133623932396244,1.9614940607226896,2.9178297517610137,2.8515369518659845,2.0827651714871522,8.683325080287887,33.9884030993405,6.562122617315576,5.062192311473202,1.3996103104010185,5.394371190892825,2.0507565719085212,7.01432282020986,6.305637151541605,5.2616400364405065,51.81077163430178,3.302760514204395,6.131192335674658,4.17453840337305,6.929382978361922,7.158682283180918,8.095930992827013,4.767323590343848,1.8181086066681522,2.9193898156213023,28.238427021260204,11.152080828675686,25.128473664519063,16.62041662312384,17.91320442271315,1.4396694832452321,5.462835528979109,6.596384813738869,25.13298096328679,5.913769857117388,6.6626604090446895,5.058435553105964,11.626216537501714,15.173614546554152,4.185427277156019,13.598875526375112,5.563690620705207,13.153183533526272,9.67419512445723,2.9361928412997678,9.998235219366943,3.0792969908632384,7.369205371635533,3.4747131212288895,3.344566712517041,13.055132712373863,22.658798111700662,5.3332109583700404,3.3705777319255223,3.488801877415102,2.2238619738269736,4.5800200292713065,2.8519193100796363,9.893047290058067,2.159519779243554,2.2393729242301115,5.1368468594960195,2.6794284474302783,3.102861377238604,4.193770132531786,4.298442391642346,9.36618520583348,8.52656367040866,4.767362757809051,11.633014508999201,19.402887316250073,8.39163298632656,12.872921978834063,5.33188526749079,7.328144267277521,4.397704423769423,16.0543003614853,6.678776492107154,4.136059705463307,18.035486905045538,3.8772122707307606,2.757277040666576,7.088897029307278,3.939386745496141,8.604628003090431,3.266414176334456,5.1246228430478205,7.98017969983608,29.935382657698945,15.53405042170577,6.403127931693801,3.436126686807445,2.894956033888123,5.740346305988348,4.758004017935812,8.074726915215939,13.997171428201332,7.235235015395482,5.8531052309357925,5.289768257362227,3.5594959806393685,2.888662204542504,5.581223221615461,3.221129170385141,3.122149448296474,2.8954579408052346,7.403443256014136,6.736243097878837,14.838615931326949,7.5598613285335725,9.709363518192152,12.24689551532042,12.080856018878135,6.518783054557683,9.468594489335205,3.3056238478355358,4.951038743203547,4.391995633191494,4.662338721776152,2.8655643524858294,5.222520457423863,2.261526290275988,3.2111771397136764,5.316917450107925,4.269201872178955,10.491572576886542,10.734864944647615,6.173579626755956,10.06724151889538,5.236123406468727,3.5310689679000857,3.7754207705529326,2.355122389806832,11.268393762514139,4.1040634631812365,33.433396771554015,3.850413373921347,3.625506025585427,2.4131766139269093,2.3557380434063027,5.395413671125728,2.813831693390965,7.026327718066896,6.182187546004928,7.11913136937781,3.8038473647373277,21.718715679868218,2.8464177960437884,20.0423292771515,10.090963645844651,2.356968999279749,7.692296473296354,7.660765834801519,7.88795003179254,4.910762590344183,4.025723844681975,6.7373097413347915,5.0294789163220175,12.275477809766047,8.459993061532053,2.424711004604142,2.563847346971729,3.664430404519613,6.98642122897242,15.089909704509637,5.5525833980827475,8.888964677893028,2.1940112704590917,3.2745589571446883,3.8340278594125556,5.931956766508872,2.695562092636853,2.4406755458729896,7.974848627036187,3.8180357120035047,3.0807553666187513,8.48126524658738,4.632173868223411,2.6702450829195246,4.617147972906749,14.486854852585102,9.914738027631975,8.212473167601768,5.304692714858865,12.001031776628787,9.462751664061495,6.060155956863597,4.999046058156538,10.216607806529803,3.6819995851961593,6.315688138376674,11.59806135126367,15.767543372973448,8.315253444369604,2.770365033751859,12.921632681683876,5.757379086363731,4.614551833941525,4.819631389151204,4.242553473255792,2.410117448055782,6.473361420380432,1.8025343602163086,4.411690311390801,2.254423260003485,3.3166644484570695,12.434858624523187,3.388445850006548,11.491814583073163,4.320154096194658,4.517093813915209,5.823541920555849,6.041332414741621,3.1926182092142827,2.300120443499781,3.0509150234764233,5.804431440238873,10.662716997309518,13.707274725568807,3.992135510591372,3.3276618442186967,6.703013165412767,8.844251212799598,1.9882217351698612,18.633831377387423,3.4604167156793473,16.536660236918053,3.0120811190283785,4.066665140150026,4.099381547977287,5.733546465397802,2.9348264987579515,13.262132293299006,10.682125883225568,2.7258240622744654,3.240928952149077,8.998332876585382,5.847445941329322,7.023528330004511,8.838775678217557,8.00360014917284,1.6712055653507165,4.3441814043185785,5.845365432515677,5.5962165449408126,3.3838207157904376,3.354878533583676,7.913311454727609,2.7959882699136385,6.387826549452884,8.366069439843258,6.245096633131343,11.157415946189284,37.833122961877606,7.864799098448619,1.9154763171758882,12.747817802990697,7.0983258996979925,2.36678969790454,3.8879318324942655,6.170011514015129,10.917249485366199,12.949126066565036,2.5108299096697073,3.129337470736576,14.856399410981812,2.774541493030392,3.974702128476519,4.960826207165436,2.2398249964164747,12.277268434993688,6.208959012912076,3.808569268519897,2.213501115742921,2.9523295370191445,7.337734549030853,6.109814570970004,5.018966370849379,9.613087144194429,32.571281623520896,3.635732966660711,7.055121491595812,1.474082975989994,5.397971895123225,3.2127754718686434,3.2946536601240184,58.48099828334858,5.29150787481321,6.677524943996238,22.05442673262989,7.601487524402888,7.898470498203405,6.9853267096182705,12.195268662616904,3.212918036283463,7.253294080110398,29.76819298504784,23.28093001705854,25.16453914972833,7.893123425272014,6.032018218936552,2.7592191390608374,3.6949283723385347,17.61537599123914,6.9093216026769895,7.213813628430312,12.194843762389741,3.0282362191376713,11.43112276388085,13.410848218868482,10.302251995606426,44.47598303075283,3.7939150751314865,7.248149010007476,7.130242949017697,3.432914962672595,6.245502817530844,12.057951890066654,5.281272429331966,3.257718243954673,5.267637558856836,5.839521178754546,4.5812242129823195,4.55519918149957,14.51556623827807,12.079961612847661,4.933902642314806,7.906181844615566,4.613040143447578,3.74909024455516,2.595395863527278,9.58768900071774,4.117286764235366,3.0248245599696117,15.95722744558967,2.990818503882312,5.131863987413818,169.82737438550046,6.466834782932518,4.759380609297622,2.996510928870086,3.693286392745183,2.5717580603727273,6.550233773614803,4.830666545483289,8.91801158344647,10.867436815334328,3.3530450758339625,2.9736424351429376,40.94846117912906,4.8221957390911125,1.9129853617133545,4.92326121139583,7.417437383778662,5.881323338504617,2.1806526204879266,5.299724961626633,54.38630255995567,26.220936339999493,5.167247603025297,3.518221472102161,7.3034835697969145,8.329655003013595,7.690734867817707,16.911979984619247,11.62748277391173,4.48750878378747,9.749537820971437,2.7879582963248257,3.7560420553056075,6.00331151043765,9.576066577519574,6.978993639209818,2.2552381373597843,11.28984082129452,23.269349244467357,2.6025372765830634,3.341484126117123,3.0118637393553005,2.5867801913572284,7.6138326629553745,11.384448591048255,5.686699792420273,13.057381074864683,9.615676341278341,6.947110163458642,3.629274981981711,8.508260717164928,6.293574626798061,3.6344593170265034,16.835477123358697,4.1205411231584765,11.75144703552806,3.557552276898986,5.564602165141363,3.5453484186149207,23.861761443380775,5.574954191545266,13.45847066074541,7.916748007593853,7.870703192994214,14.587784125537578,7.7169393011735705,5.5674741583205405,8.779627508320937,9.013154609309138,4.030326230971152,2.943837076083026,1.9173788577242192,4.642091926040063,8.267928176194609,6.405635843217284,12.619952117581612,7.341503755561448,5.9442198360196485,3.1787750371380663,6.258044232742064,9.2731233571617,6.255672897739581,12.907572367391149,33.239306067956775,5.162664884754169,2.71226295549526,11.511784015344839,10.62350624956688,3.690017515813446,3.9298113572001356,8.288980170732367,11.803118075221716,5.219731533646794,11.719368341084115,2.6024409332939475,4.065839182592116,6.942705549834123,4.009930079437771,4.181191912449017,35.27976740280436,7.806347805477245,5.573861393828311,9.153919167608281,6.020568437656783,2.6431815856938052,5.140396325979318,2.8773161371449745,4.295866494725135,2.00786828693084,21.90220821571817,10.886541446075848,5.507860798001377,8.169841748071608,2.267937775249042,2.862351289021144,7.14868235714372,4.555636660374893,15.285185404006105,4.952805124638413,6.697503547614827,2.6981838681508896,6.186612975210553,5.519528216975409,4.314855598359483,4.446816155158122,2.8495380527685836,11.673875593724444,9.198556475178671,2.4007421882688935,27.338662001320465,7.373256015542616,26.33826204822257,5.253747074521888,33.274696751711645,13.813993538227246,2.00797790060275,4.445587356540257,2.9953680641907177,11.711355472011785,5.191121834943142,3.3244075565214266,18.84743934214991,14.184567977275782,12.914307304058465,5.540915163156495,8.457720242948048,9.061933304516499,24.01969254454639,2.0767232448725554,3.6445252761020233,3.8150380541414424,22.267556381857634,7.7858563463354,4.420641001983851,5.135625046219024,3.7397417993044857,4.1095244296067825,3.7302676059695017,2.4272657824349353,5.557608154056753,5.0702561343028005,52.522480460331515,2.1973495939675765,7.80371441668412,3.362749924140631,11.55145618533585,10.84604085140833,3.9477572423290725,7.878199014206928,6.356833022919954,5.744791882177071,3.577661815104123,5.111956505225282,28.441761652865384,4.1587832016287285,4.2378052955470435,5.9964886931459,3.376781678824307,3.2823216233012595,14.26009758799062,3.580217199768653,4.300881175874316,3.0086900548660136,3.444561927709147,3.2911021326089096,10.308476920108149,13.220791765892077,38.83366891812373,11.354945657896845,30.13784929168655,14.622407186985964,14.536238014553552,1.8339143152930637,6.056101308772633,7.110304093329193,3.3742574411087602,3.404749653420683,6.523924665583358,5.441504506473015,3.2164257352349415,4.050891072247421,5.929232637631345,8.766603984474292,58.93776381879182,8.610553838392269,5.031785791120923,14.387892741008535,5.1036161650788205,6.630175316364281,7.334535028390843,12.133724663467612,3.2313138762658484,3.471397148322218,7.127709453465803,25.314804250903112,5.217040435145347,5.880730422961196,8.407280825829687,2.257353550039555,17.190222417061484,8.837618577683333,6.528584090232229,3.3531552407211223,10.926677256581021,2.2623476611701223,31.05493674223408,6.145039780073691,15.26336870320732,16.40462650492456,13.965065574682056,10.661548232998904,3.9883066702764913,6.658087810480078,1.7566751522885686,4.622965038625298,11.483329983675517,5.2263855442250975,7.572257604869341,11.621570019973863,17.420261092728865,12.482172458720568,6.038573511656495,4.072331834278528,3.099811055939797,3.5117289892114685,8.736860041535339,21.682545495898548,3.743012756562714,3.462088086372588,9.488154499045356,9.98775741335035,7.026799490024151,10.01823779405995,2.407828139891998,5.95506647679877,2.218711130074175,4.882580426606761,22.84924150433838,12.133501594041512,9.345318612282174,4.63992041453342,3.9786868889965814,9.780775399604828,4.211295200804308,32.17271568698081,18.793070534541826,8.76418047764051,3.8776219055078287,2.0256314161328595,5.786917161236512,6.459860368617432,13.158732028836377,8.21442573786002,9.872113025152592,2.624007356404782,7.505325704962665,6.805224403994214,6.172377082407928,7.591258434561447,8.346513820105292,4.4545298585335145,4.0960435500671695,8.683598804836816,2.4539104632321673,9.61383785687949,1.7962120022934742,2.2811226625977956,39.14433518092889,8.389892409947137,6.409770663486793,2.061734580255014,8.636884831629127,6.375333366246117,8.171751475484543,6.514425264198578,2.8252219443655795,2.5302341608145205,16.141576152041115,12.812072816403067,7.0890505592628354,6.930315603875631,24.835378286079667,4.523655742819703,42.55515121174571,2.63653518562103,10.942842026346488,8.393339344039992,5.76659414337923,4.230520088768738,7.4806321741254065,9.4146267598913,9.937388684605308,5.2349973895984165,2.2567400209789894,3.555711691749715,1.8634452237428623,6.131173146412053,6.531559627613665,2.887213205502547,6.049516489369403,8.44167362504643,7.8802366414823615,5.09769823888406,5.562329524094355,8.177785454562285,5.5347976510960715,3.580290757466402,8.80365391853773,9.682291627759362,4.297184559745098,3.950603250681752,9.728865024343126,7.113879469866514,3.6904243316881136,7.845761789176848,11.024717422567656,18.269775554208245,13.12984611484635,2.2167160625474893,2.094809398174698,13.142317900767015,5.911687183536764,4.353340664814388,13.84183754535492,16.536104957564305,4.031531506666331,7.471555483751965,7.093313580249289,5.609104993458341,4.560717441684869,8.445651997415137,3.7007524737754265,2.722034605837844,3.869407129237016,18.52435973385266,4.155921675655416,15.418368878089687,4.560923038689276,5.319143150352409,14.530919011099344,11.601786192349842,7.363278506782305,4.519197572359992,34.823283863531294,2.4390251316005216,2.9878323393257094,2.4077772062449765,11.0148423454829,11.699934413321792,7.629417604624839,6.360642963710374,4.657165797434828,4.009298876702417,3.7200234272423818,12.959734279238953,6.509373779364515,14.844784847325345,6.769518200659374,6.850789038626966,4.546447104070761,2.5999496923086025,4.155211555148688,18.468428436178858,5.821437923904914,2.678750510968314,10.598094804607678,6.915470213355294,6.694489785661015,2.294834556775435,13.24152167744032,5.26075168687681,9.95912522551781,8.618958253421589,4.575837548745243,9.529131666253638,3.711699889341987,7.503718545430552,10.150951645849732,3.140335878594842,17.30168794483321,12.501901980785522,6.162692569829712,4.3184025760619695,4.416998740815863,5.476929079613781,12.386009118255556,9.993449230102387,15.520591767344817,2.0162906607487603,8.79711924024842,21.50291053502316,2.425925058047864,2.7911158223930475,16.64554980570908,7.197980192391136,3.7981456031954153,3.328988200878944,6.371618954474402,19.116281918569882,1.8969096166425268,12.630383507071569,2.559688749748026,4.8386969686487005,3.533041007670426,5.769187044827756,5.261107918936544,7.011799592946269,7.150096953846398,8.054014933049311,8.389399305689455,5.415880801625871,8.850158996266996,10.465030747533405,2.7834571578616107,3.0987768507770883,8.497119816533404,23.85079711706083,4.556918965904013,3.633399186416428,3.306157357864727,25.476641619986523,2.0328279490178303,6.075073461174137,8.280885805285148,5.863390654628682,14.974273731064315,23.91042423295616,7.577672003575028,7.143406772462581,3.374148929602703,5.774487058625304,2.3643991302199745,8.574734993829816,10.212095466785362,3.783862899417664,6.443408517414626,4.7106110230599185,9.480943916918525,3.8959318024059897,3.3977743620731533,7.041063609068868,5.158111547122555,2.737331064396984,7.134797957037468,3.3564608042513226,8.575142674942368,5.159568124756226,16.931504025349984,4.294285969838676,3.784463034768193,9.489690665561755,15.657317555470216,4.40438261912646,14.15947893910027,2.8646661936279374,7.339414937862934,4.377184353621834,20.454826979707274,4.186008648334944,4.112879824753621,5.186155934272998,13.47988917970665,7.054622390000981,7.130309500740548,1.5859827888949345,3.6146308288036963,2.325478141309474,8.038355808318395,4.816308168081231,15.142718031319394,3.816958412658977,9.686883463701077,3.2338042106707783,4.892817098499374,4.476506078198115,2.0783295724236277,8.550985608660682,17.32159071034868,5.1406447552144146,4.576753886748402,2.3490891605543798,3.7641762285726146,35.13318889713316,2.227791429904792,9.145440013901338,3.9279642945363635,20.57250221149393,2.38359513455606,6.201672919129045,2.263190384558778,5.488785044912667,5.478578993745473,9.755513645565703,2.1693062153459386,7.402060478350997,27.605112336402374,15.563704405878372,2.1541544611718098,4.673259237432643,10.984683455186932,6.198558523619368,1.267531324043518,12.029179140127463,3.7833450430574396,1.201061541009756,3.2541928307080568,36.179067933225085,10.267430902764923,5.215710387258417,7.761469852077497,2.5866159515539278,2.0254316278020585,9.552601290461517,7.129618149214794,6.021713401915066,3.451972329361511,3.1241170374203766,5.310024783722752,6.313753791191838,3.309840803157617,3.7158731535729093,14.705533178838294,14.838441238892457,16.539338063042262,3.5874651276444283,2.52350018527392,2.6762093335494335,6.855423637815544,3.7325149436977214,6.626171593243244,10.309772654599545,3.43573947274415,7.400687360434871,2.841844558984054,3.4435948967314793,3.780536209117857,12.31233097009408,2.649715635219819,8.267017544393795,4.793760240493457,5.863058191095571,2.035183437392743,7.833037396032187,18.71023410056117,3.1756032763028847,4.227683429886142,8.111296693670129,25.98683262706288,13.026535449832448,2.770735984286009,6.254422137264199,8.550653249601234,5.060012719386123,3.36037982138603,7.048367712757827,2.8878956536679428,6.9645338598829944,3.568310407098504,9.844447062267983,2.794749008096768,17.563614961535432,3.4188555000033065,3.1879583739492263,7.793639096900687,13.748221554370577,5.959455100648787,11.10822774504418,7.1411602178147415,6.920722854320714,8.951681809220624,3.5992194265695177,5.831076415629795,7.421442165565918,9.864775010112567,2.9698066984537683,6.191147220213428,1.9032945775829588,5.043734946031178,25.615503783221023,6.015394170773741,2.481093057252452,5.0666841719441305,6.1976403946989596,3.169407514675277,26.699401144264353,2.2330758448052284,10.594302272470683,2.46536268247353,56.61796706386516,5.601460589013197,2.6718229826375386,7.94338022322907,5.6285132741394,13.48414210910586,9.065922629004323,6.6778858979689035,10.162571502167829,3.8371625277828154,5.854305800229527,4.5914751559661555,16.595715173576036,3.802095941419028,4.53119849643818,7.537418072328141,12.075829106982143,6.854515708051612,1.7243752571550224,10.443216570040322,3.6986945204045227,4.363871475604474,6.557557313954607,8.860221292501814,5.500646368795598,10.053425473053547,12.626106539633728,5.835476998513064,2.1876556112561456,5.0275842499199985,18.386131391394617,14.409579604971295,5.466461438862719,5.748011882112909,6.491381443098986,17.907732420940857,1.9991684073097131,3.6475315780791804,1.7309667878179562,41.10482080270575,11.083219470761083,26.60629060076311,17.149149375702617,3.7869166361317,8.283452893719776,24.463175001912628,3.648887228968077,10.08744567156947,12.507650524855354,10.83790036915101,15.738728231690814,1.4578168415085013,12.896634394271196,4.720438767962583,11.091614045142292,3.492177688405274,10.014174969702795,3.5363019547698173,5.177196560586804,2.4829408367895924,2.6816618127221585,20.950185320360823,2.6652641652595537,2.70603147213809,1.1685390251411978,3.6361759538335146,11.614508279856787,9.324089247670841,11.942306872997978,8.309879997339793,6.63150988526798,5.504028439772,3.790142450447121,2.155849545334335,5.320483704903607,2.400231056844006,6.1707213480674294,4.954754985679556,1.3148294890122574,4.466991531870402,2.8707364165965106,4.005676701093279,3.2996134762872704,17.90117270277512,3.146630479468562,4.195847370510414,7.51633910346518,4.0779910493801514,25.702697410832247,9.904542633910928,2.088493915465304,11.150341251906104,1.505725690296583,4.633171853234059,4.226645162972364,2.0759938014918604,4.900631405948972,6.522158590899513,3.627114900360364,8.46848034753159,2.0351198212590176,12.64686887095224,3.505584397546575,4.740804652421654,2.4750967184475345,8.899656714610515,4.329081433522024,3.731927844805409,3.350591759933687,13.913000974887577,17.096850319938476,4.384306018885247,20.903794914496284,4.871757249518374,9.095330733050046,6.367296817847289,27.9402645503312,2.8798351468078063,5.559094752036756,9.780221238264089,7.889053074479413,4.594083713075207,2.310665877724197,4.260160378829845,3.081604024559468,2.737084671023373,16.273765201358795,3.720635322119785,4.48205474774155,5.174841631617745,5.348924453402442,6.518826586526478,6.300889451958162,6.376867350852856,10.829741604165086,5.769932185897598,5.667330831105695,5.09163142354285,2.4121051467308297,14.557920250770414,4.038827562808568,11.196747760965145,7.097841478165912,5.7981315177881045,1.8002159761845908,2.9704709438825883,4.7872909777925035,2.119362633764249,2.785851673231396,4.168522240743492,27.029720310832317,2.9766790626063595,24.220728898948305,5.320597507899995,24.294979592149033,3.0785225215540413,4.838874720924503,6.2791502591334964,6.95730748761083,4.898188578847098,8.447430888111905,8.749353957353993,7.851483310416683,15.138463595243955,11.226017412436239,3.53935367030213,1.5096548136580294,3.615333382148152,15.172875371814376,4.133140356769712,7.813911898871695,9.392523182394955,9.448290132926079,3.1003883991710235,15.60684851820592,7.856091365891766,3.1503937205378696,35.860859084843156,4.775546138649036,4.04101303124664,2.894561570221729,3.4739200862126847,5.102087479808665,5.485195853952368,3.312380796451339,5.968766284772196,9.985899111127178,5.779278862966826,5.058222736767018,6.45205482111237,2.821170788856662,6.2665063659848625,28.904392759009763,26.833665977450295,3.1030663952555306,14.295761947684724,5.685349264487599,5.7694782293601135,8.201477986576965,3.359748716045676,7.318436933658206,5.790288684560115,12.690105202301227,3.7849558397800345,5.631781970819608,10.982250454541791,8.297519898440294,3.0414185541085685,9.188362079365147,4.536589800587081,5.59155336000894,6.713044080656462,6.648829952281113,4.946431053626257,6.438351087731219,4.465843483793492,5.503742550707077,19.101475633250477,2.9755133520614785,6.848400360162606,3.0390584700151297,1.8030649101773948,3.9907991961426994,3.447378335980844,14.587076866520704,7.503503362921799,3.002218869202245,6.494450536868376,2.36039483872514,4.741227395975704,12.810733652304068,15.158088324178793,12.272773579325499,2.708111408400074,34.08851423856856,2.131368286447984,5.4957703629802666,7.208978729482856,4.285996128437987,2.3701824323364016,8.241285567352142,11.176493407509742,4.907672236053021,40.58763014937911,2.636173221924672,3.1036732341468776,8.5002903484128,3.575823486092036,1.2030089472059275,3.713680438672433,3.2358280804201467,4.497776989042766,3.2964315929243675,5.48132774102029,3.98641100499098,5.575625535645479,4.879593754503099,2.411524852571005,4.2104561792338995,3.718264056253034,8.351824877417467,9.633256002397028,11.859355102372799,4.651471474318224,3.0223599385147266,10.611045208680546,13.5689222151996,76.0157654962404,11.424940916169984,4.994639322030379,10.4943692049449,4.465994208585373,2.9521407676147615,4.5868537393948445,6.717365235721926,3.8711151722209127,3.409484049775869,9.456375130021588,7.385621909088941,2.4430757520510373,14.347259848782327,3.8234407578533274,10.0664601338566,9.625306428750548,2.9521313266814677,4.109136029947173,4.017897484946166,5.803849675494998,3.6404403213086143,14.81436003502911,4.285966343358671,20.308822828927596,5.045340814040555,2.4581383363721607,5.852712732013424,6.104971945016686,2.173581930961794,6.036337819069344,37.49876895453314,3.284724493653194,2.373853123169783,12.711056425895435,10.703414501589744,5.902464774679285,2.8152794588331855,17.115801891472866,3.1796643819088555,4.119640099073057,7.155231930203378,3.6523119826550503,30.954566965278126,4.059250125256934,23.728017452962654,3.064238187184607,2.260717732336328,4.225632923753219,8.41481508065559,10.291553860300656,22.683379162871503,4.602415714258857,9.724457560742906,2.262041944467379,3.384390667159864,4.500011590891339,10.076495618268511,11.879127930212457,4.170795079990326,7.671301191704321,2.184776376163265,5.867371769396642,34.26012256698889,2.2329555614580228,12.676287862070227,40.98045788411759,12.524575166383112,3.0036165439176066,3.1836230388096025,21.625478675069925,14.872806525983371,4.724109814884519,8.450810146792147,4.227140601723512,3.243856213031605,6.6437201779035355,47.65043701985177,11.477172855032888,6.9478849182322815,11.035858702923424,13.461059145861835,10.292031726555093,3.6961751981412556,3.5154962894644437,4.068582133314666,3.3229336375153897,7.981994098007919,12.646307694636477,4.143976523091324,2.5886890702972662,3.2212639323688954,4.74394499677234,6.2053323411661605,28.60360295000097,9.31165777516527,4.009902194883468,3.3062251507534985,11.495652380820195,10.037137008770456,20.961680467895732,10.045905025204037,3.4971267975176428,3.7374303942373723,4.268585431970323,8.631558931810693,6.905255977215363,6.089810135829883,10.945961839398587,4.217750685402052,8.547808440268929,11.398316897602525,8.289402066215557,2.9043391903479097,2.9289010191790483,4.871326052877053,1.8040987841367397,2.288035496704563,3.2197294285932645,4.74269234008714,4.503301142622491,15.827883151745002,10.650583042269732,1.7093481419445042,14.098864346487883,2.141256850632748,5.9940724044213205,12.38179636177951,11.53706838129908,4.081893948319658,6.0636423129039025,22.718314912512955,3.055665592021591,6.155332781044729,2.7739215105582464,8.74811755869505,9.356655655768822,10.838070133842397,3.0113099786044244,23.874961565607396,16.262938493653365,2.9518338527891945,3.342950891084521,2.342199854696126,4.309191131526079,6.582613929151762,7.162520195633773,1.0770415943417146,2.164910678898751,4.591818136901653,3.973765394994918,6.76863703630577,2.0822559318405136,9.241368606410765,20.797399461220206,10.206573785580916,5.568326249542326,7.3077332546795395,4.6956473857806715,5.97329094670979,2.282516299160735,6.996607291802481,31.544991847199697,5.232243669612834,2.005122155780611,3.0847058329747323,21.18952327523901,8.324412208154218,2.6156407225247467,3.0661019086691854,25.47949967773033,11.891258957145977,2.042277466634874,6.039901876216426,5.836086625774699,2.2752739966541484,26.604484993394326,5.012679268857768,11.909304794104019,2.9342830810773965,7.952912233939841,3.716253962242276,5.879089247100207,10.041769259996038,29.67680452974832,6.881483387090163,44.73278742534146,3.7635402836973126,2.903157430231064,7.999267712633342,19.189647845244203,14.355738072306663,8.644383413880991,8.097393690408664,4.075289529499918,6.351631994651095,14.794985251690964,30.12580350275782,11.931384736510154,4.784448229065758,5.915888145139474,14.212059787014981,14.884867448342344,14.71238562120847,2.0502554889973057,22.45733393996627,3.9368878825211486,5.8639969178592395,14.780961382804627,4.573785276485263,4.819238077010722,5.634522577511446,11.34208907297132,4.179650611082948,12.284759053133392,12.715390509887952,4.315306483013585,19.575216446712307,2.1676463697257526,7.656503169391809,7.447492227688649,5.690401185147445,6.926178749144088,6.853130988689099,3.583955774519098,18.178111370845496,5.980559886799838,7.179120474826309,9.387341432073473,9.325434202570317,5.311478831738483,1.4233194253983643,2.829784423449999,27.79016291553516,2.3756813944838178,10.83030027747826,6.942720844028411,12.136801703139305,6.599960869369083,31.915657018062486,3.261105357145684,53.928515844772036,2.5243534404452683,3.776748963016879,5.156767398499854,7.075220970749818,4.1253818150008,2.6454741147837653,4.859792329930285,15.951035593551707,27.880981400207194,2.2196729866271663,3.090412347686358,9.26803099580159,3.125293377892272,4.304043897576576,4.5522457252151165,8.91172685238654,13.112560966090324,5.066977558832233,2.347348884537208,31.669360820835575,14.064986255755516,5.366290297226209,8.818046234330582,11.585334292179494,5.651675655342674,1.2719133426949498,5.447786419684864,1.7431649028627039,3.6085622594494082,6.267035026495737,2.389643471872148,29.291929436415717,4.533477712594461,15.19270420469771,3.2539121716287998,2.836363125356728,4.328345639395792,2.8915017123913644,5.1813524754704,3.4022994017419705,5.343786092096891,1.8662118416697668,4.41278460889581,20.78379915947291,3.5077220824260955,9.033317302661304,34.587764138834864,8.709259733278284,6.828919893628038,3.358557331687236,1.6946138734105847,3.766556871945409,5.8585011637267765,6.179501655185053,2.8322459697049127,9.52280808588336,3.4824353413506053,6.117116324304853,4.2156671681375935,6.330497356599175,2.0164807655990438,11.134919336124007,6.982243729510079,2.60094614357063,2.0017536916560363,6.306998728484987,20.11660280397223,5.878163233569351,2.208188459370096,7.044761052137567,1.957224289034741,14.27477834125481,2.2833806995757735,9.156861019921857,5.301751800804594,8.08302624935228,4.910052873754989,5.66277193541662,33.379041742167814,5.693502886550986,3.311578382068346,11.653664652888361,2.7376742934611777,7.729383528595257,7.193070881768949,2.6294458667256997,6.104063696135396,24.981657018525574,2.0995669570487143,5.438070316390956,16.243363433481672,19.846005302725647,6.793792168533865,27.14099688691898,8.186625894629351,4.589701545789766,4.517495034829382,3.1963204587452796,4.616712039776503,11.382134311111052,11.837742822311043,10.103154965884134,4.221154767843607,2.656894224924884,5.826543886668349,11.070809984004581,1.9190881786129756,7.5778563865680875,5.337945524828993,10.44159910664477,2.1528194504071045,8.430894333820921,6.196891122410127,6.6773902585517515,18.826805837914552,3.353529844926049,6.39503419416784,17.61333551925747,3.6553720282970272,5.843730013246183,5.648702172270002,2.511148954203494,8.87056499472447,11.462916893745884,2.2887956650574823,4.50223009691621,11.30171093168217,4.874381200154773,12.829290515424923,9.124215472061024,3.1235958751132844,5.281983638842441,2.6413754616853575,4.443783865173284,3.936086612612616,5.103779596296318,6.0208423070895245,1.7594239566781715,3.717004441896007,4.4527618244531295,9.003695481541463,4.818653372343537,6.662976490474671,2.1593961445873324,7.3662946931992535,14.564118060428882,14.867154430630023,2.883046890102936,4.523313676921738,9.687883538889784,21.407026010613333,2.4635576146114744,33.35075208150918,5.540523334032336,3.7954617477102555,3.1016166035076282,6.384179028097346,11.953683429773232,2.8614969526993046,3.818834326905971,2.8042438080315786,11.71352181923423,2.5313816158970197,13.879612331736638,3.24092683544053,2.030816018040153,1.9798396627911732,28.050358234402804,3.8304521440503265,7.913915928638241,6.199293450453349,15.362468651100187,4.0764691199655605,3.6925092464113596,17.97751159703303,2.8011696940031756,3.5300478210251964,6.8044908603226455,2.254805069667218,5.797604473942101,3.962998363155909,3.638316903687452,11.947821816176397,31.11636963088494,7.559067355022128,6.548208681236268,11.71834600810686,4.791589923765805,7.370514335984326,24.907412002275628,9.382796596414389,6.0481996566739165,10.039809447174703,6.479053129183847,25.298545757418108,13.473476451435602,2.382532279151039,4.952858431287641,2.2558111936625718,30.145929669947037,4.906611821592808,6.594825759929249,6.682651410988914,4.294867469034645,2.3878517656039464,4.299309857160423,9.44589280163282,7.220704596665945,3.211780945300191,2.84422628643617,17.309096138451206,5.051300513064361,16.51753661367201,10.715740250129718,4.472038334313944,2.3376094772023412,12.717351690049735,41.51100066163088,2.8585391958155735,4.835236860852664,5.163546059547945,9.923960761841768,17.205832329116884,14.435608319525858,6.981559583427526,8.055799397128046,3.478941761149473,7.853736208599783,19.698728141794206,2.815759297890032,7.17253701875075,9.661827419623942,5.634967016917159,2.124510197301957,2.0614061663643746,8.229971169070378,4.160074843801631,3.5807589667582094,3.830274371306471,11.563101492236727,3.773011205912733,4.848261367638949,2.5084434279925407,3.4881819163138252,8.70570250997807,13.148092470166905,18.80267612030484,7.013758920535136,3.287195646487057,8.189711726993478,4.782286807264155,3.1916526400156084,5.456558244680214,6.809792126487653,9.407899238421136,4.366431695752429,9.576982872096346,4.4438509847994005,22.947337572688085,2.089797146318219,4.681985394592339,9.575742920950553,4.5099294539816555,7.308676731507988,10.940254390362206,8.492745268767939,1.7548552299027385,7.44217191679336,7.578974448310355,16.57602220418453,2.7611339929298726,4.283705318649654,3.5584626433195314,9.136999052667065,27.681369040143693,4.603674558089795,3.0281936426703244,2.6178730564490995,9.480035805089992,2.7968042141214586,18.781520121145892,5.958006224692175,4.12592044432663,5.012992130845068,14.778520666644134,4.049990644766931,2.0235131555586667,12.317324417092516,4.8712546582376195,6.862165105058242,4.964341805136151,10.106024906696918,5.252270562391416,3.496316730368479,5.2705138170426595,1.5288975061392003,8.391186125703172,10.729709644136692,3.7264206780260385,3.4398558761476257,6.010536567126895,12.345846174207407,10.705228336186126,11.229638571088863,6.285227123693265,7.870005537028627,9.098543681435851,6.94026378592437,7.321705338717774,6.882249890963535,4.212826656305837,9.604636376851266,6.056223251032348,2.9973167535772722,4.057196856100815,3.3087968334883437,1.6128386863192021,4.990110502179216,2.212245436304837,5.648779048830736,15.475544115884393,3.6044029798985338,19.555395849565684,6.727728691101354,1.9654513024141016,4.001814878901772,10.205047859444555,4.298602370234996,14.976035036196281,3.3341456081635705,4.482137387977179,7.9133644389917785,3.1845725203153665,3.6709552257248106,3.851474049341397,4.540482647606201,5.622079980165295,4.824717325695696,4.301994105404955,13.925566358732965,13.232233598576054,26.811706887598472,9.31022277348584,7.724569231563294,2.168323687607982,21.40148073302831,5.738805349750205,2.4676760600278307,2.483487052834949,9.043088532152181,3.078372207439492,5.358293885355865,6.022746146920886,5.490423467745714,2.111799383405927,20.068346716319265,10.226184803075785,29.305002153130253,14.11799449285826,10.985381342089319,4.1028232350973886,7.418590084797185,1.7989123359435384,4.915089562244362,12.645086746993657,1.908995412075711,5.577806377797267,6.039024859547529,5.57367093901812,3.0708752220758826,4.718992435015194,2.7616067695423263,12.937491282931344,5.725592949862801,9.466485115276283,29.50401409944696,3.1769605515577117,6.689117909153295,7.604432607958957,9.406751939910329,7.106862118776012,11.5984732299734,3.570322931394672,6.044905869883979,7.085775209513285,21.187514273393234,11.937418951582073,7.155040172351108,4.288904735652555,3.772182209454777,2.8099195865026645,6.316674531310325,5.434635280128877,4.356743779494965,6.1443120784431375,15.640533564940954,5.7767267519869865,10.346199591191597,1.194528499929212,6.843906086878061,8.323426631389497,8.309388416511114,4.602560651654054,22.53644879796907,4.5769771469333165,6.052005882880462,15.5498094936394,3.6024272212973396,3.410504701668563,5.866657330537966,7.483974406954539,2.306024010187896,7.0149024573717815,7.436384349536692,2.666166841966555,4.319454938675113,6.690860575936837,4.206253477628748,15.244672505764845,3.2822064052863187,3.56094961891987,8.875582219858124,5.580269928650316,8.38295348574846,6.704314685439605,7.604206602894522,3.4561601717963595,5.114365085993328,3.9103525700814807,6.984342303749329,13.875050926930854,7.622629922878122,11.047302777685454,20.654789549438604,5.540569153604387,15.574854719292127,2.5743629611486853,5.033657008393041,6.211121988048466,3.545106842342418,8.83781604219765,3.7761518660446023,2.3787489733643423,4.6474429259829435,10.02853585014242,17.751535764770136,5.0109755372864155,5.870421768658081,14.679541914098749,10.520715622731322,8.195656213776273,15.838541878321251,6.154830671117945,11.009130258338766,3.079807736808762,28.808484847390424,2.9328974446796994,4.169180702694554,5.415178318316139,20.059704988131877,12.110156004507658,8.290460682168389,7.231117324314328,1.3202644818791323,9.558453286559592,3.9974558814240586,4.1637512709717655,4.7084640927068895,7.519617459124444,8.236181353865009,2.99982323567121,18.74497509086382,15.259342414567074,6.3751219124370975,2.892381284982057,8.859552261947604,16.03233640845791,7.11385058855837,17.268393046650726,13.16856974385706,11.212662133713735,10.429662712405962,4.251418624152092,14.64914023689948,4.289641516798433,15.56707384842252,18.660273220051458,6.2346425316017235,8.491760373240174,6.325409461484914,4.9989108632929655,5.2132361672987075,12.853474417063895,7.073554476512721,12.110877236235094,2.1145165181447645,9.100410528264213,8.260058385393778,39.546022762604466,1.5569993677221168,14.568258311842039,4.9578186300506975,15.503913810882977,5.142524643504459,2.568913327011935,9.992226446189147,3.2399032326788966,2.2635137823151976,3.8770953239060497,2.6449453826680793,5.247380681028407,5.593681038599239,2.866549549238409,4.64734080826182,7.932766709385408,6.833551414238111,3.6042516494857386,7.196027975910183,8.56521459481247,8.75994014315386,2.6582146141521403,6.501286395327674,7.753663804063182,11.151091297325731,5.681498108512944,6.949888665067609,14.147994106580043,8.11433089656055,4.201083951536963,4.280882354811348,8.744177195133643,2.824397596784154,4.818101254597676,4.320551356668255,7.243748201618837,7.6258735839392955,7.647861073632568,8.217435850993326,3.7942008019914795,3.8593390785131625,5.844317741936884,3.2743018035611815,6.169747184991749,7.044886596615851,31.360231580271115,3.6989090759056387,2.0491364614057948,3.258607823759174,1.796005947761242,11.148694088222134,3.763267954440774,6.203116308942839,5.98535608244422,1.9488097996783775,7.316389709380525,8.658528069171528,10.799889392961498,10.185598622332552,4.630806592606052,8.3108278048543,16.03076678773076,4.02084308850772,8.596434133619617,28.059521585965864,16.57741468031746,16.226199742348932,14.650990018233692,7.646286189771847,3.33709799657982,3.342642883677761,3.5388004206797516,7.989418679513043,3.5894733795137346,10.791263553473218,10.841146448530987,14.638501092284297,5.040049311970235,8.730753757584008,3.566240767281637,6.282606128980657,3.6832332923497657,6.708826712525094,1.9512815935652108,5.543573748661884,3.9323737983813642,4.667369272037673,6.284340197208725,1.9266345613416447,2.037584112822406,10.348617157719328,7.252519663447201,6.574488437988771,25.72059748218557,10.073028059015824,14.506912805929028,6.117650581574321,36.569972559276316,3.200908970315273,15.872900106435463,6.044898483302082,8.667705226392195,3.7971452150541216,2.257787540733792,6.058412446307536,6.2304172244983045,5.15625103229806,3.071691262665467,4.319777749318984,4.645193480674788,1.9702266616041386,6.239211739135828,8.081767396915073,1.9098840908368218,18.82588380653411,2.9242225393741617,6.816991085203936,6.973452140321617,3.8051723118304066,45.84491850851966,12.91918696265834,3.788799847343567,3.4218090655325595,9.16282842073493,4.753478228232533,5.626086942563584,4.723887390387488,11.934817021106166,3.4130520828747413,3.573857392067013,4.79527866347916,11.230862991729799,5.082867544339718,11.055813769875382,1.648384725776865,5.710182448818856,29.308938586713307,4.948220982077258,9.55196012522523,4.830845331176359,6.045450387151144,12.055462832188773,4.353881121144328,19.855607564705668,2.1119635710197326,6.095192210108329,1.8648187316647897,4.985263291695008,4.748163850430745,6.5398969216233755,2.399509090711256,3.5299032578849157,2.245581562220196,2.6994784781955237,8.830714189555012,10.519640576136457,3.960538364893861,20.840597922620308,3.779466628816576,3.626382876314263,9.863861566550728,9.79885335032755,2.796057220883943,2.3526382540337094,5.75598254706856,2.1867237850208734,3.440612063148031,5.184718438760198,15.479012351532912,25.651277009808105,9.747681577529592,16.62036516256986,2.7960994897428146,4.755523773434505,1.7115795472770896,2.4697988913191433,8.71512722337997,7.176615749855201,7.898405853525984,4.804123241613785,4.633243350092145,8.106691013839914,1.9006859207024827,8.220790115253244,4.04170368045666,2.9029983833050337,5.031205869570347,3.59868399825054,3.6031347798078475,14.429228507423318,6.299088304568759,6.4788116953417605,18.632040656233997,18.748276272387212,5.046973542204749,2.3799052573864574,14.26900491309461,4.22955118759465,2.298127228448517,4.864494836582804,3.3220197914270293,6.389782220125357,4.143208845523264,7.320767234240001,9.857450592319214,16.235576609829558,14.374372153469205,12.370701391836992,3.552734784476004,4.5422855525556285,3.1438787437875018,10.417403807863712,6.381914520099873,16.846550654868565,5.86469061747875,3.463584314816329,8.437541983171267,6.177296300960028,7.099042051973646,2.034932548847906,6.010331961420468,2.6726109543716197,10.023041626217907,5.221028212795988,14.96571340810805,62.63547847549221,16.684392424544715,21.472004328572087,4.73636164657412,19.020234204622543,17.271503104196803,28.865788101071438,6.509153158081199,7.0991793767990945,12.697352950935759,6.513467864228917,20.773486330257608,8.501344759507745,5.753333214921575,18.196704694672224,4.493759846429394,3.067247461532721,9.56939355800985,2.01937903503335,3.731576889757073,3.9355432649532673,4.132002494467675,9.332625344391902,13.038341806947914,10.038358536352058,8.8476359856158,6.670475356933072,3.2467534924609773,14.903805091586028,3.1806774451091395,3.162157562559948,5.672073230098522,4.507342327915591,16.42418260597436,14.44586101215815,4.2711626996492,4.20224218568395,10.75130913305959,5.1523686225070895,10.003515523378114,14.414198053957362,6.57096610518993,4.0876310405588985,3.852545701125516,9.816997702212987,5.087643119787003,7.871487952190114,4.153438211102221,6.088015309320331,7.680879997575842,2.274570037694587,7.189925727712132,17.723128876893966,9.146210596041596,17.80207836694266,3.6756151377558797,12.85738444998467,2.173606237800629,5.273031020658193,22.033175816457497,6.359891890651213,15.136536256846627,3.777815671677823,2.5442614057239687,10.811873188441925,49.92142030894529,3.8874637336995885,2.2300720243407475,3.2017593395223645,3.993425388382465,5.382838676394944,4.090947968060654,6.280503778182749,4.764469819575446,10.273226014769127,4.0257599414122165,2.35304749535684,11.593162258193788,3.5281861864527113,7.1914783271303815,11.178410003171223,6.5664255254562285,8.408415452224917,2.82427749866047,24.8507714843834,5.07527520590421,6.805092752633508,9.33712873866094,10.862663061165728,4.02039380390856,6.869454021671336,2.6322590337998384,10.963813963382202,15.312947551839697,85.24265255053312,4.634484034648908,24.23950238301711,13.006425054045604,6.8127914043360045,5.1404429452339615,23.010585375773317,1.9013484112588623,2.1879419845741817,4.185866300906383,3.83902466648136,11.253435429558355,13.29140892926177,23.373543170012383,5.619339116700574,5.025466736773755,12.73395330310828,5.651891327430441,11.16246528338423,7.69392224414671,14.918016703782278,4.0401962750071245,3.5657166686097708,7.999990596756422,10.806244185449168,2.4057719280098206,4.390775714738829,2.8648879322873806,12.086328501021761,3.148307383402182,3.9421820609170455,7.48089097774047,8.48308462309737,4.952066390411157,3.138421687271901,2.1990492393456584,5.147484857009084,1.7056873177637837,8.43651421392583,6.828855750291486,5.653454268209276,4.635610725128635,8.710454471610952,61.176609305441055,3.9840814210811035,7.84970350191368,8.169088462352294,3.7370509508378285,19.292172331235683,4.198653479993935,3.072147246420749,7.327643824184722,6.228877871220867,4.648660249686977,2.2923589892984695,6.5453155831129095,8.835404411812897,4.675654999991183,3.78299891425325,11.838228528521178,6.235380777272146,8.812832533669885,4.294581472918034,1.951604574299978,3.3504563682099002,3.45848422217054,4.503570139447311,5.253874610447273,4.2597377488075585,2.0251553990992837,4.043886594400983,4.3903724093691485,8.061871946196018,3.2395583021641245,9.827076605488717,11.120975389024656,3.552045531948436,8.80709316988349,8.98475245993458,41.319518122571466,3.809765066020377,6.4428113050224995,2.413513479844781,7.81760816879428,5.808354366792603,2.7298232602200887,6.124664125288416,16.625351603864157,20.083799518335457,19.984879803781343,3.509458861387891,5.760124385369665,6.570038266248244,26.055745423916445,7.126027583289231,4.720570953225691,5.594314719855185,7.887872586183574,3.3156225865010107,6.806376538940331,4.321368326426223,10.726075960608183,6.369318556404759,4.92722493397105,2.081945788223809,5.329683856809195,10.319631926237777,3.138403020669751,8.110897909669687,6.78142220645954,9.245184930851671,9.798936067717815,7.3079908001551654,7.740212332707187,9.934444375488937,7.646710276623337,8.224868661638254,8.461008020747363,6.724090885004834,16.981695660221124,12.249874200070709,2.426619207005959,2.1295688459635675,12.810099732658177,6.215756647836278,4.3630192997783785,10.524443068882945,2.6210617056728776,5.365427978701818,14.98275748900885,8.857880341028046,12.656025259435543,4.717715361096254,2.1877534846497646,9.930561674302055,2.7722041619708215,6.916153271179944,2.268531477506597,2.0914550991764185,5.010564022847199,13.24771485328963,16.065587206115776,7.951516470437617,17.56994837397924,3.122333295393299,4.370814553011176,8.64559451521683,2.2260604179039225,7.809444910312013,3.0717778584962128,7.24224254040723,2.5190255650510927,11.80579984728011,3.351445820681228,5.267648651885389,1.6066274785731594,4.195526486930692,3.0501084189665923,5.5041086668674595,2.4271540831722045,5.746482626985978,4.705943622983426,8.921410839541908,2.697057794840098,2.047565568618517,9.970661799050541,2.345064052765625,15.614263025159731,3.676508355278307,18.45564329414439,2.972682901546759,23.40765532955742,3.795513491055697,3.4466959382307634,8.641831935017343,10.743081564454588,10.27850799979243,4.891121929934504,1.5669967125046729,5.71224464531898,12.275291574399498,4.679272456143956,34.77157475217639,3.5148978881157062,2.769166780401085,2.771442081393208,2.258959643891169,4.134656021696026,4.4136814477811335,4.860968374445234,6.035758972744921,2.431055236763864,6.603990880467027,11.179292286715482,4.525390509050534,4.484063377821208,2.366946489059606,3.378558062349798,7.299979966085674,6.712702700313562,4.205819877347241,1.9384407881195465,3.9083874930779277,5.257068380564782,4.465644866880518,8.844574263886807,3.978636462586495,9.976336467031357,5.16780237270936,4.615898786793386,4.642792315930902,21.15658876389668,10.768220756658573,17.574546303559973,6.20645736161162,5.163636696260553,4.1740269810334265,1.0753700574637164,40.51023046344936,18.913618881192857,3.59387234406404,2.3760612728931343,5.460074578065355,3.0787309057858394,8.588506498479605,2.9122880018298196,2.161779695319871,4.283306438458794,5.084667184126896,3.9087058880117564,2.269162898729298,6.189012556891375,6.776908951294907,6.782093746492214,4.78647353359609,4.417751591921572,2.2606530670428677,7.315993016554983,8.220458751015617,15.994509025158058,11.38464735375089,3.9126209801348657,9.645564606516938,4.609016203370357,3.5860328783775315,3.115149761124148,25.528918794319313,7.615411417758841,16.35454372745867,5.597678117520665,4.0460425141864516,16.045107693679405,13.369812308784912,2.7423309237338964,4.366068163300591,4.160700859665962,9.616266877296162,2.860154985051192,10.636933383625792,4.9304182134880685,3.8265949709323244,4.335591512655046,17.154567110182875,8.210868358358205,2.7345155036371036,11.179081018818952,2.972174218961634,17.55631192171215,3.8201796913953565,4.702577993690251,10.001356208397107,4.589612770371267,7.382705168085015,28.216588380294848,5.858214484587593,15.804521811468321,4.227326644999957,5.8810956926837665,9.704977184909525,4.89278178193763,8.285507866158275,11.658245891300803,10.323447474036803,2.4520351763312114,4.693380623529572,8.65586115026901,4.530115189514807,3.5900816408873926,4.585601764135153,7.839148155653673,5.5753073881549415,5.723780654554579,22.978208794237155,12.140146684020554,3.527647956179322,4.735284410891395,9.250151362285083,3.6476872024490863,2.30551541306793,12.739850394761728,20.227996519305567,18.493234610396556,7.285210517089606,5.685279657521667,2.695940900443694,7.14716793824004,5.061344508738318,8.148826118658638,7.201680716267137,4.311565533025079,6.0805728229816065,4.382146942652693,8.34638677324056,2.609672345303173,4.835232416697456,2.2183524196844484,5.18229375061195,5.378320370516671,11.656531960197348,13.466334487933814,4.73295289225633,3.540240225841242,5.533326798055905,7.011596139836755,12.71848316732584,2.155423466206943,5.186626157208311,6.409802061664203,4.7468464007940545,4.338519389193204,4.218056884265741,8.834151120053823,9.79104760301075,10.784364534877092,1.9074990385213888,3.3731463828986077,7.536821654135436,2.5949178816895206,8.19763556787668,5.175507242031995,7.409248194295763,5.881848156133306,3.8744727763627678,6.0442918177067755,5.928008332851032,6.778250456724176,25.20145701800123,3.8943448524434783,4.9959761586094675,5.564086125849138,10.507842775563073,6.3303701920248665,13.409042439057211,3.8061334716459663,5.1505909014193305,4.4169404382657635,19.582886538073552,5.406143645227305,12.578679697402972,2.858971387481257,6.276117550162434,5.649141059012591,6.947387732771044,4.760843929421027,6.023078911719499,9.452598863402136,7.9478956548735775,4.486549567630652,10.918767976138428,3.168105573359064,8.813897517621902,6.777749857924134,2.0164149987201663,3.9295845596576333,3.0648853817209303,3.345393040162322,9.139401523353433,2.01728476703122,2.6990552703215576,1.6868518859151174,4.62922993295632]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}