{"self":"http://probly.dev/api/sim/DwYjadLaZdFqQSh9TNZ9K8/","id":"DwYjadLaZdFqQSh9TNZ9K8","created_at":"2026-01-11T09:47:55.642726Z","status":{"status":"SUCCESS","status_datetime":"2026-05-02T04:36:38.942676Z","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.3790042872495781,0.5759910133962722,0.5030042563211946,0.4082507616061963,0.57386969264645,0.40678662813281224,0.5281259476980795,0.46196277280681797,0.48222365710548326,0.50867896369425,0.6158116094686805,0.26478137849918154,0.5136538688318847,0.43945780141093665,0.4083154899047756,0.5825016511214252,0.4319055453344378,0.5167389045379948,0.4532430892560753,0.5771377597377386,0.40689312554208135,0.4002185826301398,0.3286696350280628,0.3470299306833757,0.4318897706261438,0.35421249026981,0.4352249137344749,0.5091803219812954,0.5746404835515808,0.4931569519870462,0.4576789419485665,0.4601636399940682,0.4547474577710279,0.39336037254110945,0.4808573502983542,0.5148494964139736,0.3310833277500096,0.5109643512152717,0.35457956351192066,0.5676640048400333,0.5460142285259111,0.47237568978622535,0.4861407522124425,0.5377322730901388,0.5447582800318665,0.5362183132286772,0.45804730330966714,0.42736294557308224,0.6127911690458052,0.4283241291710038,0.4689249776918053,0.3633298875398616,0.49333399430936553,0.4346142905536075,0.33871887792767574,0.33814737819662166,0.4850909126389447,0.5290933110970195,0.3406333930540044,0.4314927776396658,0.43235608856672425,0.34726061027540606,0.4618925253702683,0.5728432206459148,0.5279700928365829,0.5634989352085051,0.44074735594081876,0.5309897347325809,0.5354637226021854,0.5286941770698154,0.4458454565936946,0.377349461924478,0.5119895286792772,0.5545659825819209,0.3880967327912187,0.4248808016350736,0.4230722684316974,0.5113401328859387,0.44751002838430726,0.4015273055609212,0.5530659607432652,0.5739040319648218,0.46499775323661985,0.3641567031069992,0.4200096471625895,0.5028316543007526,0.38738811952376995,0.5160805848483003,0.46940416609566477,0.30601777408815223,0.4028439675077232,0.4790397128258827,0.445459036898297,0.3657495907017646,0.41962345495621034,0.594932946116865,0.47872980918145597,0.4703798591426553,0.5385432232097052,0.4654668244564829,0.6510002542913503,0.5118005667366042,0.36416429509345943,0.4734270637386018,0.5874124192259275,0.45129409366478584,0.36214381949263186,0.4810252098900496,0.40297371369779056,0.528528998552928,0.45634671376584046,0.4855499583208414,0.33826919686344686,0.5049549175482025,0.33837388352485726,0.5045931812765891,0.44108900005882345,0.3843295519077734,0.4346648001109602,0.5201473755404169,0.31758154470932465,0.43275603196570733,0.40249388129450103,0.5028661218146269,0.46709759249580673,0.4979881447823384,0.3819779038497204,0.4858511068631224,0.5356683134314116,0.3324588938940079,0.2712416502874893,0.5635392818175676,0.3474328650459032,0.46475382792827263,0.5067451872106525,0.42569581986353483,0.6190979077764919,0.5168348173000551,0.4545974217790366,0.40353751570617713,0.45318050677313015,0.3238836937992626,0.3640078175815922,0.5732970624180952,0.4739885543749725,0.33164761156597966,0.6157003205427746,0.5288238984407988,0.4956805108729179,0.5420014248850639,0.49585302544035537,0.5276699463196806,0.5077048162372525,0.6489399241812859,0.5028313885867474,0.42005097888794773,0.4803550331501359,0.4121014760911385,0.3614629971386887,0.48514869128801275,0.4474749505699242,0.43086346576634565,0.37871749340742206,0.4797709644603969,0.5813394829153217,0.4035449614850262,0.47987755379098096,0.41589906649335306,0.44894382449034603,0.46479381488405697,0.395080735516662,0.43079124918514505,0.5094730256619708,0.3920033706252568,0.4074082184322788,0.624045591940058,0.46588369396582097,0.3462526216691649,0.40119278825172067,0.607444686786795,0.5315569736542824,0.5490527243807841,0.5521961627855967,0.4910181274022638,0.3813010166681691,0.4910281331413062,0.5887798942346355,0.5082120788211545,0.41514238702598155,0.4394751818167664,0.46668173392244267,0.523623380294285,0.5243467498328453,0.46637114615986036,0.4321350104520925,0.38177537668717754,0.461247543093387,0.3887018044263399,0.31555098244097823,0.46963889440601614,0.41425509489750345,0.5971457157631768,0.5919289993814785,0.4620982767351579,0.5666424100404931,0.5183624534544367,0.4922119596488836,0.33489789265366576,0.5626527278414006,0.44160951769601386,0.40016384009813405,0.4699471647328183,0.5115567090772285,0.5770817423428426,0.5103280160858276,0.49722162485738836,0.6921906941696941,0.5179764137293937,0.42047587371577216,0.4194068182744266,0.426469682961584,0.4766942826675442,0.4471662873359084,0.5573732207718087,0.42448655746018954,0.44695406994301473,0.5989195069449109,0.44480061279811567,0.44169516520770197,0.5727461296025965,0.5819895602287981,0.49238129315320645,0.39417842066054687,0.5049679191778357,0.5228438393229019,0.4141562236836795,0.44348265287613,0.42210679848489113,0.5170242364894306,0.5442090844968523,0.4404040595028673,0.4479357273501092,0.46070711432209427,0.40417500390672473,0.4625410121353024,0.4642432594997831,0.5634391412627959,0.4292020619153845,0.37803507538185044,0.3756201660773258,0.4820118334166096,0.469634420516771,0.5395095326281246,0.4490797178480565,0.550815578694107,0.5253349598520253,0.522073181576243,0.4863032386931459,0.46682115741246394,0.5643191225810518,0.6025587075957518,0.4114324651210544,0.49588081121755206,0.4937108201073468,0.43031267695844216,0.5060097365258297,0.46747737807879025,0.5054423909114211,0.47685348564578933,0.6224811328248515,0.3720342111505489,0.4165982197459317,0.37159347086563166,0.38531071366329944,0.47790823153083856,0.4694768575321839,0.5560309010468683,0.4712813486172008,0.34729033559908595,0.5261131694291323,0.4127440551370808,0.48411179413817157,0.5842513263827448,0.5561447689213923,0.3951410100093555,0.38921405172654183,0.5034060503274872,0.5502938580622091,0.5078677132383016,0.5951403254976035,0.48018625320220115,0.4469875338016493,0.4606684202174877,0.38664471319118937,0.4199552716639215,0.36454550759477156,0.39610601880963453,0.35905221073116467,0.43652860075789607,0.436446716796765,0.3934760150991873,0.5780161856651012,0.4385477886205414,0.3195332536654314,0.4055960143657556,0.49793474298191115,0.4310990313333033,0.43566660685454434,0.5346715184632796,0.49337131429797226,0.3990791800817757,0.42972647830456945,0.37380726076559034,0.3836849881550867,0.36799239484934215,0.4273802447908637,0.4751994273140035,0.5178561319761258,0.3682869437288493,0.5318123643132376,0.5210502707337783,0.47641460486440695,0.352021630730219,0.37709683644064784,0.5080321946733298,0.4484829312071269,0.4847642697024748,0.5056659251503027,0.4974352638259804,0.5008378394494434,0.5410340827700908,0.3167092270949293,0.3932300943946783,0.5578742111208512,0.2972327239925229,0.38844817026492906,0.3457932900420202,0.6366823192704023,0.3522714464107738,0.4671336962133067,0.4308086456512871,0.4808136854029889,0.3827102248548087,0.3122888353000834,0.5047400180777806,0.619382346027373,0.46541641180209803,0.38942609710151094,0.5576705041800618,0.48072422641141954,0.42563519654691584,0.34797541243122887,0.4408831332747727,0.5568372980208993,0.4414278623528791,0.4192936033107092,0.5851403602742039,0.44877112361277277,0.394358259208139,0.334370057439108,0.36681305819729554,0.5081144281476195,0.3983533881544214,0.4920061642116828,0.5150136640808989,0.4355990346682846,0.5575988150756157,0.552442542587296,0.4416039649859643,0.4467404332640997,0.4944939876984547,0.4392226605648016,0.43743876202744897,0.46809031079974506,0.4117203064502783,0.5143651732229315,0.49900968826752756,0.3484674635598701,0.37626610295659657,0.41976898011443126,0.44709113631286784,0.36378916333702277,0.5639476753016218,0.41871758172007695,0.5832443688463452,0.5016559426604138,0.40960020734415925,0.6059105295912302,0.4016769516015867,0.5217250106630685,0.4217757886863907,0.4439976102462075,0.5270172266550505,0.46210872127039343,0.5557310785644136,0.48510341573622684,0.4277375654763292,0.5062275787573736,0.5928980295323968,0.45347313713726467,0.5152913842072936,0.5347652893604206,0.3423912670541609,0.4067224025060489,0.3572566552214548,0.6301789756217053,0.3480477878724934,0.5217875079705048,0.3594718692605298,0.5345983504717869,0.44009228729328165,0.5005036175366153,0.3886996029901686,0.32834100369226915,0.4331532284456133,0.43253134508198177,0.5314142466967507,0.3745422628489462,0.4483550723852479,0.319550966046752,0.46984610124165055,0.4232718635356634,0.36812827357052713,0.39919920652200686,0.47401022332734755,0.5279031475235798,0.4631978377931419,0.4586270441527893,0.33175061846715875,0.4140206513308726,0.2591969749679409,0.43970839409465307,0.6028099556643414,0.5217696363555779,0.4002295389134868,0.5429591429228431,0.38690101833062,0.4271750200346315,0.548926118281144,0.3075884090313869,0.3467485341714875,0.37058692546938143,0.5671039475297507,0.44256370266699,0.5004486953651168,0.48416977031225233,0.3843381322356632,0.4391803217307888,0.5865342408877293,0.31956139764144437,0.471773508455662,0.3549880973945025,0.49548281499222196,0.6290131965905972,0.43931064241155404,0.3895598489936176,0.5020341640690237,0.4088464279574784,0.35876472267161474,0.5771336127545591,0.45197694166577773,0.5185480043482582,0.5058907635344186,0.4744017698084954,0.5547868488814987,0.47381066937995325,0.44171204714262935,0.4873472504901479,0.4608419069468585,0.4925530198170885,0.5231715097157298,0.4394612702102367,0.4128714567987583,0.45151258029969626,0.4237202837746039,0.37971625458597635,0.4306389724032777,0.499518943827296,0.4985405195083109,0.415114787433247,0.3480400762717055,0.34871749776330924,0.36139892103216886,0.38548750708496293,0.6316352382949092,0.3430164715749362,0.40735989126283084,0.45962037248978405,0.45952897819116134,0.543192959971745,0.41990778007054924,0.48868114802876894,0.5973750771090144,0.39764158309770486,0.45366926768108945,0.4908820644100692,0.5435144429821074,0.40984290018218966,0.49166556012160195,0.3627124911113866,0.42754048788398696,0.46262990847461155,0.5248072911744277,0.41995871093433,0.5388219651278748,0.516365184342031,0.32280740584696127,0.42115516702772654,0.44022797450136386,0.4433382456357515,0.45699139931518007,0.501279220509659,0.46800546407695426,0.3690629486241209,0.47586218172329187,0.411082815162217,0.526414564540438,0.48720277162726217,0.4833930584286737,0.41472096611826603,0.33442796925927826,0.4596138923532513,0.30717033004698396,0.5219373684717731,0.547776277332914,0.565566999557772,0.32390932893407715,0.4425826016138952,0.4260801786951047,0.3824525186772292,0.566508250285011,0.490597592429411,0.5152960454086679,0.5033527611986959,0.3803900960285501,0.3060166044761261,0.4812961441682923,0.40548271194974805,0.3902251435323002,0.3126164971864739,0.5030172730752412,0.5321887926889367,0.4160702903316494,0.27992261082667763,0.5006733437078412,0.5024698598921358,0.4977829678227019,0.41102350178421154,0.3826516162562065,0.4386158083243272,0.5001980884497709,0.2762568586881117,0.49469512910711855,0.47295360296422656,0.4796179904350992,0.4383010455129253,0.5206418912188477,0.4960065102971834,0.35799876446890283,0.5337571395284448,0.40345149528932195,0.47472606803326534,0.5017517071641537,0.42904546935998017,0.35899159930039776,0.359918945041963,0.6052927084134977,0.47000814731130847,0.455398274295321,0.5751521202800801,0.3743581602796612,0.38650689261153187,0.4560715227954715,0.4673749719403068,0.47200788781686187,0.38312068461979015,0.44155329319306624,0.4698641148160672,0.49924108312051796,0.5111274333937711,0.3897127767532833,0.43139416345641696,0.5490839540568172,0.4907980781736159,0.4034653151681408,0.5291224317700738,0.5675840853174825,0.42794967657594646,0.4900882332618572,0.45550855544375707,0.4373000154811668,0.35528721586732553,0.4971676825668712,0.3461025363621537,0.4397074488727679,0.48561755421795544,0.5343634450409942,0.4532207854295865,0.4028646859333011,0.4697181671240002,0.4112191137781507,0.4054739867118666,0.4711349906829985,0.33018401742246056,0.5070509961276621,0.4673532226046311,0.44135809852095387,0.3211762787488555,0.40371168497372123,0.5050897155362665,0.43764296540713105,0.4014098166514986,0.5139440927392328,0.502183248668109,0.38810252620632674,0.4606130182556098,0.5580182633686658,0.42948388953508676,0.4280843021490604,0.5120532685743637,0.5240710918532765,0.4488223659348422,0.39083567803682157,0.5025303291342517,0.5129585519487063,0.4304673829288126,0.3189723715181901,0.46793728541880236,0.48308361197261007,0.2988918972510757,0.413146530258926,0.40898792095027026,0.4435709440478795,0.5564747889475682,0.4839974634123124,0.44030138906092453,0.4605522706484467,0.5612888010147087,0.3750650092514973,0.28304723134889187,0.5306170054022612,0.5610035614359052,0.5042132341003429,0.5557547517032166,0.45604612829048535,0.4449129338930821,0.5033871639544321,0.42310263264484016,0.4925471371029704,0.48126956691270856,0.4659779586808572,0.47389831101714414,0.5534132545803767,0.4794785290744155,0.5994544785283309,0.5950182914524245,0.544679309430534,0.4635403547724134,0.5479862779814122,0.46765446503068064,0.5470504743852262,0.39802943777879585,0.4401763057730548,0.5819915450910312,0.4246094469194572,0.5421207232190538,0.365857373336497,0.3780246691229155,0.5908822702838069,0.3625273643389327,0.5195837632661666,0.442341134206787,0.4802658782636388,0.5556748748824465,0.4619982531090403,0.47339428396468913,0.542692773523911,0.4362511527132378,0.5207125285277853,0.3621043905335382,0.33407509573184546,0.6270457582900616,0.3139630832344222,0.42452780831074516,0.36255869171966887,0.3872976413583769,0.5667097565841538,0.4543137823812944,0.374504103579097,0.44663748255309543,0.4086953551075478,0.45702175956400853,0.664259482807242,0.45589344773662677,0.48540985963969574,0.5536772289664227,0.5711469971938502,0.4034021573247096,0.4659428271716606,0.4041935123092527,0.6100913449961719,0.49245791827642,0.48701286868200994,0.4613330236984016,0.49222598479274915,0.40928380008433085,0.48873751137194665,0.42281238261942294,0.4870188845744087,0.4417785321562684,0.5038478994432448,0.6089831952099275,0.4023515800010702,0.33968783140722447,0.46116541365488245,0.5242332668480899,0.4429767737882839,0.48282008484923,0.477949226247934,0.45452810944964955,0.47263741519738356,0.4764031047530506,0.4766571705699914,0.45810676792261296,0.43203696549777726,0.43212902203389153,0.4034195142424297,0.30382040473912836,0.5021492485439653,0.43754445616761245,0.5400827312202557,0.5365954854305477,0.44298293286039303,0.6253939759231731,0.4924440694073758,0.3093730775256619,0.40899429995303405,0.589142497295156,0.4283146074791304,0.41070352362991736,0.4210271970740268,0.3509277195938254,0.4998832738659824,0.4631957357573538,0.47389512285753044,0.60330064020739,0.5459300574365668,0.5475143654375259,0.46147374250631046,0.3976789180413793,0.5474324698921508,0.5038087136300831,0.4551026199530059,0.4859263891709772,0.4786587009700372,0.449286211740268,0.5560466812775319,0.5287254257965767,0.4488968190594679,0.3753549469739465,0.5878138850638593,0.4730249878662463,0.46618130256788765,0.5530732447621068,0.41450842969080615,0.43120807800930483,0.4337141685049591,0.4750938820690312,0.554396833679519,0.5164688355352085,0.47812405201366376,0.5230957408231712,0.42331135837144046,0.6131959818355448,0.4749202054570722,0.37700439051355844,0.39712366232870483,0.36926164373848785,0.4815576274489649,0.5528442405242653,0.3969190690853178,0.40014007302077437,0.3897647721570781,0.3435267095471183,0.3578963843453147,0.35150463938287485,0.41709397565576534,0.3920539260832092,0.4074936656407006,0.5222783292213662,0.4499846365863409,0.568311368334814,0.3850783379909236,0.34931091080754134,0.4169297509813455,0.35050234201361663,0.4444060560450413,0.3687128730213103,0.47516766630309804,0.4606381892319122,0.639041418253391,0.5216921875272313,0.3959451880019292,0.46501554670525597,0.5102709965211087,0.4640034458626597,0.379504720019611,0.466779684230676,0.4854575351644039,0.5312219774063076,0.562220890706195,0.4841062281189326,0.47327605579237464,0.5096228086866926,0.4755392350802613,0.542040984737412,0.5549302133663211,0.5978428392567674,0.5248616530366134,0.5477958837212408,0.39110731069663984,0.33302746415705986,0.5174140638437549,0.49007439193706964,0.48756956885919905,0.4129114563502449,0.4162583938563428,0.37150025456910074,0.3494943359877301,0.46899294560400134,0.4600557963726757,0.36275215046318454,0.48130304071102537,0.34625008178019495,0.45925343073995906,0.40272369872274794,0.4520640610666838,0.32530372464742296,0.5620308719926449,0.4914461977214215,0.42039877195247555,0.5755025000019385,0.5821906785750818,0.5387960208004365,0.46463724886957275,0.516953907005467,0.3935455743288587,0.385688615666338,0.4120661151185971,0.4255231615757901,0.4653294432253313,0.37226517995386826,0.3281054556920318,0.36508294087051163,0.3890472153357029,0.49406246287336886,0.4051460750590905,0.5753690263748222,0.30535465222761615,0.5085502712457932,0.5096611606466251,0.3990260293916674,0.40949119883118906,0.35057766509259186,0.4257068615105217,0.498795456818268,0.4543974096254994,0.388075438987191,0.39119574867278095,0.5211192202796135,0.4316341096476678,0.4926612615219049,0.294553074641491,0.4008817935215876,0.5431521528412795,0.4434009496330488,0.46810948546492903,0.5342147486999733,0.43509088188497275,0.3724115218782801,0.4668711981280241,0.3566138798329937,0.509335646709934,0.47699860499948254,0.4069295365932057,0.5224691904420529,0.391719243932084,0.5099681350259992,0.4519296537505547,0.4841968846937155,0.5968615744778346,0.7306837401199985,0.5164629329216913,0.5258579149460928,0.5483450610591063,0.3802375709879899,0.5144392693219406,0.40497898008574446,0.4245292895689744,0.437876658563611,0.40446867745900306,0.5072360401389772,0.5199169074480332,0.4544668534207335,0.558832624128417,0.29861960294059514,0.43231011380913986,0.5054554840939371,0.5654778510592923,0.4578579641968932,0.44996519528382134,0.5137355540913571,0.5894384754154225,0.5100603486396683,0.3967479414054667,0.5021326425364474,0.3636888406112057,0.4344680275392163,0.4213706597992552,0.47348323393141983,0.34485798174524684,0.46345750469901864,0.5741899879522148,0.3789747428571547,0.437688386436612,0.5066694099892888,0.5473913463612992,0.5119446432325339,0.3543422557479856,0.455197818168992,0.36279641825596176,0.4505713308778823,0.4536587348595299,0.3935642868359857,0.49793964966806414,0.4421968508802871,0.39872601262594864,0.455620559750517,0.4496574565361936,0.34093573861889637,0.42431575064031596,0.4280134222096464,0.5002607562450961,0.3578638460180764,0.3915876463788863,0.5098486258613727,0.3120520835197597,0.5070072147248766,0.5313269071125151,0.5329233802881872,0.45467922653703113,0.4172759109392175,0.41889792122696623,0.3205556068007599,0.31641501214481677,0.5508085249382666,0.432581488062659,0.496387439941373,0.28976708688488234,0.45015351271912424,0.4574018682978462,0.4597550571304676,0.4634499682246998,0.3420609496582464,0.4958350958757586,0.5372148467069956,0.382169180109166,0.4671745167036883,0.4095409941158111,0.5400759377092533,0.3528092841203361,0.5167677656693419,0.5423556564442885,0.5126618808202744,0.40724418326479833,0.4419235888245318,0.4335419613953699,0.3797392697413849,0.521294922251626,0.42798854712538226,0.6146119174379965,0.45664702394548073,0.5128548478174109,0.4922550199459064,0.6133842384331217,0.4307881276202647,0.48940311405291265,0.45834382750587493,0.5273734035302615,0.4139920539965639,0.3822248143913138,0.3971965743732817,0.3840201868090836,0.48266094331540504,0.5186736643971619,0.4398925900207492,0.35389392550055476,0.5134587198602509,0.5949820527904098,0.454313355037204,0.4732839668807974,0.3656903387007197,0.6977702865808008,0.29176080159499,0.6004812685678305,0.5090052400657346,0.5021998058591203,0.5406602778885764,0.5663871160633678,0.47107557728940874,0.5493125250558706,0.6034726857073791,0.3038794324523783,0.33216299164872465,0.4927239233438147,0.4871930846239217,0.582768502028461,0.4513453361420434,0.5812221936297965,0.45444016038986046,0.4565795978009807,0.49578869971049566,0.5388459342199435,0.32036734292770275,0.34737185018767913,0.4854019004470515,0.36393029898855533,0.3781664154195056,0.5109242236424165,0.44543433464300625,0.506479111555849,0.35617981395417175,0.370871794246767,0.5141166342651812,0.5093793297909525,0.3920206662065324,0.4208172980707203,0.5349003717395309,0.4680044197978608,0.4627578258936592,0.3712032488906205,0.4963066798697071,0.5509046868662888,0.3675923521705821,0.4299131661804961,0.45954954981369994,0.5651209642479839,0.33667519644325145,0.5142633837125347,0.4631148606456739,0.47587455104126064,0.3980803802242493,0.4803762335000226,0.5282940592655229,0.36773719470163246,0.49612297795826066,0.36690784739689686,0.48894334845008247,0.483110049556144,0.5027568809603135,0.3553570450929014,0.5449134369519509,0.42484987771405763,0.4939640641197865,0.448737176617902,0.46578932844523846,0.355502418623238,0.5201589533838584,0.47331385018203237,0.3877986837568088,0.4575442313930128,0.307634724875348,0.477805379257516,0.44162903817870985,0.39948411779493964,0.5117086218784591,0.3754417436667132,0.4602630767797584,0.5558181176424855,0.4531378523783432,0.40473532723814387,0.5013177956499157,0.42923143020653826,0.33968657245526596,0.3607588991212223,0.46305866448958855,0.48543958072733584,0.3321269431744039,0.4500832248007012,0.36989502131695057,0.2834125063951971,0.4458524682161305,0.5123829290013584,0.5923927630031803,0.44875489303045324,0.4675353898037634,0.39366367643609934,0.5067617802525431,0.38858291724982114,0.5424363113900819,0.5215063067801142,0.44375518830556154,0.5826201152284747,0.5175146197059246,0.5461090762795924,0.36344769843468705,0.48142977687056654,0.396345828316872,0.39202696040880974,0.35432975487952223,0.3376599470265396,0.5661667374471006,0.5303942075514917,0.2747837436464756,0.4711612189303786,0.4745319526641723,0.313351081570703,0.3392561567556617,0.4210287070774515,0.516917818366514,0.4659210656600925,0.3238792134870356,0.5158379041086686,0.3997964250704222,0.514824411803216,0.510253166423783,0.5413767841833801,0.33327405633823776,0.5384709989698102,0.5461860089585785,0.5254572035115502,0.49161838366378374,0.5117773555690649,0.4519800134074241,0.42987702946501377,0.4956232950371646,0.5453470097834694,0.34624009476418965,0.4071043382060212,0.5655327991453712,0.40214536721908034,0.4576134735946293,0.44675718449884916,0.41985552342917837,0.465620003574338,0.4028780087237155,0.45646887127334584,0.42769648402694505,0.4769546600854623,0.28970289458158316,0.45262537206052317,0.5104400632134571,0.5554619272110476,0.4998110468501075,0.5323742772247307,0.4127180573170008,0.47455610718140673,0.5370793304235774,0.5296231538388924,0.37195227216477056,0.43095918099090486,0.4800692531285346,0.5656211760138494,0.4301699963573163,0.4487092959353715,0.426772334133616,0.37786051069268983,0.46002444640231893,0.4865381345362055,0.35793757511605123,0.4998097259728404,0.44832904124255524,0.4521380476844968,0.49247766458704606,0.3563961439968889,0.4301345065785357,0.4667965583119449,0.5313068713013631,0.5839025303956104,0.44740910857235694,0.5890527043378192,0.478592304948269,0.4363534610613579,0.6209225530050285,0.4060339545882151,0.4081216696181096,0.5394949284437077,0.589223037744046,0.4996528524249997,0.3896128373771941,0.40948243324326267,0.5409900570442671,0.4490683996226351,0.45364009702054736,0.5394740113683811,0.4562593009167411,0.3769560340527869,0.6204772112765582,0.5626160362047056,0.36460205778338045,0.5217716890745131,0.4958762896384845,0.3245060004559559,0.5226561375654164,0.4910444178524477,0.39805319786096094,0.4899798620827634,0.3474998318697345,0.49032469198681844,0.4672171899782156,0.4221488752121238,0.43668857126396265,0.47584838663054346,0.4099070386304538,0.5515864925274415,0.4321779433871744,0.4535205966196759,0.4424699373009497,0.4172193886663024,0.4464611947529886,0.4970091700148704,0.496447709955833,0.3319757921981887,0.3689118592711056,0.459025042946012,0.43241909989599436,0.47036538194051575,0.3786657750903831,0.5424279739491291,0.37557792193729106,0.4619017584695213,0.4259977744220834,0.5392779948358087,0.4696052247943383,0.5848545484365099,0.507264563016272,0.3703681354322339,0.43234952176160957,0.5575875054511089,0.33335474660091013,0.29287530439109544,0.39723985246816496,0.4951750303239787,0.4252274356371015,0.3776430761611703,0.5599469145055037,0.43879385568334206,0.5574561554322529,0.47409695041391187,0.4322814325241606,0.5369094274005471,0.3740241583386156,0.4208783681668291,0.5228230386160281,0.41393559051681755,0.33832814882076717,0.4360133828547948,0.5872515089082507,0.547667473159443,0.39559464760501234,0.41870572806407136,0.47482241509125556,0.47341451579416793,0.5224610122114468,0.5834356936327645,0.4572780486780322,0.4040719803525993,0.40790393226832566,0.498437989866533,0.4451979670547629,0.3325981858416335,0.5107863763605534,0.5039169800789225,0.41554485284590015,0.5595676226780404,0.5841869873852605,0.3815101051909386,0.5421133165907623,0.4225506668384598,0.37065799790649506,0.39754097057758503,0.5910621343750212,0.5265199759740721,0.38103035704533933,0.6219935271859511,0.5273786254928312,0.49346475473935036,0.4763262522279095,0.4430764621288639,0.5040872914348082,0.4721679865147532,0.3881919945046992,0.537005467460473,0.4264178253205771,0.39303412055117204,0.3033226861775024,0.581814854339477,0.40144390625770027,0.3978701759441291,0.5252708625637645,0.3257106276883134,0.5102941059486639,0.45234443730326757,0.47305550094184695,0.5675323805227064,0.5020209568578088,0.4242150029182243,0.4290028605384856,0.4653121333127338,0.5376459958944577,0.48006626146273296,0.5682910950224315,0.4843403288827054,0.3033377653469798,0.5431888126784362,0.5381908833172027,0.5169739453587199,0.3027022162167761,0.38355571363974766,0.40904646187282817,0.5083480535501115,0.4551463348552464,0.46584796639060455,0.3606701849137079,0.5005958941769143,0.4418610553982983,0.4279529797556166,0.5212952288644086,0.4208954472953541,0.6098473231671817,0.5060616771783407,0.49750077111940744,0.6296544481152827,0.39565129745893934,0.40049180378104465,0.5921738052820538,0.46394400866541036,0.4946236985470369,0.4736460799967876,0.3430438776905401,0.37691084685385867,0.5020089236491736,0.44823708889373703,0.5789017520083025,0.3889647502206178,0.3965835111592955,0.5121713784914231,0.4462140759373107,0.382660793214772,0.41685130047176183,0.4880236866646991,0.4342544252628318,0.5158219768417638,0.45468146223769484,0.45750263700435306,0.4110785936239765,0.4524002930557152,0.44673470587732905,0.39057489357042624,0.5830004474846054,0.39833118285637825,0.3563623463195981,0.4647343059486265,0.48585455837842845,0.5285798465683503,0.39715669099347795,0.5325547213369352,0.3522233381126479,0.4898685014969286,0.4758132888670174,0.4393481002489651,0.4344825687080862,0.521685469765343,0.5136384177794031,0.4997178082501683,0.4341279132025875,0.4812219996072171,0.3794890594704363,0.5169869167755282,0.5840334448743544,0.5341732842307562,0.27913179783885667,0.47946159815633627,0.4602478298005235,0.4687778947633013,0.4946254209346554,0.43449307038804963,0.5087636774232546,0.42756304372019016,0.42185250241375427,0.5388611987238404,0.45062220554621185,0.4330487359076464,0.5219682145179041,0.3992221175640919,0.45942061592209804,0.3909699644756245,0.3804636811769345,0.45328936446652895,0.5667089895687434,0.43394164868470525,0.33010811424889186,0.463592123579978,0.5463239140119096,0.5366229833946237,0.4560050425875983,0.4482261769827145,0.34144370224603104,0.31191169408073444,0.32384144603247234,0.3844769441321973,0.4565363726282677,0.42776306103735384,0.5488404600126232,0.3412194461396955,0.49843613895366534,0.3292691719656764,0.3597197820843567,0.5357907634797336,0.49011628125096146,0.47659983330091676,0.37800071578775596,0.48281857425708785,0.3858572411886033,0.3850194400409403,0.49029266593909354,0.4569631752248798,0.4305468208851887,0.5480615671521956,0.5793418964020843,0.48814442508418504,0.5746474900222818,0.44509612806060217,0.4731383284526646,0.4908214388741898,0.4036503623204656,0.3994909118826576,0.4893660911084424,0.3463019952087865,0.5093627533552769,0.4569398097222446,0.4893971185369582,0.471136976476028,0.49067266892011924,0.4756237984304303,0.5178433254706533,0.6523237827770191,0.5259002727572483,0.5203647792262943,0.3741162221074958,0.34163506347910955,0.5006656548051341,0.3709844815951768,0.4234067916060182,0.4161001697360849,0.4163894548368203,0.5550981559793321,0.4153058245181956,0.4215138303515109,0.5962949595040806,0.49448738115380636,0.40931273520303446,0.4459246347455368,0.5065595653486978,0.3298637687395358,0.46333845745157154,0.5824962358629104,0.5319569671644272,0.3376254190500846,0.43471141098725985,0.6837792939001535,0.3629340274353122,0.472041820925577,0.5671228863515947,0.46889760682575043,0.5074866320651082,0.38897322085277786,0.32075570403517717,0.4389452772340144,0.3841114145400743,0.3619626652394624,0.4381586461501817,0.3974638117099806,0.4246524774336126,0.38965983066855947,0.4249225932800031,0.4768088655245637,0.5040954996418024,0.5391142803236101,0.5264250718243155,0.379382227988062,0.40699162044889364,0.4973695283959288,0.4419065219127077,0.39566592357738173,0.4182092440848757,0.3386980113290646,0.47501655821183814,0.4928085375816446,0.3639738568113655,0.48740052404738776,0.4516425660720527,0.4170996052051345,0.40629156709099007,0.3573295027356005,0.47116873183898533,0.6716321296012193,0.36372822089383744,0.45119734536814154,0.5319315427538959,0.534404056758448,0.3391130150322665,0.35488160669779717,0.6721506542052856,0.560784588182468,0.5763315746149745,0.5285444225039164,0.3324946698732634,0.5072009570151776,0.5414201942849688,0.4909877439917332,0.5232211442111038,0.4720378583516178,0.6256338534435038,0.5236133172611409,0.4930724653518924,0.40712414287908716,0.49784964190194214,0.5485065868905766,0.4794667923952738,0.5150020812988086,0.48906898056418613,0.41478141354129516,0.3257636447520398,0.42004782602869883,0.3827066903387419,0.5853662384111183,0.5048217487301393,0.5319238266174116,0.604855316293243,0.5440860094714774,0.4960773556600963,0.6264563407529762,0.5498110282232517,0.4036752309525727,0.3665162589159344,0.45752936298787394,0.4252041548336096,0.3971234757796908,0.45363875546625515,0.5278581976796699,0.3823078372747152,0.3847351751386566,0.47437855388880673,0.4606926690485013,0.41389588798905186,0.48399972669225255,0.48677105361286843,0.5685748000255809,0.6496214887709748,0.42413591864094824,0.5952179711227832,0.42481126218530463,0.4762428438483226,0.44788617946506026,0.37195403668399935,0.4865299253341234,0.5034505995478501,0.4587556989306782,0.6371864533659349,0.4364235822632812,0.3878578190620229,0.4781035872127453,0.49089810583677174,0.48575125184546625,0.44461312906684347,0.5379983690546297,0.26381035677898035,0.6599396841902212,0.46666539306526583,0.38416518046157166,0.34857763720599916,0.4397075190079133,0.3791337363100852,0.5058236943399115,0.4907434405702746,0.510402514119422,0.4884837438352101,0.5182503115514536,0.4805312409250793,0.42334607646271727,0.5096095531261632,0.4643668709463588,0.3708445342596108,0.447280691472333,0.5803038823792425,0.4905212306978202,0.5001499285722893,0.533608381168039,0.41342270551955246,0.5353127133367394,0.46422671119378206,0.4169166860104828,0.5501027408257753,0.5938891424111455,0.5356094267544095,0.4782179638906987,0.47813370562289553,0.38286467399632174,0.28335824975736806,0.4104200396768431,0.40410557147820847,0.455304029769799,0.40160145200998476,0.4628466566358333,0.582416791965582,0.3628965075640197,0.514521936475266,0.570981387202155,0.4068467975889461,0.40376149315833704,0.36854556629516205,0.5383146388818467,0.45894132531498666,0.4756051696084456,0.3775676145508736,0.4678951026406202,0.48884412824844,0.38144746637731525,0.4043476279772424,0.5918211947616727,0.4366944462714731,0.504582948451664,0.36548955592260557,0.5309547225178001,0.5198122973214925,0.5695976432317182,0.5164277324716995,0.3270066237514313,0.5308128347636473,0.5086704704577717,0.5853968525987253,0.4586953711448007,0.3929991906108322,0.4455861403867745,0.5964411120970909,0.46769765498833055,0.6059612253704204,0.43390443651419225,0.4263790500560432,0.6698341475270325,0.3714467081916432,0.4153910266771153,0.5166839044517939,0.3521400292280034,0.3332058683455294,0.47528181611615145,0.43079471802863467,0.4022883012407712,0.6142719278255884,0.46850296786440504,0.44396917864569496,0.47482774427333635,0.43013568857770335,0.5105674371750248,0.48914760190931117,0.4584581878331032,0.36581328851539807,0.281111106911638,0.6891536687525011,0.5232327024968113,0.45019883808860384,0.38842144849373017,0.39369984984023193,0.35541034368617885,0.333538145201983,0.38270287831416705,0.38473657466844835,0.3041058768315998,0.47704855119062495,0.39669253567360735,0.4702452215363055,0.42357411103399434,0.4939637132517954,0.5549230384968684,0.5125728878874339,0.37898151190653995,0.4653876167137472,0.41952817488775057,0.4685896008335919,0.5393692504260712,0.4618083214049822,0.5753493995299639,0.41349658354439567,0.5910894652059845,0.36756479078929016,0.49024307734737654,0.364598742838694,0.4495932145641571,0.44595431446689643,0.47187510851685144,0.45879339824511556,0.47245614806228553,0.37564401304379647,0.5432141011713755,0.38642615646924966,0.36880003089629976,0.5525941984933798,0.43055242845773095,0.4467682571616701,0.47482901451262066,0.4390623622443065,0.40432830896300515,0.37488122411537034,0.4011546816804711,0.5314032753843795,0.32634480042581654,0.4668180764829384,0.5147273925061476,0.43089991301965763,0.3169138539868083,0.4206727163419766,0.5467695732025034,0.35206751883210335,0.5764323115658562,0.5171455878738739,0.31756982100502906,0.39753119729820224,0.35883012358643374,0.4239689736981325,0.4306558495288489,0.3952581915825261,0.4811988431966897,0.3260553324191147,0.5075266269112552,0.46264023091313766,0.2864477897923616,0.3553333974510419,0.5129972749141813,0.47957573539136716,0.39975477478667915,0.4679716455214884,0.5047708316513514,0.46165861686125814,0.36204988158206325,0.5041369994304211,0.592480420002398,0.49759640125896726,0.4790831299368781,0.489052121449151,0.43569550862536593,0.4054682850313148,0.480698484337636,0.5151412253512918,0.4767284872483186,0.5079734047341832,0.42939760462437887,0.403615327781921,0.4840372226715029,0.5244902807281364,0.5191858415376283,0.45596203492587994,0.40731618625389415,0.4431494991819947,0.40680465165398993,0.43691981588942325,0.4827568179933058,0.492271503316169,0.4164283202022049,0.3708355867397367,0.3556207629505551,0.30720794798853696,0.48937784678451823,0.5622387416573291,0.41762584491729327,0.4576033827062475,0.3705781281576099,0.25823870840982394,0.4704275656217285,0.5159048867828664,0.49243255153157617,0.4115632851197404,0.4307148933769605,0.5924207185348838,0.41745247555140524,0.42903821151092,0.5237117849118899,0.4164987602900127,0.6006762710780261,0.46900423404325736,0.6056498441168374,0.47313688837187906,0.4393406301358,0.5200248006011008,0.46628287691424203,0.5539739107746935,0.5588607712336717,0.5854812419791128,0.3336752072490882,0.4997021952461086,0.5310471130235106,0.6553844230591038,0.5238660235782708,0.5808575636950415,0.3852976723268721,0.36507829921650475,0.5725077069759671,0.4217091045540431,0.47149072697912825,0.4571377180029835,0.6011941108184536,0.4586403573633312,0.4945931023157605,0.592140831431631,0.36481239101578417,0.4355256390344357,0.22176988842658515,0.4119899108514811,0.543786122940033,0.3633469669787934,0.3724678290728614,0.39839473765719513,0.4479088526482207,0.3744979572532652,0.5750302318229185,0.49276549978197143,0.3952011596895268,0.501616429201176,0.43197726048005275,0.5315162900748169,0.5130099498264094,0.5548515800967885,0.430989036821099,0.48720567568571727,0.5746306730515865,0.49344715594141686,0.4064928423332125,0.5673732786502157,0.5870146544902288,0.5441254734908344,0.6002424921083495,0.5746407979166986,0.46474801132113,0.6944084168411602,0.3808440477570546,0.5971285519369445,0.5392171169071076,0.48959840249453873,0.46147666167973483,0.5448819783687655,0.49585846514511817,0.5539294771754016,0.4533045839409409,0.4247793086129475,0.4726677676014674,0.42321570779568674,0.5293800491555175,0.4192457655308851,0.5786705652375836,0.6000835476609193,0.5266948130425376,0.6370825719013906,0.4723790319861868,0.49328267757821287,0.47970112243462676,0.3357479746746394,0.5172307681046803,0.4901857038109522,0.5102554017497202,0.473807699542918,0.47430285615123075,0.48651723643243555,0.47264772715839176,0.29360365953373246,0.5818016452978253,0.3956625404470455,0.5273832084122895,0.5189094825372075,0.4780478985020079,0.4670686124974503,0.536542788807995,0.37116141146653836,0.38307383585241017,0.4200466623479883,0.5381556748637972,0.2846441275839215,0.3101151794675986,0.4477419200954959,0.3997156088289516,0.6047708186206288,0.47492074369632786,0.34749903712153124,0.3785525394478842,0.4651782270805382,0.4696522717702763,0.4501255654327705,0.6432006803822947,0.5622448130410783,0.5246594810625221,0.5290682970738808,0.5413823897563897,0.4016786024562744,0.525116817654139,0.4056301860532775,0.3719414173758969,0.3927373763738744,0.4446872580288053,0.5628563078460365,0.47934001533130016,0.5003201179879263,0.6020491852347492,0.4365078031503174,0.49413876489541075,0.6334909078380213,0.4079478869081124,0.4795834514559044,0.4564228000691117,0.47365773646719406,0.42559851284253947,0.4306699436988552,0.3557210570446423,0.5268049898901506,0.40681557463260865,0.561443417679168,0.2773178353890057,0.45805901560136614,0.5225777595312004,0.47652545846731154,0.49901153387029,0.6634328133806748,0.5741158515022451,0.4168458861337297,0.5379559066545253,0.6203428137056248,0.4819925036860496,0.4867016499165749,0.5441203865752461,0.5636468364225949,0.40782400248239875,0.48090186473963337,0.4730858257152571,0.5782824255044795,0.46599346905539524,0.3440831153008087,0.4083656804051012,0.4267616317279617,0.3359838986069617,0.4342159383040544,0.5274884138299015,0.46367924730614574,0.3908896931065872,0.550579763200944,0.4314612798933632,0.48028570501974555,0.46638436989048454,0.37911697082891016,0.3231855915271257,0.3473768361753083,0.4265425755889761,0.5660853137099172,0.5429988673284508,0.4979427968488839,0.42533617705840043,0.5780478429316619,0.4864925268319502,0.4245942301870514,0.42279651317206096,0.4977461671571752,0.4136615540875096,0.5085183379971386,0.4293505222378737,0.39834201896589183,0.5476148888382282,0.39019414784755596,0.5394237639724841,0.4745728867191032,0.41884120753685933,0.3368664929644443,0.48324743616692556,0.44705249017890075,0.4487267444878204,0.4379213781360293,0.36726890805958984,0.40908557698952647,0.47724074140718353,0.4563815822440919,0.4334125406996737,0.41640191128234005,0.541041332227967,0.4232991821922042,0.40844183110123916,0.4888210228280956,0.3135654994830119,0.45577158374289906,0.42869493272797193,0.4383241736349068,0.5086701619574059,0.4600868098522911,0.3431967496962918,0.49287512410103457,0.548127902703795,0.3633318350108688,0.3204657935064154,0.4356560968935253,0.5260781414270734,0.4867719238823968,0.5307829463661744,0.4659665960981382,0.40815621324272894,0.46933053270437863,0.5406903778218641,0.2537684735912139,0.5466699359654715,0.47587442523227347,0.40139774128890954,0.465326388825808,0.3401563344862491,0.5680493939286658,0.4808357215795829,0.3453632716231744,0.6338223820282819,0.4987109995591495,0.4692318286246832,0.43589813653625753,0.29469327640954246,0.4918019406878592,0.43446581988951605,0.2589060545260759,0.49622599256259997,0.3996366532578582,0.6384374953075613,0.46779392186282565,0.5563079831285958,0.4136696247134355,0.47363910796690156,0.5138414265546272,0.43808642920155205,0.46800157894307487,0.4181845559531332,0.5480856053526247,0.5849689051996365,0.42005539489329047,0.44731224656722574,0.47975442058286116,0.5544746863735761,0.43121042963604,0.4437570619164387,0.45306993975517684,0.5846885521130512,0.4261010319065709,0.5143310636773352,0.489060122096587,0.4954287642894404,0.48609110707709313,0.47023236669365753,0.4277616713049554,0.495819639781526,0.5673088524763233,0.4177573802900004,0.37429634522214217,0.4514511493619593,0.3807982740361522,0.51992596649442,0.4636636372439682,0.41133527165304873,0.4118610194888695,0.36321595824912867,0.49748823305689827,0.4435198208179248,0.45262513987362535,0.4664469922639998,0.4004006784465975,0.4309742885163915,0.36931651957601136,0.5700326952634593,0.47893088503730713,0.44576537386921883,0.48956735492698966,0.48726813320474655,0.358517377814672,0.45746799724142967,0.41125724629107063,0.49428920379480634,0.48534415551808424,0.4991785479722289,0.4536328715336775,0.517186512893385,0.3636423570953374,0.48655308556358223,0.5147490977571393,0.552251815902636,0.4930199151842649,0.31864384054167477,0.41281059458965635,0.394628483484374,0.46351861352138757,0.5176131933589367,0.3947980599081424,0.45989317814696196,0.6178988528899054,0.5327200944848963,0.5503303843973829,0.3583703802068227,0.5232203507286532,0.46738314515145035,0.4362185949419945,0.5621019950972029,0.47254620284664856,0.39828506310726464,0.39540968820252453,0.513095282529538,0.31260866652901215,0.49251673414155833,0.5961915904954088,0.5030269455303815,0.4518651221744244,0.5161744711621002,0.4531989972464559,0.4993407751889376,0.49964948186089914,0.4233576864082453,0.6169284886437312,0.4333343174325641,0.42728653930968596,0.46475965319821894,0.5008235764239498,0.39037532801013036,0.47817550987982893,0.4568264529242804,0.4953134421699119,0.45118144540624794,0.3413454026797173,0.532259903900239,0.4519105649397716,0.6097636470505942,0.390009484881387,0.4017766868733669,0.42564788420340816,0.3690495787713595,0.6178527498539986,0.5830552123728552,0.3694056620064077,0.4409072513775147,0.3852013665547987,0.2572322541956766,0.4006934551385671,0.4205762448469812,0.3826701828807333,0.33235329436187083,0.4543460885823529,0.4882678893461109,0.4562489621815379,0.443511818795904,0.5306389736065348,0.5065166280370604,0.39991934715669236,0.4902421452740658,0.41976448263673827,0.5568191814829248,0.3690665494939539,0.4829141416414617,0.4711179326879217,0.5477178716621418,0.5364088070374082,0.4788470908140423,0.48702880260132936,0.48166744645234777,0.45570645657048126,0.4159983413331881,0.5012016232885231,0.2839144065108379,0.4318393727615006,0.36242492563309453,0.3450237956724217,0.47422277901672577,0.6291228064235426,0.5065646767454891,0.39775430358994374,0.4357874823800748,0.5293811968661022,0.42382606658557626,0.46674130171703093,0.5053572621847473,0.4909127793303743,0.45047451196815513,0.42269210474851376,0.5829168224499947,0.5353219617296309,0.36426173337008455,0.3687605665217044,0.4184460791779884,0.3673334131040554,0.5182562985597594,0.5169916130818871,0.36247178125305846,0.37426946645111303,0.5705840472711232,0.4206645174521461,0.3602064694511901,0.4936315986892972,0.538538153050179,0.43065083515635505,0.5376399359798835,0.5297613391600953,0.48780134437826655,0.463895903781484,0.4973378562691002,0.49614563556415575,0.39595997172084274,0.4389618940448153,0.35549267125344547,0.46167230917813934,0.43239288172024465,0.511840789319414,0.5562959692136761,0.48043860230975854,0.5485191477450353,0.5271463888131975,0.42708609736252134,0.5322905506729554,0.4811944715735191,0.5695452580046351,0.401497186923877,0.4958326656168241,0.4498475617245329,0.5889090588339436,0.5050111282746491,0.5332798486929652,0.5014664759925814,0.48871690209389584,0.38063890771067477,0.42418944877526205,0.6540069831038132,0.4112104439493408,0.46908019980754256,0.43837180131272135,0.4381987838022707,0.4501507073717873,0.5653969899279655,0.5986881045569442,0.4929227084656487,0.4630064309148066,0.4309101124572485,0.42569727259171647,0.5105389322148571,0.4851640090960902,0.45700643677036307,0.6002084568824156,0.4029381593816955,0.34686339679858097,0.4144771064794632,0.3811780241393307,0.35373542618782317,0.4048912884133435,0.4874692072568348,0.5455546535555311,0.36712708858237797,0.5403732940528335,0.4916484492189532,0.3620878400763894,0.3228102308467079,0.4406955222176196,0.3946345163292657,0.4315472830325738,0.5945263502621706,0.504965177939529,0.47463570766317925,0.42593556392258414,0.5013203862855831,0.4131189170819188,0.62260809032465,0.4481551360348086,0.5244685202837638,0.4826088068531939,0.47165424649052096,0.4306651621949715,0.46599401760178116,0.5929585012996328,0.5353653544441467,0.3691897999010819,0.3762515235700175,0.566952292174641,0.40612627135672646,0.3383363042939383,0.42221508070017494,0.3338522723547814,0.48488792738351416,0.327135886601209,0.4460941571289403,0.5431051368971888,0.5160776343954262,0.37468643666049783,0.39995046088140557,0.4882285720045015,0.5158552119149027,0.453361282409918,0.5803699530454133,0.45719465982144836,0.5159392868617981,0.4327045204510802,0.35075191795755295,0.3522765716706512,0.3946501853699232,0.3933492961698632,0.5077417836432478,0.6519003594441075,0.504490187108291,0.47398074926091643,0.4306065506945985,0.47607406854593387,0.5610958068971471,0.3824155540690729,0.5951718846326408,0.5259167606504862,0.3452259686507015,0.4533495335850665,0.5746220993376433,0.5083737646895959,0.4642342415177722,0.530160603420939,0.5248597875585854,0.4380681763491926,0.4611347671667881,0.4818332035432366,0.5050945303833861,0.4814808265372351,0.5225361958545885,0.41302382598865117,0.41221303195072534,0.4058977471596246,0.5682231217371688,0.4033753876929587,0.5678691824425076,0.32489662567733857,0.6214366156564307,0.40646460200350526,0.44956235912881704,0.3550980724034599,0.5936627406957659,0.42421406534784295,0.4486724067777649,0.36077159385712,0.5800908453431092,0.5043013842807803,0.36687594755541825,0.45755201445200616,0.5248155061979362,0.4226193309987524,0.4724556202553338,0.4216617170816352,0.4696818571296216,0.38529342711508036,0.5913906405477731,0.5902035271355724,0.4081775215573147,0.505369889487022,0.40096255396710767,0.41063978148398433,0.49111047176843164,0.36731913436253816,0.5644503933769207,0.5164467832386973,0.41314091968371164,0.44213638981900455,0.4330928205319908,0.48281601650441164,0.38345253117416944,0.5513661272422857,0.529302830292834,0.514130523723847,0.5790093546833095,0.3423526534439928,0.6464199148232128,0.5692737077611499,0.3203050688191415,0.5387495456841579,0.4268625815139671,0.5116770967634292,0.39302049714378856,0.5506122940549356,0.34478013916064354,0.5631802129371384,0.4174351798093762,0.4444371153149727,0.5621954629254517,0.5867743879908554,0.24877619949443952,0.33547197272891743,0.45913641054288257,0.4140869264232581,0.6024405286339013,0.5445515858485559,0.34900301229871133,0.5216806004015639,0.5344366343489029,0.3893800918836589,0.3649330146046097,0.5513902555586576,0.4930453315957499,0.46001043250936524,0.584618214711565,0.5042342018270137,0.4205621731713885,0.3684479026941589,0.33959414890149564,0.6315485467079094,0.32221240569346526,0.43038814249473295,0.3911979621121153,0.49771483482478623,0.32300584604805954,0.4881190887637134,0.5376132022950614,0.6350997473630349,0.3341714051783762,0.46806230697620504,0.45443364315065804,0.3448186569351269,0.5319628295117305,0.5048883172695147,0.4918737539883734,0.5310908115217667,0.5577169991150964,0.36313366190207785,0.38644256135739125,0.5435033051047631,0.3919341213843358,0.5496563261071256,0.42033293326067483,0.5515164617370413,0.46118596341733525,0.44865633877754224,0.42165428113960446,0.5560037449498818,0.41429681752442643,0.523075500738112,0.5290669863605397,0.4890055985404944,0.4888769239947526,0.48371963229515097,0.3397349073603075,0.36599819878825707,0.5347135978671528,0.36435124689494325,0.39336517991612885,0.5513001275765487,0.4445017024872326,0.5895253380089653,0.5147241790720187,0.4021459102339692,0.3564251055755417,0.34536366528079626,0.5070787217419127,0.40551610503987723,0.34739527500028455,0.5138000379772739,0.4631445592816376,0.47269426010650606,0.284460244758887,0.4866513296213398,0.4480635364311851,0.4751145959481792,0.5192409282988081,0.551325091331327,0.4284584052592243,0.3843384655974313,0.5844050111115348,0.5857445522585931,0.45396398592619364,0.5523978160099848,0.4220572243178235,0.5175327754787917,0.5078290603171358,0.42696313454420615,0.45621777864673346,0.4823764524345497,0.48650908614744715,0.317114568360984,0.430411375066184,0.3339829568666423,0.4417662560209781,0.5196633850937337,0.5703061266359958,0.4467084728072099,0.39173510319718485,0.5249222649998951,0.4715548896071213,0.45148342240242817,0.5389428159375051,0.45091979773279217,0.484897894339967,0.4987735465862554,0.4593904721235724,0.3659781403998321,0.32024797920341885,0.425868151618945,0.33624395837976795,0.4086625788069307,0.31868207993709236,0.4780842239624303,0.4748221501767103,0.39042945174801064,0.44918230565384726,0.4950788455349828,0.5004400864103884,0.439600244145031,0.4156352773211748,0.3559175085275678,0.45957789745616934,0.5101256081951145,0.44318557055182256,0.49637558360038436,0.552671661914447,0.4984724411970091,0.44632934924672973,0.44944232763171205,0.5606554242428238,0.3641691553659573,0.5063597460302658,0.5327856107085923,0.5823103530932581,0.4553408083360797,0.4975868753677547,0.43316530084373167,0.4201866792421984,0.4802376689700987,0.44294360878631983,0.4390346189812685,0.39829063767180156,0.4571648466590516,0.3924924340305899,0.5927092021172676,0.5554410615732153,0.5454073257994955,0.6348733035594119,0.42215457706281834,0.4720991128691102,0.4327557828486544,0.5628137184513482,0.5719158959282503,0.4099138892189932,0.373749688549044,0.3524036720328984,0.4697829730105106,0.39615875696794256,0.41845485967425594,0.5689028983809251,0.5925386623490588,0.4968198206806099,0.3272659390321582,0.4872103852229483,0.5271288044691136,0.5375689364138666,0.5461564933636675,0.4488486561783048,0.2758973550824775,0.5611534396083866,0.44666248358171246,0.36476311639622355,0.45765579350599633,0.5336433987619575,0.49549540554095617,0.35092236902078433,0.39291519646327444,0.5045208196238539,0.40454318571010656,0.45032214551983185,0.34390168325344683,0.5376316507802252,0.4598771538556183,0.4990708011706429,0.5091928459727675,0.4763263326918425,0.4200005873077298,0.4924106702833806,0.38180433368611855,0.4878217111794198,0.5264990769153801,0.36943314563901647,0.5497643918219933,0.5784330527774383,0.5058297091601461,0.2789724021220203,0.42341002353177737,0.4424327018844253,0.5268307107453836,0.4665463695023418,0.3173471947276739,0.334578135674901,0.3238653978650568,0.5180394947118383,0.5321346768355694,0.5919763071107742,0.5290972833430108,0.460725399264721,0.478135843845691,0.43306505207737955,0.4598905191183255,0.32910602350697526,0.34255869222347696,0.4897321714712208,0.4653169695199192,0.4603309666331396,0.5267439363214003,0.5205474736318635,0.3712099849036043,0.5008145458327569,0.4613710935416152,0.4629376472331314,0.4044135115517359,0.4080500413293977,0.4521676940335913,0.31922179884776136,0.586416420381225,0.3458597642103439,0.5152344452172298,0.4114255255085567,0.48476314408492194,0.4237133853516014,0.529472019314887,0.49490484576953064,0.582548666737715,0.3251353951629485,0.4177626717642225,0.4617331558262787,0.4286798891037073,0.3881362637490499,0.5355295005245514,0.36041205885281347,0.5162169213807989,0.4688018656239783,0.49265613953947107,0.4812552299540921,0.47435502331281737,0.44365304917941867,0.5487637240897112,0.48177245981845196,0.4397459693583571,0.523972035331032,0.5235849839966328,0.5689467065365336,0.3247330894494435,0.5162942192063801,0.5149984871532799,0.4520141639557759,0.4559658973140765,0.48592705593241736,0.4738733133304506,0.4064192262793116,0.499815718244748,0.54166128000674,0.531692949029907,0.5090676917462834,0.49452464678877306,0.46141837547099934,0.337577101838306,0.3668947604561777,0.49222783996121394,0.42359740279633096,0.594950526985109,0.4955598672735923,0.4874155448030432,0.41924960852535625,0.512560402415243,0.5008813258041358,0.6487045452078642,0.42238305138783616,0.5010225409070577,0.5318798658329987,0.5160524236096363,0.564057282334011,0.3796184672247648,0.4956759513083342,0.4254009253309596,0.40496698738526016,0.3893986094373153,0.48621076753765613,0.3632430452074584,0.5865272022711591,0.4197050908816082,0.3488253324618461,0.30116535684792556,0.44735623308939854,0.5188681796375402,0.5451404326137104,0.49013819621569565,0.5491528955578097,0.44815539713611646,0.504132660710998,0.5353307473432088,0.5373352023290547,0.6029633623220737,0.4705567778831925,0.4132792364216987,0.3867302932670744,0.45912969728154646,0.577301891868008,0.40118530041105227,0.435253515145519,0.4730553704747617,0.5167211435857765,0.42703585429994795,0.34486580562225666,0.5056327394089775,0.4251590848164512,0.5262229670187211,0.5061875792684203,0.46262861160419155,0.6477193956826653,0.6223449920417087,0.3697329535656706,0.43761360992473497,0.29112758417110046,0.44340390342620634,0.36556426204127873,0.6764537789629544,0.4114401636173313,0.46022397385345254,0.4477072546491459,0.5263448048301149,0.4965763250973823,0.433391245442238,0.42475301600263404,0.5103389276512313,0.5397073881522846,0.561100528210652,0.46663284057122645,0.4359036682515182,0.4754288514359741,0.6256714664033669,0.3985335376622869,0.6280605959658841,0.46218108269967684,0.5357447636590238,0.45826603137280697,0.5338864775407381,0.3538553130650414,0.46200453789753865,0.5875825087348383,0.45565141082300153,0.48487858665645744,0.3749858015397394,0.31283226930746155,0.5475713011039748,0.40471566146192167,0.5352932986849661,0.5936109513490113,0.5428875154804972,0.37019564277903677,0.5180488642761066,0.5200719769109816,0.5085892073558883,0.4580928936065161,0.5520151888742273,0.5140385345192987,0.43677633400541693,0.4770216524075596,0.3403677755526717,0.4868256391537857,0.4357630478029152,0.4548852061886145,0.508589535917544,0.4306511414093927,0.42462850660388946,0.38088077881428467,0.5040906912182209,0.45232492396422647,0.4398521780933131,0.5246950803465534,0.3500234323555926,0.5900212586821678,0.4127072950440074,0.38861421642832633,0.4398621487180236,0.5460345010571583,0.5278557958870294,0.4060406809518837,0.632183092141762,0.3961348115090848,0.4069095892713893,0.47634272859212123,0.43507663793538365,0.417510654157107,0.5387493583805063,0.34163082843586523,0.5755944795370194,0.37187681451062565,0.5129071976402938,0.6104264078880787,0.3845915143448337,0.49014336478483234,0.5389327685378138,0.5485839326654732,0.530228125724442,0.4915243942069148,0.4420200504134975,0.3589973747333836,0.5251826743400376,0.42434336617789487,0.4040786199140516,0.47926071111922314,0.457824749803029,0.46372972423233905,0.513169499677875,0.48082675559516364,0.39309385325043716,0.4519445193830735,0.44028950810035516,0.5202958692763545,0.42558227102068824,0.3560229360790141,0.3082068487764283,0.42219809305201245,0.4223576004475609,0.5043181616243627,0.46628874472787846,0.49784304031671345,0.44645129444763276,0.38977036132886156,0.399738241042891,0.5411979649504806,0.5188914428266899,0.4686093700474838,0.44919452773422913,0.4235664819604579,0.4111866615782775,0.5501591997283068,0.48031605234923547,0.4969526707979259,0.3954338931479561,0.4905713206082038,0.6358995511865401,0.4603419986647691,0.35057237153613063,0.5094505502185115,0.391785370946748,0.45480472041212094,0.4339193283570718,0.6373071750307002,0.5671581284105636,0.652674256589232,0.28631103144743414,0.4901050969542251,0.3887838346339032,0.4881515918811097,0.42676420180809155,0.4456335372859718,0.4209964492884426,0.34679228270266266,0.6906975069175133,0.4908515324603257,0.4796272111034737,0.5354685514755633,0.4700406823541831,0.49512882513090833,0.49422742291133415,0.3508777111490322,0.4493088229927539,0.5907598130104886,0.4813826278423856,0.447447583997703,0.3257329602371262,0.49105178744261835,0.4546743890589007,0.3046261599750371,0.38466564897047356,0.5927253539101899,0.5253394591271752,0.6102578033918056,0.45299480225961053,0.36286380270377777,0.3523695894886773,0.5214870384016865,0.36162932696595995,0.5475460739270918,0.5873371048513037,0.4601110668922575,0.4168575515960748,0.33565148915978127,0.45631715600273837,0.3268764293038339,0.46115325040620103,0.584244355825299,0.5618573980192585,0.46138149574936893,0.49599252360122276,0.46864312170287814,0.4642091122854128,0.5912780262146797,0.6249637980294336,0.4398128274730655,0.3977343261926278,0.26661356599333175,0.36930586259555714,0.46351930183134465,0.29132775458393995,0.3556455746349879,0.3212208478966317,0.5598253941079496,0.2709879656353513,0.42690481016285337,0.4745252560048049,0.5122048805068139,0.43729309021005863,0.5007590962311421,0.4578349732871515,0.4547032091513253,0.5002097697573663,0.40765846479930823,0.4241420123390315,0.4118096600929147,0.39222330620993234,0.6216133248255944,0.43388047664393437,0.5023179067005843,0.3732214863481156,0.5216744032428928,0.5150506064929736,0.688452848361385,0.5992413663349718,0.5343465613348737,0.6377163195133589,0.5465043391658257,0.5122000742305857,0.5906810819522293,0.4163290861645779,0.4637072188425772,0.35635512170839684,0.39779081121134224,0.4550663679457262,0.5153534567852455,0.3974274124977867,0.35289656705097205,0.42003896822598835,0.5012896895254322,0.49309307773649674,0.40779645939015574,0.5478160199701805,0.5555198125564272,0.5666995319470521,0.47552623650535186,0.359482042304956,0.5687885745412736,0.5429997895027591,0.36218162464094045,0.5765532846310539,0.47305515721346053,0.46032840547366244,0.5488876151808982,0.3583200958847367,0.5770520047359908,0.5272036863215024,0.4718996045005614,0.42856877443181696,0.5169142429109407,0.48121188940465254,0.4068786289498188,0.42666418507345294,0.27816659121102544,0.5429661914094472,0.44180385862954924,0.45229609073030763,0.45775130897241534,0.4318444132602277,0.4348796535381796,0.5909379116158915,0.5245840086254036,0.3868789282551509,0.4955350550602786,0.5225687218550125,0.37617576655545065,0.48696616974649004,0.49461004667853015,0.4861996035058075,0.4069458902098028,0.5094592691779714,0.507308035223429,0.4354639235800851,0.5710316968870303,0.4780592516907447,0.41483002162459887,0.30255695918091846,0.4128433567961182,0.39080828319202654,0.5932109380256272,0.4846730689977912,0.5111819015878092,0.5614906062496977,0.47426566679941234,0.342388405022432,0.3962144141213646,0.4076296251022295,0.5177401353630628,0.34904743304082503,0.47258539832098667,0.5444000472240047,0.49443266184146434,0.45412523051902653,0.32908867822282595,0.4081777172835787],"value_per_10_000_usd":[66.0380427529421,98.7945529630256,114.04042503115144,42.001394315751924,320.9882172762288,105.5812173730625,214.38338413536533,63.458908430131785,85.96072128352083,65.71988429100506,96.29468916963191,63.62296030275371,201.04022323080545,174.4464379828477,68.05775638757166,123.9159059821469,43.7721316338724,87.69351027356316,214.4326075038949,87.78004973070058,203.73631158379416,31.349435456757373,232.2632776897046,46.20251705498016,76.09258946299434,171.08333704695633,84.566846661372,79.66913157665667,226.28258823953843,68.9915933556431,57.639569540031935,77.99439958601124,101.81001641511439,64.36206348075025,177.3043180593411,88.67677161053993,41.45526904518217,110.37181952674591,41.70021463817677,207.93093103056728,127.85549076616002,129.70740916148418,103.66578320786616,67.08220906917471,102.1117494587927,161.82652685391997,141.7896526064355,56.42839731093151,172.39344719125162,70.99807947406607,94.33631491456893,142.10510296860488,42.73261043677381,187.4865215750304,85.86240227891871,42.531793226601295,104.97229509708967,108.07643913884468,56.88454361340091,69.5177864473543,52.08736056867313,92.24405015500722,46.35974737707118,122.22631227155983,92.99989346368693,259.8196231981859,60.64284236156065,95.46808097675381,160.21117634977583,129.77777198424215,157.30811386673224,86.55308326595286,664.0177284649166,85.47635193857283,55.5819831645764,218.2114034339943,50.78011750989341,74.28987468617007,374.6240800601979,77.67255237746902,166.21499960156777,130.35084185357962,60.04446514410651,268.6024404889074,70.75368990208968,307.0812855699746,71.28436460213027,92.7114368382146,120.05476175907293,93.79045286010243,170.08018549149554,56.38221724956029,164.92414022891418,62.94212894268231,88.19393503730234,111.2346287907205,96.64864260907844,59.208442743813656,130.3897019902542,91.25983458372245,189.44343849718015,67.11074578764023,61.319210568170455,113.28878295366557,107.22276907418193,54.367498405687044,121.70829134786626,55.18723019873474,67.55010376050026,173.41592216701645,203.98013232076505,40.97203502603486,59.3030740130187,158.06290948351966,49.01170706765359,78.17912785779401,164.83828737855018,127.19554256392647,82.97199991493667,133.99912160398537,43.66409519203867,112.25319981414432,52.640098834470116,96.23041879220521,96.87385908926592,100.24954680597197,55.03355900416526,322.9516604395833,69.05860763166443,185.75011135952263,87.19215218234797,433.88655438660277,84.69794444681966,108.005250183609,121.7839498409079,64.76160510591914,67.81581005370741,98.90280652376148,91.69701179021963,73.8833473299155,121.53092159732059,110.89500038877276,201.88586374008798,53.892581762938946,275.03489025158746,68.49327841945772,91.09662849016186,81.2785997220408,193.51445501097845,100.35874677836567,101.53135200002022,328.416692387968,280.6431366526469,357.93030498931853,178.82774738909575,206.1853075111638,126.91932520164694,115.72623381331005,87.87182416971469,40.67242757853289,80.83328945885367,69.67197199518223,114.30921382228037,58.45145102065107,153.3143431384488,87.96146528623537,282.4232738824808,107.84555128692799,118.48882929290421,69.1649486520513,43.78522173376983,38.21986046061206,163.89220579642267,337.853277385412,183.62868339315327,88.80938385028935,72.03110233144233,121.33216969529911,114.87820989968905,308.5899017569687,63.35079998018877,76.46035617612836,109.21249405558306,84.99272053929002,77.69548367169477,146.00694160029957,105.06142993571657,129.04706201478467,116.5637649721723,90.75145415198858,155.80624281947235,115.19294062910764,93.30003510499027,112.74411673434518,205.5073116524989,95.95181982801007,63.82039652418541,66.95739488947363,60.7977887081186,166.98869270961578,95.98568958177444,358.15103618128774,275.1775236704267,75.38602105633613,188.83075714128384,85.74940113672642,74.78063706459162,43.46149799507763,496.78554404312035,48.98103498389749,116.38265527818689,320.45936603750243,50.90330655121533,66.81922165840854,106.26667656562853,250.23490217807284,151.34989777389993,78.30901975917038,85.37555356364021,52.18992658944504,112.86189522734284,46.8418191744367,65.79961957738884,209.40370125556217,176.05773225871735,78.00507421158171,94.52783227008975,96.54601323064225,44.924092255943044,71.12156727712583,78.59533496771566,182.50710539530652,35.82782495654915,122.34751287183087,94.15624144731345,119.4987185562701,44.82169360476177,268.5802005761136,93.25298239986084,92.43712249930992,65.91316582162821,57.832316071106995,115.53389060494577,259.5008491974822,76.20811374126431,38.454916894741686,95.47639031239437,184.3401765923107,90.54208308841847,67.77446588457886,68.49166840289878,113.78448514139343,185.42650018563128,35.28157578983778,126.50260155332369,83.61192945407386,187.60622763566053,154.4515068617602,342.8403566051563,125.51605373429263,73.83839764775372,103.29732078791214,103.87906240954645,105.86276079932253,118.89143399501376,188.12115962113086,105.68946822089696,62.270028460311785,81.19057906227995,67.16788938595032,42.468555906487616,86.59049264716167,155.4764926342966,95.62819110997802,121.49495722010082,134.4686461853478,148.85826441491153,82.93173630969525,82.25935125657416,184.8827514262622,206.9631415818574,235.72297980723337,116.79910744448547,197.8450176343326,202.8573935293816,136.88388370567085,144.93637254895793,140.1231029356574,64.62122279376493,66.21525115740354,501.06816699572283,49.925717503743414,107.65804986584354,45.20836024504969,85.91167986133507,189.74512472035698,79.0387545216289,63.22291860225121,51.59469351965522,110.07495041961481,165.06674351898224,122.02430149546223,64.13439564629088,112.3711364646648,83.36101533615367,108.77201672970156,109.76744391067105,141.9920317542599,67.70895016555909,57.05263411268338,56.8115819560577,98.00984038637938,85.91597106788203,104.13756231575651,98.31814348343235,61.44059465782647,76.26791226224235,56.05254298197488,60.46022714181343,89.06303333801746,65.99384519184191,53.459421815296565,257.5735794935241,66.73092090307387,71.67921042838894,413.07746315056323,77.04575555078848,122.56646094235916,201.74385755885604,51.59997894016008,366.90265986341535,208.24221827716045,64.98156241529713,148.56139918353728,31.37692181319606,314.918908913515,168.32923758307325,236.95493261611344,98.76146864360442,90.55237124075917,61.06210082588173,83.6786364962622,81.29298605902952,40.634636131895014,222.64181448507804,73.1106133945278,83.69362316004826,64.10831593125162,196.58396087606064,126.94476039098797,45.657685397140526,100.8962825243985,227.10064065225365,44.825900795846216,143.98646650486475,75.69870932898311,140.73278628798795,127.19253088090673,76.33264375994473,58.971738178186726,44.074549084125145,311.15458721141846,94.8188198470564,66.45259939945727,106.27531552652026,36.433819627354346,132.34568892543558,114.29407538161912,110.75769213215312,88.7220277833886,58.30126099696902,67.08556036458202,40.218440852258524,69.0867044973788,37.98363234128758,96.45758374522076,126.26169951177775,28.460768272982687,75.56317669174847,223.90770406197547,37.90912774213113,63.60276367006445,137.2737958033903,288.36273777806196,137.8889317537638,143.2090927286,91.70947230858029,171.25156724556993,69.32246771783649,110.80625958736105,115.74096224276222,96.42890665772295,111.05297533743777,129.57691223100363,81.76502189239396,99.62445836497709,47.31717865898902,308.1996816533392,300.1637230527674,385.00714340919245,197.71688609008726,86.55510496513811,42.74846386325554,91.23957957540631,68.20839219789286,73.20834887838853,48.79733383645418,90.68210353046759,100.01546367042961,205.68263162820912,71.53604763781885,98.28521315107021,82.39889682650973,54.90139644127151,114.03535615260125,146.44084258524813,67.349168326397,69.3409906001059,124.66438813019914,60.086290412190685,78.93558626497105,51.8075780652134,63.91272633070322,146.9960275148457,55.6130887602455,138.0521548620113,50.461393642933075,130.94542991454034,22.985681936005324,86.06847534253218,34.09161840359788,88.65409290954749,115.96585908526617,173.03262542087322,178.83445314201862,101.46598574647977,57.681950675489176,133.81653945448872,64.35748111025411,100.3325608072457,59.69777930763139,54.963234674236666,101.71736902764088,123.55663644850608,81.51381119160033,92.2606578843089,290.09846682348837,113.81280078756706,55.40687453585302,60.36309311335722,132.52764276559927,172.14034592467618,166.66022828056344,342.4822178258598,144.25818597208968,102.05145298634797,196.63267507990037,84.78643316819272,112.97600723720244,85.169005360817,78.67610621237512,125.52379810129997,114.47794439658948,78.94028849142411,141.44029207045523,149.61861506849283,68.42453786480024,165.98386267934166,79.0297415633328,202.37728978542182,146.45458224937568,49.21499344694175,79.09926974019707,75.40353181102242,80.81204540450796,38.95795061861067,147.5605070022811,175.1314798527027,78.83778270860952,45.996606936953555,148.33591534211908,186.840501586431,54.85637943433752,69.24110017125761,87.88964278246851,144.0611840113662,54.077545346818056,145.3184588482583,119.60368259316137,89.31382451036644,96.54559313122142,117.78851982160114,277.873391225973,65.09826377819107,147.94927952489724,201.69437568065737,108.34046026650167,194.38719922282985,124.6788612813841,52.35634594494912,203.07196680128285,81.61981948952652,66.83571070420426,143.30051033060198,65.54314154108553,59.392194116398755,124.32031466775486,68.95293731885779,288.7833381651249,58.510162611059926,203.0444063505235,175.16222569542717,64.59543655556631,43.11689329105782,89.98416192895152,50.240080495658546,272.39294352076104,145.19149029924247,1746.817282805668,99.63060892789116,224.13801588936784,98.527627291283,38.510967202100495,181.79641242035973,88.07405014479345,74.04437473071954,48.300900789835204,45.055447821771864,92.9842747256878,44.45639243843087,106.96356072885433,186.62641210730325,59.94600838451835,67.2496872124982,70.47940140118799,94.04068009542183,93.3269609696295,45.358282944823614,115.18664196076065,73.73670786030112,66.33240582458045,102.47250696959077,73.29089354872336,51.2735289974113,61.416691471407596,109.19827562250327,157.00200109138112,86.54567819050959,75.44972518489894,83.85227347773422,117.12079489305106,103.46207574597979,153.25888242534654,125.18535950467172,63.07080202334732,80.79704342147913,48.38557491677919,399.2975389508906,67.22726967074088,50.62558917508595,107.74955793003528,284.816258956473,76.03361352304499,77.93628280633274,97.3619255317534,69.63915709705024,144.69910278703287,140.0450014502834,121.00570199172904,248.4707896287895,129.8636150253076,37.6449828813351,69.24093627578165,52.26017700716381,99.05155971407075,85.0135252348929,303.4513563142463,181.15483887817743,69.04228268274281,77.65780458542912,148.877998798365,117.73789040191326,205.30273123321706,86.1367738136436,95.02160864437387,65.03508633849029,221.7110920095388,57.328132338806654,114.19007327562039,61.09496666338887,172.91609734843874,28.19139023180449,82.9838970902796,53.61554982475588,73.05191039646785,63.79368010754209,392.72441287110445,163.7194402507801,109.68736241539642,304.6866704264081,60.04291236251719,92.00355631357695,90.3178295019284,50.74712640748543,71.41754264589088,89.29112196533364,100.83741892989262,98.03607938831121,289.76851042775326,107.96161848449862,178.03203397884343,365.47791329228966,86.80327938941882,91.40675485098174,82.72966564163197,85.00696963629873,92.6292090685966,124.04733206515003,59.1902550375344,212.86052205289022,238.6753566412847,67.30118217167197,189.35335810034866,82.12720509619186,341.4400603718317,76.6232239986303,34.587902372577844,72.16224211434609,74.83706739253735,90.65029491565784,112.02385227529766,42.316662743454266,55.808313803635755,94.52987148432867,56.17268320502657,88.04210997512692,115.36682496642668,126.83827207234306,43.239304359180394,83.0568821279119,105.19828761153236,187.68066346459761,96.70447604610364,87.61767382477234,62.90120716060032,92.51002116049867,119.81354381970112,124.23935207780295,127.67829671439512,699.4944699956355,80.5864682448368,145.68987056237134,184.33253850077074,72.82377500084777,474.51434554149904,165.27278250048082,256.31079755007704,446.0718599071531,476.0571046624292,226.14115035460628,92.97020647103602,66.3735583198966,70.4301860211502,154.07624055732776,79.5844405690165,143.8227576085886,85.61651889812153,68.10540474324036,58.631440009100515,111.87018391460622,137.75682092794935,46.1831425524946,112.66042622282545,87.06851668750748,275.2364148652002,98.47338164797424,90.89712186574972,62.13273974639766,101.92489145286386,69.60771028247943,82.44259955378513,127.74315950103565,121.42144285318345,202.61585862162485,46.532130449185516,112.23920887458476,145.2759216958403,74.84631257484543,88.88044879029971,204.55956824866706,140.0907440913338,92.53557365479125,116.5809484859781,75.07307850880748,89.22559777400497,116.44729024704489,237.6084849326633,64.09645441671395,59.16125632623373,94.74166582837694,70.64867971951307,83.04978482839353,140.15419879059522,64.82093242004301,162.87247653344133,195.85458288965674,227.64560791101468,38.47998014673263,63.396343400637306,163.47649711149361,105.23347348742112,221.95879515693824,77.52708831629063,83.61896709945512,72.05408559835632,146.77054499559628,123.22884762829096,170.8616749013513,319.46208927334425,52.507194956261685,34.20531915474087,142.27407678708528,47.76001662047478,127.81937673842472,162.98261698733145,46.7554291689777,59.53315763551867,41.034025016740785,33.39694132659942,46.528944347611024,457.93508214424367,199.21161621189896,154.58713682517438,348.40169245209245,81.35306769367064,43.32352333994062,179.2740834653206,177.9487328039584,313.3499797945388,78.04623782553236,433.9003503755594,301.01240447042085,93.1403061259513,90.66343127453732,169.25512565546276,302.0042904312879,94.54907431287702,100.78544310357276,48.98466442997115,30.91552561110439,361.8931693106818,118.38894199547669,232.42929366836,53.58258323980707,96.53631641826976,75.56253832199387,138.6493182681526,135.66796771888164,135.1021317037004,48.349695270216486,62.317900380653214,115.60122275614249,53.35186769107229,66.31952571015735,58.93451749958185,65.42904537151306,84.28620566843814,125.92669879587972,97.62375242332766,107.22281750454685,503.42022376837195,130.9879813356003,87.19943898182237,158.81777340554808,99.47291565833129,53.64673981433208,101.40386976265367,42.60161988979035,42.03520688099116,340.90553875625614,231.55698701836215,35.16157165667309,69.12037035065143,40.490943196429924,82.25009246721186,62.721015876038805,68.70640225714904,89.54227247993624,113.63021748433744,163.6627979812044,55.9872169573034,99.27450913275248,73.15246827730122,43.2310616957679,65.32256163393113,48.659191305743235,143.73782832700087,39.214606367802205,58.10827871953566,59.96791095996624,281.44306113887114,133.74635712173102,54.68650843223104,44.86145185876959,286.6268305043004,113.43234239791038,110.75453025947871,93.8264943145596,148.14845776632228,70.58918289958997,245.5500561466918,90.06863346481971,213.86920318699828,78.24550352681483,501.39263316472943,69.91398386441342,213.6217397770713,92.84155083178827,164.32540963477268,124.5599800077928,26.22599508342753,44.21215427108128,266.55192138222986,58.57394735316003,149.27500856825534,192.35256923671102,62.76908575995827,84.67830991291451,73.42975915991724,269.5182937835009,219.82869062622973,104.27210105071245,89.25307842002469,348.9209185904956,69.01555852662548,233.3771450909822,70.07541435430429,135.37214960112962,89.50750793304387,105.32636232246334,88.07400403092379,119.44594935519866,86.82942750193538,81.89409667716053,201.11040279874203,318.67965311631866,119.07934936387156,60.415883475304405,75.15635698573807,66.11406344008073,42.53040117558576,94.23745315113933,219.55459396246556,43.956323839020904,64.37786705194435,121.79799529416344,137.83463483493347,108.95999645132466,53.748337054451916,229.71996853835284,48.23404254998419,113.40576068240892,53.7216435537201,80.08128621152727,83.18347639672459,103.14059904347003,64.41992380662091,69.34102653860577,79.80190476431898,127.91125521949004,142.17516421397417,215.99073590853658,250.61705301226363,151.21780432035249,70.99887173653076,54.25713037795767,89.69145340954282,262.1739623295978,76.535951984613,96.90269364937971,237.73326504974676,163.7375530809271,77.26429498055474,130.78197495480347,152.7203240224853,67.4715085831116,74.44312904690928,84.14559833634283,87.27747589065669,48.621956148852156,111.51016359460827,161.6756744263748,49.634182802252504,123.47915763480995,128.15941760894952,57.166748024708355,63.49980837758126,59.768301984904504,117.1868406448121,54.9444702199981,72.021791909762,224.8811783192237,123.98147844604675,67.20931279555498,86.83660575583214,30.4888140251487,144.23757640605393,60.27191198295316,115.50054042150205,153.24682830594205,132.6299563750302,239.29891095698454,278.5630206681396,57.72834431075431,250.43985180811183,163.3520397864552,172.63169389489312,32.71722371031686,83.05298469809559,160.0077339549269,68.24547639588202,125.63332260006314,100.74328811776145,74.34119575386245,96.45498842232224,225.74213551734815,109.23090169968346,82.10202860070311,63.34469701313107,94.88425664602147,79.81902566944319,79.92964438334279,107.66901029992691,86.86587902875085,115.7599904620297,53.487012470864386,65.7563297896791,173.78601859827,128.5408720613726,130.83219546877643,128.16908776901482,75.99649093978138,167.5694242054135,151.24892034513442,171.22121570594385,234.39657638386882,522.4688329975594,89.4919889623631,63.50549509067024,145.09873497134524,145.0791734168499,119.16525937756404,369.2620897199081,45.88906984978683,89.03544648194963,307.8424402677695,131.8228311761803,104.40907855078143,60.626469956591436,136.60782907195656,56.66354420380211,256.0658150271209,85.84319667405843,201.99759227895052,71.28272439177184,55.3223543796491,100.42920370812749,61.26308983595122,41.394293465761066,323.4489450118589,48.39228860176036,86.26707134412544,208.6170471308855,86.14448692205299,158.23833509399958,49.356108971905634,102.66909117907059,55.54777183602312,114.4890993792316,180.13733248169592,353.9893161679097,80.3322232568581,120.86079239446866,87.96661455694588,146.1787773874482,130.02421010169297,233.19971189478616,69.41100216287138,639.3302005846994,506.1928796413416,66.02159087096184,47.375150557993415,128.36909631037722,56.305193521656435,85.49818398304053,85.7810326366697,60.15239879648835,104.01129859165269,79.83082744347462,150.68506215980196,76.69930778558512,51.37352327003402,55.58337055704595,68.01469736842328,137.37748891199126,181.46108137194304,62.950827230358264,82.94647840432316,141.97068386438022,292.8043900097646,146.0811167218959,111.01169548072615,116.07592427394545,43.43910961504074,79.45956996312674,87.33709279302953,143.19534566295263,45.899619436794545,73.4180934413714,142.6737907837532,78.2019338204925,135.00506993871946,153.09523869576526,96.19893420570767,90.02073974460373,171.20410141478854,71.77237890218363,67.25735844996923,184.46186856456222,73.13567452625114,60.36973520540027,140.8988674923286,55.039402310793875,198.95151599411219,109.67492942773633,134.42411073678193,48.1538612431243,78.66524941370824,113.26761125448398,75.53487980750364,46.69302557669028,112.95433500854749,183.55147598354114,41.965984418437145,115.89848358792507,76.48712714055652,145.12648772816723,108.94807245825845,101.437689871118,173.240460731049,47.09962419177053,332.2545696183462,70.55381158260677,270.3157790601397,78.41736454249568,121.04896147088556,46.45182199364166,118.54794193138036,127.10605393736499,86.43059024242868,54.32791764639956,131.42451792908753,67.13048533426858,69.32464339989801,146.44679679220496,71.11218726182061,32.92825781296168,133.56631507505875,142.66845886022867,65.18219211547398,85.86115884936481,127.94936766683182,183.48284700068504,46.1059703739471,70.35219001433315,167.3302772255369,47.81249567187108,51.354521376935736,165.17561732410746,79.46793468658272,75.2215762818671,198.0869891612806,77.12677722082941,64.11953971504859,322.77884170315275,177.82481879267178,181.92268140149667,41.534836027391755,62.137510291993756,108.84062455635554,144.57405843940825,50.135572351498496,64.81428398527663,98.18550494470239,121.71826994642572,84.70348860296266,92.51471379883193,115.21782520651288,148.6754526878747,79.50850443766213,106.64588375981653,54.027574786570256,233.5258567251007,46.80413988240547,81.83921862163717,177.50196094888253,74.37018138605951,43.13065887131515,76.34663711720434,36.200856878572495,81.07560035448579,182.10903615871723,238.45152902371117,39.52484070685124,137.91765511931712,173.81776950475967,53.00127254827212,57.54218677062762,79.05077562555704,203.50472682606315,83.44705081152905,80.94936927517423,145.47831792431396,86.03967397604853,203.43041197996408,141.80533355086448,156.5867634119509,87.54366520153815,113.29230301371076,66.52285962821239,242.1824165414005,79.16604023283332,120.9948514612573,65.27957574374909,192.35589891717404,106.76942494622999,257.35283219970125,189.00315381351288,115.48000123719595,73.42972839155924,222.0764127843371,190.1372621804652,63.447867535673424,58.95831343460031,131.55634207972577,55.67356368541913,76.38839538491725,61.397106890337206,113.33689130402594,96.14826336496287,58.51631278822189,66.50998585618927,699.5408781021306,126.72548092033078,261.65996983373583,90.27486664558121,56.77094112598398,137.09981990152914,180.7572799289661,120.87443066259577,59.90456801600791,40.61038044513112,121.28234595468543,211.7672203928843,211.5931030371111,123.35013480575074,99.12711568355496,69.89024881460564,63.2490555516102,129.1848132464243,63.6333864061658,90.1243967096574,91.26946369560288,200.54802403222743,55.07190222040059,129.36515274849444,69.76846774577508,81.15626052818409,394.12812290875604,111.94000375985716,103.57177272180658,114.02589260277024,117.46295697818788,109.90755026381177,137.35730505382165,115.65472553022605,167.1888596845099,288.36605505243006,100.5593247237636,107.091955496825,68.46276764223624,110.32023719110177,80.05611210630042,123.67554923686572,57.08587106682486,77.70696512138653,94.50476334323743,331.8666731632181,110.96531661694381,65.05705189266207,293.51453493047893,110.87827397816007,103.48985624672117,82.42842731527816,94.35335322628855,66.50487019700978,143.44519911175823,31.34277842884583,133.99476242602805,144.98306752353326,85.0189020272844,302.8280304117936,112.00068232215341,90.12516572058398,60.01937668350892,99.99539417084891,103.87430756550177,74.21943185137798,58.63522127658776,85.79046529785873,214.59213624241198,115.73211153589344,77.83233496132446,83.71832251891345,51.38961923444466,50.72220194791869,198.57727561276974,231.7886598219692,117.40562486040798,61.02353170819912,72.92555341815786,103.98377732774618,197.61300253451932,42.537638699850184,88.57528584034564,149.7056040133429,247.21460578716287,47.86960915973656,433.9033480521495,82.0870052513116,172.08768765444825,155.4264850564383,57.91913774579784,179.25641912620452,104.81624374730288,194.97839600488965,94.85485035656859,63.43384375026817,495.51350766804967,90.20813856197489,144.38851706168433,67.87603161626097,86.60195273398544,88.74999078563589,83.94278351750515,109.63481683955364,94.18669480596179,349.16948774354734,100.68049600538764,54.192733000575245,137.39738743277607,226.83903113201657,92.94281790915181,114.16479950072448,525.7773701274748,81.44540435906013,90.47547911388433,117.19873925023128,100.77372208490857,131.50897424432912,197.3796583422647,101.20667252904707,66.65082146690374,58.455928301335774,84.51562323801016,80.96336468623537,118.78039902459068,123.66986673722806,101.59526036668662,63.780309163641675,55.590198087004715,108.21593400839627,103.15043478655161,60.41945051527976,345.8270212033112,98.04902892880273,119.09574358812596,91.25944485493547,199.76817903129907,89.1685559747025,116.77700907159698,135.17985444527244,99.5367340586787,87.42569240727268,75.41677434027142,40.15090050276162,217.3507918646254,84.94980534605595,37.409280049573596,96.2909485698572,69.22475049167869,299.01975956286606,87.36309607556812,134.6265434306316,115.74077696375787,110.3224388071307,83.91030603422988,62.773935571026605,65.74095336408493,98.16649316456763,113.98694460857368,63.08594574764979,86.21005848991477,57.381750001257764,171.08148109306796,121.67524983036608,135.44769627498374,27.012181416289003,81.70887050776835,94.35358153290458,76.32301502178386,160.72966611289422,73.88741365912058,156.45062531575772,160.79441554014804,261.2285394833435,155.66721719660458,188.7476489289285,61.516855564699306,169.1210758868736,153.75104983382664,89.5221157387605,130.8365122670132,92.56335827644115,46.64261469563879,164.47228772662854,46.97445915848002,194.86295363098202,66.07696829586955,74.7196271266621,85.69191255254214,103.28262707310995,156.8571591338472,302.15881553570233,161.0794155060001,88.1258532122315,224.27874872043293,178.5570990698278,112.59753513977552,75.98452640651189,99.93251656829617,70.40246118879317,102.95685579805281,70.16525481467487,81.24605128349792,120.85963183361602,222.21540450064487,53.28655396666161,78.5133400018531,93.90817576938228,82.84971433788836,97.26469610161234,78.25081192560218,146.7475977090804,128.05635905531994,99.8570104396841,125.52396898609106,237.27462502579814,80.85601618499737,110.32262509945168,53.94489098696977,46.318672104850556,98.37605520725928,136.55778704330507,86.80580644185783,256.4750858778307,57.802241789696325,129.14148116645717,157.4060746536816,109.61662169092938,96.13865001030643,79.84887343764765,141.55967863882324,79.87521654857926,94.3242574129665,78.90798592656832,125.76456132130778,119.207335155885,361.94110921312927,225.02156583463665,94.03481864396258,83.34733413586453,155.80347920362917,126.85102984915363,76.2303392246176,336.7489489666291,138.3963187240973,161.37464642572,238.68229905390902,142.12699530260798,92.22134210463503,162.95215041018685,81.72663537852753,347.4519066949939,154.95236098963272,104.46574393762229,392.50324693033997,56.89876058667115,65.20543529900378,45.514412882689186,104.5030469489834,66.03543159636153,66.61992926776156,187.39420126202035,77.17091869211262,97.23760221157487,46.64457804680393,66.96270442775617,82.83941795176287,234.5043373133349,77.81015280673566,160.3841924882395,117.68692960718172,57.2260624729885,291.13888873027497,62.089465685715446,143.76254324328116,102.6812324756169,54.89940361943784,86.6827104767978,46.57555636613027,147.2110446941068,51.113530635161496,487.64184607058564,69.71829311754803,60.76477919244457,47.76040874053949,198.8998247162515,63.08696585708416,117.5803762505496,199.70361111344263,123.94407789052805,52.028509757208475,99.82201230403594,64.71869186705496,141.85552929466445,82.33865672956588,192.8222358361689,109.18145464581094,65.0046862501998,49.87002233046963,146.6035463804964,126.60324638030752,71.38257817773143,94.90673499333577,84.83898956264882,138.6213590755643,108.15452343428313,44.98731403428394,80.64637269188283,92.49341485446274,84.53127054341485,66.9686647287187,155.1387328292731,42.57820498315363,120.0843630851884,154.78254180553165,73.5390198397907,183.02118870078704,76.40028997250661,92.80033459867256,51.69785687458038,120.24648788305117,104.02870256277428,111.28921578514223,72.50832602772513,74.37362055888508,179.981412300996,124.50925684311503,92.11420162286205,63.68103563301695,151.24201575777408,193.94282314022956,62.219631523722605,110.28387356735293,110.8315640191409,141.60624864764924,168.8049143162986,337.81381034812875,124.53284966591923,51.77384002374791,44.52819099098611,101.48553396890078,94.00123641785679,58.02310020862787,65.85903074648814,72.57794453267296,154.94049496877747,295.056862863492,318.14489002862547,53.826445714414234,75.91668659321131,68.03230446052692,97.03508061068621,90.97629619095937,58.127895723779396,147.7819528486038,241.91038566167293,124.56882726441032,288.4133917419809,59.76940557998232,70.4660740399435,89.07612403840109,85.38236783371698,108.42575803047819,255.89584648577716,242.59749717010334,127.72639971842145,85.75847537805907,112.30019884754947,39.51737946113982,258.07623707211314,49.428674967443264,138.12262309333167,121.15204156275225,173.2578952837535,59.32711423122838,39.50282370411902,98.61671196015347,139.35877247713907,141.27494905054232,54.23908121085248,86.12065770385885,56.306253452310266,91.35574701195384,100.87217278617238,158.67376442808828,86.85373999397594,196.51142303063384,76.27824693219233,236.82281457088888,205.560589600862,335.3682322861383,147.50566140624778,34.6526217548042,47.573442838482805,51.57956915648265,233.49859807870493,47.998160538593666,88.896362489468,45.09542598688163,128.50638128058398,95.20319084180024,90.81601055727516,72.96760371472891,60.254437545948164,102.32278793807014,96.36361881859922,496.443443853908,358.5658638691529,80.7007564023594,233.0127474039128,132.0161328537454,135.4419025289816,112.89085246234858,223.7125300224943,54.96797276560836,91.62988901130653,53.71805602236821,85.07356814863806,135.79228618969378,85.58772332292722,94.33279635678507,117.58746551311012,209.53393964273624,88.33000194720175,451.5530845971324,30.130493095942654,138.74731818296877,99.63993219057737,121.4614603928572,136.8302589212616,189.84448761629884,94.71445643703845,55.39462521657577,229.13654305681868,69.38180775757093,116.03327423746386,194.03813707173944,85.56439193769944,55.951478088580394,110.37218371455309,131.33035569173032,82.73795821539942,79.96420968872499,147.33421478448417,73.37501963121936,104.0762224051889,146.62427329971078,155.55294500338056,83.69129077286296,173.86852546599346,107.42681078548615,51.897245934509364,211.68324567549843,46.00655134177354,42.294406378083195,188.30227361492854,97.88784222542816,81.95199524895943,52.21340486811274,99.27024567410443,42.38455395709379,44.40769718760111,118.26284903269506,89.12839687732574,241.371083062935,182.5561145250746,141.9995986081566,282.97910937871694,87.23329001343618,53.161474103699106,312.8366250631649,77.76706250677259,71.25079211100959,72.52755755634433,52.29443063765001,80.86668732130315,139.0340556659056,74.23707845659786,94.90975197981165,57.52509769404573,133.85278425298546,55.88972946883822,85.49511951756485,110.65572735211586,80.35031447493307,136.92920719323124,46.80145329695444,90.61951410051786,267.4820461831521,514.1007911352718,609.9741381165707,127.37485541771488,327.93684583527977,73.1987984545327,186.80505875025102,62.325880520081625,72.1434124421159,93.37111483272432,298.82224845593356,67.96070125340044,177.87599345348454,705.1800299832265,53.92646177237503,55.72057166978152,49.15503279602158,131.6241805637043,75.66724645399024,168.01783805937734,60.480053939328144,51.03822145074552,178.2846155852709,54.899364142969645,74.68522771928573,69.2963446317319,68.78361816471863,69.90723862325754,145.86673600233158,125.23343990567969,76.06519235860165,114.53782877090697,95.91417693819601,125.36639302125818,43.06786778762514,225.9662700631752,45.89509091746799,81.36130949012359,69.64774613718643,87.20049053426204,40.410423056657336,205.41619521663017,111.91111475318006,56.84783880044047,70.84723218757921,135.46502900646297,87.37998467201248,117.2009843213944,116.71143821964289,141.2533891980314,88.00419944856782,103.820494889885,108.98529376903672,63.037275547002004,222.46428890218058,215.51778379033524,197.7800801539389,93.4608222316607,42.42574928592396,49.4301372237522,110.7339676855077,95.26401648834472,87.42915375347629,66.94611075167865,223.14352459371827,45.08365713910058,66.45719079466875,129.12777408491036,287.8054539528495,68.10593352845379,147.39750889976077,337.7335295525542,260.8629278158807,171.53957702787199,79.57585959111707,92.29291855920067,78.30833656978807,52.75422270426328,85.92843156351731,520.0011721074343,114.2422265200964,54.86222284978988,88.02727155298408,247.17758729814437,106.7750579644918,47.77868417871578,43.09174675661669,117.44557632238214,55.46014551243542,71.31209190763853,121.4608885139344,116.81831157021352,106.00499573599977,42.371161997829745,150.66032581839144,234.21761266411153,191.32816128346667,43.332845056374815,97.28142244353356,107.58634621300519,169.40290117180572,74.90986716545459,111.22655216609213,85.09064789953804,70.19405047875796,196.09252122606406,178.74664346668976,89.34083087883027,129.35292732829726,356.761315989346,206.91106184396992,94.60670809651704,187.14448778309753,38.676718778643135,319.1598642438603,110.71737139324894,56.21727546958185,194.05251908102923,79.46906552620513,1500.3500173607997,83.78641357465457,71.44181206432698,47.00743429376268,84.63552267422627,118.04751485479797,132.12043271304876,67.83084332346934,101.35143897039282,166.73364337590377,64.90914315461153,77.67430519369094,171.02684377102517,78.17057128343892,133.1844567096058,47.76212302820134,87.12228783910234,65.32213685512544,90.8764380486968,57.52777864510991,52.02579715384376,64.04815081532914,82.43681748502651,133.47083296800142,86.27589380507962,55.12582695284238,65.8365658658396,96.48042455426437,227.85058488197004,146.2943103707576,144.51630058962513,132.0998191601308,74.89518548594413,234.6878004394464,133.12766754093056,55.115016601716206,83.12144593812413,133.9497788224202,104.71327807575157,52.98699892785202,70.493064301062,116.46535714903891,199.649157316313,343.0899682383868,77.75325034222533,160.18947189334125,107.33881226356482,185.91104643648126,40.2445266262475,116.23558716289101,147.21864943419033,214.44959536975486,228.94538889743964,129.72932600434314,60.48808521969552,46.21593700904101,102.43765239994977,151.97799858742084,126.28060947308947,362.4794376574095,57.04295481636308,109.90648126026159,107.79464415332906,89.78345493280776,273.3352746860505,77.43413446348998,104.34204385857325,100.33634369311065,90.42536424013166,79.99537950713918,148.10961636431972,386.51611378883047,85.80404858743795,176.95505594150708,65.82165582696891,415.4145967617134,184.11948315216264,91.39906072559094,115.4034117536337,136.4420434378785,90.25757593424674,54.50346251160469,441.43301445758874,89.19864295077099,79.73528698595152,136.61105724309525,124.63001934480768,104.22781228875061,146.90302682320723,304.3612503826512,188.82253696835284,94.68138534395013,183.313386372179,170.53128576306685,128.34175212884347,95.5117296962347,210.1299575280774,47.80251686493526,84.11658009026557,120.59747190543229,98.54914209486327,288.4641402648883,172.49303094998268,64.42828000402442,377.03014415620015,307.29734298079256,268.7454178346567,186.37324187175298,352.29195199089656,184.37280581504208,79.55068017264803,73.31515070012131,149.65341789724084,77.43797839526324,44.355073584465394,395.873673917433,35.43100331374179,111.62947055103666,112.24394422168969,75.83959248610742,186.38966916267557,146.01830281485599,55.03873029361106,44.888018389355494,51.54049223769717,93.66726634786485,64.0297152839883,84.46428139944027,185.25305231184223,39.767198509433854,148.01805864503316,94.74493523842186,68.99404328918648,67.81580844582595,79.04449683877351,166.89098199505574,71.27353034831026,80.24072721169215,66.89915149426803,79.21522869587072,96.3126376397456,60.48212068503091,146.7769974254845,72.74561858580157,124.22741416309974,90.40497608454812,146.43562424851223,62.58370157444296,64.40033219695002,86.985679895038,112.56197464191311,216.12176148499412,124.62310774646508,171.01799505342527,149.8373579428488,119.27580521438577,246.49894151979765,113.9019506178342,69.8585768052302,63.863548471112395,317.15014967951527,49.03430625338859,72.16337198210525,55.681139771241966,69.77272792501775,108.42588796131344,191.7225816923006,796.9573456158381,326.3444946562114,267.68944573556314,329.92753445365213,93.59392201522974,165.90858664476195,162.91202017101602,144.0173221242724,180.05374885639515,115.12898473437339,131.3411049269278,184.74862904643686,63.62568987742739,51.054990208705206,91.4457312022458,221.888868476414,64.41470877412323,53.16094641891824,104.80365358127438,70.58663929702135,68.31377054949267,78.20171184566016,54.68982991210031,154.37261538386517,45.90792008629809,72.6562528358729,54.09424189965336,108.3737333297042,63.49431939156081,63.42905958235656,48.75731223839574,102.9680993092968,94.45763554369388,95.43323955905153,174.4910142142196,70.49670384329222,413.892118134212,106.76228830670144,189.77268271894025,42.41775531522988,158.11031482804407,200.11793764838086,122.61233353151536,141.32272556210347,56.624353711916626,71.43469210619229,91.72556776798041,190.44916618009486,63.47929232671781,170.16176754299786,102.71887585505695,34.985103400010175,209.83143023593485,66.64922255503772,74.36755412684649,79.42567068689986,119.40023886356127,333.3527111857521,93.6127855830567,85.53705311010502,63.65068229000205,73.082963611366,295.0833244081086,105.12170640760202,56.8943267869827,72.85527322568387,57.205824355748064,177.48884542960542,155.5869066417523,57.66456220919744,437.93096213656963,176.17556290139814,105.7938683109217,130.47723214388228,114.31344071301334,49.487347432076064,140.35639223742874,61.389560204020235,54.344041880241825,123.74185905572627,72.8309871187728,87.30421219247395,60.09192776063265,139.3598621002609,107.03849375568757,91.48248489737998,52.79016314429556,351.5548549608094,57.45420926865311,103.03697505020484,101.11490504768332,88.15232662722113,146.6107735803981,65.89850487082423,108.25850573956599,88.1367188754675,46.149350209071784,102.20014705269412,62.53330634356437,280.764561380918,98.27197692430465,88.96766270857852,212.3587868859523,59.07932598370551,329.850251406038,64.62171411821812,147.71469232674607,130.724511394177,332.1794875123164,37.94928077473628,61.472501956534266,66.26255321965164,142.53653743716433,78.53482216758734,160.08761411809897,159.09525279866438,85.87659217503554,90.2357083694791,126.92446418420444,73.8296075900791,389.22730654267735,718.4247312050331,85.6651550243893,332.0144652554162,84.72161238721327,266.57469353191965,119.5164491798275,89.5303372313159,56.33842195525251,109.85344727983585,331.9295674675503,88.6262615866471,52.20844898942757,39.317274068724615,84.82789356997829,69.5221183311643,192.35029266329926,45.23893634184091,32.20065217421046,139.68002087337888,107.63281012879555,221.4040641171404,72.54689466962535,117.44921708337473,116.17449699171357,168.7030054955235,85.09694280775824,36.59086800710619,186.45068074029498,178.18484823026776,163.22495928663898,109.03905647451549,141.61957006021467,46.85840250440939,48.04177790089974,190.10851560818332,93.61929104182127,85.17478500572936,153.2139008702696,264.1216367999162,511.8297724070549,129.3300278298873,103.25036735674419,317.8391588114812,216.13231621649024,61.807665180759344,178.94939972887997,80.7836350636252,46.112903697181686,73.00056567045426,350.95673704988,107.16085300595242,44.007345304303975,81.31626193473024,111.39083431933979,107.21838930919054,50.05439523828426,125.49763800671217,240.64733200298534,354.2214194351737,158.36929652355283,79.61811793269834,81.10419714783717,174.53751107258785,206.7393437755367,79.83543163078359,508.19875262990166,142.06844139306497,105.01336869780762,110.27292037325151,58.08201194229554,259.15528306548686,151.21582933227194,100.78551569434963,103.16563930624014,58.9991762226442,84.77968976542087,49.453694566609,62.27143422369431,116.00812889568826,47.515116924480154,75.96246752591517,79.84963008892159,51.74525673240808,173.7305335884125,134.29299482172684,83.85964456085449,102.71682562835868,246.06052229205838,71.50795934845324,75.0024220008226,71.61344327812549,58.29064409453787,205.50557700478595,340.50244216669097,160.78249335574193,118.13956881562163,42.33299090402166,91.65533569133925,289.08893298475823,46.29238809460694,75.3743939358524,94.51741657375761,85.5227582346482,551.7680785674585,90.28019719732654,95.72435585946425,66.85017615303506,66.04550758341328,145.41583354597392,77.02088478355412,208.11312608259513,57.37037505351406,47.62925319446061,262.4331774815058,106.51962062094752,68.58523442459243,101.29608374205671,42.30039391037609,106.00535187767017,70.60243513967994,137.0799098828549,114.6519436637987,67.6600272697015,187.37623554255376,101.791842609244,120.94602055183753,71.4852281325405,50.99409703112259,167.1182140346543,71.31389783177657,118.2924585636859,58.446092055056006,162.36418738092937,77.0181452141129,107.57998427370109,174.89854907048206,96.7295884795438,97.58190998440635,70.66870761166453,206.5542090077513,192.8916825578275,133.91249419105515,57.19831758092595,106.77065436952857,138.08969715711018,77.32760117031519,239.76840811100465,55.10043900070323,73.36095181925948,109.69388011187804,70.20195515543168,149.45667032690199,71.20026438044033,118.05606459801305,242.1354036324849,99.66668712242408,261.7248224062204,54.74454823200289,122.14996762415363,110.92527244310953,149.30942801893556,67.14901037475303,49.6334713416455,96.89664228240983,79.56824897537221,66.61211498832989,99.02952585011032,101.63433651000994,112.06234993642788,114.15052935617331,83.49997695354767,55.546432691203044,434.6452665411718,549.2472772872156,45.900749109136804,113.33437559660887,152.60058433004625,266.87863193490676,62.40216406585706,73.0806219996015,160.136467302905,59.09919869542603,45.72833988109743,89.76519565042325,67.26944164620808,141.12632779290652,57.573117599558316,137.441468312009,52.00944538742198,46.03736239216421,172.53467378892898,81.11290330208321,191.49704716896468,265.69635204825283,125.49564513187678,45.03851847990776,190.6658965043568,154.77064163931178,80.12584662635149,43.21764068583947,352.8860903841391,63.686655114778304,32.757379088802445,73.74620392005711,68.81932961954324,112.95033734016921,86.31882817002467,268.9044645293362,183.94792196747667,45.74088834082649,311.5246016571893,140.21091580479936,74.54957803267699,74.40852304730696,544.5966402892609,205.373062337055,184.02382586474403,377.3996523964898,284.4859068216724,153.7855738478859,125.70759091473181,57.23228361318603,231.95319476068008,80.31036916968588,106.29504915451442,194.17108467249554,761.5482839393227,94.28670817423318,66.91278102337515,268.8642348510326,121.76388704054911,206.14554625635918,63.67343256375915,182.54517328981618,81.02517482324133,112.20458512200534,96.51068293547348,63.44030679660558,100.88671171049093,73.38279155087376,28.278726800943584,212.00444298488625,93.29286998112232,148.19180595144593,118.775730724043,122.88565050467531,251.87694091198995,307.67969113535867,121.11217873250925,132.09275691239728,79.67651324481766,68.50353766129419,109.85091013513859,53.934079995514196,74.82408205683814,148.1409902040908,236.15113707134205,136.12456102324515,127.24476434977879,147.90460808921517,50.56455101412793,120.26093991209565,99.30206750016936,74.66431499077716,70.04523257487054,104.74977823276306,89.12254526894512,131.4405413561591,38.17583782559517,153.75703385256108,160.98147724151,41.37446272966757,75.03952219571848,65.41781808325138,170.15874082390354,46.469790022793816,59.94753423064,84.89840408783485,137.52259521842137,77.42853404073703,187.8011372428996,98.59365436840102,95.52157305321063,187.21909709304526,35.56281388287498,192.53342399278026,141.90123323808243,237.17306286626552,62.85237665145381,114.98907080516005,66.78255981183915,148.04586155320192,57.56120842447725,76.78439073660803,70.54859067239212,686.5285544557793,229.91095244075532,110.23889816454505,105.63980505215255,216.8967303087037,54.75486865098784,115.76425179620053,159.87985382866677,122.0716080039219,100.55714957480976,74.1245230873737,167.40462256154444,65.3376300987776,73.90169929630727,115.92524145342205,103.67681603773585,117.76112480544214,95.46387146532909,102.06895660973105,80.4419503203745,57.30335406540608,145.53431004871106,331.12753930493164,38.18374655483021,81.56153252782988,174.8732040293817,190.16504970560717,137.30882170252534,143.6331646056247,53.62475757776202,74.23775389716205,93.61087501322878,76.17412265805993,90.89298610927194,61.84123365545054,86.13506664499715,190.91016444035805,76.41348253230274,169.75806277822295,169.03601015081236,51.687047948079126,54.45045814292794,162.2928871501421,468.21653187908805,79.94104324075685,71.53114991649042,66.91666847226978,75.304462522722,262.79993353058956,105.14709824272799,132.78162272838128,96.29248031157688,99.03604177671744,65.63949075998116,81.15906953591885,464.86385230905313,88.05440987362223,228.559755697239,145.05216916476806,67.91900351098401,128.25807170462016,73.32322795855109,60.214538847077364,114.95729280792341,75.82327822823916,73.42897881688576,41.19093251878209,279.9600678794659,42.09705104331985,296.2570422743731,92.27789289713107,334.35170849976197,44.07821428365113,118.57425463658315,149.33277865496765,111.66326549513137,474.662958251684,97.57674368837503,169.98846189954952,297.7941428357936,174.39140030859556,63.315683565466884,43.8794642795557,231.77512515627976,118.46526287191794,75.40593630098473,57.77628924455927,207.62678480758984,80.4263260277263,114.39491320315581,69.45446057332414,192.67937264722315,94.76451244432964,68.01418167054346,230.97887694113743,69.89520612780281,57.55711729412498,241.35789073463488,226.84805362049636,48.02701745172323,131.61967687244598,68.26494560772072,220.603351844523,86.1605472308084,97.67006516037695,194.9496524482429,72.53822023967392,58.30858644841983,62.39935568347206,119.06533203096193,168.76637053288303,71.5395390229548,31.663776703649976,132.76764709197087,72.1328661708628,83.89728906079989,110.67976359277812,55.07768761254901,221.57761474445553,346.0246979865311,102.72175769262543,104.76314959358133,69.47137994758626,285.9022944368449,293.0853549855154,92.35523012014637,110.14846424952941,175.94234921487308,124.82525074812409,130.60427727815153,66.63850447003544,130.31313486047245,117.30706708221409,85.71995747382343,88.58452045230466,44.99673231196445,322.90164192434884,67.27512567184151,222.98912978713707,76.40963936683305,181.9938704938186,61.697419185983165,35.17753026624005,98.82368134397046,186.35030944276934,114.91954212424777,113.10685053377419,90.3325128960802,149.12540510094453,51.4947668480613,105.8543614615681,78.88331193749343,95.27149181266078,83.79903547418716,86.96494938507207,174.158029040326,107.22216358765041,207.75541468854595,85.63576189990789,98.51083425174141,65.01911952122798,315.4303959087315,110.64611454937386,46.14324237154924,166.2810434184104,145.24942831882026,41.175171415776425,57.89388589560779,48.786501186515295,87.03430645967957,160.14546500043872,51.9761080072094,124.02636948387442,117.52111626930957,279.37931811771375,83.18131009431893,168.01396450317796,216.28639463370376,159.93616163139745,182.2267832398416,44.6751150492868,558.611319739474,117.44152843056354,139.04096069932962,51.34676064716039,71.37284972552128,62.39826352413997,66.90053901251473,47.54955490030833,366.2403543630341,81.91007707114888,135.79068514726922,272.5291850914729,64.60385373842048,75.2600693661936,304.7824331052529,109.39278270486814,352.3078571570229,608.0169638414294,80.01135824547175,82.205622441143,103.90336461237649,56.17491328788385,57.65352483983,73.06070231572409,272.6294337228152,71.73691905603273,89.43668172470923,98.38909992771104,154.48661465249518,60.314768674101586,74.77656110235212,112.7737552847739,77.02781968256392,154.86192305164963,74.35149024389538,243.3378956993882,95.33382424987394,54.43789405160681,227.60732150644526,440.90277377685027,365.4600237048179,44.5402361769931,306.9475683807844,71.99083953629936,71.71296299953617,115.49847652518206,138.08485084673816,103.30763615259711,450.3313137118927,125.45409371585268,49.52920914933005,98.9387213292351,145.01720791448722,58.01105421256437,250.22618605392424,50.4296880075063,103.31704717597553,67.63197390254035,169.0467712299564,30.764826289148694,44.69742503517562,44.493195509144,76.16360282166843,78.92409057225696,95.16187898220274,43.63209336987799,122.05783130216646,146.57413559158312,58.37939267916618,187.9995986556978,134.99479255989803,53.606729404399125,96.6381099960765,67.99637406628548,129.27091203268122,39.502134468721536,36.038385290695416,160.1995645836779,140.00145148544442,83.74318006694254,145.45569528398724,85.02046073404046,183.86456614284305,194.34477835185237,42.88589412961976,96.36427688064421,32.131955057953995,81.93815315692834,75.24750155466911,41.93149866239107,109.15640729922201,40.29901278067484,79.14142049345305,233.6622027489208,125.03354403581791,222.96261634192592,239.95135894183122,93.47312038249211,95.91347625456679,59.89957318109192,213.91991307499435,61.68714264675712,90.55240329172624,84.87692224440244,170.1017191447062,44.75989235330931,153.60226247518645,63.208170922272856,77.85402031467741,106.14770713506867,83.59362510216755,165.18749026211492,77.31152979621444,135.37593438969415,62.90704223407611,48.06447868810741,73.46686313824607,211.8893453291557,29.405047978155945,204.49256737801167,126.00158344296274,106.2585644635752,110.11568796241937,75.75924987574301,374.26311910844294,54.559855685461486,39.25452961645629,110.45186678186909,87.35528087930692,52.671554166160846,31.43062295707389,174.80999315558597,70.68524555416114,181.0592831056876,319.12390462538707,92.35098785365993,105.71007948254287,47.578287743667055,650.8531042251449,75.6603519082029,68.60568712012378,76.56006538298041,146.59387161559783,79.91159603174356,136.79570522164718,149.22224647391883,91.66140290736118,125.18620830997168,51.95682591024543,61.39417379317229,60.17710674935376,61.663877545727885,100.41698193090242,141.71504313721036,36.95946834110342,116.9263714045836,64.85206768458349,78.3648569407227,207.92616536586704,71.61013472993986,117.36654286562347,87.54085642621628,104.91242259743358,215.21883851797662,66.76801724028529,101.82381117575954,92.25235488774175,194.08446684025944,115.78169705665492,47.527777000048665,127.72053098462303,67.3068815300952,134.71802756463214,78.2182356614431,39.78858226424126,157.4263484899795,143.26963575710496,68.08880974657113,51.03924950945748,218.14752287773362,45.30558402662458,82.65089386407327,87.58873039305296,164.66894547413352,279.23281880355785,273.38975404431386,135.6519399101386,154.66577253254962,77.84314961108643,50.101367506329844,74.11893096928762,56.12095709662883,48.35993440174306,404.7407956424384,65.4544518074535,68.05628882839771,186.60881573929123,125.95794552256201,106.15721982818948,60.43706157480369,99.15223386408498,91.72371682561071,121.373913350495,160.15000954089373,196.71213126629374,89.9404059549784,154.6402073196379,119.14847274055577,125.33767573113565,84.76286644997609,59.24402333094505,82.09837780356764,130.0323361993965,43.31549648757119,83.80202694006562,56.01049247020141,278.57526708863526,73.23101121830032,92.49853213842556,39.40413574267843,63.145439858780065,55.82754988823508,103.31912718109943,343.76827322342865,67.175323739948,64.83267960597061,171.65964004554576,127.87423592792749,90.07105162823106,291.8825784132371,118.43855391034184,365.8208012268285,107.90821061557614,47.58437936263387,33.34185551923913,483.81372385626725,147.3292855232428,86.83071514438613,160.91878102191453,110.07867406511022,50.175094532569254,49.38714031013826,78.19929994720947,119.75539517834177,264.06784115776645,82.78933331977944,47.82356692367278,110.88785922392739,71.22903176982746,119.65809985298665,68.71950433807905,266.2606410541812,75.75973904842564,130.75254406119802,98.79026982738422,105.97839795010488,191.87206123061694,69.73943981138835,114.83635057424854,57.18106172551939,137.7489089913156,54.69714025002122,126.18886726378742,185.9148989843078,224.12680424963258,61.309626418301505,145.21023796860214,69.7346183420466,165.49504908069147,64.59643861539419,258.7428337284377,81.16254385740308,57.62860888806318,50.765678176695836,76.35159010814257,78.34257420782704,103.77467090820409,167.56406209961946,477.84192170405333,140.9421720182935,124.54627148691499,93.34656368355567,76.66640393934891,69.32593817102796,78.62586947515344,91.00028683876623,47.34571412305259,31.933488387389428,110.48018295041311,57.81838698309616,39.374487466431134,86.60795515914602,94.64579437462379,206.06496409519073,65.11741684826585,57.18312625950198,100.04853660699185,124.03175802490318,124.97159740997647,55.41358948342462,91.71609563888933,86.48353290239444,292.8602185232811,50.906844141192444,82.3415655839479,355.1620075895143,43.424260352992796,140.47617482893807,345.32880780472453,46.909521080597706,83.93243401764913,108.17400091437143,190.2989243054041,307.70169069385724,67.33258870242271,59.628454207974066,196.64419388665428,79.4218392866773,114.62630289704553,121.36201383628702,54.96484251259519,177.30707474050718,71.75324065874061,185.51747154410592,163.07203349098086,36.71397336774688,84.33852758064855,70.0976827235844,236.47285553159583,215.58972527103626,366.70260770933936,123.27886518175531,324.7486864441333,58.184587800512446,40.99355818337287,340.4752866287649,133.65441135104123,36.87019300265868,50.27236400683859,123.92076587150972,184.66189851291196,239.77018926264694,102.75248335861758,117.31526462823146,75.5809368067171,130.7343435725216,392.712308908016,104.28301269419954,72.50012275228991,172.29530665562,173.4010433022826,163.30866806794793,173.59904457375535,140.4658950181949,70.08753064675642,41.058695010413864,86.28876616020604,62.78320446185109,424.1360101723543,49.46760039018597,70.89988718771932,75.02719400401365,93.44136608148371,86.39497443864956,70.35250181606098,354.5135536227277,139.55566121792353,158.3737385920357,79.8481021041114,45.96473396794629,272.63127780682106,87.55044783651155,140.00185094111822,66.32097396834116,92.85335901784848,228.2375284600456,22.976885106173057,324.71487738990436,92.92499370212916,121.33704625607969,50.473742391102824,119.27809399858238,76.78883267928373,64.19958569875386,159.36230783209714,68.38393626665383,81.95573895618308,96.6160954028307,212.7974923079578,76.75266751006004,103.67360545878934,81.22808425245748,36.72827581395162,61.13468665544274,261.988866586121,641.2495843911078,83.33031626484541,112.09971064004493,220.52434958654615,47.494912062207526,80.28981516182887,187.5438708684963,57.99721482202454,605.6312116680158,132.51633897002816,117.43462689844718,83.36653207774154,309.54813164722276,161.30019752170676,52.114978098257616,32.353407751319594,87.27700391975209,445.0824838885744,142.5811312216264,75.01909169532802,326.68609440786133,58.72684690909044,306.36941808007157,77.48009618950579,176.68217690722233,158.55184223358236,46.928470554707765,68.70118354101788,71.58185529348155,76.80341372224878,315.0419122566733,57.48503757038242,464.7302218665963,64.50649181461311,63.23973539954258,104.27318488177605,227.2216691386736,67.73711890427967,66.6503704951998,56.30077336001991,82.41077042956968,76.08589495765571,110.57225626202116,83.2481021935196,98.05482116649824,56.79939604295137,105.70925144475733,52.86842743916709,139.91184806718826,53.079518745595486,114.21658853303131,191.43652897112597,81.56241684777207,134.58605099891875,157.96268318274662,138.70340789433843,71.81439099254618,241.3051801721092,57.497322802300374,93.44730728929866,121.41700241413375,245.1205217911092,274.64376484521813,88.3650856816577,70.43179315297648,88.15597727177844,88.90788950551708,156.63095224066075,165.72949211498752,375.7559250375637,51.77317152800973,199.32617738530647,46.30211565948814,123.93236253849756,385.15990100598765,54.33383047867677,84.43291443290674,370.43865756096625,109.73079595710924,106.39795219390821,42.09406783433839,120.21489047655182],"multiples_of_cash":[5.450590764160361,6.298155221057197,4.179794944828134,30.32170489821853,4.065572225478354,4.21459349429112,22.46935582752004,2.9380517625612987,3.1028910176815043,3.0279913161690053,36.51812362248119,6.1498481410811205,24.418773813171132,2.825740872215951,3.0293776107049935,13.034745394834315,5.525643970174349,26.64940564096878,3.6068931313740284,5.389953927430968,7.922818300539094,5.1780286331862095,2.4578085513135086,12.169605022988797,9.047838141088631,5.917203422358001,18.725214056860747,4.721440485836915,12.89329412590384,4.8259728532089685,2.514341130228742,5.757791497996715,8.62011703584037,7.420402006066124,2.41581471299249,15.264890771821605,3.9366928861860297,6.480951096946111,1.6712197537675566,4.483665764188906,21.11490098789141,10.22548637603633,28.126690813619643,2.555256211569623,6.467225654396524,13.378801030340044,2.3513786462632202,3.3098704498103984,4.867660200615486,12.467948109166002,3.4104946786058443,12.990077784430632,2.592991176252376,9.100569349130113,4.366553040935345,4.123709194712728,13.350851581277466,3.6706534153739043,3.233938419201814,7.372837559985095,28.240095041324874,5.109541604198856,39.71251911397845,2.524418343624777,24.490560793648154,7.664068499739938,3.26758504591668,4.9120412248026355,3.392648888492321,20.332763131260823,12.480035588113724,6.799952666016338,4.697494253778496,7.32168724304976,6.625283638966535,16.31825432440151,2.906833797103311,2.8963701597906306,9.595333455002887,1.8411976138154165,3.821201034862906,8.178068601124197,10.010070376068123,4.74408340963627,15.907327700879437,12.734675263311772,4.017300504870477,5.6234912816366,32.25888411439571,1.1678389708837176,10.799257748525138,3.8489284587507124,3.0867734790975074,2.2652673181407734,11.03645446327494,10.976061962181502,19.7307098641956,8.776109915493327,7.735925165260783,15.712046249552808,11.34325515062321,3.6457049009236746,2.041714322593584,4.059756659858596,17.28395277305529,16.628256601933273,5.669273777413412,10.469028637531736,2.1043096116748337,6.004135475859584,2.2374407492539317,8.184376735233593,7.5478244494387825,14.480361863194414,3.387162363773929,4.612669798728071,15.339686775010449,1.8872113652686702,4.937002436683219,4.893823152193892,3.3251446910177855,3.659198528671243,10.709607981892903,6.095576007053925,7.5761847896500845,3.915899670667559,3.8399899537121898,2.548831553479452,7.710638767804983,5.699412736783053,1.7181800181014457,5.83164566799366,4.4544958329752475,10.433264677440867,4.58045963511552,9.035345316396073,38.175506722006666,8.147114230677477,11.45206069000188,2.991768020634336,2.5904018904732595,4.462729168861023,8.981243983548925,17.461549187262808,3.4595017631511675,7.431864203943828,8.956769896313974,4.954199430554715,2.413938300122362,6.115336883040788,5.876327800215395,20.305159635855922,3.1765399323855523,16.286505871580953,3.81635474865711,2.5517818935465653,18.941209144080112,5.589755460436776,6.632497620615476,3.1925207902061756,3.1915961923386655,1.3031759719947693,3.919400863237011,5.905500609786724,23.123109248434726,2.699457915231199,5.96950590675055,11.354292510034325,8.754404680152621,9.29297054920692,11.849548831738964,4.477946317935715,7.412465526646613,5.435746471153071,4.6181880936913675,13.652720395495253,12.551498779372025,2.6081795708611475,2.4269308427322667,7.180595563113221,2.5831883682912813,4.5938045414467865,16.27472224502722,10.770012807629435,5.204067754809376,11.271540159778699,2.6411195385961315,10.956644424887138,2.6501563716533885,1.7828422219975424,39.897907958253256,15.65564472012428,7.721846637073094,4.745794918813509,13.867418911444604,4.420884823126829,12.106023915903936,4.183289996652917,6.520321360967455,10.797667984994012,6.350059863184987,14.20212192367032,2.766388285331652,7.040054980805523,3.8562230227056493,15.36824967888847,30.100849352434622,3.4029497421639547,26.07521057830406,5.5531373983124235,2.3553298353107692,3.836823061362786,6.558383328940329,5.780707842037044,25.68273348965738,14.57367806154545,4.358891381432413,6.469765785838637,7.204128141957968,7.144900121127161,26.69691875271761,10.400008253165332,14.630411669091348,11.885858911285245,7.027369441343159,11.578373548972909,6.0697438367913,16.459705044792972,7.598810637481148,11.172322266833259,8.921413620549716,14.418353740529101,1.8110875704995202,29.077092073260477,12.421552656546261,1.191989670257474,12.811156459670785,4.1134986926590615,7.670212321890267,3.901924930210067,5.999937712317571,4.600999651785549,5.102720213768638,3.066109108354659,5.099447351032798,15.823581449660587,3.827401326976947,3.5517586569160438,7.636683169356418,5.175258847153824,9.022241857706874,14.932574559736926,12.672411189373447,8.030374912441546,3.27863804412579,14.436577089220805,2.2391401786665646,38.5690854401403,8.872397210243816,34.91143191603687,19.144878219251698,1.1837669853622579,4.925710980559739,8.112424584907462,8.684342218410801,3.5934387441591875,19.787264298480086,4.863729922973787,5.908155675821206,3.8825391063873247,3.686562078482139,5.563018903804331,4.697497491753476,4.3546133622230565,3.1245967757710296,2.2124215485288956,5.7099193669024295,5.473474598301029,5.203313878653687,4.946648936855725,8.05824472357377,5.796734757093172,3.674986310378056,4.901995532098088,3.2216642766218757,12.054654051004215,2.788309471954661,5.404260180232526,22.311759512886873,20.745876244076793,4.681133900960705,3.574168670561532,26.518864270811243,2.588271012563507,3.0668713106439394,6.811308173661567,5.557570141235364,5.633197291210581,2.8091321877939683,4.727710805457009,7.515000285419302,4.6575833288599835,7.9767526189217755,5.999287208730797,4.5072132581398865,7.519019409243465,2.972167530575245,4.313389945536646,7.814602654396764,11.33303501254702,17.52638178247053,2.096694166358307,3.3813533266430444,1.746895844395322,1.9753122324689467,3.2194745075193016,7.416919553513704,5.770642013429969,6.546942290913634,4.693033890586627,22.509151299479537,14.970172713822448,17.403904519382962,6.748212879790845,10.06953844885274,12.586839533623923,4.718181613614164,3.8508601627319767,3.5016078063133227,17.938520916685746,3.485186095730402,0.8448459770903088,6.0042821336249075,11.758295366086449,3.6145112898858938,2.247753385572614,26.63466492590551,7.83059044182997,6.444378959143024,2.978962770206271,6.970872081733582,2.90277223851137,3.0630316658038237,2.196780701826882,10.835299312165885,9.034069894307573,6.867091553241404,7.428018832852239,4.464510297940076,9.25121084894235,91.93571013227495,3.8227746551531103,4.47334572817201,3.214963213033951,5.865990394238546,37.40020221279208,7.3261903548507465,20.95540973007794,4.114993461024504,0.8834651075812743,3.9599056192090676,7.229566824024455,23.376404457107427,4.741191965612981,29.10823819724529,7.376658617838645,53.651372958468144,4.847947179100993,4.566133081964285,2.579450592628517,4.942825883120278,7.70449706300438,5.238895227249046,5.859069849316324,11.87838774709192,3.4965154682456276,2.7667757615010906,2.9015780892926024,2.249688202748939,10.337466818717857,3.681321532974171,5.964315448674326,7.8907517824122975,2.1092796380263157,13.204715099142021,4.811357817354827,21.22142327829249,4.679004398218215,4.643204464530232,17.906173763334156,3.4238652466699904,11.539497891470628,7.47986637663858,7.486195471227333,4.963138330766635,3.84751833764734,15.554303475187591,44.86442274846556,32.990490948352374,4.329148158525216,19.80968726442563,4.388086074189194,2.417962821173043,4.355223781660324,2.1664653282497066,12.781804519380458,5.271185828580348,27.74403823397291,3.1762669210293146,2.27104516801104,4.575982994384935,4.458925465837851,2.052828527398522,2.157988248416596,3.5726494431489684,36.83851028619043,4.278185366011292,21.182516557516482,11.933832486404846,50.99651782402706,2.649988154460111,2.5961529617176153,3.067155554361082,5.063706911156984,23.053170420002395,7.956674389859738,11.841826174012189,7.579729877114136,2.873741766756202,3.617459994954799,5.368698106331635,1.4436260593121264,2.9864455587820125,11.029578770844438,2.668931481757462,2.965889569908678,8.670500494369431,4.59457649155117,6.848395931749552,5.544618612676992,3.894132920975106,3.880433924343081,8.19018850343587,7.773415923442502,11.156509781753618,5.165557798636183,3.391875729178617,3.024971662142006,3.3350174541899986,11.23678994399821,26.603159181104598,2.313965265264228,4.260008653033977,10.289824953897476,9.070448432837795,4.141626932759246,4.187964622615025,5.190706964924211,3.5721339284780065,7.973925448708801,70.54934614825179,6.932787752945145,2.4879075851969272,3.9793762599171805,5.479594490274572,25.047739651305307,7.857853310519473,4.388191277226048,7.879764580530576,6.014007770828496,7.832633847761241,8.598510713273864,7.052849586178912,7.6375440676949955,9.162337452661719,10.025785243861487,3.25722115994092,3.305499296704833,8.951383092297936,7.727710461441971,2.5824867107592455,2.849686679781237,5.542745162517879,2.016305389772612,2.788940458520961,9.387233929840118,2.19323236196335,6.519260526522514,7.591562500193767,2.696877406051286,5.014378201350682,3.644613554429006,9.943666869353637,11.50415784929927,14.311095043683292,2.396389428364915,34.297326080066355,1.5801925753419583,3.0950849661870667,15.141597831869356,9.812699782400088,9.349809741149146,16.81871211820531,3.2585630782182164,2.725225868141334,41.65989020760421,2.264807418809,1.473516871686971,6.655620460454873,15.604441820991317,17.303098715286023,24.728420023281032,5.282626200734132,3.250849331414958,9.638588180350583,1.7852116957762598,32.66066044075751,2.136091650937832,9.405634947172725,1.489461942166851,28.494959897978465,5.113966377193255,6.687773459113797,3.3577863077977814,5.5314057569530775,14.754762031225471,6.030533100887878,6.257479892708042,3.3544224639450184,14.323940485050738,8.790040854962877,8.369178587827795,7.996489434125907,5.764610019891349,1.574321946160018,2.6315105880544585,6.999753187635368,13.181658371948357,7.200122817357458,1.3312949619661323,11.857486993547939,5.574205524654781,3.7185316296458444,4.093838108962899,7.990976846106851,5.959899067693882,54.24511002029087,2.847497731630952,2.6263985101857905,5.302160085910494,5.965954857189335,1.1464370021256587,12.357230536945002,3.7957980377562417,4.609248639209138,2.909648172874583,12.456594922328941,2.3402981344719875,22.16998838015177,5.111623959648517,2.7306988225866142,9.333436688146989,3.19185576256105,4.047925185569189,2.306230229319496,2.012925990662847,13.130250896136257,54.79501044390421,5.81134161944384,4.283655118868701,3.416787824727068,12.48091910369392,3.344662147475746,6.929295345519771,9.18579556625867,2.8507667261234366,4.936864230772572,6.2690619633151865,4.072981693174459,44.72872591271196,13.720397161498827,7.133740665870146,7.962795644782721,16.693592703741306,7.239943938258814,18.653809971552086,19.071035128233387,5.523257926505634,15.054856075890681,2.382916369021452,3.0670420735044113,3.7067393368369714,3.0217958490661583,8.023152542252989,11.889773309615327,3.762689412049131,22.46933713901153,5.098475909760768,6.424216153181076,8.208686488759065,1.8787672115357215,4.480399584375762,21.324715946139374,3.6801824760389334,6.862855612635254,3.036983999079272,108.691653032532,2.7381653153064147,4.793169348204848,6.75007125442531,4.967116322400918,6.361255287715586,23.251851592148995,11.643117365810348,5.101616992434339,11.472758929280133,15.19091021127047,2.1190481577039715,9.917922824270425,4.9355524316508665,15.40465448331421,19.37797605000871,5.384645592255817,11.957679749194146,8.367486602486197,7.322082099512521,4.606049017155822,4.650231074997237,16.144193993362546,1.3915618480376744,3.787698289634717,3.560532634315767,17.796912306509494,2.486139547254461,9.803758437801562,25.292103652765867,10.662237389303083,2.0917970873499683,7.434431875133623,3.5086487956365535,20.21596603830783,3.2518995928557284,12.444286083024334,6.62668310720569,33.77504155000286,3.965596896189044,14.927300929350062,9.90930605310525,6.263588867149731,25.631801671029148,5.522474545344792,17.67789084106252,3.2500806581305834,8.013977269779906,6.695825759669882,6.633493126781942,12.117170782138254,9.404799291410523,4.857521033693191,7.775399891700232,3.3697071790405166,3.33107755116711,2.522064801155124,25.184157241127053,4.079255880274863,15.664140472748668,2.158207288357285,5.6283889572833985,5.587323277127741,4.879306511658781,3.700964825956467,10.558084228703272,5.79226111057243,44.05631921551828,7.920343314959932,14.545374828574449,9.861293997668717,10.070910026980725,4.056031013469135,9.175347572145393,5.679803212772624,4.229823050152573,4.613238672761276,4.63507558317769,5.7703976582777665,6.299775456824329,8.221618894622912,2.882818625255111,3.0205434172250087,9.137458702927642,4.075328439051606,5.8921297586428345,26.835778324925617,13.886905118257008,5.694280506386708,10.196263061835445,2.6647969465336705,12.504402235562923,2.4006561001221187,8.020134577085596,6.847745986439458,4.005127245508172,3.782726949310878,11.495393164781127,1.9552253720782669,10.069486165674446,2.7668378307686887,16.197022047190142,7.231392420430624,6.030542747576859,9.379542170447827,25.697457323034882,8.870252031690411,5.038971242769586,4.022048320020183,22.387084901277728,4.5313191724076844,5.787473406162361,6.025950689975593,5.925081846271682,6.1469424556929155,3.972333811598142,3.7474847139779044,31.59573920677719,1.8692608272853286,2.6434516415262084,4.030087677721084,2.4965886214436983,60.16073601426707,8.12466425859215,4.116206896285632,5.1864654669819235,2.688739951656426,40.286622793028634,3.4221837402288697,8.696172435293617,12.556428124774147,26.6356072814765,7.577564347792272,6.634906390844697,12.491899258609097,9.424779315912243,10.087736885967477,5.040347665354652,16.515284387387798,14.617599357974209,12.124529304409261,7.053419419611217,4.262762759030535,3.4921468272737743,9.854566182903016,15.276985662625933,4.111823618021351,6.056844644147854,12.958330724937984,4.453542499927511,21.037302046543562,4.9779524726703235,12.09826889900636,3.951623569338551,6.156777953135982,7.960712529488,3.3967070064691427,3.4308944278242763,2.8329018519425726,4.2405635286892265,1.3430649649657034,5.991254894933719,14.873903464435243,4.232103135094179,2.8776829535653126,3.570086925517559,10.5095155773721,25.75347538433657,3.534682152004219,2.053901809655145,2.7824431763830613,2.907764902022491,5.199025646321593,15.991626150941531,12.803255100482934,3.8942758042624184,17.44022798329039,3.4527615356903336,8.797431854325156,2.465291430189328,4.5434239313797065,2.4358283584147475,7.0261770947518984,6.7554039282281435,2.6213285011291876,5.322364148194029,4.412351334891158,5.2719976902584165,2.999611914704174,3.7808447763091273,6.4238480580361,2.5339434916882,5.363113012113189,3.725633954689681,7.155747896154454,2.573229705419501,2.2867323378718214,11.379043116304945,7.178552249736566,12.257232186999842,2.0587115518792265,31.22069409987081,21.504231646274587,7.3091237772366835,3.3696385184493463,9.853588069354942,3.3033096520781533,3.433444964864609,10.66512330807041,7.751861242236292,6.519566575475998,8.41257676077763,3.5429169742303386,30.088699174513685,5.975962736319348,4.165132999012222,3.8240491582428207,7.135686628812598,12.37631023146087,2.435096534836311,2.1306771393510613,6.693587775650887,3.838487266751565,19.28992109631575,8.659512109103481,3.0612193802057064,15.555385265631944,4.273795742857147,38.087453726915555,2.2144204624293793,9.536969305903503,2.924493198286086,22.134322803352504,11.094775288942726,1.5985778086163964,2.5101089816034565,9.379778914011293,4.977460904708837,6.7060342655449485,7.988267832874539,3.6484491736633737,3.1960199350544185,7.337432601026066,4.145133567435054,2.724070601052263,8.100517165679525,11.048409966980495,7.089735078690199,18.955731109339823,7.459811592104804,3.8208720947017345,7.51364483847755,2.284420577838434,3.322175832838006,8.215402311523393,3.741303438736122,13.364986426827446,16.01946941897511,3.4491181128234154,2.8582044709365633,15.16069222930589,6.575440737541187,3.431322094864568,21.973541174979378,11.03189357593411,5.1679898967913855,7.278050503824264,4.426285098184378,4.544153947035922,4.9596124772703565,5.467243822919221,16.52373997443615,8.005257686089113,7.835279830927963,4.019869270347261,9.941779780553194,4.402544151318906,1.8112096510871734,22.170935008063406,5.130552519180203,3.055178323351669,4.854671343483177,2.3790219292391956,2.093852488971329,5.05143883849702,4.971553322097786,5.429653773593398,5.00294794224049,8.111107118207713,7.55349933887449,3.6554513224210057,3.839192291578864,7.790353237853972,8.299344552277672,4.590354663344134,4.582542234356277,9.085798105476753,16.604858729449564,8.226067149007788,4.011151300352061,6.025206599354613,22.09170803102642,5.658631117755033,6.344097846036531,2.730780223150393,11.214850547724236,3.3288888015461944,9.319751414767373,7.684142655117822,3.410226903373156,4.070027161943887,16.771077644131548,8.399379748789991,5.129255815327836,9.895837925341699,1.8937699636428602,5.500348344508273,1.2189140928004558,21.815497760359975,3.7204120281290476,4.074925453769581,4.424320125280409,3.405675909107861,3.475051129059926,1.7139855818833902,9.001633074884147,7.355057174065264,2.1648795592037104,7.376174806877565,12.290425952875049,24.277821209839676,3.782653335949161,6.013173715828394,2.884003017224239,4.643131645767254,5.382659061985322,9.36088495993297,8.870544057526118,4.371759988658963,4.423434795187787,10.187837993069603,7.020963801582315,18.858884587229525,17.090409983326712,5.806029888566209,2.7009041757908165,6.066694485874263,2.0743431836587938,3.908635807405309,12.849741064821002,14.666400914002773,6.304349049872691,1.6007789262056673,18.79656703027627,5.954781834408105,3.409433320524085,6.800872755230494,2.433659365923816,4.758221678495825,8.734059031754011,5.340903594291354,5.347555232837503,4.464864382822333,6.437011011440939,5.551837297729739,2.7302084913013625,3.964227175662094,4.640388872621329,2.0540685663067095,9.187036673638802,4.487079626215025,2.7852327075142784,7.740253660330757,4.335333406869138,8.632674393319089,2.57943256748825,9.527162958576596,2.7482319105484025,5.790919770235619,3.136763114523984,5.153175357525162,26.601813647926466,3.9104609103214267,8.690265787350631,2.3487001210480236,2.045291140595786,6.2378184006690764,2.3466595026886226,28.28432444724744,4.692080783048132,1.863292636792992,3.6271753791112666,4.311606891469408,6.819407223888544,4.915025159569946,10.262195759017244,11.099069545490755,22.2888755069432,4.317570216533889,4.1402933147692735,4.081957822229236,26.73908485507284,8.647341408418171,5.759067984337186,5.865150250448487,6.540551751956304,4.094156096856437,13.54535376299322,23.847869345113516,4.451668295972832,5.353969392966641,25.278791869559477,8.01958196567334,2.9523807572883967,11.189620754538197,15.080516629770312,7.065222914350106,3.236242834751527,3.4157997334313634,3.581696050252914,3.7933867682752056,11.249205337509604,3.820969645911572,3.4021191501290757,14.841615161953607,9.503607508953182,1.2051158878985309,3.3910458738099933,18.837962736783265,7.468349417968586,7.984246023913458,3.2597706577044794,4.689153910219784,22.41448474529522,2.578559042179006,15.815902848098725,16.059648890728663,6.123857655970226,5.440959528901766,6.734458935215869,4.736916058474726,8.06758504964153,6.25660215544622,5.375473911168842,4.617342438144503,2.1074255371031545,3.0488909767890977,35.70817738581977,10.531809051670303,15.098493971810846,2.1782333098049413,6.832930799587055,9.94705667009448,3.5200588465519496,4.583184910574376,6.982602058888253,2.7433545760566047,16.311551180597746,7.270322449922979,11.7755899916664,3.189316458085885,3.773368104680917,4.293169353991035,2.292598701538692,13.496860392863253,2.5408676336207865,6.336367149809021,5.828952420640173,7.716695988254147,7.440712852930894,13.892518739470953,9.612442802733796,3.042825445152777,3.92276667333632,4.041453521008809,4.666997984436633,22.101142189032963,1.6771004778342302,2.3376621854893456,3.004490385741203,6.489989793129188,1.9576526084136652,27.70524029970962,4.728413384618531,2.8922699653458444,10.078931150170673,26.084809583482205,22.078857950435598,6.321856737738593,3.3703011220289154,3.3333969890008808,16.34982436210986,5.489625544734517,5.1686003230156565,3.2986971922989143,2.5140484276103225,7.934275032082552,7.291697551726431,3.2343204893298045,3.1659206814011474,4.0939794725186625,9.22977549663322,7.895944715483761,2.547105612430809,2.897274552757086,9.806087104065629,6.494178607509521,2.4212955462209256,2.7974351688969086,2.452590686714861,6.686708452707089,4.3683872177306196,5.907970364523238,1.8700092017708565,3.4900889838240827,4.371232207026734,7.953701187687249,10.492205455139496,7.525989875706298,3.5917806132294356,74.01458442136556,35.01267869012672,4.214175327155839,2.86674865009453,14.887818086604932,4.468656022461677,4.144181332844001,5.578234849474406,7.107470200757014,17.91991101958539,15.160080380920476,2.3450852616823665,8.361979773783244,35.31231203673197,6.070675090565298,4.585782713727454,3.7641698880630416,5.739916980680571,2.389522349272999,6.986374613588054,9.175360347200597,12.046661894688281,2.8611613780682665,2.809147075039876,3.4400015465099636,12.127339139876922,9.644249720276658,3.6969086871868053,6.41094448733141,4.802706221291018,4.676366221260948,6.129944068945064,4.393493347122202,7.566352794825105,2.571593871191138,2.5883983815450464,20.163669925279432,2.0949502520209395,11.32241798090897,12.239426298097163,8.258921043032538,3.407470888220296,3.9803270471017473,1.5406663130330078,8.8107880794431,2.550875401775902,6.149394548640866,4.1021175950147075,4.19251150256881,12.761493925437637,13.069811264774788,7.839766994362712,3.358865343430891,1.9222897161941208,11.225421570248677,2.681800214051861,2.1085984720091613,9.795281955936664,2.3392576805846623,4.216914207032783,19.982562173865336,7.0494273268395835,9.205005090936496,8.913090598850795,25.440177581669406,6.011734995235769,15.154997968017579,2.5635570697741095,6.11446761420661,6.253796578657947,13.673518191041886,4.902318627186203,8.729819374348954,4.098778522123634,4.474479413852254,2.5056440714408903,8.254034896503713,14.894975546178808,5.34649286152533,6.844031528567397,6.24317608033741,1.5513835727863328,6.624734705127252,2.523965794033433,1.9073849910415033,4.439991117962489,4.7129781403312005,3.1048117611207604,2.9531216324604093,2.673587195074245,5.02078507382951,8.180965734538502,4.426230465351376,14.156814933143272,7.464058424719151,15.463769980423832,24.9341179880543,2.250235900477538,2.054811240033743,4.745203722922381,3.963071965953933,8.271690294253863,7.250928706208355,11.71409565285646,18.058584518256417,7.683056460032406,5.693075844861027,17.216877161241747,18.601297238652872,6.427882061918065,2.6640331799225687,3.4826306797585684,11.830785337883418,4.009839720048449,4.789830314199594,3.6015146746434312,3.9195478608366754,6.919463077994371,2.6658769604678785,14.3792414226322,4.495257265640488,18.852981764654494,3.3554473237559805,2.960171151652409,4.34610501723105,2.3243624792242477,2.960653254575275,7.055373405670184,11.400103986922945,4.434995414869632,5.468517926833347,3.912791176453702,4.056706315416095,14.01436962703393,7.26262284752906,3.0636494942857624,7.658942485956889,18.946916306848834,17.720903217941366,3.1645310169308596,6.77565598990199,2.5287182012095117,34.074500678731546,6.539254188852015,4.165240092956546,4.912821180290451,3.012951580103582,3.818342527408116,7.628737473290856,26.460764631788095,2.1428333644848703,4.321473552160718,5.89937409324822,2.2404668401949417,18.40679922981051,4.380587668006067,2.8629914278348316,8.844303820717055,10.652718622997538,16.96069055532861,4.663421708491029,2.180122553746043,5.619215245660635,5.821635497703691,6.128401596994092,2.5884821278393257,4.913306485016343,28.49905366702201,4.26477182881396,8.767846339995632,7.228646364965053,6.8711925072263815,9.915621432558288,2.505965019577585,8.939865061164955,31.98961895342904,6.827110019274148,3.5592333479272464,9.059928767881138,12.26254189708158,5.056506919380269,4.701589265910413,5.37906831318058,10.749859234529856,5.657293824986528,3.6220013588676725,3.058641399123531,2.19999972132864,18.787466708330456,2.9197794087917,3.2779890979471813,2.9102781863818654,6.223044287855968,2.3549219724027344,5.495842984343153,3.072593501606296,9.948227332054426,2.058812299553516,4.952105256901089,7.595453337163274,3.8120684293477223,3.378992099208578,3.168137639961092,13.80394061397897,3.5274830084955644,11.853393617627423,23.043223978591758,6.322721003105744,8.11120483058486,2.6719430763658076,6.288997627759226,4.778325632654198,5.5083190185130695,2.151241954925975,8.77771304888338,2.2631379901560744,2.2890938824662386,11.829682840109065,4.299676564265315,6.774333709734457,3.6466488145946516,4.241411373080271,32.73057059613668,5.991551622860056,6.427761474622387,3.2568256746120907,10.367670922595888,1.4739786067107912,4.261106456899643,4.4889492263504005,25.841537921311563,19.737384711294837,5.5665089785264135,8.376569654668803,15.985965992579079,5.815739502500525,10.284855530004691,38.02259493001946,5.2889348817043285,4.339962609808521,20.384503345911646,3.432869388340984,2.6605400568547575,4.783581105368684,8.222430848104384,5.2523194153392545,15.98778981954821,7.022998049643874,7.473139922895625,8.250290395748973,3.2311550588768947,12.215332609074476,2.8651057922552092,4.161582309613834,8.53875878378264,2.8558208475257714,13.789975023984221,3.1239343364469057,6.653080329153865,8.499627360331885,3.7789729255234,4.560538696768568,13.388988421810438,8.174092527406396,5.295325887227619,3.5630122865675533,12.235586815205634,6.298551628858206,4.1346705909283745,4.970116270059775,1.4478725374713548,5.95066961229731,10.368705466114836,5.615469683935531,4.621968984567925,7.742604661642377,6.192704682250542,5.373211598803125,18.14103631691443,8.514850490552924,13.75151795918226,3.906174813664025,5.50298855308498,9.080160504356407,1.7335950229601846,7.059947348939354,8.300799343269464,6.395959182719736,6.151562940086321,3.791604039792146,4.077322196941594,3.621380681153958,4.4395676428466135,6.695585538400517,11.290845581033777,1.9148406265966065,20.70985346998304,13.111153765119003,4.386764612251056,8.199001386672897,8.771841419763978,2.133051086706065,5.040746899798381,16.006685797296736,9.502977170101857,23.959703513484204,3.987552807931674,3.6279308923211016,42.96505687129682,8.76409750542842,4.50757541612567,4.064076494597529,4.745225493705825,4.22032346920749,4.9209123197296405,2.757493051737561,6.249572629926241,10.492828577258173,40.61336191977965,44.93004771271891,11.734448343256776,7.037436279350128,10.768899567712536,2.3493549548724935,4.324261313389324,4.466677765745964,2.5472841650039815,8.217680318132683,2.993370975957913,10.968374785954195,3.1946027784184134,39.34243458153432,4.124058131913573,16.228419993165474,8.639944387100476,3.473404281650821,41.46821877401977,12.739667280724449,4.571268832697007,4.994817024367354,7.291244420950193,2.4003138367759203,1.8334189433603763,2.3512076192728006,10.042363184030535,10.470585506939047,14.207246568464774,3.9519745097864014,4.875303551517255,6.93561012948231,10.234118173351364,15.911919320964929,9.113044685645297,8.476836120929175,3.710113635339614,4.566925949691954,3.591181698808831,5.595547606568806,3.7270854134436355,11.509725758358135,2.2409664633479562,8.753615878015806,5.839818858165246,3.937822300336618,22.089662429143832,1.9797946602607328,5.7924164400725715,3.8473731745676223,3.421433858477993,4.103375264003952,2.810275144247835,10.072522933990285,12.830838679275638,2.9847039327233267,8.840580906048364,2.5547243320038686,6.136611276843755,15.673681125659892,3.2220301069393638,9.590255625056182,3.9606375953481567,1.923663492373617,8.503068821903478,18.289222313371905,14.311938001381085,11.026583270699112,4.559193748068895,1.836006780391297,6.447439138765456,5.870336463117259,4.304790214272497,2.039447523902506,7.315970718557709,7.871151238410493,12.354913622548684,3.178383804371967,24.352105885617913,29.047370059744033,5.453357640980992,9.004214924964618,21.733292638147542,7.256199041233732,7.232526112512037,7.985460345433826,6.719434211263455,5.287753840603345,4.988558467822723,7.04369267229779,7.016935944994284,7.758620491487116,5.299173903742318,4.078198076705227,5.589922672642121,15.893825045331473,4.264374881470789,2.8689708319914575,1.7655964749963051,2.6341264102384434,2.412424475838978,7.646103756342671,9.362788837165374,14.597167297444512,4.270799361049782,12.559352819794281,21.133673736067426,20.940031447716276,4.373064268207975,11.88176426625902,6.077160443225255,2.2523559267055178,13.898660288426989,28.619370204923115,12.712711268527164,12.486756530914949,7.068987198906709,3.438090403191149,8.505710800863666,2.727403084902821,14.933483390231123,4.370255309380684,6.237759268805189,13.613560253850117,9.671769177535632,5.997033250733368,3.7521385598743526,3.3626834897762103,17.701612947640044,6.32214822036502,8.060127206535336,2.3206766055499726,3.594276711861972,5.573257957485458,5.699186639743669,2.8722190241156405,15.864849960439953,5.234847210116345,2.987569111950762,3.3260797133469566,2.856449637613041,15.21296054736113,37.916682810171274,3.330933589241286,3.6747260821079393,3.1830430233174347,6.685564420995218,4.58176376592329,11.872807643498048,3.5310892749739855,11.92711328182826,5.572342467342399,8.09826800445612,6.955297121589239,7.992680895617913,4.97060533096643,8.80879100665151,4.4842278463413345,4.699836568041613,5.472125477731894,3.131677794607874,10.34556269394484,1.7366864599768208,3.2019149254629182,6.496410396308459,10.893390597998312,8.03960453330381,6.445066961105513,45.03331868108108,3.044777444080199,7.782946537393264,5.485695532172321,3.9695911009248017,9.487825445255558,3.287295758542228,8.82350502646171,2.83215300356792,10.276475588596451,3.8470898636887005,2.0737779637686016,7.719044462699244,4.950214338657055,3.798697971055608,3.1062622957397568,2.991788711401546,11.995878803439185,7.404899395022469,4.993328279959382,7.431921753910867,5.375624275329317,7.535777845895073,5.152944753493891,8.758454956763885,9.744515243311582,17.393960572722055,3.8945746528183522,7.481060280249151,7.680746883920963,8.841082956679518,10.369991281607478,21.24203903524682,2.637924490558797,3.173325992404872,6.141424627231376,2.7126170356938135,1.9124609980539193,13.61032379305483,2.5327663621301224,16.084586285652477,7.660295119874138,2.7704268677619397,1.6650620726991423,3.3737873200783532,5.4427989337501215,2.218392090521275,4.269439034950067,14.301272830900091,6.52855443735162,33.11821157567498,6.062591702581788,12.23496551695948,9.44191039195524,14.524849583781206,0.9370316821239553,3.6069169451088565,3.9140496706390473,6.690070138462769,2.6711559307918105,12.887002644737017,7.1139364143241055,1.5900698164480902,2.707689526443776,3.0836921067671583,6.744389564036802,1.977458168538358,4.165029702637567,5.193551321569978,3.13549547337307,7.018241633149471,12.119911492306079,5.369965726308647,5.2431311388135535,2.845421583627562,6.060294902599426,21.45569538679736,6.444555276891338,6.132046994595119,2.9299967110055363,5.697592499703101,2.7611162036023544,5.687349151872023,1.866395781339038,4.435901829949977,2.340639610218723,8.464469669908905,4.087701899177872,19.8562022285617,32.94250067708013,12.364317815032223,4.9376130873692965,6.097363463871454,3.270981242058733,1.9785318955168354,6.454991275341136,5.296687323662258,2.1671100768037377,4.819552094252999,9.272657271509622,3.1861451440866295,4.61095493498402,3.4836924197217973,9.019654821926872,6.176315563847374,7.950113356012729,3.677492625783778,1.9760012859594953,6.925599403995147,2.6680612358659883,3.3578272102780082,6.179151270815141,39.78888731785698,8.634619872153397,0.9712613621817312,5.825837619169855,4.611644267150544,2.4809966977530706,2.2289471893033306,4.0294989862290915,7.199365651954296,2.606207723918329,2.297673068121456,4.71594715788486,1.7553273322743883,11.631567661496447,6.164699584280946,7.090913187814296,4.186467723974856,3.169774852241005,16.877836461711002,7.087604620048122,2.7128346515691995,3.8938059138940466,19.00688112602796,4.059150224923315,6.963377608034764,9.682921588627991,6.695244816471625,4.503202153326724,24.250731400879207,12.31532447322988,7.129548803234619,25.7161576293565,4.914426175250235,2.9180877821365594,6.93276481976204,6.877587511061007,4.623886232954738,8.836193963991471,3.2073784355085055,3.298958321970076,6.314239018057311,9.588300696100717,4.61326364846222,3.749503633217362,13.331504613658892,1.8459330550574642,27.078715888284833,5.977427241516899,7.67597796057197,5.4328481747848905,8.66867874210675,4.701671518996265,2.697000368082722,9.50021011137181,4.520747474102225,6.002661678542328,9.710191404255434,12.053837259632214,9.420221961194857,12.070139351561249,21.832156043308398,23.054245170655587,13.786185304226823,7.116469233130838,3.7273186646123158,7.0861829850744495,21.900514864313894,5.330467070503369,6.6637534959831255,10.47155742308415,7.107014566538168,20.578615169601704,4.862920430782201,4.676755416706689,2.376586200913883,8.024848573183498,5.130032815115849,5.747458344361118,4.517260205456064,8.677458430829459,4.207225676624426,4.317465850650488,8.418587797337535,31.114205765144852,3.0285252721079416,4.246186532612635,14.212615334571778,5.755013388465095,7.041952199455049,2.290783579657353,2.69952963097249,2.2464933610907734,3.601224150327783,2.5247278997853466,14.885220715812288,2.2776382276096205,7.504832276436498,2.657794902030199,9.087574724613926,2.420284471696936,7.976118155871282,13.277203962083087,3.8274607542795134,4.684649744979165,7.896080115776687,34.47183050780733,14.507619872443275,10.782944897357282,28.237422320358732,7.9475533896986565,4.330964113669267,9.212437457445677,6.213828644494692,3.8690967028157925,2.7581121730414964,4.450569477277029,13.922764512357524,5.977743246735419,7.895195403072581,5.730759279118673,1.5964552502468004,3.6861191180792003,12.535359104186115,7.198793144025898,4.313995571072243,3.674224328874347,5.678725590661119,9.528431616408094,3.9634699900687864,8.471983847815318,2.0985491702238277,23.356313670922393,5.303486756125894,5.601935831745456,7.676544225525485,4.040910182931686,12.7230246813636,8.911020647378345,7.3505318664693045,15.769600965832232,25.82646187332251,4.786783075112136,9.068611450714048,8.04611892897651,11.979376468793712,2.1933354337713347,8.097491133200977,4.1893133559173,4.3012047386500045,4.94994926776962,15.40910834281359,5.744357074231121,4.7621039861631145,3.7315692916126184,10.238540051068084,6.5553177151189725,13.367293544104491,11.506333199228784,18.068189052182593,15.752401373852633,4.284085265361099,2.083398203761998,2.0378457996312216,11.969857365581838,3.413927431561718,4.8786847891015,5.772802223775339,2.3997465285583397,4.242419850788331,13.212976968317491,3.5930049949682856,5.346674653548285,5.766281464044555,14.15901100210054,11.309595108414,8.252152763876214,8.011941113366644,15.422697869004294,6.059227657602515,7.199915956817028,18.069635592890535,3.9373580499206158,5.895387304595104,10.223861415216104,7.770104554222193,7.7582757575883345,4.495599436180726,3.0199909070422546,9.146506283545099,10.93027649045118,8.28213890097204,18.360641616971854,6.707653663146004,5.750407786803117,3.1256295318394454,6.785383718691685,2.4720974698645835,4.727900367664185,2.5561858905023547,11.294625306122482,1.2665343553684876,4.440480524642531,7.230784122300443,2.555108208325437,2.995418267114702,17.386365175670875,6.322438760087017,1.7581465872679214,9.143190550284867,30.22646317605425,11.574088205839493,17.47045682561054,12.384429846222693,8.899755679977599,6.596412100098411,4.723213036284614,6.141040118962344,7.212875034028006,8.517551599806062,4.728896701351935,8.629357981196838,5.522221157750633,3.5605152517798415,5.162925961323779,23.00942101449753,9.170722655953528,7.397794919226004,4.686419559766892,6.715356791058031,4.265873694296224,4.072430933939202,3.7855905570188475,11.460808610556484,2.7827384406156934,3.871359733909159,14.097465155223725,15.89247769438995,4.994555030090619,3.187186791153812,13.231472942054697,14.116891943648097,13.941276587109934,7.487535034860557,4.833558334850187,6.150157540043771,8.417648081624408,2.2603918301157337,11.693551922812281,6.108172414762458,3.1753946825638524,3.549597259875397,15.028835408736802,1.4728708009517337,1.9136825848524677,44.11992117463337,3.3467572198863342,3.2362713674818777,8.226050128249746,1.4711380720148806,10.905109882746972,8.875830939477412,13.396569983809952,4.322279793688097,2.605102833881092,4.741351561583859,4.007713819712623,17.181353105402874,4.819317609189783,14.03576125772073,5.00725140225533,1.8810709444480422,2.719466029328999,17.643382420801377,5.128728581858822,28.358585873987174,15.407314363034551,10.698961992993173,3.139863161535009,1.8195776029372273,23.412324412985026,10.453225020947857,8.679054401695407,7.795346745882582,3.270141987494286,6.590922995285242,9.302954973310591,6.631863417726285,17.110763452030902,4.924016534521399,35.68424954198057,5.9693328281350455,4.960545013505943,4.193592260634621,3.0592085324063985,6.831781230596149,12.540230899450789,6.32312907782312,2.205307427203666,10.005708400102675,24.432925437992612,0.8096264463547446,24.867549317483977,7.112706000510826,2.4251518021831604,19.618292287580168,6.3755550516751205,4.771049151471717,7.4864164148928,13.39615755425824,3.354455124649132,2.963961095942285,4.94757821440493,13.594457326644468,6.403060857244645,13.159908875113876,12.469973181433645,3.0020501199222447,13.36255944988317,3.269656430244279,9.938663330473869,39.555669878576566,10.014802199379522,7.291180392794944,9.33568851126016,10.619259176607029,3.101635779099889,4.486814760677292,2.308385090503559,7.953740384223576,2.4206516454145826,5.499145040199509,7.4934803931651475,3.566903008792658,7.564992651601084,5.788886734728083,13.140991134984107,6.069543599953638,2.41310110486154,4.935796754661655,4.761208503548463,3.9770648413404985,5.609284224635931,8.11241146727719,4.584340884483633,11.110123070256543,6.177284932827621,2.9302136192291695,2.259800690794703,1.3371083425536807,2.6374923143336044,6.736209932619878,4.681810069377618,11.27759332598034,59.524821477329176,14.370143990412776,23.528943592287167,9.075218658791874,9.063733131019974,6.081400443730902,13.853662716826811,5.422956189445933,3.4986303648998045,12.72777714685161,2.602142483585406,18.379156870153853,3.4190713899768235,9.33291300392902,3.0467662904781383,3.5789878626366693,6.194882711140501,4.5105405568495325,18.75320458107948,10.544483427033377,18.271408822872203,18.02485055755206,3.7247668671235292,10.3005060793341,4.922889515766552,2.8518086703668195,3.3271914838120176,9.116999632592236,4.327408796185262,5.661271947360597,3.0948520599886837,4.996764966133708,4.1433833218921015,13.055452726180224,2.3436838010586643,9.84047009354796,11.32450439380883,6.275936266462047,8.055139519818821,3.6762026807870014,7.700634024640097,5.7139439099309035,2.7747658101019943,5.075984824792125,5.701651363243167,16.94334732634836,4.122877093843601,7.200590632877989,14.837980567091867,1.5675112406316072,26.602462404018766,6.186934560667309,4.621461350269329,3.8784139780010563,3.69178338616851,32.87950737400305,56.25717827581973,3.6418032373109783,16.031771621513396,9.89139433993718,2.334065274764911,1.4438066456409595,9.473346602135686,5.223584762968948,1.9377980221457403,1.8215532160156922,2.2965884263831478,2.991393000996191,1.820286168294444,8.681996321472685,5.272820663846536,1.5323906844080222,18.806323232154337,22.10882261906209,13.384330159200582,5.286983094777123,3.370343008881866,4.4890690685148655,4.726304088324955,14.090347902109004,4.897344675787644,10.321570854201722,10.116903423886727,8.514290021738676,13.008957054343314,25.945250644949898,2.678931355688241,7.47651974011962,8.935698060228871,6.116412877895642,5.063797015331257,3.9193545463670443,8.054889603236052,6.416873813443001,6.9679562875288585,2.210619037870144,2.3040518170720747,2.794392444003969,25.632254485053235,9.52222876707374,4.053846731991586,9.430512599674561,7.312310370236276,14.166576549368367,5.568143659124564,7.716854234934265,6.31388479107133,3.41933835404368,3.818937842147735,10.245409891165847,11.430562001311298,3.105344660748053,4.3685810239421095,9.361671566441144,4.083074368917131,13.555658299396555,4.0924058082575465,6.093487191123106,10.894464146798075,9.21611762199663,6.139349665603331,9.624999262729068,8.469460264678958,4.161799689468058,3.3205244360530006,24.670736488155597,4.039400038795568,3.5363432807069373,4.206552465272202,1.932608318400277,29.20513259857108,5.500470123499851,4.2029649481270654,2.500446252061436,21.61723093248799,1.7310523154062616,6.77168101094425,12.396220110820943,5.345291044471833,5.974880379096737,19.55527975532817,3.1289155055466056,29.36210179859659,8.089760303608228,4.401700878988256,2.5942057669116796,3.2143674413022842,3.216560175647035,11.199144045643372,11.75872254407195,5.948316081017877,3.497436989782978,5.151243968839306,5.036663123131719,14.450634620161205,5.249320295813347,5.107231528793715,10.218439101928386,5.278578668114816,1.932625815727074,10.754720853940094,8.435511812025384,9.7320396476363,3.5808275199770576,11.477886578640588,4.197349233165085,18.66898056066232,11.868203915546374,4.299668270288647,4.013881403964068,4.659514250871398,3.7123665858667736,3.3835751102269014,4.524595019153891,4.903687921818683,2.5878356364851567,5.182380524715568,8.868877221620007,12.874599397802296,10.042821491562783,7.271980216976647,21.71270036652835,10.786751837379262,1.6006026738260564,3.31163111948612,4.696017120518396,7.49965422028367,10.081421040372547,5.899017628050934,4.788289212716663,4.2054747770442535,3.7454010749213857,12.986500998947237,7.7677991888684295,2.9753194088198556,6.006305925992071,19.638171420638763,2.13184457125987,13.713173872999272,7.36476503586744,15.72407319108834,11.04424460187044,4.517766737772892,4.494020401974942,13.227280835951516,3.6120738754958057,8.428227623007006,4.731465333692742,1.6990418993784353,6.211317475115786,6.3878059158610085,20.254053708583356,6.97738577146614,11.509545594168213,46.06816526506765,2.8740057814594766,22.79256903672912,16.153810749724997,8.70743481271091,11.051794548675998,8.620538340824917,7.833311941267546,4.387952654300528,1.6792105320045472,28.94411648827478,5.221336779767289,2.9468442273129116,7.506819778415454,34.454124148356065,4.040460660542804,4.770839475130472,8.489985055181641,16.120546843328054,2.369399787338446,4.664346588640718,14.360718701555491,21.865913563661223,8.842669993086398,3.5575623463001476,6.534438261078267,2.5209139122539974,14.862286634596437,6.463213033287501,3.071245060653923,54.769949062576124,4.939669358228548,37.68540665891507,4.753786148283987,6.078704201475109,5.329926014109437,2.0231182348436594,2.375113621487695,7.0337696134661085,2.8806891009693585,2.6900587760799963,22.997342299924235,2.6447857162762256,8.432969158953881,9.346413130982924,30.837375277408462,7.26795449149843,6.477124431369905,2.3251820309538767,9.641339449112769,1.4643138087485066,6.019769740076682,67.99976782171721,12.389826921758576,8.379286759657305,6.813575859694021,3.070800741998451,5.095767543755104,2.1813624618577987,5.032001172012475,5.113287538468978,8.120861772021925,5.421078081540817,6.910097489455433,12.822720754210268,3.3444258069071475,4.390419944850023,3.686277331501249,2.497522297009149,6.933464819163322,15.072998238700603,8.452599599515663,6.68566493534479,3.539359927531948,8.766810598161255,5.948787545920406,7.793111029533639,9.150603094357672,7.548480943974236,4.713698421718501,4.858607847614741,20.161881211525696,3.927040081089425,3.4696010981960432,2.47242625120076,7.391037063176458,4.428136912085998,5.339713842930766,5.196505391767347,3.297806850981469,2.1079696935348706,14.245871950272075,8.595329834982813,9.825874570432015,3.080037823041398,1.9072879503219289,12.071118012253002,5.327226286048853,4.156058963750379,9.955956017786605,3.043454517381843,3.528792836895915,4.107761527867532,3.0032681741662546,3.139497990120196,3.019519189552985,10.043835210932844,5.703459266562103,3.4488312326979895,6.316341203725135,6.912003434627768,21.302282999816867,6.895626189900519,5.987611346495387,6.7212472433691755,8.76149911565195,8.253117555480253,3.4003314817030663,19.69073557323077,4.538046194887936,4.262351595872682,3.1409126956162945,8.9762502651159,11.533163404389118,3.905068071121621,6.387000124986005,1.6551500145967941,2.389244433985824,12.207971059025754,8.28984578886705,18.965931892669783,11.484903071072257,1.5561240336517765,3.4180055475199596,12.898856686549124,5.429022828566782,4.625673965222547,4.326958798567449,1.884954686832942,7.914928385602963,2.1400471168644617,5.734563911562593,15.642590849006057,7.539077380968263,5.098363747327886,5.38815321719349,13.392475591758796,7.207237490793277,9.85565593149555,3.616059582312062,2.7229121692667966,4.513177444202226,9.595949586926626,1.5614106396665979,4.520939359652686,2.815445167707199,5.487792133769601,5.421231053475267,21.34018854358561,4.156186188296158,5.299853876719099,7.9470483620419365,11.079241244587818,4.401456432573956,4.482910877584367,3.897101841109403,36.840072437262364,3.5548091106270516,7.726907187913247,9.538911311121735,18.446539517107425,16.652494030131876,16.011546011994792,27.902637778663763,4.023015853972035,10.932586497446824,9.140959805336562,1.989138890750868,4.8689441765634625,3.529590028032831,13.729095460900911,9.15583549148021,4.362308010258382,4.951208551094951,3.642527664137644,9.362653240944391,1.6130741385484981,4.346671775610245,13.147920594366278,17.082096396484463,11.838848774766632,3.2569477013003754,5.305507705946485,3.885542110980282,4.5511061186407655,27.235134569724092,2.636725646768101,6.002683422803182,4.478715847526966,3.9002750809756783,6.593024162288005,19.984124792263255,13.03994952980968,4.961973677316289,9.313735588745693,2.198604355993702,9.124648692890775,2.104338659983835,2.9670101525693173,15.073744982718573,2.0061077015676494,7.602173535298499,4.016561000408588,7.80365870353869,3.4659273244183684,10.705037418571127,1.5773146925259338,2.612890227672765,4.417825454734449,12.374219749036483,16.491010408750306,15.11785165022086,5.063063452678139,4.238051645398983,9.261155420339685,15.348327675615302,4.113478008992417,8.140383770232926,3.6217956616001654,21.917093294232778,3.622950971654841,46.79206430308955,2.853679829017509,10.929150283119812,9.007071561977307,6.250307861791935,7.134615845201362,4.404762632307049,5.174366154452812,2.332295189928301,11.793891144282837,14.85176597183333,12.742352249819858,8.721386568563823,8.239936545823529,4.839204078798707,10.733005109330044,14.347573820141742,10.020338434447675,3.557133855343925,3.323142925620751,4.8212700642009745,1.8064959074269047,11.311318571442678,5.183145934167733,8.368280746651124,2.665174828881305,9.100548695211232,3.7287014578875777,3.7194854550860414,4.074562510581278,5.485903429276174,6.697211142978187,4.522188324685062,2.1376723999274945,6.159747129880459,8.58671938186318,4.314075476660084,10.332502703951658,22.15180691470935,6.821566542518238,1.9737314840974223,10.428448661896011,4.108956471845853,7.520055738618361,1.8283525679390569,11.311181512715406,11.808802101758886,6.9337347732215715,4.447045960426092,9.128641910242445,24.4054021823161,10.92095065927086,7.4406005144025595,5.220236306231442,11.466423097881206,17.777814171941884,2.4033289118180714,2.955134309536953,21.847545877686493,4.915597930666345,1.4412046473807738,11.51204541165697,3.7115830902081983,13.023733610163086,5.967668057080545,10.530019751089428,5.615994557570548,3.433318277940604,2.6395935914634734,14.572549241376546,12.635680603597825,4.7426506207974315,3.299741233211932,5.030651409130297,3.5451001876479675,3.5419912538524967,1.278871375007888,2.363706595660114,27.587957784863107,3.563767168421902,22.887873866057337,3.6035923505555836,16.041165411876825,3.9638672272757507,19.806065745682957,8.33902144948268,9.375825705375075,1.7416743476142842,12.728245414667184,10.020094747379877,5.2715349521514625,5.088529362102974,4.020993061193256,33.94877666004327,6.097590454950629,4.926155595448543,5.2797708211411,21.690222662088047,4.926827562693116,22.943132039239636,9.05952295612282,16.98231444564634,11.385527389787521,4.493815484302183,5.820776097451331,8.742715409705216,9.580763903605886,5.373796642079777,12.756796496431033,9.089257621006967,6.341255813236747,3.3456519469197437,3.366157553995106,4.392896420495746,16.27698337380686,11.01213281246754,34.79333821857401,2.999681141785752,12.32718065345901,11.68320959474066,5.963508141114969,5.456581713607068,7.828839850125504,8.072103151637279,2.8740064572629564,24.318432401510083,6.145187987305235,7.411434569951026,6.245034464898059,16.66378767766459,3.243063155266264,4.346044746978371,4.859891791716741,2.119898705985176,4.419093582522984,6.930532519341604,7.383339184945055,4.832837089472129,4.3405804759124464,6.70205114021371,8.061944790513438,5.773175849736075,27.431722505924988,19.259161513981553,3.4447974229190015,9.633781102379727,11.162853827414333,12.691202499232716,10.774629251399618,3.2895542048553077,4.910859722575633,5.014267745662181,9.460315570095668,11.271116231635487,2.9007063747384465,7.702092959991634,11.304868477069867,6.387412897724041,25.55814139549788,4.816209553332861,2.114773291584862,8.996364164438397,3.2989355097955295,26.810903410059176,9.653675088014788,7.337268302234688,5.228553249714687,9.72019574994593,12.699397987207233,3.637724905121613,2.0301875251709762,10.225712513301898,7.223289267486633,4.023939506020434,8.977564188061635,3.610091455657406,2.9091525842975283,11.8508872386926,4.269618861315914,4.718888608890964,21.91474758801008,18.882231333571347,6.096309520624065,2.7721271680511426,2.713910117214807,26.254439806033474,30.13381174761928,5.680212466242802,2.571734833476363,2.6656432094566576,11.368931006450964,5.7009017518409975,8.456014290220782,8.410119955970966,9.008246321635363,3.683012819998369,31.10467597263454,13.753753524597782,10.890702950952905,3.1090727975867924,7.7021027242682925,3.0276531495234487,1.8832376302869203,3.7147223557963285,6.1025521545558385,7.182111599291287,22.80422710304766,4.595211374353537,14.047834241614035,2.6362740405256284,5.7827724254394095,3.5616051494847176,13.135802136533535,7.676172885640292,3.2182867941581828,6.924766842359385,9.837839780128574,4.684031934300269,4.664937461377883,2.7529223396293774,4.465289700430363,4.494752482870492,2.176004707310068,3.0257351501405845,30.763341213243898,9.24692031481485,13.713017109322907,2.8249041707010845,13.373651782370176,10.862878710843495,5.399866919052823,10.86402469519317,2.450108564154559,2.1923877465503088,2.88713145873828,5.173873720768026,4.929933315233965,4.78868844112255,23.945590230124367,2.930566477533718,2.8643074235563653,2.0601747825834815,23.446542414702197,6.514427637470819,3.9382261333057227,13.344647832416596,5.107755514721105,10.444305924671054,10.049203919106558,5.981562477541716,2.67716913455697,2.5665775847612196,2.4799553637003307,23.919009672717362,3.3129164954026784,2.9900984866093756,2.3726111311023135,3.496856412200299,4.890153581905379,3.161805700580463,10.65882055601053,2.8638485262262114,4.108723164903632,22.15895537069419,1.335647159605899,4.854945846508513,19.217435241855902,4.735178622081927,5.794756834830677,3.7876023518033706,7.174394964083674,13.654248369474503,15.95733937091384,4.500393801556281,2.9499846717610545,17.220192244005624,4.4397009946604795,8.500605827974024,5.017736045179377,28.06468662464303,4.208485006852673,11.800822570315775,10.566244601037678,5.836942655055947,7.725783163002103,5.42075129969651,9.491766944808072,17.61575891976872,25.59690121357734,8.376470379994373,10.113524124725364,9.566487885965351,9.99762430979478,5.797302995272303,4.095194194562934,13.263283915972139,8.559725800530478,2.0744729078623636,2.91386212093503,7.135364529596887,3.515001259357968,8.366993832737679,9.307373364524683,1.7226099434702664,9.170267912663993,3.735683167143061,13.59753788047796,3.8395763855850706,7.978596417023883,6.9056484415028,4.190741607462407,12.329496653157301,43.49911173623407,4.6316285245717,7.962700415602061,9.517985201104091,12.753964040735017,4.877499261591401,5.2119647773651545,2.971430828829082,3.7506080923305514,4.430005463034413,6.8296514196239135,1.901331969051367,6.788636028125403,8.285628643878622,3.5097550101379613,13.252522693477692,3.2062231268648627,6.242257172587092,3.199869370763268,4.0778195574639815,17.284952250680227,23.241707308054917,7.880247815007018,2.9253022479094564,14.722349218502046,3.9334992689120365,2.8306053062304715,3.65079920508907,9.85366106039639,12.133972095390423,1.657391029351001,8.194150392661747,4.827563419671361,12.806436874382907,30.350596046113015,5.201997178709353,16.57704588298469,3.7510493394742856,3.17630207220341,4.060072204862596,17.864895692878562,3.987636992491794,8.462197822613996,2.373066865349054,5.8556863074242225,4.735222472720594,2.0041236042353874,5.565025347286159,6.263387893014428,8.780008821925387,8.586212781147482,10.298579338020966,4.646033517966093,10.669709450081413,7.174235475009709,4.112374904640009,4.8413628954661325,1.7010431467601455,8.53417560478169,4.378898261289969,1.9025212096511626,14.490894173199829,3.860740178302805,4.40380841383572,6.654890254133743,4.652380449697441,4.311942731666054,5.254803775233088,6.722090394635235,4.399885529624292,12.851168050622551,4.6303478848895105,4.590732125941357,10.586480497920798,4.993546192835089,9.024119054635959,13.048447690573276,3.728612148863179,15.496919878672523,29.427008930042966,6.721727185452928,4.6681277635881235,8.919090460095166,9.49760665541607,9.248952135331649,9.541680763627829,8.154648336113185,7.677034224472072,13.947752598577441,10.940350683838162,5.987480172630912,7.034510625008163,9.66608684727099,3.8863391307384827,38.86607492784402,2.7780951313778166,9.041727499698343,4.806281018908955,3.6105371625670872,11.882207507323603,6.149381042948632,8.820270875971804,2.546974394424455,7.992102122157009,6.4545643093080685,13.385680518330915,5.139283934561228,5.212092117504359,34.3561442375058,7.842115109085747,2.8293021869771726,12.755358625030023,18.676056872019853,8.752964625433872,6.9337645772088505,3.2205992000361094,7.697482299490724,9.233899920866627,6.083708771936008,9.305768115807814,1.8964510507806265,9.180438016838547,3.1002445285504763,3.4437676623726166,2.878896477383793,2.6827221447028053,4.148146068970936,7.147041253645263,4.7929572996556615,21.167194620276337,1.783689299737974,13.745852571176373,11.8279951615775,10.833017508273105,5.760558124654069,3.5747293778909053,16.02906814700559,29.099030647795683,2.0620437346190377,5.154675504684391,4.795786840932767,6.748015297949112,2.852445271235585,10.579527205211212,5.252525477275537,2.4886001319183078,10.140092867591944,45.283390318776135,7.431464110654002,6.0572059753597385,6.05310232448642,7.1561657252587585,4.898279388942765,5.332089554236854,3.0491616401656496,4.105009061768971,2.082077054837416,3.3875761104103033,7.86049566529954,2.4641359316140705,2.2006349840011166,26.4600897104049,10.051096583996102,4.880004992857852,4.418231744107938,10.36435208733486]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}