{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Rethinking Statistics course in pymc3 - Week 10" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Lecture 19: Gaussian Processes\n", "\n", "- [Video](https://www.youtube.com/watch?v=pwMRbt2CbSU)\n", "- [Slides](https://speakerdeck.com/rmcelreath/l19-statistical-rethinking-winter-2019)\n", "\n", "Lecture 20: Missing Values and Measurement Error\n", "\n", "- [Video](https://www.youtube.com/watch?v=UgLF0aLk85s)\n", "- [Slides](https://speakerdeck.com/rmcelreath/l19-statistical-rethinking-winter-2019)\n", "\n", "[Proposed problems](https://github.com/gbosquechacon/statrethinking_winter2019/blob/master/homework/week10.pdf) and [solutions in R](https://github.com/gbosquechacon/statrethinking_winter2019/blob/master/homework/week10_solutions.pdf) for the exercises of the week." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "%matplotlib inline\n", "import pymc3 as pm\n", "import numpy as np\n", "import pandas as pd\n", "import theano\n", "import theano.tensor as tt\n", "from scipy import stats\n", "from scipy.special import expit as logistic\n", "from sklearn import preprocessing\n", "\n", "import matplotlib.pyplot as plt\n", "from matplotlib.patches import Ellipse\n", "import altair as alt\n", "alt.data_transformers.enable('default', max_rows=None)\n", "import arviz as az\n", "\n", "import warnings\n", "warnings.filterwarnings('ignore')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Exercise 1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> Consider the relationship between brain volume (`brain`) and body mass (`body`) in the data(`Primates301`). These values are presented as single values for each species. However, there is always a range of sizes in a species, and some of these measurements are taken from very small samples. So these values are measured with some unknown error.\n", "\n", "> We don't have the raw measurements to work with—that would be best. But we can imagine what might happen if we had them. Suppose error is proportional to the measurement. This makes sense, because larger animals have larger variation. As a consequence, the uncertainty is not uniform across the values and this could mean trouble.\n", "\n", "> Let's make up some standard errors for these measurements, to see what might happen. Load the data and scale the the measurements so the maximum is 1 in both cases:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
namegenusspeciessubspeciesspp_idgenus_idsocial_learningresearch_effortbrainbodygroup_sizegestationweaninglongevitysex_maturitymaternal_investmentBMBseMse
0Allenopithecus_nigroviridisAllenopithecusnigroviridisNaN110.06.058.024655.040.0NaN106.15276.0NaNNaN0.1181020.0358080.0118100.003581
2Alouatta_belzebulAlouattabelzebulNaN330.015.052.846395.07.4NaNNaNNaNNaNNaN0.1075580.0491920.0107560.004919
3Alouatta_carayaAlouattacarayaNaN430.045.052.635383.08.9185.92323.16243.61276.72509.080.1071300.0414080.0107130.004141
4Alouatta_guaribaAlouattaguaribaNaN530.037.051.705175.07.4NaNNaNNaNNaNNaN0.1052370.0398080.0105240.003981
5Alouatta_palliataAlouattapalliataNaN633.079.049.886250.013.1185.42495.60300.01578.42681.020.1015330.0480770.0101530.004808
\n", "
" ], "text/plain": [ " name genus species subspecies \\\n", "0 Allenopithecus_nigroviridis Allenopithecus nigroviridis NaN \n", "2 Alouatta_belzebul Alouatta belzebul NaN \n", "3 Alouatta_caraya Alouatta caraya NaN \n", "4 Alouatta_guariba Alouatta guariba NaN \n", "5 Alouatta_palliata Alouatta palliata NaN \n", "\n", " spp_id genus_id social_learning research_effort brain body \\\n", "0 1 1 0.0 6.0 58.02 4655.0 \n", "2 3 3 0.0 15.0 52.84 6395.0 \n", "3 4 3 0.0 45.0 52.63 5383.0 \n", "4 5 3 0.0 37.0 51.70 5175.0 \n", "5 6 3 3.0 79.0 49.88 6250.0 \n", "\n", " group_size gestation weaning longevity sex_maturity \\\n", "0 40.0 NaN 106.15 276.0 NaN \n", "2 7.4 NaN NaN NaN NaN \n", "3 8.9 185.92 323.16 243.6 1276.72 \n", "4 7.4 NaN NaN NaN NaN \n", "5 13.1 185.42 495.60 300.0 1578.42 \n", "\n", " maternal_investment B M Bse Mse \n", "0 NaN 0.118102 0.035808 0.011810 0.003581 \n", "2 NaN 0.107558 0.049192 0.010756 0.004919 \n", "3 509.08 0.107130 0.041408 0.010713 0.004141 \n", "4 NaN 0.105237 0.039808 0.010524 0.003981 \n", "5 681.02 0.101533 0.048077 0.010153 0.004808 " ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d = pd.read_csv('../../data/Primates301.csv', header=0, sep=';')\n", "d.dropna(subset=['brain','body'], inplace=True)\n", "d['B'] = d['brain']/np.max(d['brain'])\n", "d['M'] = d['body']/np.max(d['body'])\n", "d['Bse'] = d['B']*0.1\n", "d['Mse'] = d['M']*0.1\n", "d.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now I'll make up some standard errors for B and M, assuming error is 10% of the measurement (_I just did_).\n", "\n", "Ignoring measurement error, the corresponding `ulam` (_pymc3_) model is:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "Bse = theano.shared(np.array(d['Bse']))\n", "M = theano.shared(np.array(d['M']))\n", "Mse = theano.shared(np.array(d['Mse']))\n", "B = theano.shared(np.array(d['B']))" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Auto-assigning NUTS sampler...\n", "Initializing NUTS using jitter+adapt_diag...\n", "Multiprocess sampling (4 chains in 4 jobs)\n", "NUTS: [sigma, b, a]\n", "Sampling 4 chains, 0 divergences: 100%|██████████| 14000/14000 [00:09<00:00, 1439.68draws/s]\n" ] } ], "source": [ "with pm.Model() as model_11: \n", " # Priors\n", " a = pm.Normal('a', mu=0, sd=1)\n", " b = pm.Normal('b', mu=0, sd=0.5)\n", " sigma = pm.Exponential('sigma', lam=1)\n", " \n", " # Regression\n", " mu = a + b*np.log(M)\n", " brain_hat = pm.Lognormal('brain_hat', mu, sigma, observed=B)\n", "\n", " # Prior sampling, trace definition and posterior sampling\n", " #prior = pm.sample_prior_predictive()\n", " posterior_11 = pm.sample(tune=3000)\n", " #posterior_pred_11 = pm.sample_posterior_predictive(posterior_11)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Your job is to add the measurement errors to this model. Use the divorce/marriage example in the chapter as a guide. It might help to initialize the unobserved true values of `B` and `M` using the observed values, by adding a list like this to `ulam` (_in pymc3 this is done by defining a `start` parameter in the `pm.sample` function_)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Running the model without measurement error (the code was given in the assignment), we get:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
meansdmcse_meanmcse_sdhpd_5.5%hpd_94.5%ess_meaness_sdess_bulkess_tailr_hat
a0.420.060.00.00.340.52770.0770.0765.0936.01.00
b0.780.010.00.00.760.80819.0819.0818.01011.01.01
sigma0.290.020.00.00.260.321021.01005.01033.0859.01.01
\n", "
" ], "text/plain": [ " mean sd mcse_mean mcse_sd hpd_5.5% hpd_94.5% ess_mean ess_sd \\\n", "a 0.42 0.06 0.0 0.0 0.34 0.52 770.0 770.0 \n", "b 0.78 0.01 0.0 0.0 0.76 0.80 819.0 819.0 \n", "sigma 0.29 0.02 0.0 0.0 0.26 0.32 1021.0 1005.0 \n", "\n", " ess_bulk ess_tail r_hat \n", "a 765.0 936.0 1.00 \n", "b 818.0 1011.0 1.01 \n", "sigma 1033.0 859.0 1.01 " ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "az.summary(posterior_11, var_names=['a','b', 'sigma'], credible_interval=.89).round(2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll plot this implied relationship in a moment, after fitting the measurement error model too. To build the measurement error model, all we really need to do is add the observation process. This means that the observed values arise from their own distribution, each having a true value as the mean. We use these unknown true values in the regression. It looks like this:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Auto-assigning NUTS sampler...\n", "Initializing NUTS using jitter+adapt_diag...\n", "Multiprocess sampling (4 chains in 4 jobs)\n", "NUTS: [B_true, M_true, b, a, sigma]\n", "Sampling 4 chains, 0 divergences: 100%|██████████| 8000/8000 [00:31<00:00, 251.14draws/s]\n" ] } ], "source": [ "N = len(d)\n", "\n", "with pm.Model() as model_12: \n", " # Priors\n", " sigma = pm.Exponential('sigma', lam=1)\n", " a = pm.Normal('a', 0., 1.)\n", " b = pm.Normal('b', 0., 1.)\n", " \n", " # Regression for the true values\n", " M_true = pm.Normal('M_true', mu=0.5, sd=1, shape=N)\n", " mu = a + b*np.log(M_true)\n", " B_true = pm.Lognormal('B_true', mu, sigma, shape=N)\n", " \n", " # Observed variables\n", " B_obs = pm.Normal('B_obs', B_true, Bse, observed=B)\n", " M_obs = pm.Normal('M_obs', M_true, Mse, observed=M)\n", " \n", " # Start value and additional kwarg for NUTS and trace definition\n", " start = dict(B_true=d.B.values, M_true=d.M.values)\n", " posterior_12 = pm.sample(1000,\n", " tune=1000,\n", " start=start,\n", " nuts_kwargs=dict(target_accept=.95))" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
meansdmcse_meanmcse_sdhpd_5.5%hpd_94.5%ess_meaness_sdess_bulkess_tailr_hat
a0.420.060.00.00.320.514743.04679.04774.02964.01.0
b0.780.010.00.00.760.814753.04752.04754.03002.01.0
sigma0.260.020.00.00.230.294990.04918.05002.03137.01.0
\n", "
" ], "text/plain": [ " mean sd mcse_mean mcse_sd hpd_5.5% hpd_94.5% ess_mean ess_sd \\\n", "a 0.42 0.06 0.0 0.0 0.32 0.51 4743.0 4679.0 \n", "b 0.78 0.01 0.0 0.0 0.76 0.81 4753.0 4752.0 \n", "sigma 0.26 0.02 0.0 0.0 0.23 0.29 4990.0 4918.0 \n", "\n", " ess_bulk ess_tail r_hat \n", "a 4774.0 2964.0 1.0 \n", "b 4754.0 3002.0 1.0 \n", "sigma 5002.0 3137.0 1.0 " ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "az.summary(posterior_12, var_names=['a','b', 'sigma'], credible_interval=.89).round(2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For now, notice that the posterior distributions of a and b are nearly identical to `model_11`. Adding measurement error hasn't changed a thing! Plotting the regression against the observed values:" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "d['B_true'] = np.mean(posterior_12['B_true'], axis=0)\n", "d['M_true'] = np.mean(posterior_12['M_true'], axis=0)" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "aux = pd.DataFrame()\n", "aux['x'] = np.arange(len(d))/len(d)\n", "aux['avg_curve'] = np.exp(posterior_12['a'].mean())*aux['x']**(posterior_12['b'].mean())\n", "\n", "for i in range(50):\n", " aux[f'curve_{i}'] = np.exp(posterior_12['a'][i])*aux['x']**(posterior_12['b'][i])" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "aux_plot = aux.melt(id_vars=['x'],\n", " value_vars=aux.columns[2:].tolist(),\n", " var_name='posteriors',\n", " value_name='y')" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "application/vnd.vegalite.v3+json": { "$schema": "https://vega.github.io/schema/vega-lite/v3.3.0.json", "config": { "mark": { "tooltip": null }, "view": { "height": 300, "width": 400 } }, "datasets": { "data-302bda8f9a6e2ecc44eac160021dd7d1": [ { "B": 0.11810206200256479, "B_true": 0.116462449688558, "Bse": 0.01181020620025648, "M": 0.035807692307692304, "M_true": 0.03602399656484449, "Mse": 0.0035807692307692307, "body": 4655, "brain": 58.02, "genus": "Allenopithecus", "genus_id": 1, "gestation": null, "group_size": 40, "longevity": 276, "maternal_investment": null, "name": "Allenopithecus_nigroviridis", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "nigroviridis", "spp_id": 1, "subspecies": null, "weaning": 106.15 }, { "B": 0.10755796201681357, "B_true": 0.110342019538364, "Bse": 0.010755796201681357, "M": 0.049192307692307695, "M_true": 0.047790078307424474, "Mse": 0.0049192307692307695, "body": 6395, "brain": 52.84, "genus": "Alouatta", "genus_id": 3, "gestation": null, "group_size": 7.4, "longevity": null, "maternal_investment": null, "name": "Alouatta_belzebul", "research_effort": 15, "sex_maturity": null, "social_learning": 0, "species": "belzebul", "spp_id": 3, "subspecies": null, "weaning": null }, { "B": 0.10713049850387771, "B_true": 0.1082720941983897, "Bse": 0.010713049850387771, "M": 0.041407692307692305, "M_true": 0.04082682792618366, "Mse": 0.004140769230769231, "body": 5383, "brain": 52.63, "genus": "Alouatta", "genus_id": 3, "gestation": 185.92, "group_size": 8.9, "longevity": 243.6, "maternal_investment": 509.08, "name": "Alouatta_caraya", "research_effort": 45, "sex_maturity": 1276.72, "social_learning": 0, "species": "caraya", "spp_id": 4, "subspecies": null, "weaning": 323.16 }, { "B": 0.10523744580373319, "B_true": 0.10632568533948064, "Bse": 0.01052374458037332, "M": 0.03980769230769231, "M_true": 0.03927622203931924, "Mse": 0.003980769230769231, "body": 5175, "brain": 51.7, "genus": "Alouatta", "genus_id": 3, "gestation": null, "group_size": 7.4, "longevity": null, "maternal_investment": null, "name": "Alouatta_guariba", "research_effort": 37, "sex_maturity": null, "social_learning": 0, "species": "guariba", "spp_id": 5, "subspecies": null, "weaning": null }, { "B": 0.10153276202495573, "B_true": 0.10474510886323234, "Bse": 0.010153276202495573, "M": 0.04807692307692308, "M_true": 0.0465858569277565, "Mse": 0.004807692307692308, "body": 6250, "brain": 49.88, "genus": "Alouatta", "genus_id": 3, "gestation": 185.42, "group_size": 13.1, "longevity": 300, "maternal_investment": 681.02, "name": "Alouatta_palliata", "research_effort": 79, "sex_maturity": 1578.42, "social_learning": 3, "species": "palliata", "spp_id": 6, "subspecies": null, "weaning": 495.6 }, { "B": 0.104077187697193, "B_true": 0.11012137818937956, "Bse": 0.0104077187697193, "M": 0.06857692307692308, "M_true": 0.06463506204536593, "Mse": 0.006857692307692308, "body": 8915, "brain": 51.13, "genus": "Alouatta", "genus_id": 3, "gestation": 185.92, "group_size": 5.5, "longevity": 240, "maternal_investment": null, "name": "Alouatta_pigra", "research_effort": 25, "sex_maturity": null, "social_learning": 0, "species": "pigra", "spp_id": 7, "subspecies": null, "weaning": null }, { "B": 0.12025973497262198, "B_true": 0.12208967374808728, "Bse": 0.012025973497262199, "M": 0.05085415384615385, "M_true": 0.049883714006314014, "Mse": 0.005085415384615385, "body": 6611.04, "brain": 59.08, "genus": "Alouatta", "genus_id": 3, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Alouatta_sara", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "sara", "spp_id": 8, "subspecies": null, "weaning": null }, { "B": 0.11240254849675331, "B_true": 0.11406211185064974, "Bse": 0.011240254849675332, "M": 0.04576923076923077, "M_true": 0.04490898418650241, "Mse": 0.004576923076923077, "body": 5950, "brain": 55.22, "genus": "Alouatta", "genus_id": 3, "gestation": 189.9, "group_size": 7.9, "longevity": 300, "maternal_investment": 559.94, "name": "Alouatta_seniculus", "research_effort": 82, "sex_maturity": 1690.22, "social_learning": 0, "species": "seniculus", "spp_id": 9, "subspecies": null, "weaning": 370.04 }, { "B": 0.04207462291611538, "B_true": 0.0414061386009773, "Bse": 0.004207462291611538, "M": 0.00926923076923077, "M_true": 0.009355939605109845, "Mse": 0.0009269230769230769, "body": 1205, "brain": 20.67, "genus": "Aotus", "genus_id": 4, "gestation": null, "group_size": 4.1, "longevity": null, "maternal_investment": null, "name": "Aotus_azarai", "research_effort": 22, "sex_maturity": null, "social_learning": 0, "species": "azarai", "spp_id": 10, "subspecies": null, "weaning": 229.69 }, { "B": 0.033179310765973906, "B_true": 0.03191743757736142, "Bse": 0.003317931076597391, "M": 0.005646153846153846, "M_true": 0.005766930556239684, "Mse": 0.0005646153846153847, "body": 734, "brain": 16.3, "genus": "Aotus", "genus_id": 4, "gestation": 132.23, "group_size": null, "longevity": 216, "maternal_investment": 206.8, "name": "Aotus_lemurinus", "research_effort": 16, "sex_maturity": 755.15, "social_learning": 0, "species": "lemurinus", "spp_id": 14, "subspecies": null, "weaning": 74.57 }, { "B": 0.0342988580617583, "B_true": 0.033908884527990055, "Bse": 0.0034298858061758302, "M": 0.0076076923076923075, "M_true": 0.007635075851583508, "Mse": 0.0007607692307692308, "body": 989, "brain": 16.85, "genus": "Aotus", "genus_id": 4, "gestation": 133.47, "group_size": 3.15, "longevity": 303.6, "maternal_investment": 209.68, "name": "Aotus_trivirgatus", "research_effort": 58, "sex_maturity": 736.6, "social_learning": 0, "species": "trivirgatus", "spp_id": 18, "subspecies": null, "weaning": 76.21 }, { "B": 0.011968978362204084, "B_true": 0.011596358055611416, "Bse": 0.0011968978362204086, "M": 0.0016153846153846153, "M_true": 0.0016431971745408573, "Mse": 0.00016153846153846155, "body": 210, "brain": 5.88, "genus": "Arctocebus", "genus_id": 6, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Arctocebus_aureus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "aureus", "spp_id": 21, "subspecies": null, "weaning": null }, { "B": 0.014085940521505486, "B_true": 0.013914084159847096, "Bse": 0.0014085940521505486, "M": 0.002376923076923077, "M_true": 0.0023937163853849624, "Mse": 0.00023769230769230768, "body": 309, "brain": 6.92, "genus": "Arctocebus", "genus_id": 6, "gestation": 133.74, "group_size": 1, "longevity": 156, "maternal_investment": 243, "name": "Arctocebus_calabarensis", "research_effort": 1, "sex_maturity": 298.91, "social_learning": 0, "species": "calabarensis", "spp_id": 22, "subspecies": null, "weaning": 109.26 }, { "B": 0.23819895373216357, "B_true": 0.22675593239163971, "Bse": 0.023819895373216358, "M": 0.06282307692307693, "M_true": 0.06448440372931441, "Mse": 0.006282307692307693, "body": 8167, "brain": 117.02, "genus": "Ateles", "genus_id": 7, "gestation": 138.2, "group_size": 14.5, "longevity": 336, "maternal_investment": null, "name": "Ateles_belzebuth", "research_effort": 12, "sex_maturity": null, "social_learning": 0, "species": "belzebuth", "spp_id": 23, "subspecies": null, "weaning": null }, { "B": 0.2325401510371079, "B_true": 0.2246481663755511, "Bse": 0.023254015103710793, "M": 0.06942307692307692, "M_true": 0.07077956792253093, "Mse": 0.006942307692307692, "body": 9025, "brain": 114.24, "genus": "Ateles", "genus_id": 7, "gestation": 224.7, "group_size": null, "longevity": 288, "maternal_investment": 707.4, "name": "Ateles_fusciceps", "research_effort": 4, "sex_maturity": 1799.68, "social_learning": 0, "species": "fusciceps", "spp_id": 24, "subspecies": null, "weaning": 482.7 }, { "B": 0.21391495511633116, "B_true": 0.20539271247119764, "Bse": 0.021391495511633118, "M": 0.05796153846153846, "M_true": 0.05948260570925064, "Mse": 0.005796153846153847, "body": 7535, "brain": 105.09, "genus": "Ateles", "genus_id": 7, "gestation": 226.37, "group_size": 42, "longevity": 327.6, "maternal_investment": 1042.72, "name": "Ateles_geoffroyi", "research_effort": 58, "sex_maturity": 2104.57, "social_learning": 2, "species": "geoffroyi", "spp_id": 25, "subspecies": null, "weaning": 816.35 }, { "B": 0.21139088484947177, "B_true": 0.2050252976761502, "Bse": 0.02113908848494718, "M": 0.06369230769230769, "M_true": 0.06477987401144905, "Mse": 0.006369230769230769, "body": 8280, "brain": 103.85, "genus": "Ateles", "genus_id": 7, "gestation": 228.18, "group_size": 20, "longevity": 453.6, "maternal_investment": 1033.59, "name": "Ateles_paniscus", "research_effort": 30, "sex_maturity": 2104.57, "social_learning": 0, "species": "paniscus", "spp_id": 26, "subspecies": null, "weaning": 805.41 }, { "B": 0.02007042970260753, "B_true": 0.021404691195558267, "Bse": 0.002007042970260753, "M": 0.009284615384615384, "M_true": 0.00865503372175446, "Mse": 0.0009284615384615385, "body": 1207, "brain": 9.86, "genus": "Avahi", "genus_id": 8, "gestation": 136.15, "group_size": 2, "longevity": null, "maternal_investment": 285.3, "name": "Avahi_laniger", "research_effort": 10, "sex_maturity": null, "social_learning": 0, "species": "laniger", "spp_id": 28, "subspecies": null, "weaning": 149.15 }, { "B": 0.01618254727542899, "B_true": 0.017084643547772005, "Bse": 0.0016182547275428991, "M": 0.006161538461538461, "M_true": 0.00580945974945006, "Mse": 0.0006161538461538461, "body": 801, "brain": 7.95, "genus": "Avahi", "genus_id": 8, "gestation": null, "group_size": 3, "longevity": null, "maternal_investment": null, "name": "Avahi_occidentalis", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "occidentalis", "spp_id": 29, "subspecies": null, "weaning": null }, { "B": 0.2252936267225762, "B_true": 0.2119019403033804, "Bse": 0.022529362672257622, "M": 0.05175384615384616, "M_true": 0.05372484986184301, "Mse": 0.005175384615384616, "body": 6728, "brain": 110.68, "genus": "Bunopithecus", "genus_id": 10, "gestation": 232.5, "group_size": 3.2, "longevity": null, "maternal_investment": 867.63, "name": "Bunopithecus_hoolock", "research_effort": 24, "sex_maturity": 2689.08, "social_learning": 0, "species": "hoolock", "spp_id": 32, "subspecies": null, "weaning": 635.13 }, { "B": 0.15470108087202558, "B_true": 0.14087705532191636, "Bse": 0.01547010808720256, "M": 0.024346153846153847, "M_true": 0.02566662383404355, "Mse": 0.002434615384615385, "body": 3165, "brain": 76, "genus": "Cacajao", "genus_id": 11, "gestation": 180, "group_size": 23.7, "longevity": 324, "maternal_investment": 519.29, "name": "Cacajao_calvus", "research_effort": 11, "sex_maturity": 1262.74, "social_learning": 0, "species": "calvus", "spp_id": 33, "subspecies": null, "weaning": 339.29 }, { "B": 0.13998412278380523, "B_true": 0.12830462069903012, "Bse": 0.013998412278380524, "M": 0.022576923076923078, "M_true": 0.023740901854270136, "Mse": 0.0022576923076923078, "body": 2935, "brain": 68.77, "genus": "Cacajao", "genus_id": 11, "gestation": null, "group_size": 30, "longevity": 216, "maternal_investment": null, "name": "Cacajao_melanocephalus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "melanocephalus", "spp_id": 34, "subspecies": null, "weaning": null }, { "B": 0.02326622834693753, "B_true": 0.022497199888972315, "Bse": 0.0023266228346937533, "M": 0.003723076923076923, "M_true": 0.0037883194710943103, "Mse": 0.00037230769230769235, "body": 484, "brain": 11.43, "genus": "Callimico", "genus_id": 13, "gestation": 153.99, "group_size": 6.85, "longevity": 214.8, "maternal_investment": 220.52, "name": "Callimico_goeldii", "research_effort": 43, "sex_maturity": 413.84, "social_learning": 0, "species": "goeldii", "spp_id": 40, "subspecies": null, "weaning": 66.53 }, { "B": 0.01618254727542899, "B_true": 0.015836994074809038, "Bse": 0.0016182547275428991, "M": 0.0026538461538461538, "M_true": 0.002679830825523961, "Mse": 0.0002653846153846154, "body": 345, "brain": 7.95, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": 9.5, "longevity": 201.6, "maternal_investment": null, "name": "Callithrix_argentata", "research_effort": 16, "sex_maturity": 701.52, "social_learning": 0, "species": "argentata", "spp_id": 41, "subspecies": null, "weaning": null }, { "B": 0.014737313493598227, "B_true": 0.014486625662597799, "Bse": 0.0014737313493598228, "M": 0.0024615384615384616, "M_true": 0.002473202057802879, "Mse": 0.0002461538461538462, "body": 320, "brain": 7.24, "genus": "Callithrix", "genus_id": 14, "gestation": 144, "group_size": 8.55, "longevity": 201.6, "maternal_investment": 204.24, "name": "Callithrix_jacchus", "research_effort": 161, "sex_maturity": 455.99, "social_learning": 2, "species": "jacchus", "spp_id": 46, "subspecies": null, "weaning": 60.24 }, { "B": 0.014900156736621411, "B_true": 0.014672434681816513, "Bse": 0.0014900156736621412, "M": 0.002523076923076923, "M_true": 0.002538106829262517, "Mse": 0.0002523076923076923, "body": 328, "brain": 7.32, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": 5.9, "longevity": null, "maternal_investment": null, "name": "Callithrix_penicillata", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "penicillata", "spp_id": 49, "subspecies": null, "weaning": null }, { "B": 0.008488204042583509, "B_true": 0.008087298518544154, "Bse": 0.0008488204042583509, "M": 0.0008923076923076924, "M_true": 0.0009166026397230032, "Mse": 8.923076923076924e-05, "body": 116, "brain": 4.17, "genus": "Callithrix", "genus_id": 14, "gestation": 134.44, "group_size": 6, "longevity": 181.2, "maternal_investment": 225.17, "name": "Callithrix_pygmaea", "research_effort": 36, "sex_maturity": 708.5, "social_learning": 0, "species": "pygmaea", "spp_id": 50, "subspecies": null, "weaning": 90.73 }, { "B": 0.1332261281983431, "B_true": 0.1220741342379242, "Bse": 0.013322612819834309, "M": 0.021038461538461537, "M_true": 0.022154634351692525, "Mse": 0.0021038461538461536, "body": 2735, "brain": 65.45, "genus": "Cebus", "genus_id": 15, "gestation": 158.29, "group_size": 25, "longevity": 528, "maternal_investment": 428.61, "name": "Cebus_albifrons", "research_effort": 13, "sex_maturity": 1501.69, "social_learning": 1, "species": "albifrons", "spp_id": 51, "subspecies": null, "weaning": 270.32 }, { "B": 0.13562806603293504, "B_true": 0.12469096878803358, "Bse": 0.013562806603293504, "M": 0.022584615384615384, "M_true": 0.023643488448782307, "Mse": 0.0022584615384615386, "body": 2936, "brain": 66.63, "genus": "Cebus", "genus_id": 15, "gestation": 154.99, "group_size": 7.9, "longevity": 541.2, "maternal_investment": 418.11, "name": "Cebus_apella", "research_effort": 249, "sex_maturity": 1760.81, "social_learning": 17, "species": "apella", "spp_id": 52, "subspecies": null, "weaning": 263.12 }, { "B": 0.14845197142101088, "B_true": 0.1343474833580266, "Bse": 0.014845197142101089, "M": 0.022007692307692308, "M_true": 0.023256406951436777, "Mse": 0.002200769230769231, "body": 2861, "brain": 72.93, "genus": "Cebus", "genus_id": 15, "gestation": 161.06, "group_size": 18.15, "longevity": 657.6, "maternal_investment": 675.13, "name": "Cebus_capucinus", "research_effort": 60, "sex_maturity": 2134.73, "social_learning": 5, "species": "capucinus", "spp_id": 53, "subspecies": null, "weaning": 514.07 }, { "B": 0.14216215115924036, "B_true": 0.12998931175157294, "Bse": 0.014216215115924037, "M": 0.022546153846153848, "M_true": 0.023760905765178638, "Mse": 0.002254615384615385, "body": 2931, "brain": 69.84, "genus": "Cebus", "genus_id": 15, "gestation": null, "group_size": 11.45, "longevity": 492, "maternal_investment": null, "name": "Cebus_olivaceus", "research_effort": 18, "sex_maturity": 2525.48, "social_learning": 0, "species": "olivaceus", "spp_id": 54, "subspecies": null, "weaning": 725.86 }, { "B": 0.13452887414252857, "B_true": 0.12127075832160429, "Bse": 0.013452887414252858, "M": 0.01876923076923077, "M_true": 0.01986629154110023, "Mse": 0.0018769230769230772, "body": 2440, "brain": 66.09, "genus": "Cebus", "genus_id": 15, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cebus_xanthosternos", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "xanthosternos", "spp_id": 55, "subspecies": null, "weaning": null }, { "B": 0.2369979848148676, "B_true": 0.2241534705579392, "Bse": 0.02369979848148676, "M": 0.05830769230769231, "M_true": 0.06021410051983868, "Mse": 0.005830769230769231, "body": 7580, "brain": 116.43, "genus": "Cercocebus", "genus_id": 16, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercocebus_agilis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "agilis", "spp_id": 56, "subspecies": null, "weaning": null }, { "B": 0.20166100107883647, "B_true": 0.19482739107242514, "Bse": 0.02016610010788365, "M": 0.057192307692307695, "M_true": 0.05835682622622012, "Mse": 0.00571923076923077, "body": 7435, "brain": 99.07, "genus": "Cercocebus", "genus_id": 16, "gestation": 174.43, "group_size": 20.35, "longevity": 252, "maternal_investment": null, "name": "Cercocebus_galeritus", "research_effort": 19, "sex_maturity": 2735.94, "social_learning": 0, "species": "galeritus", "spp_id": 57, "subspecies": null, "weaning": null }, { "B": 0.21574694160034197, "B_true": 0.20622722690578038, "Bse": 0.0215746941600342, "M": 0.057576923076923074, "M_true": 0.059066070889727075, "Mse": 0.005757692307692307, "body": 7485, "brain": 105.99, "genus": "Cercocebus", "genus_id": 16, "gestation": 168.98, "group_size": 26.85, "longevity": 360, "maternal_investment": null, "name": "Cercocebus_torquatus", "research_effort": 32, "sex_maturity": 1318.86, "social_learning": 1, "species": "torquatus", "spp_id": 58, "subspecies": null, "weaning": null }, { "B": 0.19272497811793923, "B_true": 0.18965772023317587, "Bse": 0.019272497811793923, "M": 0.06615384615384616, "M_true": 0.06647189172381564, "Mse": 0.006615384615384617, "body": 8600, "brain": 94.68, "genus": "Cercocebus", "genus_id": 16, "gestation": 165.08, "group_size": 35, "longevity": 321.6, "maternal_investment": null, "name": "Cercocebus_torquatus_atys", "research_effort": null, "sex_maturity": 1321.67, "social_learning": null, "species": "torquatus", "spp_id": 59, "subspecies": "atys", "weaning": null }, { "B": 0.14269139169906567, "B_true": 0.13990410343332402, "Bse": 0.014269139169906568, "M": 0.04323076923076923, "M_true": 0.04359816526392431, "Mse": 0.004323076923076923, "body": 5620, "brain": 70.1, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 32.5, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_albogularis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "albogularis", "spp_id": 60, "subspecies": null, "weaning": null }, { "B": 0.12127750524151688, "B_true": 0.11646510996251043, "Bse": 0.012127750524151689, "M": 0.02856923076923077, "M_true": 0.029243581287668147, "Mse": 0.002856923076923077, "body": 3714, "brain": 59.58, "genus": "Cercopithecus", "genus_id": 17, "gestation": 148.5, "group_size": 26.3, "longevity": 339.6, "maternal_investment": 295.04, "name": "Cercopithecus_ascanius", "research_effort": 26, "sex_maturity": 1718.73, "social_learning": 1, "species": "ascanius", "spp_id": 61, "subspecies": null, "weaning": 146.54 }, { "B": 0.11681967146375721, "B_true": 0.11245615689995546, "Bse": 0.011681967146375722, "M": 0.027692307692307693, "M_true": 0.028314728727118838, "Mse": 0.0027692307692307695, "body": 3600, "brain": 57.39, "genus": "Cercopithecus", "genus_id": 17, "gestation": 180.8, "group_size": 11, "longevity": 396, "maternal_investment": 543.73, "name": "Cercopithecus_campbelli", "research_effort": 11, "sex_maturity": null, "social_learning": 0, "species": "campbelli", "spp_id": 62, "subspecies": null, "weaning": 362.93 }, { "B": 0.11325747552262504, "B_true": 0.10786936329896699, "Bse": 0.011325747552262504, "M": 0.024515384615384616, "M_true": 0.02518063719382443, "Mse": 0.0024515384615384616, "body": 3187, "brain": 55.64, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_campbelli_lowei", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "campbelli", "spp_id": 63, "subspecies": "lowei", "weaning": null }, { "B": 0.132839375496163, "B_true": 0.12540818549702248, "Bse": 0.013283937549616301, "M": 0.027576923076923075, "M_true": 0.028500833842248722, "Mse": 0.002757692307692308, "body": 3585, "brain": 65.26, "genus": "Cercopithecus", "genus_id": 17, "gestation": 169.51, "group_size": 11, "longevity": 276, "maternal_investment": 532.44, "name": "Cercopithecus_cephus", "research_effort": 8, "sex_maturity": 1521.9, "social_learning": 0, "species": "cephus", "spp_id": 64, "subspecies": null, "weaning": 362.93 }, { "B": 0.12744519307102, "B_true": 0.12433502325132043, "Bse": 0.012744519307102001, "M": 0.035, "M_true": 0.03544619889486662, "Mse": 0.0035000000000000005, "body": 4550, "brain": 62.61, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 24.95, "longevity": 447.6, "maternal_investment": null, "name": "Cercopithecus_diana", "research_effort": 28, "sex_maturity": 2279.95, "social_learning": 1, "species": "diana", "spp_id": 67, "subspecies": null, "weaning": 362.93 }, { "B": 0.1331243511714536, "B_true": 0.12432166992294494, "Bse": 0.01331243511714536, "M": 0.025, "M_true": 0.025969178070744076, "Mse": 0.0025000000000000005, "body": 3250, "brain": 65.4, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_erythrotis", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "erythrotis", "spp_id": 70, "subspecies": null, "weaning": null }, { "B": 0.1341421214403485, "B_true": 0.1292539969864784, "Bse": 0.013414212144034852, "M": 0.03403846153846154, "M_true": 0.03471859262723725, "Mse": 0.003403846153846154, "body": 4425, "brain": 65.9, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_hamlyni", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "hamlyni", "spp_id": 71, "subspecies": null, "weaning": null }, { "B": 0.15103710790400393, "B_true": 0.14437770836804592, "Bse": 0.015103710790400394, "M": 0.03623076923076923, "M_true": 0.037153540465551076, "Mse": 0.0036230769230769233, "body": 4710, "brain": 74.2, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 17.4, "longevity": 192, "maternal_investment": null, "name": "Cercopithecus_lhoesti", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "lhoesti", "spp_id": 72, "subspecies": null, "weaning": null }, { "B": 0.14519510656054715, "B_true": 0.14317731385154, "Bse": 0.014519510656054717, "M": 0.046992307692307694, "M_true": 0.04724370877565137, "Mse": 0.00469923076923077, "body": 6109, "brain": 71.33, "genus": "Cercopithecus", "genus_id": 17, "gestation": 138.39, "group_size": 16, "longevity": 325.2, "maternal_investment": 826.47, "name": "Cercopithecus_mitis", "research_effort": 56, "sex_maturity": 2049.25, "social_learning": 0, "species": "mitis", "spp_id": 73, "subspecies": null, "weaning": 688.08 }, { "B": 0.12587782685692187, "B_true": 0.12008786775167889, "Bse": 0.012587782685692188, "M": 0.028607692307692306, "M_true": 0.0294108069492474, "Mse": 0.002860769230769231, "body": 3719, "brain": 61.84, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": 360, "maternal_investment": null, "name": "Cercopithecus_mona", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "mona", "spp_id": 74, "subspecies": null, "weaning": null }, { "B": 0.13428460927799377, "B_true": 0.1322850954304302, "Bse": 0.013428460927799377, "M": 0.041923076923076924, "M_true": 0.042161568888067553, "Mse": 0.004192307692307692, "body": 5450, "brain": 65.97, "genus": "Cercopithecus", "genus_id": 17, "gestation": 172.07, "group_size": 4.5, "longevity": 315.6, "maternal_investment": 589.69, "name": "Cercopithecus_neglectus", "research_effort": 17, "sex_maturity": 2076.39, "social_learning": 0, "species": "neglectus", "spp_id": 75, "subspecies": null, "weaning": 417.62 }, { "B": 0.14478799845298918, "B_true": 0.1414593796133584, "Bse": 0.014478799845298918, "M": 0.04203846153846154, "M_true": 0.04256920066110751, "Mse": 0.004203846153846154, "body": 5465, "brain": 71.13, "genus": "Cercopithecus", "genus_id": 17, "gestation": 169.51, "group_size": 16, "longevity": 276, "maternal_investment": null, "name": "Cercopithecus_nictitans", "research_effort": 7, "sex_maturity": 1684.59, "social_learning": 0, "species": "nictitans", "spp_id": 76, "subspecies": null, "weaning": null }, { "B": 0.11211757282146274, "B_true": 0.1085224778333837, "Bse": 0.011211757282146274, "M": 0.027761538461538462, "M_true": 0.0282690298268548, "Mse": 0.0027761538461538466, "body": 3609, "brain": 55.08, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 14, "longevity": 228, "maternal_investment": null, "name": "Cercopithecus_petaurista", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "petaurista", "spp_id": 77, "subspecies": null, "weaning": null }, { "B": 0.1212367944307611, "B_true": 0.11593524235272624, "Bse": 0.01212367944307611, "M": 0.02753846153846154, "M_true": 0.028264924897851103, "Mse": 0.002753846153846154, "body": 3580, "brain": 59.56, "genus": "Cercopithecus", "genus_id": 17, "gestation": 169.51, "group_size": 15, "longevity": 289.2, "maternal_investment": null, "name": "Cercopithecus_pogonias", "research_effort": 8, "sex_maturity": 1684.59, "social_learning": 0, "species": "pogonias", "spp_id": 78, "subspecies": null, "weaning": null }, { "B": 0.12508396604718383, "B_true": 0.11827905889577985, "Bse": 0.012508396604718384, "M": 0.026076923076923077, "M_true": 0.026928503770688745, "Mse": 0.002607692307692308, "body": 3390, "brain": 61.45, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_wolfi", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "wolfi", "spp_id": 81, "subspecies": null, "weaning": null }, { "B": 0.011826490524558796, "B_true": 0.012187350685389441, "Bse": 0.0011826490524558797, "M": 0.003076923076923077, "M_true": 0.0029827285826076484, "Mse": 0.0003076923076923077, "body": 400, "brain": 5.81, "genus": "Cheirogaleus", "genus_id": 18, "gestation": 70, "group_size": 1, "longevity": 180, "maternal_investment": 117.14, "name": "Cheirogaleus_major", "research_effort": 3, "sex_maturity": 420.91, "social_learning": 0, "species": "major", "spp_id": 83, "subspecies": null, "weaning": 47.14 }, { "B": 0.005292405398253507, "B_true": 0.005429213291046826, "Bse": 0.0005292405398253507, "M": 0.0010769230769230769, "M_true": 0.0010436403241392402, "Mse": 0.0001076923076923077, "body": 140, "brain": 2.6, "genus": "Cheirogaleus", "genus_id": 18, "gestation": 61.79, "group_size": 1, "longevity": 231.6, "maternal_investment": 122.44, "name": "Cheirogaleus_medius", "research_effort": 13, "sex_maturity": 413.84, "social_learning": 0, "species": "medius", "spp_id": 84, "subspecies": null, "weaning": 60.65 }, { "B": 0.09837767419138152, "B_true": 0.0950049196037617, "Bse": 0.009837767419138152, "M": 0.023307692307692307, "M_true": 0.023752716949729927, "Mse": 0.002330769230769231, "body": 3030, "brain": 48.33, "genus": "Chiropotes", "genus_id": 19, "gestation": 157.67, "group_size": 14.4, "longevity": 216, "maternal_investment": null, "name": "Chiropotes_satanas", "research_effort": 21, "sex_maturity": null, "social_learning": 0, "species": "satanas", "spp_id": 85, "subspecies": null, "weaning": null }, { "B": 0.13231013495633767, "B_true": 0.12544350639392743, "Bse": 0.013231013495633768, "M": 0.028615384615384615, "M_true": 0.02945881133623127, "Mse": 0.002861538461538462, "body": 3720, "brain": 65, "genus": "Chlorocebus", "genus_id": 20, "gestation": null, "group_size": null, "longevity": 379.2, "maternal_investment": null, "name": "Chlorocebus_aethiops", "research_effort": 91, "sex_maturity": null, "social_learning": 5, "species": "aethiops", "spp_id": 86, "subspecies": null, "weaning": 217.76 }, { "B": 0.12738412685488631, "B_true": 0.12346951590700371, "Bse": 0.012738412685488632, "M": 0.03326153846153846, "M_true": 0.03386354757115793, "Mse": 0.0033261538461538463, "body": 4324, "brain": 62.58, "genus": "Chlorocebus", "genus_id": 20, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Chlorocebus_pygerythrus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "pygerythrus", "spp_id": 87, "subspecies": null, "weaning": null }, { "B": 0.13212693630793657, "B_true": 0.12744876350343437, "Bse": 0.013212693630793658, "M": 0.03316923076923077, "M_true": 0.033825715765179565, "Mse": 0.003316923076923077, "body": 4312, "brain": 64.91, "genus": "Chlorocebus", "genus_id": 20, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Chlorocebus_sabaeus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "sabaeus", "spp_id": 89, "subspecies": null, "weaning": null }, { "B": 0.15816149978626826, "B_true": 0.1596573992508699, "Bse": 0.015816149978626827, "M": 0.06634615384615385, "M_true": 0.06549753118340478, "Mse": 0.006634615384615385, "body": 8625, "brain": 77.7, "genus": "Colobus", "genus_id": 21, "gestation": null, "group_size": 10.9, "longevity": null, "maternal_investment": null, "name": "Colobus_angolensis", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "angolensis", "spp_id": 91, "subspecies": null, "weaning": null }, { "B": 0.15142386060618399, "B_true": 0.15340545866560537, "Bse": 0.0151423860606184, "M": 0.06606923076923077, "M_true": 0.06506241081329373, "Mse": 0.006606923076923077, "body": 8589, "brain": 74.39, "genus": "Colobus", "genus_id": 21, "gestation": 169.02, "group_size": 7.6, "longevity": 294, "maternal_investment": 556.81, "name": "Colobus_guereza", "research_effort": 42, "sex_maturity": 1929.19, "social_learning": 0, "species": "guereza", "spp_id": 93, "subspecies": null, "weaning": 387.79 }, { "B": 0.1502839579050217, "B_true": 0.15313067553567292, "Bse": 0.01502839579050217, "M": 0.07, "M_true": 0.06858261877291744, "Mse": 0.007000000000000001, "body": 9100, "brain": 73.83, "genus": "Colobus", "genus_id": 21, "gestation": 172.69, "group_size": 10.2, "longevity": 366, "maternal_investment": 386.47, "name": "Colobus_polykomos", "research_effort": 17, "sex_maturity": 1629.84, "social_learning": 0, "species": "polykomos", "spp_id": 94, "subspecies": null, "weaning": 213.78 }, { "B": 0.1524619862804568, "B_true": 0.1547864398548771, "Bse": 0.01524619862804568, "M": 0.06853846153846153, "M_true": 0.06724324647285806, "Mse": 0.006853846153846154, "body": 8910, "brain": 74.9, "genus": "Colobus", "genus_id": 21, "gestation": 192.76, "group_size": 15.5, "longevity": null, "maternal_investment": null, "name": "Colobus_satanas", "research_effort": 10, "sex_maturity": null, "social_learning": 0, "species": "satanas", "spp_id": 95, "subspecies": null, "weaning": null }, { "B": 0.14873694709630142, "B_true": 0.1496896730956976, "Bse": 0.014873694709630143, "M": 0.060153846153846155, "M_true": 0.059455903282743645, "Mse": 0.006015384615384616, "body": 7820, "brain": 73.07, "genus": "Colobus", "genus_id": 21, "gestation": null, "group_size": 16, "longevity": null, "maternal_investment": null, "name": "Colobus_vellerosus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "vellerosus", "spp_id": 96, "subspecies": null, "weaning": null }, { "B": 0.09129399311987299, "B_true": 0.08752447409540534, "Bse": 0.009129399311987299, "M": 0.019653846153846154, "M_true": 0.02013843860491592, "Mse": 0.0019653846153846154, "body": 2555, "brain": 44.85, "genus": "Daubentonia", "genus_id": 22, "gestation": 166.48, "group_size": 1, "longevity": 291.6, "maternal_investment": 364.18, "name": "Daubentonia_madagascariensis", "research_effort": 52, "sex_maturity": 834.72, "social_learning": 0, "species": "madagascariensis", "spp_id": 97, "subspecies": null, "weaning": 197.7 }, { "B": 0.19893337675819817, "B_true": 0.19665752463365402, "Bse": 0.019893337675819817, "M": 0.0726923076923077, "M_true": 0.0727941240881468, "Mse": 0.00726923076923077, "body": 9450, "brain": 97.73, "genus": "Erythrocebus", "genus_id": 23, "gestation": 167.2, "group_size": 28, "longevity": 286.8, "maternal_investment": 378.99, "name": "Erythrocebus_patas", "research_effort": 33, "sex_maturity": 1246.07, "social_learning": 2, "species": "patas", "spp_id": 98, "subspecies": null, "weaning": 211.79 }, { "B": 0.042033912105359575, "B_true": 0.041194367744694455, "Bse": 0.0042033912105359575, "M": 0.009076923076923076, "M_true": 0.009144949442663745, "Mse": 0.0009076923076923077, "body": 1180, "brain": 20.65, "genus": "Eulemur", "genus_id": 24, "gestation": 124.04, "group_size": 6.95, "longevity": 220.8, "maternal_investment": null, "name": "Eulemur_coronatus", "research_effort": 11, "sex_maturity": 701.52, "social_learning": 0, "species": "coronatus", "spp_id": 99, "subspecies": null, "weaning": null }, { "B": 0.043662344535591424, "B_true": 0.045352788796083184, "Bse": 0.004366234453559143, "M": 0.01796923076923077, "M_true": 0.01727479730905007, "Mse": 0.001796923076923077, "body": 2336, "brain": 21.45, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_albifrons", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 100, "subspecies": "albifrons", "weaning": null }, { "B": 0.04498544588515481, "B_true": 0.046163747640149966, "Bse": 0.004498544588515481, "M": 0.01646153846153846, "M_true": 0.01596074001535862, "Mse": 0.0016461538461538462, "body": 2140, "brain": 22.1, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_albocollaris", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 101, "subspecies": "albocollaris", "weaning": null }, { "B": 0.05245587965884341, "B_true": 0.053218664073483635, "Bse": 0.005245587965884341, "M": 0.01763076923076923, "M_true": 0.017310969848375754, "Mse": 0.0017630769230769232, "body": 2292, "brain": 25.77, "genus": "Eulemur", "genus_id": 24, "gestation": 120.83, "group_size": 9.15, "longevity": 444, "maternal_investment": 255.47, "name": "Eulemur_fulvus_fulvus", "research_effort": 81, "sex_maturity": 791.75, "social_learning": 1, "species": "fulvus", "spp_id": 103, "subspecies": "fulvus", "weaning": 134.64 }, { "B": 0.051702729659861175, "B_true": 0.0525075711551744, "Bse": 0.0051702729659861175, "M": 0.017076923076923076, "M_true": 0.016756397738232044, "Mse": 0.0017076923076923076, "body": 2220, "brain": 25.4, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": 9.5, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_rufus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 105, "subspecies": "rufus", "weaning": null }, { "B": 0.04989109858122825, "B_true": 0.05117421535013022, "Bse": 0.004989109858122825, "M": 0.018384615384615385, "M_true": 0.017892428127312527, "Mse": 0.0018384615384615386, "body": 2390, "brain": 24.51, "genus": "Eulemur", "genus_id": 24, "gestation": 127.49, "group_size": 9.2, "longevity": 360, "maternal_investment": 270.77, "name": "Eulemur_macaco_macaco", "research_effort": 32, "sex_maturity": 660.75, "social_learning": 0, "species": "macaco", "spp_id": 108, "subspecies": "macaco", "weaning": 143.28 }, { "B": 0.041056852647220476, "B_true": 0.040434379903806134, "Bse": 0.004105685264722048, "M": 0.009323076923076924, "M_true": 0.009375061365720864, "Mse": 0.0009323076923076924, "body": 1212, "brain": 20.17, "genus": "Eulemur", "genus_id": 24, "gestation": 129, "group_size": 2.7, "longevity": 360, "maternal_investment": 280.13, "name": "Eulemur_mongoz", "research_effort": 13, "sex_maturity": 1060.7, "social_learning": 0, "species": "mongoz", "spp_id": 109, "subspecies": null, "weaning": 151.13 }, { "B": 0.053392228306226724, "B_true": 0.053371405591389504, "Bse": 0.0053392228306226724, "M": 0.015076923076923076, "M_true": 0.01497731330390068, "Mse": 0.0015076923076923078, "body": 1960, "brain": 26.23, "genus": "Eulemur", "genus_id": 24, "gestation": 126.99, "group_size": 3.3, "longevity": null, "maternal_investment": 278.21, "name": "Eulemur_rubriventer", "research_effort": 13, "sex_maturity": 566.36, "social_learning": 0, "species": "rubriventer", "spp_id": 110, "subspecies": null, "weaning": 151.22 }, { "B": 0.011256539173977651, "B_true": 0.011250050323831938, "Bse": 0.001125653917397765, "M": 0.002107692307692308, "M_true": 0.002089668483715124, "Mse": 0.0002107692307692308, "body": 274, "brain": 5.53, "genus": "Euoticus", "genus_id": 25, "gestation": 133.45, "group_size": 1, "longevity": 180, "maternal_investment": null, "name": "Euoticus_elegantulus", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "elegantulus", "spp_id": 111, "subspecies": null, "weaning": null }, { "B": 0.011358316200867141, "B_true": 0.011286320009468564, "Bse": 0.001135831620086714, "M": 0.0019384615384615384, "M_true": 0.0019366733984811596, "Mse": 0.00019384615384615385, "body": 252, "brain": 5.58, "genus": "Galago", "genus_id": 26, "gestation": 133, "group_size": 6, "longevity": 144, "maternal_investment": null, "name": "Galago_alleni", "research_effort": 2, "sex_maturity": 283.18, "social_learning": 0, "species": "alleni", "spp_id": 112, "subspecies": null, "weaning": null }, { "B": 0.009404197284588923, "B_true": 0.009385379468805978, "Bse": 0.0009404197284588923, "M": 0.0016153846153846153, "M_true": 0.0016099843110771006, "Mse": 0.00016153846153846155, "body": 210, "brain": 4.62, "genus": "Galago", "genus_id": 26, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Galago_matschiei", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "matschiei", "spp_id": 115, "subspecies": null, "weaning": null }, { "B": 0.007551855395200196, "B_true": 0.007477171828359954, "Bse": 0.0007551855395200196, "M": 0.0011384615384615385, "M_true": 0.0011386655396948171, "Mse": 0.00011384615384615385, "body": 148, "brain": 3.71, "genus": "Galago", "genus_id": 26, "gestation": 122.29, "group_size": 1, "longevity": 198, "maternal_investment": 212.75, "name": "Galago_moholi", "research_effort": 14, "sex_maturity": 420.91, "social_learning": 0, "species": "moholi", "spp_id": 116, "subspecies": null, "weaning": 90.46 }, { "B": 0.008060740529647649, "B_true": 0.008145278247320805, "Bse": 0.0008060740529647649, "M": 0.0014923076923076923, "M_true": 0.0014705928741602118, "Mse": 0.00014923076923076923, "body": 194, "brain": 3.96, "genus": "Galago", "genus_id": 26, "gestation": 126.98, "group_size": 3.5, "longevity": 204, "maternal_investment": 220.91, "name": "Galago_senegalensis", "research_effort": 20, "sex_maturity": 330.37, "social_learning": 0, "species": "senegalensis", "spp_id": 117, "subspecies": null, "weaning": 93.93 }, { "B": 0.005394182425142997, "B_true": 0.005213060429131539, "Bse": 0.0005394182425142997, "M": 0.000576923076923077, "M_true": 0.0005873878837793412, "Mse": 5.76923076923077e-05, "body": 75, "brain": 2.65, "genus": "Galagoides", "genus_id": 27, "gestation": 111, "group_size": 5.5, "longevity": 168, "maternal_investment": 154.47, "name": "Galagoides_demidoff", "research_effort": 5, "sex_maturity": 345.24, "social_learning": 0, "species": "demidoff", "spp_id": 118, "subspecies": null, "weaning": 43.47 }, { "B": 0.007144747287642233, "B_true": 0.007105376837837345, "Bse": 0.0007144747287642233, "M": 0.0011, "M_true": 0.0010972033348088154, "Mse": 0.00011000000000000002, "body": 143, "brain": 3.51, "genus": "Galagoides", "genus_id": 27, "gestation": 120, "group_size": 1, "longevity": null, "maternal_investment": 179.27, "name": "Galagoides_zanzibaricus", "research_effort": null, "sex_maturity": 322.75, "social_learning": 0, "species": "zanzibaricus", "spp_id": 119, "subspecies": null, "weaning": 59.27 }, { "B": 1, "B_true": 1.039139230971339, "Bse": 0.1, "M": 1, "M_true": 0.9542734142167767, "Mse": 0.1, "body": 130000, "brain": 491.27, "genus": "Gorilla", "genus_id": 28, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Gorilla_beringei", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "beringei", "spp_id": 120, "subspecies": null, "weaning": null }, { "B": 0.9982494351375009, "B_true": 1.0328513061786964, "Bse": 0.0998249435137501, "M": 0.9303846153846154, "M_true": 0.8959183168152226, "Mse": 0.09303846153846154, "body": 120950, "brain": 490.41, "genus": "Gorilla", "genus_id": 28, "gestation": 257, "group_size": 6, "longevity": 648, "maternal_investment": 1177.35, "name": "Gorilla_gorilla_gorilla", "research_effort": 517, "sex_maturity": 3353.12, "social_learning": 13, "species": "gorilla", "spp_id": 121, "subspecies": "gorilla", "weaning": 920.35 }, { "B": 0.028680766177458426, "B_true": 0.028018321676395903, "Bse": 0.002868076617745843, "M": 0.005453846153846154, "M_true": 0.005507138466836345, "Mse": 0.0005453846153846154, "body": 709, "brain": 14.09, "genus": "Hapalemur", "genus_id": 29, "gestation": 141.24, "group_size": 3.1, "longevity": 205.2, "maternal_investment": 277.53, "name": "Hapalemur_griseus", "research_effort": 40, "sex_maturity": 1003.17, "social_learning": 0, "species": "griseus", "spp_id": 124, "subspecies": null, "weaning": 136.29 }, { "B": 0.028090459421499382, "B_true": 0.028966558456728072, "Bse": 0.0028090459421499384, "M": 0.009538461538461539, "M_true": 0.009228411465553598, "Mse": 0.000953846153846154, "body": 1240, "brain": 13.8, "genus": "Hapalemur", "genus_id": 29, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Hapalemur_griseus_alaotrensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "griseus", "spp_id": 125, "subspecies": "alaotrensis", "weaning": null }, { "B": 0.05524457019561545, "B_true": 0.05546699521729574, "Bse": 0.005524457019561545, "M": 0.01653846153846154, "M_true": 0.016395860318098542, "Mse": 0.0016538461538461542, "body": 2150, "brain": 27.14, "genus": "Hapalemur", "genus_id": 29, "gestation": 140, "group_size": 7.5, "longevity": 144, "maternal_investment": null, "name": "Hapalemur_simus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "simus", "spp_id": 129, "subspecies": null, "weaning": null }, { "B": 0.18555987542491909, "B_true": 0.1766823136552354, "Bse": 0.01855598754249191, "M": 0.045, "M_true": 0.046307227532186725, "Mse": 0.0045, "body": 5850, "brain": 91.16, "genus": "Hylobates", "genus_id": 31, "gestation": null, "group_size": 4.2, "longevity": 528, "maternal_investment": null, "name": "Hylobates_agilis", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "agilis", "spp_id": 132, "subspecies": null, "weaning": null }, { "B": 0.17910721192012538, "B_true": 0.17097695377939437, "Bse": 0.01791072119201254, "M": 0.044576923076923076, "M_true": 0.04578053042457493, "Mse": 0.0044576923076923075, "body": 5795, "brain": 87.99, "genus": "Hylobates", "genus_id": 31, "gestation": 207.59, "group_size": 3, "longevity": null, "maternal_investment": null, "name": "Hylobates_klossii", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "klossii", "spp_id": 133, "subspecies": null, "weaning": null }, { "B": 0.20736051458464796, "B_true": 0.19343373506146316, "Bse": 0.0207360514584648, "M": 0.04303846153846154, "M_true": 0.04488558820306227, "Mse": 0.004303846153846154, "body": 5595, "brain": 101.87, "genus": "Hylobates", "genus_id": 31, "gestation": 212.91, "group_size": 3.2, "longevity": 480, "maternal_investment": 938.77, "name": "Hylobates_lar", "research_effort": 86, "sex_maturity": 3852.57, "social_learning": 0, "species": "lar", "spp_id": 134, "subspecies": null, "weaning": 725.86 }, { "B": 0.17328556598204653, "B_true": 0.16620985874263136, "Bse": 0.017328556598204654, "M": 0.044776923076923075, "M_true": 0.0458311748188701, "Mse": 0.0044776923076923075, "body": 5821, "brain": 85.13, "genus": "Hylobates", "genus_id": 31, "gestation": 206.7, "group_size": 3.2, "longevity": null, "maternal_investment": null, "name": "Hylobates_muelleri", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "muelleri", "spp_id": 136, "subspecies": null, "weaning": null }, { "B": 0.172389928145419, "B_true": 0.1643728612636516, "Bse": 0.0172389928145419, "M": 0.042076923076923074, "M_true": 0.04323780133686776, "Mse": 0.004207692307692307, "body": 5470, "brain": 84.69, "genus": "Hylobates", "genus_id": 31, "gestation": 200.16, "group_size": 3.25, "longevity": 432, "maternal_investment": 835.29, "name": "Hylobates_pileatus", "research_effort": 16, "sex_maturity": 2454.24, "social_learning": 0, "species": "pileatus", "spp_id": 137, "subspecies": null, "weaning": 635.13 }, { "B": 0.07085716612046329, "B_true": 0.07583896897619974, "Bse": 0.007085716612046329, "M": 0.04873076923076923, "M_true": 0.04526814826301539, "Mse": 0.0048730769230769235, "body": 6335, "brain": 34.81, "genus": "Indri", "genus_id": 32, "gestation": 136.5, "group_size": 3.1, "longevity": null, "maternal_investment": 467.84, "name": "Indri_indri", "research_effort": 8, "sex_maturity": 1605.69, "social_learning": 0, "species": "indri", "spp_id": 138, "subspecies": null, "weaning": 331.34 }, { "B": 0.19642966189671668, "B_true": 0.18957436426028967, "Bse": 0.01964296618967167, "M": 0.055, "M_true": 0.05625307524418716, "Mse": 0.0055000000000000005, "body": 7150, "brain": 96.5, "genus": "Lagothrix", "genus_id": 33, "gestation": 223.99, "group_size": 33, "longevity": 360, "maternal_investment": 536.65, "name": "Lagothrix_lagotricha", "research_effort": 34, "sex_maturity": 1729.33, "social_learning": 0, "species": "lagotricha", "spp_id": 139, "subspecies": null, "weaning": 312.66 }, { "B": 0.04661387831538665, "B_true": 0.04794629509738081, "Bse": 0.0046613878315386655, "M": 0.017, "M_true": 0.016538803598044275, "Mse": 0.0017000000000000001, "body": 2210, "brain": 22.9, "genus": "Lemur", "genus_id": 34, "gestation": 134.74, "group_size": 16.45, "longevity": 360, "maternal_investment": 261.25, "name": "Lemur_catta", "research_effort": 103, "sex_maturity": 831.62, "social_learning": 4, "species": "catta", "spp_id": 140, "subspecies": null, "weaning": 126.51 }, { "B": 0.024100799967431353, "B_true": 0.023948931087025293, "Bse": 0.0024100799967431354, "M": 0.0050384615384615385, "M_true": 0.005043219510218824, "Mse": 0.0005038461538461539, "body": 655, "brain": 11.84, "genus": "Leontopithecus", "genus_id": 35, "gestation": null, "group_size": 6.7, "longevity": null, "maternal_investment": null, "name": "Leontopithecus_chrysomelas", "research_effort": 46, "sex_maturity": null, "social_learning": 0, "species": "chrysomelas", "spp_id": 141, "subspecies": null, "weaning": null }, { "B": 0.026115985099843263, "B_true": 0.02545341476707922, "Bse": 0.0026115985099843266, "M": 0.004684615384615384, "M_true": 0.004748978387632146, "Mse": 0.00046846153846153847, "body": 609, "brain": 12.83, "genus": "Leontopithecus", "genus_id": 35, "gestation": 134, "group_size": 4.5, "longevity": 297.6, "maternal_investment": 209.69, "name": "Leontopithecus_rosalia", "research_effort": 85, "sex_maturity": 890.34, "social_learning": 0, "species": "rosalia", "spp_id": 143, "subspecies": null, "weaning": 75.69 }, { "B": 0.013638121603191729, "B_true": 0.014742206273439274, "Bse": 0.001363812160319173, "M": 0.006692307692307693, "M_true": 0.0061533202571528185, "Mse": 0.0006692307692307693, "body": 870, "brain": 6.7, "genus": "Lepilemur", "genus_id": 36, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Lepilemur_dorsalis", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "dorsalis", "spp_id": 146, "subspecies": null, "weaning": null }, { "B": 0.014757668898976124, "B_true": 0.015886201953288163, "Bse": 0.0014757668898976125, "M": 0.007161538461538461, "M_true": 0.006604268710093994, "Mse": 0.0007161538461538462, "body": 931, "brain": 7.25, "genus": "Lepilemur", "genus_id": 36, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Lepilemur_edwardsi", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "edwardsi", "spp_id": 147, "subspecies": null, "weaning": null }, { "B": 0.013984163494615997, "B_true": 0.014649750585032952, "Bse": 0.0013984163494615998, "M": 0.004661538461538462, "M_true": 0.004445306000028006, "Mse": 0.0004661538461538462, "body": 606, "brain": 6.87, "genus": "Lepilemur", "genus_id": 36, "gestation": 135.92, "group_size": 1, "longevity": 103, "maternal_investment": 257.58, "name": "Lepilemur_leucopus", "research_effort": 2, "sex_maturity": 620.76, "social_learning": 0, "species": "leucopus", "spp_id": 149, "subspecies": null, "weaning": 121.66 }, { "B": 0.019846520243450648, "B_true": 0.020825710383023034, "Bse": 0.001984652024345065, "M": 0.007461538461538461, "M_true": 0.0070818645707945655, "Mse": 0.0007461538461538462, "body": 970, "brain": 9.75, "genus": "Lepilemur", "genus_id": 36, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Lepilemur_microdon", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "microdon", "spp_id": 151, "subspecies": null, "weaning": null }, { "B": 0.019459767541270587, "B_true": 0.020080018956147822, "Bse": 0.0019459767541270588, "M": 0.005976923076923077, "M_true": 0.00577960003588458, "Mse": 0.0005976923076923078, "body": 777, "brain": 9.56, "genus": "Lepilemur", "genus_id": 36, "gestation": 133.45, "group_size": 1, "longevity": 144, "maternal_investment": 209.66, "name": "Lepilemur_mustelinus", "research_effort": 5, "sex_maturity": 663.81, "social_learning": 0, "species": "mustelinus", "spp_id": 153, "subspecies": null, "weaning": 76.21 }, { "B": 0.016793209436765932, "B_true": 0.017651864026613815, "Bse": 0.0016793209436765932, "M": 0.006192307692307692, "M_true": 0.0058749328203306665, "Mse": 0.0006192307692307693, "body": 805, "brain": 8.25, "genus": "Lepilemur", "genus_id": 36, "gestation": 135.92, "group_size": 1, "longevity": null, "maternal_investment": 255.24, "name": "Lepilemur_ruficaudatus", "research_effort": 2, "sex_maturity": null, "social_learning": 0, "species": "ruficaudatus", "spp_id": 156, "subspecies": null, "weaning": 119.32 }, { "B": 0.19127974433610845, "B_true": 0.18420125044329513, "Bse": 0.019127974433610848, "M": 0.05346153846153846, "M_true": 0.0545593676506211, "Mse": 0.005346153846153847, "body": 6950, "brain": 93.97, "genus": "Lophocebus", "genus_id": 37, "gestation": 182.64, "group_size": 16, "longevity": 392.4, "maternal_investment": 394.35, "name": "Lophocebus_albigena", "research_effort": 34, "sex_maturity": 2525.48, "social_learning": 0, "species": "albigena", "spp_id": 160, "subspecies": null, "weaning": 211.71 }, { "B": 0.20679056323406683, "B_true": 0.19668014773588777, "Bse": 0.020679056323406685, "M": 0.052307692307692305, "M_true": 0.05383011937224995, "Mse": 0.005230769230769231, "body": 6800, "brain": 101.59, "genus": "Lophocebus", "genus_id": 37, "gestation": null, "group_size": 17.5, "longevity": 321.6, "maternal_investment": null, "name": "Lophocebus_aterrimus", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "aterrimus", "spp_id": 161, "subspecies": null, "weaning": null }, { "B": 0.012905327009587396, "B_true": 0.012670393283364598, "Bse": 0.0012905327009587397, "M": 0.002053846153846154, "M_true": 0.002068281522707276, "Mse": 0.00020538461538461541, "body": 267, "brain": 6.34, "genus": "Loris", "genus_id": 38, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Loris_lydekkerianus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "lydekkerianus", "spp_id": 162, "subspecies": null, "weaning": null }, { "B": 0.011948622956826185, "B_true": 0.011482495618272933, "Bse": 0.0011948622956826187, "M": 0.0014846153846153846, "M_true": 0.0015183431186239311, "Mse": 0.00014846153846153847, "body": 193, "brain": 5.87, "genus": "Loris", "genus_id": 38, "gestation": 165.99, "group_size": 1, "longevity": 196.8, "maternal_investment": 333.48, "name": "Loris_tardigradus", "research_effort": 14, "sex_maturity": 350.76, "social_learning": 0, "species": "tardigradus", "spp_id": 163, "subspecies": null, "weaning": 167.49 }, { "B": 0.2049789321554339, "B_true": 0.2039842479255703, "Bse": 0.020497893215543392, "M": 0.07923076923076923, "M_true": 0.07909301792881397, "Mse": 0.007923076923076923, "body": 10300, "brain": 100.7, "genus": "Macaca", "genus_id": 39, "gestation": 176.6, "group_size": null, "longevity": 360, "maternal_investment": 554.26, "name": "Macaca_arctoides", "research_effort": 48, "sex_maturity": 1570.01, "social_learning": 1, "species": "arctoides", "spp_id": 164, "subspecies": null, "weaning": 377.66 }, { "B": 0.18413499704846623, "B_true": 0.18304738597698103, "Bse": 0.018413499704846622, "M": 0.07, "M_true": 0.06980339267337989, "Mse": 0.007000000000000001, "body": 9100, "brain": 90.46, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": 21, "longevity": null, "maternal_investment": null, "name": "Macaca_assamensis", "research_effort": 17, "sex_maturity": null, "social_learning": 0, "species": "assamensis", "spp_id": 165, "subspecies": null, "weaning": null }, { "B": 0.16691432409876444, "B_true": 0.15992514999380297, "Bse": 0.016691432409876444, "M": 0.042076923076923074, "M_true": 0.04316232077879111, "Mse": 0.004207692307692307, "body": 5470, "brain": 82, "genus": "Macaca", "genus_id": 39, "gestation": 161.06, "group_size": 20.2, "longevity": null, "maternal_investment": 366.3, "name": "Macaca_cyclopis", "research_effort": 12, "sex_maturity": 1650.01, "social_learning": 0, "species": "cyclopis", "spp_id": 167, "subspecies": null, "weaning": 205.24 }, { "B": 0.13023388360779206, "B_true": 0.12592299986507746, "Bse": 0.013023388360779207, "M": 0.0327, "M_true": 0.033328211389166064, "Mse": 0.0032700000000000003, "body": 4251, "brain": 63.98, "genus": "Macaca", "genus_id": 39, "gestation": 164.69, "group_size": 27, "longevity": 456, "maternal_investment": 448.22, "name": "Macaca_fascicularis", "research_effort": 174, "sex_maturity": 1319.5, "social_learning": 7, "species": "fascicularis", "spp_id": 168, "subspecies": null, "weaning": 283.53 }, { "B": 0.20949783214932727, "B_true": 0.2060218750845426, "Bse": 0.020949783214932727, "M": 0.0731923076923077, "M_true": 0.07355184659885687, "Mse": 0.00731923076923077, "body": 9515, "brain": 102.92, "genus": "Macaca", "genus_id": 39, "gestation": 172.99, "group_size": 40.65, "longevity": 396, "maternal_investment": 438.03, "name": "Macaca_fuscata", "research_effort": 253, "sex_maturity": 1460.77, "social_learning": 45, "species": "fuscata", "spp_id": 169, "subspecies": null, "weaning": 265.04 }, { "B": 0.17424227003480774, "B_true": 0.16662951571520773, "Bse": 0.017424227003480775, "M": 0.0434, "M_true": 0.04452220883887582, "Mse": 0.00434, "body": 5642, "brain": 85.6, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Macaca_leonina", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "leonina", "spp_id": 171, "subspecies": null, "weaning": null }, { "B": 0.18112239705253733, "B_true": 0.1754068175866947, "Bse": 0.018112239705253733, "M": 0.05225384615384615, "M_true": 0.05322078310059499, "Mse": 0.005225384615384615, "body": 6793, "brain": 88.98, "genus": "Macaca", "genus_id": 39, "gestation": 166.07, "group_size": 38.5, "longevity": 432, "maternal_investment": 470.23, "name": "Macaca_mulatta", "research_effort": 296, "sex_maturity": 1101.07, "social_learning": 15, "species": "mulatta", "spp_id": 173, "subspecies": null, "weaning": 304.16 }, { "B": 0.21493272538522606, "B_true": 0.20967874612246593, "Bse": 0.02149327253852261, "M": 0.06785384615384615, "M_true": 0.06877652043819614, "Mse": 0.006785384615384616, "body": 8821, "brain": 105.59, "genus": "Macaca", "genus_id": 39, "gestation": 171, "group_size": 22.6, "longevity": 411.6, "maternal_investment": 463.6, "name": "Macaca_nemestrina", "research_effort": 51, "sex_maturity": 1427.17, "social_learning": 3, "species": "nemestrina", "spp_id": 175, "subspecies": null, "weaning": 292.6 }, { "B": 0.193172797036253, "B_true": 0.18793970207682975, "Bse": 0.019317279703625304, "M": 0.059076923076923075, "M_true": 0.05991283788807706, "Mse": 0.005907692307692308, "body": 7680, "brain": 94.9, "genus": "Macaca", "genus_id": 39, "gestation": 172.43, "group_size": 35, "longevity": 216, "maternal_investment": 537.43, "name": "Macaca_nigra", "research_effort": 27, "sex_maturity": 1984.51, "social_learning": 0, "species": "nigra", "spp_id": 178, "subspecies": null, "weaning": 365 }, { "B": 0.1524009200643231, "B_true": 0.14667731535795595, "Bse": 0.01524009200643231, "M": 0.03910769230769231, "M_true": 0.03997290510700218, "Mse": 0.003910769230769231, "body": 5084, "brain": 74.87, "genus": "Macaca", "genus_id": 39, "gestation": 161.56, "group_size": 33.5, "longevity": 360, "maternal_investment": 493.81, "name": "Macaca_radiata", "research_effort": 34, "sex_maturity": 1785.78, "social_learning": 0, "species": "radiata", "spp_id": 182, "subspecies": null, "weaning": 332.25 }, { "B": 0.17302094571213386, "B_true": 0.17050672176403206, "Bse": 0.017302094571213386, "M": 0.057692307692307696, "M_true": 0.05810769825281638, "Mse": 0.0057692307692307696, "body": 7500, "brain": 85, "genus": "Macaca", "genus_id": 39, "gestation": 172, "group_size": 21, "longevity": 480, "maternal_investment": 534.93, "name": "Macaca_silenus", "research_effort": 48, "sex_maturity": 1912.19, "social_learning": 1, "species": "silenus", "spp_id": 183, "subspecies": null, "weaning": 362.93 }, { "B": 0.14187717548394976, "B_true": 0.13606016461678008, "Bse": 0.014187717548394978, "M": 0.03415384615384615, "M_true": 0.03498547486020058, "Mse": 0.0034153846153846153, "body": 4440, "brain": 69.7, "genus": "Macaca", "genus_id": 39, "gestation": 180.9, "group_size": 20.1, "longevity": 420, "maternal_investment": null, "name": "Macaca_sinica", "research_effort": 12, "sex_maturity": 1894.11, "social_learning": 0, "species": "sinica", "spp_id": 184, "subspecies": null, "weaning": null }, { "B": 0.1897123781220103, "B_true": 0.19312850263680217, "Bse": 0.01897123781220103, "M": 0.0929076923076923, "M_true": 0.09098674591827842, "Mse": 0.009290769230769231, "body": 12078, "brain": 93.2, "genus": "Macaca", "genus_id": 39, "gestation": 164.84, "group_size": 18.3, "longevity": 264, "maternal_investment": 375.09, "name": "Macaca_sylvanus", "research_effort": 67, "sex_maturity": 1542.25, "social_learning": 0, "species": "sylvanus", "spp_id": 185, "subspecies": null, "weaning": 210.25 }, { "B": 0.3012599995928919, "B_true": 0.29652495658890665, "Bse": 0.03012599995928919, "M": 0.11538461538461539, "M_true": 0.11643756772324887, "Mse": 0.011538461538461539, "body": 15000, "brain": 148, "genus": "Mandrillus", "genus_id": 40, "gestation": 179.22, "group_size": 17, "longevity": 400.8, "maternal_investment": 665.88, "name": "Mandrillus_leucophaeus", "research_effort": 18, "sex_maturity": 1745.96, "social_learning": 0, "species": "leucophaeus", "spp_id": 188, "subspecies": null, "weaning": 486.66 }, { "B": 0.31322897795509597, "B_true": 0.32003768074629724, "Bse": 0.0313228977955096, "M": 0.18153846153846154, "M_true": 0.17761222270363966, "Mse": 0.018153846153846156, "body": 23600, "brain": 153.88, "genus": "Mandrillus", "genus_id": 40, "gestation": 173.99, "group_size": 13.9, "longevity": 555.96, "maternal_investment": 522, "name": "Mandrillus_sphinx", "research_effort": 30, "sex_maturity": 2122.11, "social_learning": 3, "species": "sphinx", "spp_id": 189, "subspecies": null, "weaning": 348.01 }, { "B": 0.0033179310765973904, "B_true": 0.003360061132117676, "Bse": 0.0003317931076597391, "M": 0.0005, "M_true": 0.0004919815572307129, "Mse": 5e-05, "body": 65, "brain": 1.63, "genus": "Microcebus", "genus_id": 41, "gestation": 60.34, "group_size": 1, "longevity": 186, "maternal_investment": 100.79, "name": "Microcebus_murinus", "research_effort": 66, "sex_maturity": 355.53, "social_learning": 0, "species": "murinus", "spp_id": 200, "subspecies": null, "weaning": 40.45 }, { "B": 0.0035011297249984735, "B_true": 0.0033884391052491935, "Bse": 0.0003501129724998474, "M": 0.0003307692307692308, "M_true": 0.00033735270592373957, "Mse": 3.307692307692308e-05, "body": 43, "brain": 1.72, "genus": "Microcebus", "genus_id": 41, "gestation": 59.99, "group_size": 1, "longevity": 144, "maternal_investment": 99.99, "name": "Microcebus_rufus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "rufus", "spp_id": 203, "subspecies": null, "weaning": 40 }, { "B": 0.011806135119180898, "B_true": 0.01190461760636732, "Bse": 0.00118061351191809, "M": 0.0024, "M_true": 0.0023663757670442814, "Mse": 0.00023999999999999998, "body": 312, "brain": 5.8, "genus": "Mirza", "genus_id": 43, "gestation": 88.58, "group_size": 1, "longevity": 183.6, "maternal_investment": 224.58, "name": "Mirza_coquereli", "research_effort": 3, "sex_maturity": 343.74, "social_learning": 0, "species": "coquereli", "spp_id": 208, "subspecies": null, "weaning": 136 }, { "B": 0.18788039163799947, "B_true": 0.19446475593685297, "Bse": 0.01878803916379995, "M": 0.11200769230769231, "M_true": 0.10785990856627342, "Mse": 0.011200769230769231, "body": 14561, "brain": 92.3, "genus": "Nasalis", "genus_id": 44, "gestation": 165.04, "group_size": 11.25, "longevity": 252, "maternal_investment": 376.79, "name": "Nasalis_larvatus", "research_effort": 17, "sex_maturity": 1894.11, "social_learning": 0, "species": "larvatus", "spp_id": 210, "subspecies": null, "weaning": 211.75 }, { "B": 0.24300282940134751, "B_true": 0.22802405802351525, "Bse": 0.024300282940134754, "M": 0.05665384615384615, "M_true": 0.058744723374683415, "Mse": 0.0056653846153846155, "body": 7365, "brain": 119.38, "genus": "Nomascus", "genus_id": 45, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Nomascus_gabriellae", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "gabriellae", "spp_id": 212, "subspecies": null, "weaning": null }, { "B": 0.02745944185478454, "B_true": 0.027974224420273888, "Bse": 0.002745944185478454, "M": 0.008153846153846154, "M_true": 0.007968460370427932, "Mse": 0.0008153846153846154, "body": 1060, "brain": 13.49, "genus": "Nycticebus", "genus_id": 46, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Nycticebus_bengalensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "bengalensis", "spp_id": 216, "subspecies": null, "weaning": null }, { "B": 0.020620025647810777, "B_true": 0.02081359807728917, "Bse": 0.0020620025647810777, "M": 0.0050230769230769235, "M_true": 0.0049453890259911265, "Mse": 0.0005023076923076924, "body": 653, "brain": 10.13, "genus": "Nycticebus", "genus_id": 46, "gestation": 191.09, "group_size": 1, "longevity": 318, "maternal_investment": 372.3, "name": "Nycticebus_coucang", "research_effort": 37, "sex_maturity": 660.82, "social_learning": 0, "species": "coucang", "spp_id": 217, "subspecies": null, "weaning": 181.21 }, { "B": 0.019683677000427464, "B_true": 0.019906736884471133, "Bse": 0.0019683677000427464, "M": 0.004876923076923077, "M_true": 0.004785323006521415, "Mse": 0.00048769230769230774, "body": 634, "brain": 9.67, "genus": "Nycticebus", "genus_id": 46, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Nycticebus_menagensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "menagensis", "spp_id": 219, "subspecies": null, "weaning": null }, { "B": 0.014716958088220329, "B_true": 0.014412546032927074, "Bse": 0.001471695808822033, "M": 0.0023615384615384614, "M_true": 0.0023846026757141396, "Mse": 0.00023615384615384614, "body": 307, "brain": 7.23, "genus": "Nycticebus", "genus_id": 46, "gestation": 185.42, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Nycticebus_pygmaeus", "research_effort": 19, "sex_maturity": null, "social_learning": 0, "species": "pygmaeus", "spp_id": 220, "subspecies": null, "weaning": null }, { "B": 0.023978667535163964, "B_true": 0.02502804774302765, "Bse": 0.0023978667535163966, "M": 0.008846153846153846, "M_true": 0.00848211328215164, "Mse": 0.0008846153846153846, "body": 1150, "brain": 11.78, "genus": "Otolemur", "genus_id": 47, "gestation": 131.04, "group_size": 3.5, "longevity": 225.6, "maternal_investment": 255.66, "name": "Otolemur_crassicaudatus", "research_effort": 36, "sex_maturity": 609.86, "social_learning": 1, "species": "crassicaudatus", "spp_id": 221, "subspecies": null, "weaning": 124.62 }, { "B": 0.023408716184582817, "B_true": 0.023632115661587856, "Bse": 0.002340871618458282, "M": 0.005876923076923077, "M_true": 0.005786798069694571, "Mse": 0.0005876923076923077, "body": 764, "brain": 11.5, "genus": "Otolemur", "genus_id": 47, "gestation": 132.24, "group_size": 1, "longevity": 204, "maternal_investment": 271.44, "name": "Otolemur_garnettii", "research_effort": 12, "sex_maturity": 592.15, "social_learning": 1, "species": "garnettii", "spp_id": 222, "subspecies": null, "weaning": 139.2 }, { "B": 0.6947096301422844, "B_true": 0.6756148686688036, "Bse": 0.06947096301422843, "M": 0.3007692307692308, "M_true": 0.30537789917692926, "Mse": 0.03007692307692308, "body": 39100, "brain": 341.29, "genus": "Pan", "genus_id": 48, "gestation": 235.24, "group_size": 85, "longevity": 576, "maternal_investment": 1316.55, "name": "Pan_paniscus", "research_effort": 225, "sex_maturity": 5465.72, "social_learning": 5, "species": "paniscus", "spp_id": 223, "subspecies": null, "weaning": 1081.31 }, { "B": 0.7945325381154965, "B_true": 0.7586872207120303, "Bse": 0.07945325381154966, "M": 0.29384615384615387, "M_true": 0.3016911291051189, "Mse": 0.029384615384615387, "body": 38200, "brain": 390.33, "genus": "Pan", "genus_id": 48, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Pan_troglodytes_schweinfurthii", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "troglodytes", "spp_id": 224, "subspecies": "schweinfurthii", "weaning": null }, { "B": 0.7390029922445907, "B_true": 0.7340553434373894, "Bse": 0.07390029922445907, "M": 0.40576923076923077, "M_true": 0.40590582444245193, "Mse": 0.04057692307692308, "body": 52750, "brain": 363.05, "genus": "Pan", "genus_id": 48, "gestation": 231.49, "group_size": 50, "longevity": 720, "maternal_investment": 1492.3, "name": "Pan_troglodytes_troglodytes", "research_effort": 755, "sex_maturity": 3897.96, "social_learning": 214, "species": "troglodytes", "spp_id": 225, "subspecies": "troglodytes", "weaning": 1260.81 }, { "B": 0.756691839517984, "B_true": 0.7369110492449576, "Bse": 0.0756691839517984, "M": 0.33807692307692305, "M_true": 0.3429249842863168, "Mse": 0.03380769230769231, "body": 43950, "brain": 371.74, "genus": "Pan", "genus_id": 48, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Pan_troglodytes_verus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "troglodytes", "spp_id": 227, "subspecies": "verus", "weaning": null }, { "B": 0.34079019683677, "B_true": 0.3357724934225274, "Bse": 0.034079019683677, "M": 0.1396153846153846, "M_true": 0.14039686713977165, "Mse": 0.013961538461538463, "body": 18150, "brain": 167.42, "genus": "Papio", "genus_id": 49, "gestation": 178.96, "group_size": 40, "longevity": 302.4, "maternal_investment": 775.56, "name": "Papio_anubis", "research_effort": 43, "sex_maturity": null, "social_learning": 4, "species": "anubis", "spp_id": 228, "subspecies": null, "weaning": 596.6 }, { "B": 0.3321798603619191, "B_true": 0.32665489972712114, "Bse": 0.03321798603619191, "M": 0.13192307692307692, "M_true": 0.1327468403323438, "Mse": 0.013192307692307692, "body": 17150, "brain": 163.19, "genus": "Papio", "genus_id": 49, "gestation": 172.99, "group_size": 48.2, "longevity": 540, "maternal_investment": 623.41, "name": "Papio_cynocephalus", "research_effort": 114, "sex_maturity": 2560.56, "social_learning": 2, "species": "cynocephalus", "spp_id": 229, "subspecies": null, "weaning": 450.42 }, { "B": 0.2975349604087365, "B_true": 0.2912037942788695, "Bse": 0.029753496040873652, "M": 0.10884615384615384, "M_true": 0.10994567225490397, "Mse": 0.010884615384615385, "body": 14150, "brain": 146.17, "genus": "Papio", "genus_id": 49, "gestation": 180, "group_size": 36.9, "longevity": 450, "maternal_investment": 543.96, "name": "Papio_hamadryas", "research_effort": 78, "sex_maturity": 1652.37, "social_learning": 1, "species": "hamadryas", "spp_id": 230, "subspecies": null, "weaning": 363.96 }, { "B": 0.29006452663504795, "B_true": 0.2916934896311853, "Bse": 0.029006452663504795, "M": 0.13866192307692307, "M_true": 0.13739152935099147, "Mse": 0.013866192307692309, "body": 18026.05, "brain": 142.5, "genus": "Papio", "genus_id": 49, "gestation": 184.42, "group_size": null, "longevity": 480, "maternal_investment": null, "name": "Papio_papio", "research_effort": 8, "sex_maturity": null, "social_learning": 3, "species": "papio", "spp_id": 231, "subspecies": null, "weaning": null }, { "B": 0.3623262157265862, "B_true": 0.36148541304269977, "Bse": 0.03623262157265862, "M": 0.17153846153846153, "M_true": 0.17059478626007538, "Mse": 0.017153846153846155, "body": 22300, "brain": 178, "genus": "Papio", "genus_id": 49, "gestation": 185.92, "group_size": 47, "longevity": 540, "maternal_investment": 1063.01, "name": "Papio_ursinus", "research_effort": 22, "sex_maturity": 1543.35, "social_learning": 5, "species": "ursinus", "spp_id": 232, "subspecies": null, "weaning": 877.09 }, { "B": 0.02528141347934944, "B_true": 0.025517622411014754, "Bse": 0.002528141347934944, "M": 0.006423076923076923, "M_true": 0.006339892030898009, "Mse": 0.0006423076923076923, "body": 835, "brain": 12.42, "genus": "Perodicticus", "genus_id": 50, "gestation": 193, "group_size": 1, "longevity": 312, "maternal_investment": 342.15, "name": "Perodicticus_potto", "research_effort": 10, "sex_maturity": 561.58, "social_learning": 0, "species": "potto", "spp_id": 233, "subspecies": null, "weaning": 149.15 }, { "B": 0.013597410792435932, "B_true": 0.013571001044168796, "Bse": 0.0013597410792435933, "M": 0.002607692307692308, "M_true": 0.0025894455054186827, "Mse": 0.0002607692307692308, "body": 339, "brain": 6.68, "genus": "Phaner", "genus_id": 51, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Phaner_furcifer_pallescens", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "furcifer", "spp_id": 235, "subspecies": "pallescens", "weaning": null }, { "B": 0.12944002279805403, "B_true": 0.1331532852779914, "Bse": 0.012944002279805404, "M": 0.06373076923076923, "M_true": 0.061909068949732304, "Mse": 0.006373076923076923, "body": 8285, "brain": 63.59, "genus": "Piliocolobus", "genus_id": 52, "gestation": 151.41, "group_size": 34, "longevity": null, "maternal_investment": 935.34, "name": "Piliocolobus_badius", "research_effort": 52, "sex_maturity": 1473.2, "social_learning": 0, "species": "badius", "spp_id": 236, "subspecies": null, "weaning": 783.93 }, { "B": 0.11653469578846663, "B_true": 0.11706033702616457, "Bse": 0.011653469578846665, "M": 0.04330769230769231, "M_true": 0.04284464286375423, "Mse": 0.004330769230769231, "body": 5630, "brain": 57.25, "genus": "Piliocolobus", "genus_id": 52, "gestation": 165, "group_size": 33.6, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_kirkii", "research_effort": 7, "sex_maturity": null, "social_learning": 1, "species": "kirkii", "spp_id": 239, "subspecies": null, "weaning": null }, { "B": 0.14442160115618705, "B_true": 0.14701060815928804, "Bse": 0.014442160115618705, "M": 0.06468461538461538, "M_true": 0.06341196795889464, "Mse": 0.006468461538461538, "body": 8409, "brain": 70.95, "genus": "Piliocolobus", "genus_id": 52, "gestation": null, "group_size": 34, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_tephrosceles", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "tephrosceles", "spp_id": 243, "subspecies": null, "weaning": null }, { "B": 0.06566653774909927, "B_true": 0.06335414900536364, "Bse": 0.006566653774909927, "M": 0.01353846153846154, "M_true": 0.013841639466133858, "Mse": 0.001353846153846154, "body": 1760, "brain": 32.26, "genus": "Pithecia", "genus_id": 53, "gestation": 161.13, "group_size": 2.7, "longevity": 248.4, "maternal_investment": 274.28, "name": "Pithecia_pithecia", "research_effort": 28, "sex_maturity": 1089.37, "social_learning": 0, "species": "pithecia", "spp_id": 246, "subspecies": null, "weaning": 113.15 }, { "B": 0.792843039469131, "B_true": 0.793846102520192, "Bse": 0.0792843039469131, "M": 0.4831923076923077, "M_true": 0.4793958567280874, "Mse": 0.048319230769230774, "body": 62815, "brain": 389.5, "genus": "Pongo", "genus_id": 54, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Pongo_abelii", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "abelii", "spp_id": 247, "subspecies": null, "weaning": null }, { "B": 0.7681722881511186, "B_true": 0.7675359965101487, "Bse": 0.07681722881511187, "M": 0.45032307692307694, "M_true": 0.44781715032138963, "Mse": 0.0450323076923077, "body": 58542, "brain": 377.38, "genus": "Pongo", "genus_id": 54, "gestation": 259.42, "group_size": 1, "longevity": 720, "maternal_investment": 1348.22, "name": "Pongo_pygmaeus", "research_effort": 321, "sex_maturity": 3318.62, "social_learning": 86, "species": "pygmaeus", "spp_id": 248, "subspecies": null, "weaning": 1088.8 }, { "B": 0.16345390518452174, "B_true": 0.16012759540638835, "Bse": 0.016345390518452175, "M": 0.0515, "M_true": 0.05194761983819961, "Mse": 0.00515, "body": 6695, "brain": 80.3, "genus": "Presbytis", "genus_id": 55, "gestation": null, "group_size": 7.05, "longevity": null, "maternal_investment": null, "name": "Presbytis_comata", "research_effort": 11, "sex_maturity": null, "social_learning": 0, "species": "comata", "spp_id": 249, "subspecies": null, "weaning": null }, { "B": 0.13200480387566918, "B_true": 0.1324579656508465, "Bse": 0.013200480387566918, "M": 0.05046153846153846, "M_true": 0.050010126421676904, "Mse": 0.005046153846153846, "body": 6560, "brain": 64.85, "genus": "Presbytis", "genus_id": 55, "gestation": null, "group_size": 14, "longevity": 192, "maternal_investment": null, "name": "Presbytis_melalophos", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "melalophos", "spp_id": 250, "subspecies": null, "weaning": null }, { "B": 0.10706943228774402, "B_true": 0.10634175339256312, "Bse": 0.010706943228774402, "M": 0.03423076923076923, "M_true": 0.0342115387708563, "Mse": 0.003423076923076923, "body": 4450, "brain": 52.6, "genus": "Procolobus", "genus_id": 56, "gestation": 167.84, "group_size": 6.3, "longevity": null, "maternal_investment": null, "name": "Procolobus_verus", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "verus", "spp_id": 251, "subspecies": null, "weaning": null }, { "B": 0.06145296883587437, "B_true": 0.06398104142510032, "Bse": 0.006145296883587437, "M": 0.028684615384615385, "M_true": 0.027513030643348493, "Mse": 0.0028684615384615385, "body": 3729, "brain": 30.19, "genus": "Propithecus", "genus_id": 57, "gestation": 140.99, "group_size": 5.5, "longevity": null, "maternal_investment": 321.95, "name": "Propithecus_coquereli", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "coquereli", "spp_id": 252, "subspecies": null, "weaning": 180.96 }, { "B": 0.061371547214362776, "B_true": 0.06353654979867168, "Bse": 0.006137154721436278, "M": 0.02716923076923077, "M_true": 0.026150854206503708, "Mse": 0.002716923076923077, "body": 3532, "brain": 30.15, "genus": "Propithecus", "genus_id": 57, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Propithecus_deckenii", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "deckenii", "spp_id": 253, "subspecies": null, "weaning": null }, { "B": 0.08101451340403444, "B_true": 0.08543662623327412, "Bse": 0.008101451340403444, "M": 0.04715384615384616, "M_true": 0.04455492254960739, "Mse": 0.004715384615384616, "body": 6130, "brain": 39.8, "genus": "Propithecus", "genus_id": 57, "gestation": 152.08, "group_size": 4.95, "longevity": null, "maternal_investment": 408.35, "name": "Propithecus_diadema", "research_effort": 28, "sex_maturity": 1683.65, "social_learning": 0, "species": "diadema", "spp_id": 254, "subspecies": null, "weaning": 256.27 }, { "B": 0.0803834958373196, "B_true": 0.08421616979088503, "Bse": 0.00803834958373196, "M": 0.04370769230769231, "M_true": 0.04158793418236678, "Mse": 0.004370769230769231, "body": 5682, "brain": 39.49, "genus": "Propithecus", "genus_id": 57, "gestation": null, "group_size": 6, "longevity": null, "maternal_investment": null, "name": "Propithecus_edwardsi", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "edwardsi", "spp_id": 255, "subspecies": null, "weaning": null }, { "B": 0.05335151749547093, "B_true": 0.05532395789741384, "Bse": 0.0053351517495470934, "M": 0.02273076923076923, "M_true": 0.021854208732249806, "Mse": 0.0022730769230769232, "body": 2955, "brain": 26.21, "genus": "Propithecus", "genus_id": 57, "gestation": 149.77, "group_size": 6.3, "longevity": 247.2, "maternal_investment": 327.6, "name": "Propithecus_verreauxi", "research_effort": 41, "sex_maturity": 943.94, "social_learning": 1, "species": "verreauxi", "spp_id": 257, "subspecies": null, "weaning": 177.83 }, { "B": 0.18606876055936655, "B_true": 0.18622337432722774, "Bse": 0.018606876055936656, "M": 0.07476923076923077, "M_true": 0.07432739499416856, "Mse": 0.007476923076923077, "body": 9720, "brain": 91.41, "genus": "Pygathrix", "genus_id": 58, "gestation": 182.88, "group_size": 9.3, "longevity": 300, "maternal_investment": null, "name": "Pygathrix_nemaeus", "research_effort": 25, "sex_maturity": null, "social_learning": 0, "species": "nemaeus", "spp_id": 259, "subspecies": null, "weaning": null }, { "B": 0.23970525373012805, "B_true": 0.24191237159027507, "Bse": 0.023970525373012808, "M": 0.11346153846153846, "M_true": 0.11202422555117772, "Mse": 0.011346153846153846, "body": 14750, "brain": 117.76, "genus": "Rhinopithecus", "genus_id": 59, "gestation": 199.34, "group_size": 65, "longevity": null, "maternal_investment": null, "name": "Rhinopithecus_roxellana", "research_effort": 36, "sex_maturity": null, "social_learning": 0, "species": "roxellana", "spp_id": 263, "subspecies": null, "weaning": null }, { "B": 0.016162191870051093, "B_true": 0.01604081400227214, "Bse": 0.0016162191870051094, "M": 0.0030846153846153844, "M_true": 0.003078882187140451, "Mse": 0.0003084615384615385, "body": 401, "brain": 7.94, "genus": "Saguinus", "genus_id": 61, "gestation": 148, "group_size": 6, "longevity": 294, "maternal_investment": 238.1, "name": "Saguinus_fuscicollis", "research_effort": 81, "sex_maturity": 406.61, "social_learning": 2, "species": "fuscicollis", "spp_id": 266, "subspecies": null, "weaning": 90.1 }, { "B": 0.020640381053188675, "B_true": 0.020421907759671235, "Bse": 0.0020640381053188676, "M": 0.003976923076923077, "M_true": 0.003983208120867212, "Mse": 0.00039769230769230767, "body": 517, "brain": 10.14, "genus": "Saguinus", "genus_id": 61, "gestation": null, "group_size": 6.9, "longevity": null, "maternal_investment": null, "name": "Saguinus_geoffroyi", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "geoffroyi", "spp_id": 268, "subspecies": null, "weaning": null }, { "B": 0.019744743216561157, "B_true": 0.019692393984042864, "Bse": 0.0019744743216561157, "M": 0.0040384615384615385, "M_true": 0.004027004298157044, "Mse": 0.0004038461538461539, "body": 525, "brain": 9.7, "genus": "Saguinus", "genus_id": 61, "gestation": 142.5, "group_size": 7.5, "longevity": null, "maternal_investment": null, "name": "Saguinus_leucopus", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "leucopus", "spp_id": 270, "subspecies": null, "weaning": null }, { "B": 0.01990758645958434, "B_true": 0.01992243829893825, "Bse": 0.0019907586459584343, "M": 0.004330769230769231, "M_true": 0.004304282708235792, "Mse": 0.0004330769230769231, "body": 563, "brain": 9.78, "genus": "Saguinus", "genus_id": 61, "gestation": 138.24, "group_size": 5.55, "longevity": 184.8, "maternal_investment": 207.84, "name": "Saguinus_midas", "research_effort": 17, "sex_maturity": 841.82, "social_learning": 0, "species": "midas", "spp_id": 271, "subspecies": null, "weaning": 69.6 }, { "B": 0.022574144564088995, "B_true": 0.022371868187008974, "Bse": 0.0022574144564088995, "M": 0.004492307692307692, "M_true": 0.004503147468639194, "Mse": 0.00044923076923076926, "body": 584, "brain": 11.09, "genus": "Saguinus", "genus_id": 61, "gestation": 148.28, "group_size": 5.4, "longevity": null, "maternal_investment": null, "name": "Saguinus_mystax", "research_effort": 46, "sex_maturity": 556.85, "social_learning": 0, "species": "mystax", "spp_id": 272, "subspecies": null, "weaning": null }, { "B": 0.019296924298247402, "B_true": 0.018645545126722642, "Bse": 0.0019296924298247402, "M": 0.0028846153846153848, "M_true": 0.0029395020959141795, "Mse": 0.0002884615384615385, "body": 375, "brain": 9.48, "genus": "Saguinus", "genus_id": 61, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Saguinus_niger", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "niger", "spp_id": 273, "subspecies": null, "weaning": null }, { "B": 0.019866875648828546, "B_true": 0.01941100107885394, "Bse": 0.0019866875648828545, "M": 0.0033153846153846154, "M_true": 0.003351111395629457, "Mse": 0.00033153846153846157, "body": 431, "brain": 9.76, "genus": "Saguinus", "genus_id": 61, "gestation": 166.49, "group_size": 7.05, "longevity": 277.2, "maternal_investment": 216.34, "name": "Saguinus_oedipus", "research_effort": 153, "sex_maturity": 680.38, "social_learning": 0, "species": "oedipus", "spp_id": 274, "subspecies": null, "weaning": 49.85 }, { "B": 0.05103100128239054, "B_true": 0.0465883807335298, "Bse": 0.005103100128239054, "M": 0.0060692307692307695, "M_true": 0.006387629582034547, "Mse": 0.000606923076923077, "body": 789, "brain": 25.07, "genus": "Saimiri", "genus_id": 62, "gestation": 161, "group_size": 25.1, "longevity": null, "maternal_investment": 523.93, "name": "Saimiri_oerstedii", "research_effort": 4, "sex_maturity": null, "social_learning": 1, "species": "oerstedii", "spp_id": 277, "subspecies": null, "weaning": 362.93 }, { "B": 0.049137948582246016, "B_true": 0.04522740737180396, "Bse": 0.004913794858224602, "M": 0.006146153846153846, "M_true": 0.00644585648140874, "Mse": 0.0006146153846153847, "body": 799, "brain": 24.14, "genus": "Saimiri", "genus_id": 62, "gestation": 164.09, "group_size": 34.85, "longevity": 324, "maternal_investment": 341.5, "name": "Saimiri_sciureus", "research_effort": 89, "sex_maturity": 1399.88, "social_learning": 1, "species": "sciureus", "spp_id": 278, "subspecies": null, "weaning": 177.41 }, { "B": 0.22580251185702366, "B_true": 0.22910421031152917, "Bse": 0.022580251185702366, "M": 0.1134, "M_true": 0.11129594273473964, "Mse": 0.011340000000000001, "body": 14742, "brain": 110.93, "genus": "Semnopithecus", "genus_id": 63, "gestation": 197.7, "group_size": 19, "longevity": 300, "maternal_investment": 599.8, "name": "Semnopithecus_entellus", "research_effort": 98, "sex_maturity": 1497.64, "social_learning": 2, "species": "entellus", "spp_id": 280, "subspecies": null, "weaning": 402.1 }, { "B": 0.2513892564170416, "B_true": 0.24605194730362973, "Bse": 0.025138925641704158, "M": 0.08688461538461538, "M_true": 0.08778151928851287, "Mse": 0.008688461538461539, "body": 11295, "brain": 123.5, "genus": "Symphalangus", "genus_id": 64, "gestation": 230.66, "group_size": 3.8, "longevity": 456, "maternal_investment": 866.04, "name": "Symphalangus_syndactylus", "research_effort": 40, "sex_maturity": 3788.23, "social_learning": 0, "species": "syndactylus", "spp_id": 281, "subspecies": null, "weaning": 635.38 }, { "B": 0.0064323080994158005, "B_true": 0.006398396170997541, "Bse": 0.0006432308099415801, "M": 0.0009692307692307692, "M_true": 0.0009662846307243696, "Mse": 9.692307692307692e-05, "body": 126, "brain": 3.16, "genus": "Tarsius", "genus_id": 65, "gestation": 125.84, "group_size": 1, "longevity": 144, "maternal_investment": 204.39, "name": "Tarsius_bancanus", "research_effort": 8, "sex_maturity": 658.68, "social_learning": 0, "species": "bancanus", "spp_id": 282, "subspecies": null, "weaning": 78.55 }, { "B": 0.00610662161336943, "B_true": 0.006053544174143023, "Bse": 0.000610662161336943, "M": 0.0008692307692307693, "M_true": 0.0008707057195066161, "Mse": 8.692307692307694e-05, "body": 113, "brain": 3, "genus": "Tarsius", "genus_id": 65, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Tarsius_dentatus", "research_effort": 2, "sex_maturity": null, "social_learning": 0, "species": "dentatus", "spp_id": 283, "subspecies": null, "weaning": null }, { "B": 0.006839416206973762, "B_true": 0.006748643888394787, "Bse": 0.0006839416206973763, "M": 0.0009692307692307692, "M_true": 0.0009719718346444506, "Mse": 9.692307692307692e-05, "body": 126, "brain": 3.36, "genus": "Tarsius", "genus_id": 65, "gestation": 177.99, "group_size": 1, "longevity": 180, "maternal_investment": 260.48, "name": "Tarsius_syrichta", "research_effort": 10, "sex_maturity": null, "social_learning": 0, "species": "syrichta", "spp_id": 285, "subspecies": null, "weaning": 82.49 }, { "B": 0.27139861990351544, "B_true": 0.2705332841832824, "Bse": 0.027139861990351545, "M": 0.11807692307692308, "M_true": 0.11753254391958348, "Mse": 0.011807692307692309, "body": 15350, "brain": 133.33, "genus": "Theropithecus", "genus_id": 66, "gestation": 178.64, "group_size": 10, "longevity": 336, "maternal_investment": 673.59, "name": "Theropithecus_gelada", "research_effort": 34, "sex_maturity": 1894.11, "social_learning": 0, "species": "gelada", "spp_id": 286, "subspecies": null, "weaning": 494.95 }, { "B": 0.11777637551651841, "B_true": 0.1196835632703411, "Bse": 0.011777637551651843, "M": 0.04918461538461538, "M_true": 0.04824428623587464, "Mse": 0.004918461538461538, "body": 6394, "brain": 57.86, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 27.4, "longevity": 373.2, "maternal_investment": null, "name": "Trachypithecus_cristatus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "cristatus", "spp_id": 288, "subspecies": null, "weaning": 362.93 }, { "B": 0.16548944572231156, "B_true": 0.16826473297372363, "Bse": 0.016548944572231158, "M": 0.07807692307692307, "M_true": 0.07646310437667654, "Mse": 0.007807692307692307, "body": 10150, "brain": 81.3, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 11, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_geei", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "geei", "spp_id": 291, "subspecies": null, "weaning": null }, { "B": 0.17220672949701793, "B_true": 0.17666853959118192, "Bse": 0.017220672949701792, "M": 0.08923076923076922, "M_true": 0.08683263300045753, "Mse": 0.008923076923076922, "body": 11600, "brain": 84.6, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 10, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_johnii", "research_effort": 9, "sex_maturity": null, "social_learning": 1, "species": "johnii", "spp_id": 293, "subspecies": null, "weaning": null }, { "B": 0.126447778207503, "B_true": 0.1285677967467715, "Bse": 0.0126447778207503, "M": 0.05427692307692308, "M_true": 0.05327029493941051, "Mse": 0.005427692307692308, "body": 7056, "brain": 62.12, "genus": "Trachypithecus", "genus_id": 67, "gestation": 146.63, "group_size": 10, "longevity": 300, "maternal_investment": 509.56, "name": "Trachypithecus_obscurus", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "obscurus", "spp_id": 295, "subspecies": null, "weaning": 362.93 }, { "B": 0.14826877277260977, "B_true": 0.14850525015648106, "Bse": 0.014826877277260979, "M": 0.0575, "M_true": 0.05699149861625795, "Mse": 0.005750000000000001, "body": 7475, "brain": 72.84, "genus": "Trachypithecus", "genus_id": 67, "gestation": 180.61, "group_size": 12.9, "longevity": null, "maternal_investment": 486.48, "name": "Trachypithecus_phayrei", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "phayrei", "spp_id": 296, "subspecies": null, "weaning": 305.87 }, { "B": 0.21096342133653592, "B_true": 0.21122282303042528, "Bse": 0.021096342133653592, "M": 0.09072307692307692, "M_true": 0.08981779035429772, "Mse": 0.009072307692307692, "body": 11794, "brain": 103.64, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 8.5, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_pileatus", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "pileatus", "spp_id": 297, "subspecies": null, "weaning": null }, { "B": 0.12475827956113747, "B_true": 0.12554257873620722, "Bse": 0.012475827956113747, "M": 0.04797692307692308, "M_true": 0.04737361262948138, "Mse": 0.004797692307692308, "body": 6237, "brain": 61.29, "genus": "Trachypithecus", "genus_id": 67, "gestation": 204.72, "group_size": 8.35, "longevity": 276, "maternal_investment": 450.5, "name": "Trachypithecus_vetulus", "research_effort": 2, "sex_maturity": 1113.7, "social_learning": 0, "species": "vetulus", "spp_id": 299, "subspecies": null, "weaning": 245.78 }, { "B": 0.0632645999145073, "B_true": 0.0651670157912468, "Bse": 0.00632645999145073, "M": 0.026692307692307692, "M_true": 0.025822721703427275, "Mse": 0.0026692307692307692, "body": 3470, "brain": 31.08, "genus": "Varecia", "genus_id": 68, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Varecia_rubra", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "rubra", "spp_id": 300, "subspecies": null, "weaning": null }, { "B": 0.0653815620738087, "B_true": 0.06720230087932219, "Bse": 0.00653815620738087, "M": 0.0275, "M_true": 0.026585947329910497, "Mse": 0.0027500000000000003, "body": 3575, "brain": 32.12, "genus": "Varecia", "genus_id": 68, "gestation": 102.5, "group_size": 2.8, "longevity": 384, "maternal_investment": 193.23, "name": "Varecia_variegata_variegata", "research_effort": 57, "sex_maturity": 701.52, "social_learning": 0, "species": "variegata", "spp_id": 301, "subspecies": "variegata", "weaning": 90.73 } ], "data-44338d165f119cd3ab492b5340442b35": [ { "avg_curve": 0, "curve_0": 0, "curve_1": 0, "curve_10": 0, "curve_11": 0, "curve_12": 0, "curve_13": 0, "curve_14": 0, "curve_15": 0, "curve_16": 0, "curve_17": 0, "curve_18": 0, "curve_19": 0, "curve_2": 0, "curve_20": 0, "curve_21": 0, "curve_22": 0, "curve_23": 0, "curve_24": 0, "curve_25": 0, "curve_26": 0, "curve_27": 0, "curve_28": 0, "curve_29": 0, "curve_3": 0, "curve_30": 0, "curve_31": 0, "curve_32": 0, "curve_33": 0, "curve_34": 0, "curve_35": 0, "curve_36": 0, "curve_37": 0, "curve_38": 0, "curve_39": 0, "curve_4": 0, "curve_40": 0, "curve_41": 0, "curve_42": 0, "curve_43": 0, "curve_44": 0, "curve_45": 0, "curve_46": 0, "curve_47": 0, "curve_48": 0, "curve_49": 0, "curve_5": 0, "curve_6": 0, "curve_7": 0, "curve_8": 0, "curve_9": 0, "x": 0 }, { "avg_curve": 0.02571845613465862, "curve_0": 0.025566765090932534, "curve_1": 0.025999469183498526, "curve_10": 0.026099369087976113, "curve_11": 0.02519121318636267, "curve_12": 0.026221075182390165, "curve_13": 0.02517361983185613, "curve_14": 0.02591373979462201, "curve_15": 0.026848110924379512, "curve_16": 0.024681767824902924, "curve_17": 0.026287999515986763, "curve_18": 0.025879896581749537, "curve_19": 0.02554649206640321, "curve_2": 0.025225997774011803, "curve_20": 0.025918134735478274, "curve_21": 0.02609788072164504, "curve_22": 0.025371882998551015, "curve_23": 0.025166884977882015, "curve_24": 0.025247994607256734, "curve_25": 0.025545668906537543, "curve_26": 0.026553837347960393, "curve_27": 0.02511112510598914, "curve_28": 0.025547982867435103, "curve_29": 0.02539099105550467, "curve_3": 0.02608412678463948, "curve_30": 0.02529214629933975, "curve_31": 0.028683495017695137, "curve_32": 0.025947775557211495, "curve_33": 0.024691722276509252, "curve_34": 0.027239978729288943, "curve_35": 0.027178723314082595, "curve_36": 0.025026268818948465, "curve_37": 0.025479803964832237, "curve_38": 0.026061688629437238, "curve_39": 0.026222500865666333, "curve_4": 0.02578881920721412, "curve_40": 0.025574582689359516, "curve_41": 0.024822854663531922, "curve_42": 0.026922684618266444, "curve_43": 0.025378692492329404, "curve_44": 0.02565675580343385, "curve_45": 0.024893991117082855, "curve_46": 0.025965470575058606, "curve_47": 0.025518093785339035, "curve_48": 0.02661553003954109, "curve_49": 0.025741272561755037, "curve_5": 0.025695343503766545, "curve_6": 0.026179204088814394, "curve_7": 0.026572613908125133, "curve_8": 0.025130841989563144, "curve_9": 0.025053836837409194, "x": 0.005494505494505495 }, { "avg_curve": 0.044269972701488323, "curve_0": 0.04463194865297212, "curve_1": 0.044045308254903166, "curve_10": 0.0446814213956405, "curve_11": 0.04383080919012593, "curve_12": 0.04498789857554309, "curve_13": 0.04355589590986838, "curve_14": 0.04464411431617743, "curve_15": 0.04603450670007346, "curve_16": 0.042568078001592534, "curve_17": 0.044807656521324686, "curve_18": 0.04458753192976924, "curve_19": 0.043876813077677414, "curve_2": 0.043813602259356016, "curve_20": 0.04436580054100194, "curve_21": 0.044506609052578465, "curve_22": 0.04341263008875853, "curve_23": 0.043088282551816674, "curve_24": 0.044161904002334676, "curve_25": 0.044116716403163475, "curve_26": 0.04544708558707364, "curve_27": 0.043834058298159534, "curve_28": 0.044364102954801275, "curve_29": 0.04385629648689223, "curve_3": 0.04477159922926915, "curve_30": 0.04366425701081469, "curve_31": 0.04885226201078804, "curve_32": 0.04493043816072366, "curve_33": 0.04267152499328514, "curve_34": 0.04627373144135061, "curve_35": 0.04608566372952489, "curve_36": 0.043596657947851766, "curve_37": 0.043954567222196324, "curve_38": 0.04450565514696928, "curve_39": 0.044907075166841184, "curve_4": 0.044196063733065845, "curve_40": 0.04369685025627143, "curve_41": 0.042959453526608585, "curve_42": 0.04601319856294761, "curve_43": 0.044049054066119114, "curve_44": 0.04386401720127769, "curve_45": 0.04291864918098336, "curve_46": 0.04449442987898815, "curve_47": 0.04357457484421195, "curve_48": 0.04515044260723554, "curve_49": 0.043950366156699026, "curve_5": 0.04403516901594545, "curve_6": 0.044370905910557853, "curve_7": 0.04549055229312022, "curve_8": 0.0434780667827404, "curve_9": 0.04343743977200273, "x": 0.01098901098901099 }, { "avg_curve": 0.06082485185066188, "curve_0": 0.06182857890905618, "curve_1": 0.059953997402891285, "curve_10": 0.06119472008306215, "curve_11": 0.06060113468721025, "curve_12": 0.061693209535678924, "curve_13": 0.06002432329636474, "curve_14": 0.061369461415998014, "curve_15": 0.06310503648864078, "curve_16": 0.058553008728514974, "curve_17": 0.06121057243258492, "curve_18": 0.06129306636632765, "curve_19": 0.06020672327754309, "curve_2": 0.060514566482907886, "curve_20": 0.06075816475244077, "curve_21": 0.0608177128344995, "curve_22": 0.059438308010546476, "curve_23": 0.05901539425800394, "curve_24": 0.061247576750382095, "curve_25": 0.06073045499015312, "curve_26": 0.062233446637414376, "curve_27": 0.060721253866510276, "curve_28": 0.061267850428122425, "curve_29": 0.06037736425573835, "curve_3": 0.06141156962257961, "curve_30": 0.06009582613694827, "curve_31": 0.06670506052523194, "curve_32": 0.061946877097696494, "curve_33": 0.05876483500800682, "curve_34": 0.063088562266497, "curve_35": 0.06276525119092602, "curve_36": 0.060320170180664164, "curve_37": 0.060468300816413856, "curve_38": 0.060865035754629246, "curve_39": 0.061515675273830284, "curve_4": 0.06056710509210745, "curve_40": 0.05977736018863195, "curve_41": 0.059210799397028314, "curve_42": 0.06295651372528112, "curve_43": 0.06081574095632722, "curve_44": 0.06002747380818463, "curve_45": 0.05902280022180244, "curve_46": 0.06097248596495125, "curve_47": 0.05958948440067202, "curve_48": 0.06150729631760774, "curve_49": 0.06009914432605249, "curve_5": 0.060346051639761, "curve_6": 0.060414013643847395, "curve_7": 0.06230204602074513, "curve_8": 0.05991399264300645, "curve_9": 0.05993277588022261, "x": 0.016483516483516484 }, { "avg_curve": 0.07620327101786724, "curve_0": 0.07791407452122377, "curve_1": 0.07461649180517586, "curve_10": 0.07649339764517711, "curve_11": 0.07626229908217529, "curve_12": 0.07718642367505174, "curve_13": 0.07536127426976436, "curve_14": 0.07691274817421584, "curve_15": 0.07893202665498465, "curve_16": 0.07341618629607999, "curve_17": 0.0763742437575759, "curve_18": 0.07681823601220106, "curve_19": 0.07535965097866747, "curve_2": 0.07609735639153506, "curve_20": 0.07594390096867619, "curve_21": 0.07590034878641289, "curve_22": 0.07428129994652014, "curve_23": 0.07377154919636925, "curve_24": 0.07724469984443355, "curve_25": 0.076188440135113, "curve_26": 0.07778301724505526, "curve_27": 0.07651686886893723, "curve_28": 0.07703831810115044, "curve_29": 0.07575028234784936, "curve_3": 0.07684735295515852, "curve_30": 0.07538179313616618, "curve_31": 0.0832026746426264, "curve_32": 0.07780028268178685, "curve_33": 0.07374370345096797, "curve_34": 0.07860719139269806, "curve_35": 0.07814526005680178, "curve_36": 0.07594694191021031, "curve_37": 0.07582491538620816, "curve_38": 0.07600249424450761, "curve_39": 0.07690515143354465, "curve_4": 0.07574181794840795, "curve_40": 0.07466064043005612, "curve_41": 0.07434739768331922, "curve_42": 0.07864053945633494, "curve_43": 0.07645465441950319, "curve_44": 0.07499202236537143, "curve_45": 0.07399417951331605, "curve_46": 0.07624565418652055, "curve_47": 0.07440773550039691, "curve_48": 0.07659296901473316, "curve_49": 0.07504037264178738, "curve_5": 0.07546488374357169, "curve_6": 0.07520386351870714, "curve_7": 0.07787680787023912, "curve_8": 0.07522001419409247, "curve_9": 0.07531026829108539, "x": 0.02197802197802198 }, { "avg_curve": 0.09076219236197365, "curve_0": 0.09322081151831464, "curve_1": 0.08841694198082281, "curve_10": 0.09094800704401466, "curve_11": 0.09114721198283128, "curve_12": 0.09183652017674684, "curve_13": 0.08990828743760883, "curve_14": 0.09163232981950607, "curve_15": 0.09389426759472856, "curve_16": 0.08749731074848012, "curve_17": 0.09067838175237553, "curve_18": 0.091520868193234, "curve_19": 0.08969350841980563, "curve_2": 0.09089819211797648, "curve_20": 0.09029116781568608, "curve_21": 0.0901307335980327, "curve_22": 0.08830260923854612, "curve_23": 0.08771395253554552, "curve_24": 0.0924782408499689, "curve_25": 0.09084019968701901, "curve_26": 0.09247321591214357, "curve_27": 0.09154744896278069, "curve_28": 0.09201633624690743, "curve_29": 0.09032222557969141, "curve_3": 0.09144536800844988, "curve_30": 0.08986873275799225, "curve_31": 0.0987606636133861, "curve_32": 0.09284144209504604, "curve_33": 0.08794492926222208, "curve_34": 0.09322810786097616, "curve_35": 0.09262593352511182, "curve_36": 0.09080574835163435, "curve_37": 0.0903747395726944, "curve_38": 0.090291736549611, "curve_39": 0.09144730787063964, "curve_4": 0.09008479394082501, "curve_40": 0.08871265371985639, "curve_41": 0.08870565462463378, "curve_42": 0.0934501008564853, "curve_43": 0.09130513336019622, "curve_44": 0.08912391665898634, "curve_45": 0.08817594792602029, "curve_46": 0.09068117068411637, "curve_47": 0.08839533073690987, "curve_48": 0.09079878975474318, "curve_49": 0.08914342909074505, "curve_5": 0.08975495895944684, "curve_6": 0.08912660300614479, "curve_7": 0.09259214496337348, "curve_8": 0.08973722571139282, "curve_9": 0.08990664303206981, "x": 0.027472527472527472 }, { "avg_curve": 0.10469969569332453, "curve_0": 0.10793426346041411, "curve_1": 0.10156716193267581, "curve_10": 0.1047637230617667, "curve_11": 0.1054413994089881, "curve_12": 0.10584798045408969, "curve_13": 0.10385527369601107, "curve_14": 0.10572712671702657, "curve_15": 0.10820162480805351, "curve_16": 0.1009850291302283, "curve_17": 0.10433286501565041, "curve_18": 0.10559959330012704, "curve_19": 0.10340672748343174, "curve_2": 0.10510431224690563, "curve_20": 0.10400380452356577, "curve_21": 0.10371685722174742, "curve_22": 0.1017020801692532, "curve_23": 0.10104039434878584, "curve_24": 0.10712968086774652, "curve_25": 0.10487994147414996, "curve_26": 0.10651299616875884, "curve_27": 0.10599521011852775, "curve_28": 0.1063916959047762, "curve_29": 0.10428610612749951, "curve_3": 0.10540871104803964, "curve_30": 0.10374918627564023, "curve_31": 0.11360864818648438, "curve_32": 0.10726546961804814, "curve_33": 0.10155569942385347, "curve_34": 0.10717127264867776, "curve_35": 0.1064280403040637, "curve_36": 0.10507990007409816, "curve_37": 0.10431234073525385, "curve_38": 0.10393947722726582, "curve_39": 0.1053480393656074, "curve_4": 0.1037979914966121, "curve_40": 0.10213587406705278, "curve_41": 0.10247264544907325, "curve_42": 0.1075981317593737, "curve_43": 0.10555610231953559, "curve_44": 0.10262584107843652, "curve_45": 0.10175864707610012, "curve_46": 0.10448245077911474, "curve_47": 0.10175471842794566, "curve_48": 0.1043406480422759, "curve_49": 0.10261261918957042, "curve_5": 0.10341751543474487, "curve_6": 0.10239518764497746, "curve_7": 0.10665696992678943, "curve_8": 0.10365528438860451, "curve_9": 0.10390928780932049, "x": 0.03296703296703297 }, { "avg_curve": 0.1181407885924379, "curve_0": 0.12217198818463172, "curve_1": 0.11420017372323218, "curve_10": 0.1180698144330376, "curve_11": 0.11926233292281806, "curve_12": 0.11934972276045488, "curve_13": 0.11732227484057502, "curve_14": 0.11932270972552636, "curve_15": 0.12198638526792768, "curve_16": 0.11399846700911982, "curve_17": 0.11746974820248891, "curve_18": 0.11917980062849712, "curve_19": 0.11662445296199599, "curve_2": 0.11883420824834533, "curve_20": 0.11721023361734505, "curve_21": 0.11678960676132766, "curve_22": 0.11460560224976542, "curve_23": 0.11387549357818398, "curve_24": 0.12131411636190949, "curve_25": 0.11843035265911665, "curve_26": 0.12003399651927724, "curve_27": 0.11997564342710253, "curve_28": 0.12028449657577107, "curve_29": 0.11776379836791957, "curve_3": 0.11886544342994068, "curve_30": 0.117144775531063, "curve_31": 0.1278910697549465, "curve_32": 0.12119572564600715, "curve_33": 0.11469429095297035, "curve_34": 0.12057494074999466, "curve_35": 0.11969026550702175, "curve_36": 0.11888550905097578, "curve_37": 0.1177605916572656, "curve_38": 0.11707585535525379, "curve_39": 0.11873708145735075, "curve_4": 0.11700869385205513, "curve_40": 0.11505779150122145, "curve_41": 0.11576662837463299, "curve_42": 0.12121871994853692, "curve_43": 0.11932709493473073, "curve_44": 0.11562544203654977, "curve_45": 0.11486258561735024, "curve_46": 0.11777769204007095, "curve_47": 0.11461334930330017, "curve_48": 0.11735418214314941, "curve_49": 0.11557655809411384, "curve_5": 0.11657938183517712, "curve_6": 0.11514337594256825, "curve_7": 0.12020290556022119, "curve_8": 0.11709406843039451, "curve_9": 0.11743672391669696, "x": 0.038461538461538464 }, { "avg_curve": 0.13117104347406341, "curve_0": 0.13601474261631996, "curve_1": 0.1264066723540772, "curve_10": 0.1309546496180644, "curve_11": 0.13269064315174336, "curve_12": 0.13242992423263386, "curve_13": 0.13039157020934777, "curve_14": 0.13250505519753927, "curve_15": 0.1353390158485888, "curve_16": 0.126619210058276, "curve_17": 0.13017920512682002, "curve_18": 0.13234734304919768, "curve_19": 0.12943230369928216, "curve_2": 0.132169174666384, "curve_20": 0.12999824243022318, "curve_21": 0.129438370357388, "curve_22": 0.12709922228770182, "curve_23": 0.1263044416840623, "curve_24": 0.13511065224319116, "curve_25": 0.13157548619836681, "curve_26": 0.13312619926205793, "curve_27": 0.13356808492796945, "curve_28": 0.1337771319731315, "curve_29": 0.13083880161868894, "curve_3": 0.13190316535206578, "curve_30": 0.13013881663018653, "curve_31": 0.14170654096135837, "curve_32": 0.13471678072031631, "curve_33": 0.12744174949266657, "curve_34": 0.13353343994918412, "curve_35": 0.13250718716312898, "curve_36": 0.13230229694239842, "curve_37": 0.13080364923766707, "curve_38": 0.12978977867669406, "curve_39": 0.13170312907360204, "curve_4": 0.12980393504676974, "curve_40": 0.12756551551735956, "curve_41": 0.12866866518350675, "curve_42": 0.1344034894145208, "curve_43": 0.13270010687702047, "curve_44": 0.1282099492311105, "curve_45": 0.1275701520511693, "curve_46": 0.13065455155041267, "curve_47": 0.12705829310076322, "curve_48": 0.12993190240734756, "curve_49": 0.12812310837505986, "curve_5": 0.12932728102777596, "curve_6": 0.12746237589876663, "curve_7": 0.13331992904767065, "curve_8": 0.13013574323883143, "curve_9": 0.13057023019415778, "x": 0.04395604395604396 }, { "avg_curve": 0.14385243745907592, "curve_0": 0.14952119113689374, "curve_1": 0.1382521227343848, "curve_10": 0.1434821567303534, "curve_11": 0.14578486149946576, "curve_12": 0.14515240417636624, "curve_13": 0.1431228171098054, "curve_14": 0.14533644407710253, "curve_15": 0.1483249842586353, "curve_16": 0.13890637232647393, "curve_17": 0.14252640925553078, "curve_18": 0.1451644125671029, "curve_19": 0.1418922613091671, "curve_2": 0.145168202638428, "curve_20": 0.14243133704492705, "curve_21": 0.14172776072778748, "curve_22": 0.1392451817375304, "curve_23": 0.13838886944047812, "curve_24": 0.14857677673599326, "curve_25": 0.14437626107207352, "curve_26": 0.14585469623920058, "curve_27": 0.1468301661338863, "curve_28": 0.146929388341947, "curve_29": 0.14357163556559152, "curve_3": 0.144585284170979, "curve_30": 0.14279169020845786, "curve_31": 0.15512632253949085, "curve_32": 0.1478899635807358, "curve_33": 0.13985682306185684, "curve_34": 0.1461148970932976, "curve_35": 0.14494708642251822, "curve_36": 0.14538815022515078, "curve_37": 0.1435024935306009, "curve_38": 0.14214553132324376, "curve_39": 0.14431035101423292, "curve_4": 0.14224669186141736, "curve_40": 0.13972203709146547, "curve_41": 0.14123753342462217, "curve_42": 0.1472186996445498, "curve_43": 0.1457346295198213, "curve_44": 0.14044244874131878, "curve_45": 0.13994103756356724, "curve_46": 0.14317645559319064, "curve_47": 0.13915250414112215, "curve_48": 0.14214060342520357, "curve_49": 0.1403157959676811, "curve_5": 0.1417239644208256, "curve_6": 0.1394180293708186, "curve_7": 0.14607313197683502, "curve_8": 0.14283988240095694, "curve_9": 0.1433687641545459, "x": 0.04945054945054945 }, { "avg_curve": 0.15623176434673416, "curve_0": 0.16273574143134018, "curve_1": 0.1497858066645805, "curve_10": 0.1557005540681604, "curve_11": 0.15858926789576658, "curve_12": 0.1575653182222292, "curve_13": 0.15556110067696513, "curve_14": 0.1578639069444038, "curve_15": 0.16099368416878354, "curve_16": 0.1509046019431767, "curve_17": 0.15456047847988874, "curve_18": 0.15767797293609428, "curve_19": 0.15405110388492513, "curve_2": 0.1578759052953878, "curve_20": 0.15455741637307846, "curve_21": 0.15370647780387614, "curve_22": 0.15109042206146556, "curve_23": 0.15017526300572345, "curve_24": 0.16175602293369037, "curve_25": 0.15687869995736756, "curve_26": 0.15826858103406788, "curve_27": 0.15980551241510146, "curve_28": 0.1597864784849548, "curve_29": 0.15600802251947296, "curve_3": 0.1569596483581858, "curve_30": 0.15514900941734752, "curve_31": 0.16820411223332593, "curve_32": 0.160761629204263, "curve_33": 0.1519838999086677, "curve_34": 0.15837062388398895, "curve_35": 0.15706137391890657, "curve_36": 0.1581868707327042, "curve_37": 0.15590318399699027, "curve_38": 0.1541915777843733, "curve_39": 0.1566071500727446, "curve_4": 0.15438447423273488, "curve_40": 0.15157485040981158, "curve_41": 0.1535176553643059, "curve_42": 0.1597143118305344, "curve_43": 0.15847564870070047, "curve_44": 0.1523705118186376, "curve_45": 0.15202032319520598, "curve_46": 0.1553912523435892, "curve_47": 0.1509434437962339, "curve_48": 0.15403058062482472, "curve_49": 0.15220251211756175, "curve_5": 0.15381677179054373, "curve_6": 0.15105990627893034, "curve_7": 0.15851160999635724, "curve_8": 0.15525150705249446, "curve_9": 0.15587689890185813, "x": 0.054945054945054944 }, { "avg_curve": 0.16834550234393433, "curve_0": 0.17569309113817932, "curve_1": 0.16104604194423328, "curve_10": 0.16764739687650504, "curve_11": 0.17113844144413862, "curve_12": 0.16970618617660055, "curve_13": 0.1677415966868973, "curve_14": 0.17012411168513325, "curve_15": 0.17338359600327038, "curve_16": 0.16264871548922102, "curve_17": 0.1663196413556577, "curve_18": 0.1699246401709515, "curve_19": 0.16594528422636834, "curve_2": 0.17032711186628702, "curve_20": 0.16641378616792793, "curve_21": 0.16541242804215062, "curve_22": 0.16267150081978093, "curve_23": 0.16169982897808396, "curve_24": 0.17468241599665144, "curve_25": 0.16911869910551366, "curve_26": 0.17040608891601264, "curve_27": 0.1725282098393081, "curve_28": 0.17238369865722541, "curve_29": 0.168183625345294, "curve_3": 0.16906354093896264, "curve_30": 0.16724634914519435, "curve_31": 0.18098169773361678, "curve_32": 0.1733679487192392, "curve_33": 0.16385760539620495, "curve_34": 0.17034053430835758, "curve_35": 0.168890028707048, "curve_36": 0.1707326709848273, "curve_37": 0.1680416391249667, "curve_38": 0.1659656496712941, "curve_39": 0.16863122722610796, "curve_4": 0.16625429202354403, "curve_40": 0.16316093484446645, "curve_41": 0.16554369098073166, "curve_42": 0.17192922796684995, "curve_43": 0.17095828074802025, "curve_44": 0.16403118152963445, "curve_45": 0.16384316104610813, "curve_46": 0.1673362145514631, "curve_47": 0.16246806232374367, "curve_48": 0.16564094862561052, "curve_49": 0.16382054101833657, "curve_5": 0.16564258035050183, "curve_6": 0.16242655143750756, "curve_7": 0.1706736015390152, "curve_8": 0.1674057425338206, "curve_9": 0.16812942233912898, "x": 0.06043956043956044 }, { "avg_curve": 0.1802228192053619, "curve_0": 0.18842104143907001, "curve_1": 0.17206339576885174, "curve_10": 0.1793526901481881, "curve_11": 0.1834600749096562, "curve_12": 0.18160499430216684, "curve_13": 0.17969245269486606, "curve_14": 0.18214638137469807, "curve_15": 0.18552547090611704, "curve_16": 0.174166560009182, "curve_17": 0.1778344212409164, "curve_18": 0.1819336960318626, "curve_19": 0.17760394033636362, "curve_2": 0.18254970819323635, "curve_20": 0.1780302515628823, "curve_21": 0.1768758799139551, "curve_22": 0.1740176235992103, "curve_23": 0.17299149516015544, "curve_24": 0.18738322610867403, "curve_25": 0.18112497470016706, "curve_26": 0.18229776696997974, "curve_27": 0.18502556934627637, "curve_28": 0.18474930780823964, "curve_29": 0.18012697416155357, "curve_3": 0.18092676075688283, "curve_30": 0.17911216709673636, "curve_31": 0.19349244032059895, "curve_32": 0.1857378694689398, "curve_33": 0.17550564183602024, "curve_34": 0.18205648169028993, "curve_35": 0.180464947531365, "curve_36": 0.18305295503164773, "curve_37": 0.179946588257927, "curve_38": 0.17749788186817306, "curve_39": 0.18041270535965187, "curve_4": 0.17788571902761668, "curve_40": 0.17450982677258978, "curve_41": 0.17734337607775116, "curve_42": 0.1838945213616313, "curve_43": 0.1832106385893347, "curve_44": 0.17545404777004764, "curve_45": 0.17543766503530497, "curve_46": 0.17904112564944946, "curve_47": 0.17375587029300987, "curve_48": 0.17700291649407895, "curve_49": 0.17519965941311097, "curve_5": 0.17723085782879652, "curve_6": 0.17354871528086135, "curve_7": 0.18258965733125712, "curve_8": 0.1793306956807633, "curve_9": 0.1801541799869006, "x": 0.06593406593406594 }, { "avg_curve": 0.19188752397553735, "curve_0": 0.20094232826302375, "curve_1": 0.1828627667247046, "curve_10": 0.1908409086310517, "curve_11": 0.19557680559479587, "curve_12": 0.1932862091593828, "curve_13": 0.19143666069232146, "curve_14": 0.19395465454815783, "curve_15": 0.19744439741160566, "curve_16": 0.18548087233958369, "curve_17": 0.1891297012352065, "curve_18": 0.19372904544790248, "curve_19": 0.18905084999127256, "curve_2": 0.19456648404581894, "curve_20": 0.1894311238932952, "curve_21": 0.18812151042528863, "curve_22": 0.185152611379914, "curve_23": 0.1840738578835942, "curve_24": 0.19988076074652955, "curve_25": 0.19292097736483999, "curve_26": 0.19396853122208105, "curve_27": 0.19731992577539376, "curve_28": 0.1969064000267906, "curve_29": 0.19186136811742127, "curve_3": 0.1925736227982447, "curve_30": 0.19076970177911595, "curve_31": 0.20576353376679393, "curve_32": 0.19789503919389828, "curve_33": 0.18695063396937633, "curve_34": 0.19354442169583913, "curve_35": 0.19181211515555321, "curve_36": 0.19517012777354054, "curve_37": 0.19164148933871153, "curve_38": 0.1888128469279141, "curve_39": 0.19197615646410546, "curve_4": 0.1893028816248797, "curve_40": 0.18564561239864438, "curve_41": 0.18893936704487924, "curve_42": 0.19563553249827567, "curve_43": 0.19525569552102678, "curve_44": 0.18666324234276827, "curve_45": 0.18682678880329995, "curve_46": 0.19053028272440228, "curve_47": 0.18483093097498765, "curve_48": 0.1881419102528669, "curve_49": 0.18636414722485695, "curve_5": 0.18860564402603555, "curve_6": 0.1844514472355007, "curve_7": 0.19428469719348307, "curve_8": 0.19104932495625723, "curve_9": 0.1919739233023179, "x": 0.07142857142857142 }, { "avg_curve": 0.2033593874583853, "curve_0": 0.21327586357109649, "curve_1": 0.19346479033486216, "curve_10": 0.20213236247224253, "curve_11": 0.20750745584333982, "curve_12": 0.20477013948583234, "curve_13": 0.20299332495672606, "curve_14": 0.20556881159268267, "curve_15": 0.20916119892945287, "curve_16": 0.19661053738662948, "curve_17": 0.2002261193706525, "curve_18": 0.2053305409904159, "curve_19": 0.20030575272718204, "curve_2": 0.20639638446184103, "curve_20": 0.2006365774043582, "curve_21": 0.19916978795982257, "curve_22": 0.19609623049470154, "curve_23": 0.194966498529184, "curve_24": 0.21219357989576218, "curve_25": 0.20452618801662253, "curve_26": 0.20543905732664683, "curve_27": 0.20942985732998912, "curve_28": 0.208874172870842, "curve_29": 0.20340616265651407, "curve_3": 0.20402431100697563, "curve_30": 0.20223825711446478, "curve_31": 0.2178175304179042, "curve_32": 0.20985910890417572, "curve_33": 0.19821137821734391, "curve_34": 0.2048258731135822, "curve_35": 0.20295306972701144, "curve_36": 0.20710282106165764, "curve_37": 0.20314582676024812, "curve_38": 0.1999309299778821, "curve_39": 0.20334197220212777, "curve_4": 0.20052580342110435, "curve_40": 0.19658827465982337, "curve_41": 0.20035048986120882, "curve_42": 0.20717328563712584, "curve_43": 0.2071125475798865, "curve_44": 0.19767878749961665, "curve_45": 0.19802959649763868, "curve_46": 0.20182385081900908, "curve_47": 0.19571320684744115, "curve_48": 0.1990790060427702, "curve_49": 0.19733414636673155, "curve_5": 0.19978689065331856, "curve_6": 0.1951555090383599, "curve_7": 0.2057794005542017, "curve_8": 0.2025807065753616, "curve_9": 0.2036075613989807, "x": 0.07692307692307693 }, { "avg_curve": 0.21465506619655422, "curve_0": 0.22543760543920033, "curve_1": 0.20388682062994856, "curve_10": 0.21324415216361936, "curve_11": 0.21926790221939335, "curve_12": 0.2160738887662651, "curve_13": 0.21437854977647083, "curve_14": 0.21700560296909502, "curve_15": 0.22069341114272403, "curve_16": 0.20757146879925706, "curve_17": 0.21114104368983674, "curve_18": 0.21675490975600323, "curve_19": 0.21138527462739537, "curve_2": 0.21805538632712826, "curve_20": 0.21166359793346837, "curve_21": 0.21003793878870977, "curve_22": 0.2068651225593062, "curve_23": 0.20568590413006702, "curve_24": 0.22433734806687713, "curve_25": 0.21595702498818503, "curve_26": 0.216726752990393, "curve_27": 0.2213710403591027, "curve_28": 0.22066881582676343, "curve_29": 0.21477767064282102, "curve_3": 0.21529582456332758, "curve_30": 0.21353410165562564, "curve_31": 0.22967340764362532, "curve_32": 0.22164664521449967, "curve_33": 0.2093037172543453, "curve_34": 0.21591893834523648, "curve_35": 0.21390592623919572, "curve_36": 0.21886675291388064, "curve_37": 0.21447601976174502, "curve_38": 0.2108692898445663, "curve_39": 0.21452732233490981, "curve_4": 0.21157134562750715, "curve_40": 0.20735463483858096, "curve_41": 0.21159261465111195, "curve_42": 0.21852547918674264, "curve_43": 0.21879729777627077, "curve_44": 0.20851753876903306, "curve_45": 0.2090621521606542, "curve_46": 0.21293881005698484, "curve_47": 0.2064195008588629, "curve_48": 0.20983193114802415, "curve_49": 0.20812661059359233, "curve_5": 0.21079139835190192, "curve_6": 0.2056783617934221, "curve_7": 0.21709117878326997, "curve_8": 0.21394092101287612, "curve_9": 0.21507103769984584, "x": 0.08241758241758242 }, { "avg_curve": 0.22578876754569252, "curve_0": 0.2374411853399397, "curve_1": 0.21414363539566267, "curve_10": 0.2241908554792933, "curve_11": 0.23087170190150377, "curve_12": 0.22721204063156625, "curve_13": 0.2256060788038004, "curve_14": 0.22827931740435345, "curve_15": 0.2320559852203902, "curve_16": 0.21837724301184336, "curve_17": 0.22188927331630273, "curve_18": 0.2280164205983585, "curve_19": 0.22230359381103698, "curve_2": 0.22955712997588856, "curve_20": 0.222526665333105, "curve_21": 0.22074064202160248, "curve_22": 0.217473473374444, "curve_23": 0.216246129611005, "curve_24": 0.23632544868896957, "curve_25": 0.2272274972113253, "curve_26": 0.22784645746160984, "curve_27": 0.23315686560415122, "curve_28": 0.23230415045482922, "curve_29": 0.22598981123798628, "curve_3": 0.22640265878834678, "curve_30": 0.22467111605202478, "curve_31": 0.24134733453563006, "curve_32": 0.23327178748020674, "curve_33": 0.22024116980442204, "curve_34": 0.22683903684566353, "curve_35": 0.22468611195511953, "curve_36": 0.23047534681421245, "curve_37": 0.22564607644788373, "curve_38": 0.22164255023988996, "curve_39": 0.22554684418984175, "curve_4": 0.22245388360103613, "curve_40": 0.21795902975751466, "curve_41": 0.22267928556993505, "curve_42": 0.22970719798825112, "curve_43": 0.2303236931600152, "curve_44": 0.21919386307195127, "curve_45": 0.21993816002013708, "curve_46": 0.22388963702874687, "curve_47": 0.2169641333271504, "curve_48": 0.22041578333312897, "curve_49": 0.21875598856696102, "curve_5": 0.22163349081501862, "curve_6": 0.216034875199159, "curve_7": 0.22823487463548708, "curve_8": 0.22514369147318117, "curve_9": 0.22637796146283842, "x": 0.08791208791208792 }, { "avg_curve": 0.23677274005156265, "curve_0": 0.24929837133903568, "curve_1": 0.22424795529838623, "curve_10": 0.23498503368266907, "curve_11": 0.24233055506227874, "curve_12": 0.23819716404807506, "curve_13": 0.2366877667224474, "curve_14": 0.23940227461194538, "curve_15": 0.24326180610197595, "curve_16": 0.2290395668364512, "curve_17": 0.23248355483816519, "curve_18": 0.23912737614228882, "curve_19": 0.23307293100147788, "curve_2": 0.24091338532643133, "curve_20": 0.23323825634461373, "curve_21": 0.23129054151072262, "curve_22": 0.2279335058145413, "curve_23": 0.22665928579903208, "curve_24": 0.24816943788278578, "curve_25": 0.23834968599263417, "curve_26": 0.23881095697179852, "curve_27": 0.24479889324407145, "curve_28": 0.24379210282165867, "curve_29": 0.23705458850845673, "curve_3": 0.23735730704243843, "curve_30": 0.23566127059125444, "curve_31": 0.2528532365832424, "curve_32": 0.24474673262372673, "curve_33": 0.23103539520075544, "curve_34": 0.23759944515671494, "curve_35": 0.23530690779788213, "curve_36": 0.2419401889136806, "curve_37": 0.23666807612498061, "curve_38": 0.23226330896538547, "curve_39": 0.2364131507497045, "curve_4": 0.23318580544461853, "curve_40": 0.22841381070358427, "curve_41": 0.23362218549931035, "curve_42": 0.24073143810734235, "curve_43": 0.241703594956451, "curve_44": 0.2297201383566494, "curve_45": 0.23066943667143908, "curve_46": 0.23468880695744854, "curve_47": 0.227359440614584, "curve_48": 0.23084356041537946, "curve_49": 0.22923472706634443, "curve_5": 0.232325511604922, "curve_6": 0.22623784962986404, "curve_7": 0.23922327767214388, "curve_8": 0.23620085490204826, "curve_9": 0.23754007377439154, "x": 0.09340659340659341 }, { "avg_curve": 0.247617642599229, "curve_0": 0.2610194172636982, "curve_1": 0.23421083406562418, "curve_10": 0.24563761238879045, "curve_11": 0.25365465330789194, "curve_12": 0.24904019349550388, "curve_13": 0.24763393449173945, "curve_14": 0.25038519623599303, "curve_15": 0.2543220825060801, "curve_16": 0.2395686295268379, "curve_17": 0.24293497066050346, "curve_18": 0.25009848319742933, "curve_19": 0.2437039187395499, "curve_2": 0.25213440309021984, "curve_20": 0.24380922294819019, "curve_21": 0.24169863085386253, "curve_22": 0.23825585065005192, "curve_23": 0.23693590659783023, "curve_24": 0.2598793865911778, "curve_25": 0.24933410780391527, "curve_26": 0.2496313725356431, "curve_27": 0.25630719591716594, "curve_28": 0.2551430594466549, "curve_29": 0.24798245183531595, "curve_3": 0.24817063844226883, "curve_30": 0.24651498478930978, "curve_31": 0.26420322031168475, "curve_32": 0.25608210031742745, "curve_33": 0.24169654323558928, "curve_34": 0.24821170291171984, "curve_35": 0.24577985530252405, "curve_36": 0.2532713726081965, "curve_37": 0.2475525324743259, "curve_38": 0.242742520935859, "curve_39": 0.24713721294350385, "curve_4": 0.2437778871847819, "curve_40": 0.23872971873856494, "curve_41": 0.24443148604829196, "curve_42": 0.2516095016143971, "curve_43": 0.2529473327660479, "curve_44": 0.24010712946623886, "curve_45": 0.24126626658479206, "curve_46": 0.24534717155608116, "curve_47": 0.23761615022907875, "curve_48": 0.24112655835044705, "curve_49": 0.23957364949822807, "curve_5": 0.2428781979881329, "curve_6": 0.2362984085559394, "curve_7": 0.25006751205534333, "curve_8": 0.2471227167337559, "curve_9": 0.24856759859036198, "x": 0.0989010989010989 }, { "avg_curve": 0.2583328273736162, "curve_0": 0.2726133306924116, "curve_1": 0.2440419571305858, "curve_10": 0.2561581733575172, "curve_11": 0.2648529470272566, "curve_12": 0.2597507202940203, "curve_13": 0.25845364177714664, "curve_14": 0.26123749020983383, "curve_15": 0.26524664577319834, "curve_16": 0.24997337269088596, "curve_17": 0.25325323641757397, "curve_18": 0.26093913671124136, "curve_19": 0.2542058843358415, "curve_2": 0.2632291842022955, "curve_20": 0.2542490822280369, "curve_21": 0.2519745482554988, "curve_22": 0.2484498306345877, "curve_23": 0.24708523029597393, "curve_24": 0.271464143214357, "curve_25": 0.2601899924520176, "curve_26": 0.26031745705195847, "curve_27": 0.26769062199201143, "curve_28": 0.26636614036179534, "curve_29": 0.2587825722626728, "curve_3": 0.2588521873130498, "curve_30": 0.257241403098217, "curve_31": 0.27540789845964675, "curve_32": 0.2672872130560487, "curve_33": 0.2522335224249533, "curve_34": 0.2586859236700054, "curve_35": 0.25611506812386253, "curve_36": 0.2644777629541555, "curve_37": 0.258308671987546, "curve_38": 0.25308979156131967, "curve_39": 0.2577286525429455, "curve_4": 0.25423958023714854, "curve_40": 0.24891617218682538, "curve_41": 0.25511611596914635, "curve_42": 0.26235129899384385, "curve_43": 0.26406397627226486, "curve_44": 0.2503642760692328, "curve_45": 0.25173767464859337, "curve_46": 0.25587424854341057, "curve_47": 0.24774366813615853, "curve_48": 0.25127467596560477, "curve_49": 0.24978224581503097, "curve_5": 0.25330096737197466, "curve_6": 0.24622629891595596, "curve_7": 0.2607773336513988, "curve_8": 0.2579183229383165, "curve_9": 0.2594695119936952, "x": 0.1043956043956044 }, { "avg_curve": 0.2689265602305985, "curve_0": 0.28408808191940094, "curve_1": 0.253749873898888, "curve_10": 0.2665551816369083, "curve_11": 0.27593335379751, "curve_12": 0.270337219427425, "curve_13": 0.2691548992146221, "curve_14": 0.2719674722321245, "curve_15": 0.2760441825278498, "curve_16": 0.26026170053488396, "curve_17": 0.2634469324030072, "curve_18": 0.2716576409299592, "curve_19": 0.2645870701934064, "curve_2": 0.27420568981711363, "curve_20": 0.2645662420125563, "curve_21": 0.26212680598207344, "curve_22": 0.25852368163937234, "curve_23": 0.25711541854984715, "curve_24": 0.2829315384337067, "curve_25": 0.2709254997799244, "curve_26": 0.2708778265734337, "curve_27": 0.2789570008513917, "curve_28": 0.2774694119326124, "curve_29": 0.26946305778263274, "curve_3": 0.2694103785601131, "curve_30": 0.26784860968280966, "curve_31": 0.2864766429978352, "curve_32": 0.2783703143898923, "curve_33": 0.2626542090058904, "curve_34": 0.2690310367213032, "curve_35": 0.2663214743266988, "curve_36": 0.27556720280864133, "curve_37": 0.2689446508539992, "curve_38": 0.26331360507803714, "curve_39": 0.26819597017116215, "curve_4": 0.26457923520116444, "curve_40": 0.25898149038928275, "curve_41": 0.26568397029797686, "curve_42": 0.2729655845174073, "curve_43": 0.2750615470001199, "curve_44": 0.2604999167699014, "curve_45": 0.2620916384563775, "curve_46": 0.2662784470330893, "curve_47": 0.25775030236470725, "curve_48": 0.26129665198958507, "curve_49": 0.2598688981474418, "curve_5": 0.2636021402979429, "curve_6": 0.25603012473644904, "curve_7": 0.2713613613074444, "curve_8": 0.26859567198555234, "curve_9": 0.2702537520235641, "x": 0.10989010989010989 }, { "avg_curve": 0.27940619475877354, "curve_0": 0.2954507691952304, "curve_1": 0.26334218096875334, "curve_10": 0.2768361648947857, "curve_11": 0.286902923138263, "curve_12": 0.280807228653648, "curve_13": 0.2797448361393004, "curve_14": 0.28258254071350775, "curve_15": 0.2867224183903314, "curve_16": 0.2704406459527407, "curve_17": 0.27352368622090095, "curve_18": 0.28226138409685814, "curve_19": 0.2748548078000882, "curve_2": 0.28507100729615925, "curve_20": 0.2747681790173898, "curve_21": 0.2721629714620302, "curve_22": 0.2684847272330858, "curve_23": 0.2670337292735105, "curve_24": 0.29428854720387426, "curve_25": 0.2815478908752244, "curve_26": 0.2813201428919578, "curve_27": 0.29011330522173534, "curve_28": 0.2884600550762079, "curve_29": 0.2800311234270521, "curve_3": 0.2798527056391738, "curve_30": 0.27834379810425075, "curve_31": 0.2974177848054261, "curve_32": 0.28933874138096527, "curve_33": 0.2729656120676442, "curve_34": 0.2792549778721428, "curve_35": 0.2764070075272565, "curve_36": 0.2865466758089056, "curve_37": 0.2794677263011391, "curve_38": 0.27342150478125776, "curve_39": 0.27854672532230723, "curve_4": 0.27480427856290446, "curve_40": 0.26893307033074715, "curve_41": 0.2761420756183651, "curve_42": 0.2834601420477682, "curve_43": 0.28594718568795596, "curve_44": 0.2705214660257175, "curve_45": 0.27233525600482267, "curve_46": 0.2765672454939272, "curve_47": 0.267643439508859, "curve_48": 0.2712002520508007, "curve_49": 0.26984105890423615, "curve_5": 0.27378911651154914, "curve_6": 0.26571753142660204, "curve_7": 0.2818272594458725, "curve_8": 0.2791618823353361, "curve_9": 0.2809273845073387, "x": 0.11538461538461539 }, { "avg_curve": 0.28977831150373734, "curve_0": 0.3067077510381723, "curve_1": 0.27282566850125706, "curve_10": 0.2870078567980502, "curve_11": 0.29776796839996333, "curve_12": 0.2911674917313287, "curve_13": 0.2902298347972993, "curve_14": 0.29308931671782307, "curve_15": 0.29728826487556104, "curve_16": 0.28051650339317713, "curve_17": 0.2834903187700579, "curve_18": 0.29275697819518326, "curve_19": 0.2850156568736114, "curve_2": 0.29583148306555646, "curve_20": 0.28486158127316324, "curve_21": 0.2820898120361137, "curve_22": 0.27833951825631703, "curve_23": 0.27684665486854676, "curve_24": 0.30554141848251104, "curve_25": 0.29206366504658265, "curve_26": 0.2916512595163335, "curve_27": 0.30116578115289666, "curve_28": 0.2993444999020533, "curve_29": 0.29049322735216937, "curve_3": 0.29018587287567466, "curve_30": 0.28873340707296363, "curve_31": 0.3082387732521983, "curve_32": 0.3001990626058273, "curve_33": 0.2831740056729855, "curve_34": 0.28936484189269646, "curve_35": 0.2863787596023638, "curve_36": 0.2974224368521501, "curve_37": 0.28988439366491947, "curve_38": 0.28342023709738523, "curve_39": 0.2887876802946224, "curve_4": 0.28492135398401014, "curve_40": 0.2787775278358007, "curve_41": 0.28649672230317563, "curve_42": 0.2938419335732034, "curve_43": 0.29672728624598727, "curve_44": 0.28043555558177063, "curve_45": 0.28247487984422864, "curve_46": 0.28674733404320696, "curve_47": 0.27742968581718463, "curve_48": 0.2809924180813958, "curve_49": 0.2797053931374685, "curve_5": 0.283868515744982, "curve_6": 0.27529535301225516, "curve_7": 0.29218188405212625, "curve_8": 0.28962332645768313, "curve_9": 0.2914967357755307, "x": 0.12087912087912088 }, { "avg_curve": 0.3000488305926341, "curve_0": 0.3178647533763121, "curve_1": 0.2822064384879775, "curve_10": 0.29707631295236075, "curve_11": 0.3085341735376687, "curve_12": 0.3014240742544178, "curve_13": 0.3006156389562194, "curve_14": 0.30349375717363936, "curve_15": 0.30774793819213453, "curve_16": 0.2904949363569669, "curve_17": 0.2933529622523895, "curve_18": 0.3031503719995925, "curve_19": 0.2950755179039353, "curve_2": 0.3064928301606289, "curve_20": 0.2948524632946932, "curve_21": 0.2919134119727116, "curve_22": 0.28809394568012353, "curve_23": 0.28656003400037916, "curve_24": 0.31669578029684325, "curve_25": 0.30247867065637535, "curve_26": 0.30187733971073777, "curve_27": 0.3121200532717712, "curve_28": 0.31012853469842916, "curve_29": 0.30085518095084685, "curve_3": 0.30041591056915784, "curve_30": 0.2990232302885752, "curve_31": 0.318946305191584, "curve_32": 0.31095718984034, "curve_33": 0.2932850357677717, "curve_34": 0.29936700571899205, "curve_35": 0.29624310408729987, "curve_36": 0.30820011773828027, "curve_37": 0.30020049728954235, "curve_38": 0.29331586806273136, "curve_39": 0.2989249165806979, "curve_4": 0.29493643655976975, "curve_40": 0.2885208117265156, "curve_41": 0.2967535715327401, "curve_42": 0.30411721930120494, "curve_43": 0.3074076041867018, "curve_44": 0.2902481488264287, "curve_45": 0.2925162256111651, "curve_46": 0.29682472951616323, "curve_47": 0.28711498125923773, "curve_48": 0.29067938904820656, "curve_49": 0.28946789363961756, "curve_5": 0.2938462915656366, "curve_6": 0.2847697311056046, "curve_7": 0.3024314007234513, "curve_8": 0.29998573928741656, "curve_9": 0.3019675000769816, "x": 0.12637362637362637 }, { "avg_curve": 0.310223103775453, "curve_0": 0.3289269571937608, "curve_1": 0.2914900012971991, "curve_10": 0.3070470056168841, "curve_11": 0.3192066804358783, "curve_12": 0.31158245829541265, "curve_13": 0.31090744269770154, "curve_14": 0.3138012474007203, "curve_15": 0.3181070563034152, "curve_16": 0.3003810652598206, "curve_17": 0.3031171565483971, "curve_18": 0.313446943472029, "curve_19": 0.3050397241132748, "curve_2": 0.3170602161703108, "curve_20": 0.3047462601655267, "curve_21": 0.301639268035746, "curve_22": 0.2977533328002803, "curve_23": 0.2961791429123187, "curve_24": 0.32775672570369574, "curve_25": 0.3127981957181203, "curve_26": 0.3120039529222106, "curve_27": 0.32298121088331716, "curve_28": 0.32081739505471485, "curve_29": 0.3111222388620883, "curve_3": 0.3105482690425812, "curve_30": 0.30921850622380925, "curve_31": 0.3295464303013736, "curve_32": 0.3216184693704665, "curve_33": 0.30330380757575265, "curve_34": 0.3092672290465312, "curve_35": 0.3060057969164241, "curve_36": 0.3188848135769987, "curve_37": 0.31042132117283, "curve_38": 0.30311387846217935, "curve_39": 0.3089639299524984, "curve_4": 0.30485492616689996, "curve_40": 0.298168297068729, "curve_41": 0.3069177427871227, "curve_42": 0.3142916557552348, "curve_43": 0.3179933452895184, "curve_44": 0.2999646342032508, "curve_45": 0.302464460735433, "curve_46": 0.3068048694760293, "curve_47": 0.29670469269353966, "curve_48": 0.3002667995191657, "curve_49": 0.2991339749525653, "curve_5": 0.30372782438919527, "curve_6": 0.2941462120277177, "curve_7": 0.31258138110645894, "curve_8": 0.31025430688878636, "curve_9": 0.3123448274066735, "x": 0.13186813186813187 }, { "avg_curve": 0.3203059903448304, "curve_0": 0.3398990708924363, "curve_1": 0.3006813552255857, "curve_10": 0.3169249018011248, "curve_11": 0.32979016098917535, "curve_12": 0.3216476204544881, "curve_13": 0.3211099636824725, "curve_14": 0.32401667743431234, "curve_15": 0.32837071896723197, "curve_16": 0.3101795399149537, "curve_17": 0.31278792866034116, "curve_18": 0.3236515759784799, "curve_19": 0.31491311729776844, "curve_2": 0.32753833582070213, "curve_20": 0.31454790511451314, "curve_21": 0.3112723682648315, "curve_22": 0.3073225112531332, "curve_23": 0.3057087707187281, "curve_24": 0.3387288837683287, "curve_25": 0.32302704264149007, "curve_26": 0.3220361542882897, "curve_27": 0.33375387905634063, "curve_28": 0.3314158374161294, "curve_29": 0.32129917323176, "curve_3": 0.3205878962038026, "curve_30": 0.319323992196671, "curve_31": 0.3400446379124744, "curve_32": 0.3321877573390764, "curve_33": 0.3132349577046463, "curve_34": 0.31907073723198465, "curve_35": 0.31567205943602783, "curve_36": 0.329481154116637, "curve_37": 0.32055166374534994, "curve_38": 0.3128192422625995, "curve_39": 0.3189097088652171, "curve_4": 0.31468172443857967, "curve_40": 0.3077248620480323, "curve_41": 0.31699388603942363, "curve_42": 0.3243703766511524, "curve_43": 0.3284892387755171, "curve_44": 0.3095899022266431, "curve_45": 0.3123242776172139, "curve_46": 0.3166926897346742, "curve_47": 0.3062036906760224, "curve_48": 0.30975976088688884, "curve_49": 0.3087085508687414, "curve_5": 0.31351799817858467, "curve_6": 0.30342982683759223, "curve_7": 0.3226368824143756, "curve_8": 0.3204337396145256, "curve_9": 0.3226333959845454, "x": 0.13736263736263737 }, { "avg_curve": 0.33030192028927485, "curve_0": 0.35078539053909014, "curve_1": 0.3097850526058421, "curve_10": 0.3267145282067115, "curve_11": 0.3402888771026114, "curve_12": 0.3316240967705766, "curve_13": 0.33122750411507834, "curve_14": 0.3341445055182536, "curve_15": 0.3385435742997844, "curve_16": 0.31989459983447843, "curve_17": 0.322369858755294, "curve_18": 0.3337687216927869, "curve_19": 0.32470011090688966, "curve_2": 0.33793147138731133, "curve_20": 0.32426189402447664, "curve_21": 0.3208172574692926, "curve_22": 0.31680588422479, "curve_23": 0.31515328201570475, "curve_24": 0.3496164786673706, "curve_25": 0.33316959042116356, "curve_26": 0.33197855075081967, "curve_27": 0.34444227780794295, "curve_28": 0.3419282003035425, "curve_29": 0.3313903354991024, "curve_3": 0.3305393020527992, "curve_30": 0.3293440259981906, "curve_31": 0.350445929188192, "curve_32": 0.3426694824460309, "curve_33": 0.3230827141419859, "curve_34": 0.32878229019669125, "curve_35": 0.3252466473922789, "curve_36": 0.33999336312328027, "curve_37": 0.3305959000833183, "curve_38": 0.3224364918242329, "curve_39": 0.3287667996557346, "curve_4": 0.324421298777642, "curve_40": 0.3171949518884028, "curve_41": 0.3269862418296269, "curve_42": 0.3343580601432153, "curve_43": 0.3388995982091262, "curve_44": 0.3191284095190871, "curve_45": 0.32209995450492923, "curve_46": 0.3264926888191231, "curve_47": 0.31561641332011303, "curve_48": 0.3191629288715151, "curve_49": 0.31819609886664363, "curve_5": 0.3232212642275162, "curve_6": 0.3126251578385276, "curve_7": 0.33260251354988934, "curve_8": 0.33052833298205053, "curve_9": 0.33283747257379453, "x": 0.14285714285714285 }, { "avg_curve": 0.3402149472344693, "curve_0": 0.3615898504133482, "curve_1": 0.31880525517121977, "curve_10": 0.33642002565008766, "curve_11": 0.3507067310227091, "curve_12": 0.34151603712551654, "curve_13": 0.34126400186651323, "curve_14": 0.34418881133394497, "curve_15": 0.34862987456293715, "curve_16": 0.3295301247859611, "curve_17": 0.33186713549604363, "curve_18": 0.3438024547508803, "curve_19": 0.334404742915791, "curve_2": 0.34824354336610697, "curve_20": 0.33389233949155206, "curve_21": 0.3302780921008024, "curve_22": 0.32620747942013306, "curve_23": 0.3245166693504939, "curve_24": 0.36042337928282964, "curve_25": 0.3432298467800261, "curve_26": 0.34183535645991225, "curve_27": 0.3550502717598721, "curve_28": 0.3523584556612663, "curve_29": 0.3413997082030615, "curve_3": 0.3404066127486912, "curve_30": 0.3392825775641064, "curve_31": 0.36075487759318664, "curve_32": 0.353067698528497, "curve_33": 0.33285094656167175, "curve_34": 0.3384062401422417, "curve_35": 0.3347339087111681, "curve_36": 0.3504253081942859, "curve_37": 0.34055803406849305, "curve_38": 0.33196977254105214, "curve_39": 0.3385393611815003, "curve_4": 0.3340777360044858, "curve_40": 0.32658263241108226, "curve_41": 0.3368986916409107, "curve_42": 0.3442589851719969, "curve_43": 0.3492283725776086, "curve_44": 0.3285842324713757, "curve_45": 0.3317954065339956, "curve_46": 0.3362089819990708, "curve_47": 0.32494691980464, "curve_48": 0.3284805600583226, "curve_49": 0.32760071410050173, "curve_5": 0.3328416946158798, "curve_6": 0.32173639427815026, "curve_7": 0.34248249051751883, "curve_8": 0.3405420187215784, "curve_9": 0.34296096306770074, "x": 0.14835164835164835 }, { "avg_curve": 0.35004879314049864, "curve_0": 0.37231606571921877, "curve_1": 0.32774578075530486, "curve_10": 0.3460451949958984, "curve_11": 0.3610473078573934, "curve_12": 0.3513272511676123, "curve_13": 0.3512230736488934, "curve_14": 0.35415334094267237, "curve_15": 0.3586335232535853, "curve_16": 0.33908967748107344, "curve_17": 0.34128360272914376, "curve_18": 0.35375651613009845, "curve_19": 0.34403072045857785, "curve_2": 0.3584781532763168, "curve_20": 0.343443016451577, "curve_21": 0.33965868655614045, "curve_22": 0.3355309937678882, "curve_23": 0.3338025975064801, "curve_24": 0.3711531411122459, "curve_25": 0.35321149220094583, "curve_26": 0.3516104395347963, "curve_27": 0.365581412096444, "curve_28": 0.36271025223101333, "curve_29": 0.35133094872998855, "curve_3": 0.3501936162498349, "curve_30": 0.34914329260762406, "curve_31": 0.3709756799146612, "curve_32": 0.36338612896869626, "curve_33": 0.34254320880651895, "curve_34": 0.3479465802411612, "curve_35": 0.34413783223833455, "curve_36": 0.3607805428440056, "curve_37": 0.35044174243123016, "curve_38": 0.34142288895117623, "curve_39": 0.3482312109372733, "curve_4": 0.3436547876392958, "curve_40": 0.33589163523372406, "curve_41": 0.34673480044463284, "curve_42": 0.35407707901802643, "curve_43": 0.3594791894371827, "curve_44": 0.3379611125289033, "curve_45": 0.3414142288217303, "curve_46": 0.3458453468892503, "curve_47": 0.3341989355284147, "curve_48": 0.33771655959080704, "curve_49": 0.3369261549610884, "curve_5": 0.3423830273294262, "curve_6": 0.3307673793325108, "curve_7": 0.35228068319223643, "curve_8": 0.3504784078876546, "curve_9": 0.3530074552168731, "x": 0.15384615384615385 }, { "avg_curve": 0.3598068862869657, "curve_0": 0.38296736891117883, "curve_1": 0.3366101429436442, "curve_10": 0.355593536180758, "curve_11": 0.37131391173245026, "curve_12": 0.36106124733180933, "curve_13": 0.36110805171721005, "curve_14": 0.3640415449808267, "curve_15": 0.36855811511296926, "curve_16": 0.3485765398576909, "curve_17": 0.35062279914012534, "curve_18": 0.36363435179094733, "curve_19": 0.35358145775439226, "curve_2": 0.3686386200538203, "curve_20": 0.352917400942783, "curve_21": 0.34896255250628627, "curve_22": 0.3447798313997056, "curve_23": 0.3430144411266804, "curve_24": 0.38180904191712295, "curve_25": 0.3631179173532065, "curve_26": 0.361307361789972, "curve_27": 0.37603897224959143, "curve_28": 0.37298695243051566, "curve_29": 0.3611874264989286, "curve_3": 0.3599038010940437, "curve_30": 0.35892952970599673, "curve_31": 0.38111219959608494, "curve_32": 0.37362820444551137, "curve_33": 0.3521627749992619, "curve_34": 0.3574069859852902, "curve_35": 0.35346208912497007, "curve_36": 0.3710623422934406, "curve_37": 0.3602504121842047, "curve_38": 0.35079934390557727, "curve_39": 0.35784586423538606, "curve_4": 0.35315590837484734, "curve_40": 0.34512539616614935, "curve_41": 0.35649785286729235, "curve_42": 0.3638159576982732, "curve_43": 0.3696553915969425, "curve_44": 0.3472624946627585, "curve_45": 0.3509597330939996, "curve_46": 0.35540526219402874, "curve_47": 0.34337589046686307, "curve_48": 0.3468745216687644, "curve_49": 0.34617588177716313, "curve_5": 0.35184870459444145, "curve_6": 0.33972165000016913, "curve_7": 0.3620006550527794, "curve_8": 0.3603408275070464, "curve_9": 0.3629802549548049, "x": 0.15934065934065933 }, { "avg_curve": 0.3694923937503204, "curve_0": 0.39354684077649893, "curve_1": 0.34540158494689066, "curve_10": 0.365068281568856, "curve_11": 0.38150959672320156, "curve_12": 0.3707212661961418, "curve_13": 0.3709220152580663, "curve_14": 0.37385661131836667, "curve_15": 0.37840697032752574, "curve_16": 0.3579937441043754, "curve_17": 0.3598879921408538, "curve_18": 0.373439145289919, "curve_19": 0.36306010853041487, "curve_2": 0.37872801118255367, "curve_20": 0.3623187032380323, "curve_21": 0.35819293250602574, "curve_22": 0.3539571361118816, "curve_23": 0.3521553168725955, "curve_24": 0.39239411222863096, "curve_25": 0.37295225509778906, "curve_26": 0.3709294126906862, "curve_27": 0.3864259784325943, "curve_28": 0.38319166389966586, "curve_29": 0.37097225476094875, "curve_3": 0.36954038955065477, "curve_30": 0.36864439201460997, "curve_31": 0.39116800376645666, "curve_32": 0.383797095222453, "curve_33": 0.3617126704240952, "curve_34": 0.36679085051362753, "curve_35": 0.3627100681842634, "curve_36": 0.38127373409011295, "curve_37": 0.3699871726320324, "curve_38": 0.36010237204308243, "curve_39": 0.36738656769571104, "curve_4": 0.3625842889630279, "curve_40": 0.3542870880256866, "curve_41": 0.36619088412229717, "curve_42": 0.3734789604919538, "curve_43": 0.3797600684976462, "curve_44": 0.3564915602505292, "curve_45": 0.3604349790037172, "curve_46": 0.36489194082608317, "curve_47": 0.3524809519528886, "curve_48": 0.35595776414707153, "curve_49": 0.35535308989080683, "curve_5": 0.36124190564616715, "curve_6": 0.34860247118333665, "curve_7": 0.37164569714369666, "curve_8": 0.3701323519212701, "curve_9": 0.37288241746828776, "x": 0.16483516483516483 }, { "avg_curve": 0.3791082493287357, "curve_0": 0.4040573371801248, "curve_1": 0.35412310870178354, "curve_10": 0.37447242462390434, "curve_11": 0.3916371934651897, "curve_12": 0.38031030915764663, "curve_13": 0.3806678173857533, "curve_14": 0.3836014931406768, "curve_15": 0.38818316392975233, "curve_16": 0.36734409933873957, "curve_17": 0.36908220699195443, "curve_18": 0.3831738458221581, "curve_19": 0.37246959389683754, "curve_2": 0.3887491694745655, "curve_20": 0.3716498963245823, "curve_21": 0.3673528288784541, "curve_22": 0.36306581926815984, "curve_23": 0.3612281110675529, "curve_24": 0.40291116159899526, "curve_25": 0.3827174080110357, "curve_26": 0.38047963854010614, "curve_27": 0.39674523591284405, "curve_28": 0.39332726663706225, "curve_29": 0.3806883179459035, "curve_3": 0.37910636612135556, "curve_30": 0.378290754539751, "curve_31": 0.4011463950615497, "curve_32": 0.39389573891824803, "curve_33": 0.371195698084904, "curve_34": 0.3761013149673826, "curve_35": 0.3718849062681608, "curve_36": 0.39141752445215866, "curve_37": 0.3796549228970956, "curve_38": 0.36933496856123155, "curve_39": 0.37685632803359564, "curve_4": 0.3719428844851022, "curve_40": 0.3633796488418371, "curve_41": 0.37581670661335703, "curve_42": 0.38306917961577175, "curve_43": 0.38979608320363396, "curve_44": 0.3656512553381296, "curve_45": 0.3698428010615346, "curve_46": 0.37430835837608556, "curve_47": 0.3615170528510406, "curve_48": 0.36496935826216886, "curve_49": 0.36446073808450374, "curve_5": 0.3705655748975181, "curve_6": 0.357412864968272, "curve_7": 0.3812188572685479, "curve_8": 0.37985582974280147, "curve_9": 0.3827167739225448, "x": 0.17032967032967034 }, { "avg_curve": 0.3886571776787246, "curve_0": 0.41450151219762654, "curve_1": 0.36277750000426606, "curve_10": 0.38380874468472553, "curve_11": 0.4016993321672397, "curve_12": 0.38983116321408284, "curve_13": 0.390348108482075, "curve_14": 0.3932789332219026, "curve_15": 0.39788955120562497, "curve_16": 0.37663021466888935, "curve_17": 0.3782082519621511, "curve_18": 0.39284119246096744, "curve_19": 0.38181262643768116, "curve_2": 0.39870473622749975, "curve_20": 0.3809137405134586, "curve_21": 0.3764450286694148, "curve_22": 0.3721085839100471, "curve_23": 0.370235503583563, "curve_24": 0.4133628013098227, "curve_25": 0.3924160721783731, "curve_26": 0.38996086769977445, "curve_27": 0.40699935173637186, "curve_28": 0.40339643646552825, "curve_29": 0.3903382953034145, "curve_3": 0.38860450217110587, "curve_30": 0.3878712877150437, "curve_31": 0.4110504391137244, "curve_32": 0.40392686451721627, "curve_33": 0.380614461665182, "curve_34": 0.38534129470977274, "curve_35": 0.3809895145035271, "curve_36": 0.4014963210522212, "curve_37": 0.38925635571382855, "curve_38": 0.378499914074231, "curve_39": 0.3862579369360873, "curve_4": 0.381234438781483, "curve_40": 0.372405806225683, "curve_41": 0.3853779329350874, "curve_42": 0.39258948586429243, "curve_43": 0.3997660957427252, "curve_44": 0.37474431505934047, "curve_45": 0.37918583191498234, "curve_46": 0.38365727771468283, "curve_47": 0.3704869158998542, "curve_48": 0.3739121543071436, "curve_49": 0.3735015731418483, "curve_5": 0.37982244628108286, "curve_6": 0.366155635913953, "curve_7": 0.3907229652158791, "curve_8": 0.38951390716033196, "curve_9": 0.3924859545691706, "x": 0.17582417582417584 }, { "avg_curve": 0.39814171527955816, "curve_0": 0.424881838221509, "curve_1": 0.37136735032262075, "curve_10": 0.3930798284789995, "curve_11": 0.4116984626103659, "curve_12": 0.39928642248527324, "curve_13": 0.39996535647374004, "curve_14": 0.4028914850089862, "curve_15": 0.407528789758641, "curve_16": 0.3858545192258555, "curve_17": 0.3872687401706188, "curve_18": 0.4024437352124992, "curve_19": 0.39109173113320017, "curve_2": 0.4085971713472844, "curve_20": 0.390112804808746, "curve_21": 0.3854721253125074, "curve_22": 0.3810879456923317, "curve_23": 0.3791799885834156, "curve_24": 0.4237514641112142, "curve_25": 0.4020507578641726, "curve_26": 0.3993757324893659, "curve_27": 0.41719075447912013, "curve_28": 0.4134016654222748, "curve_29": 0.39992468144019094, "curve_3": 0.3980373773189526, "curve_30": 0.39738847788221615, "curve_31": 0.4208829884165983, "curve_32": 0.4138930132300174, "curve_33": 0.3899713854742239, "curve_34": 0.39451350208531194, "curve_35": 0.39002660106363374, "curve_36": 0.4115125528183648, "curve_37": 0.39879397809796496, "curve_38": 0.3875997961956203, "curve_39": 0.395593992663413, "curve_4": 0.39046150566626475, "curve_40": 0.3813680985289165, "curve_41": 0.3948769958559259, "curve_42": 0.4020425508728088, "curve_43": 0.4096725833867563, "curve_44": 0.3837732848389932, "curve_45": 0.38846652256965436, "curve_46": 0.3929412703564733, "curve_47": 0.3793930748467741, "curve_48": 0.38278880391670506, "curve_49": 0.3824781511719384, "curve_5": 0.38901506438742117, "curve_6": 0.37483339300072155, "curve_7": 0.4001606546640368, "curve_8": 0.3991090481860418, "curve_9": 0.40219240882404955, "x": 0.1813186813186813 }, { "avg_curve": 0.40756422872575365, "curve_0": 0.43520062351648797, "curve_1": 0.37989507581631676, "curve_10": 0.40228808889028583, "curve_11": 0.4216368716065666, "curve_12": 0.4086785069886669, "curve_13": 0.4095218645296433, "curve_14": 0.4124415310192586, "curve_15": 0.41710335875827326, "curve_16": 0.3950192796444624, "curve_17": 0.3962661086367581, "curve_18": 0.41198385338777344, "curve_19": 0.40030926361382335, "curve_2": 0.41842877091353137, "curve_20": 0.3992494855484925, "curve_21": 0.3944365375246469, "curve_22": 0.39000625114524173, "curve_23": 0.3880638926146345, "curve_24": 0.4340794214580093, "curve_25": 0.4116238075499797, "curve_26": 0.40872668829019265, "curve_27": 0.42732171149218123, "curve_28": 0.4233452795576185, "curve_29": 0.4094498042427229, "curve_3": 0.40740739810008236, "curve_30": 0.40684464516403257, "curve_31": 0.4306467031378142, "curve_32": 0.4237965567007272, "curve_33": 0.39926873185438616, "curve_34": 0.4036204662661547, "curve_35": 0.3989986910234513, "curve_36": 0.42146848722100316, "curve_37": 0.4082701293833062, "curve_38": 0.39663702836321685, "curve_39": 0.40486691889282406, "curve_4": 0.3996264674341391, "curve_40": 0.390268893299733, "curve_41": 0.40431616575860585, "curve_42": 0.4114308665363074, "curve_43": 0.4195178583542087, "curve_44": 0.39274053888790367, "curve_45": 0.397687160034492, "curve_46": 0.40216273509720557, "curve_47": 0.3882378928825121, "curve_48": 0.3916017794986663, "curve_49": 0.3913928562088887, "curve_5": 0.3981458029054604, "curve_6": 0.3834485687677089, "curve_7": 0.4095343822893073, "curve_8": 0.40864355232652305, "curve_9": 0.41183842279221977, "x": 0.18681318681318682 }, { "avg_curve": 0.41692693075662496, "curve_0": 0.44546002761282105, "curve_1": 0.38836293399003186, "curve_10": 0.41143578139934683, "curve_11": 0.4315166983052579, "curve_12": 0.4180096790897703, "curve_13": 0.4190197865724585, "curve_14": 0.4219312989627132, "curve_15": 0.42661557580424697, "curve_16": 0.4041266153830108, "curve_17": 0.40520263496592196, "curve_18": 0.4214637717025693, "curve_19": 0.40946742615432535, "curve_2": 0.4282016825781975, "curve_20": 0.4083260227354545, "curve_21": 0.4033405258571015, "curve_22": 0.39886569367308017, "curve_23": 0.3968893904611971, "curve_24": 0.4443487986247152, "curve_25": 0.42113741174360225, "curve_26": 0.41801603028110745, "curve_27": 0.43739434402323263, "curve_28": 0.4332294545380414, "curve_29": 0.41891584058521947, "curve_3": 0.4167168143171078, "curve_30": 0.41624195912827355, "curve_31": 0.44034406934832787, "curve_32": 0.43363971296582576, "curve_33": 0.40850861643765823, "curve_34": 0.4126645506328829, "curve_35": 0.4079081437468396, "curve_36": 0.4313662454294875, "curve_37": 0.4176869970287412, "curve_38": 0.405613866329321, "curve_39": 0.4140789812274703, "curve_4": 0.4087315510746157, "curve_40": 0.399110403450142, "curve_41": 0.41369756592682616, "curve_42": 0.4207567620206453, "curve_43": 0.429304083328698, "curve_44": 0.40164829640482913, "curve_45": 0.40684988278530254, "curve_46": 0.4113239143420709, "curve_47": 0.39702357878906086, "curve_48": 0.40035339125034325, "curve_49": 0.40024791650442654, "curve_5": 0.4072168807784261, "curve_6": 0.3920034360710515, "curve_7": 0.4188464445060676, "curve_8": 0.4181195700712075, "curve_9": 0.4214261346297665, "x": 0.19230769230769232 }, { "avg_curve": 0.4262318943594032, "curve_0": 0.4556620748580266, "curve_1": 0.39677303833594146, "curve_10": 0.4205250185460956, "curve_11": 0.4413399476665323, "curve_12": 0.42728205797349306, "curve_13": 0.42846114092913457, "curve_14": 0.4313628759272352, "curve_15": 0.43606761176152864, "curve_16": 0.4131785122029917, "curve_17": 0.41408045202352206, "curve_18": 0.43088557444298664, "curve_19": 0.41856828174445393, "curve_2": 0.43791791911897077, "curve_20": 0.4173445144017026, "curve_21": 0.4121862072514782, "curve_22": 0.4076683276264481, "curve_23": 0.40565851908690737, "curve_24": 0.4545615880132746, "curve_25": 0.430593622890262, "curve_26": 0.4272459081593888, "curve_27": 0.4474106405288564, "curve_28": 0.4430562293793635, "curve_29": 0.42832483015184636, "curve_3": 0.4259677334244596, "curve_30": 0.4255824525709978, "curve_31": 0.4499774150534295, "curve_32": 0.4434245604988923, "curve_33": 0.4176930215710384, "curve_34": 0.421647968057611, "curve_35": 0.41675716817406155, "curve_36": 0.44120781565417555, "curve_37": 0.4270466305269056, "curve_38": 0.4145324226640718, "curve_39": 0.4232323017179755, "curve_4": 0.417778842534863, "curve_40": 0.40789470147565937, "curve_41": 0.42302318599795513, "curve_42": 0.4300224187246379, "curve_43": 0.4390332851174234, "curve_44": 0.41049863582701746, "curve_45": 0.41595669437081834, "curve_46": 0.4204269084688248, "curve_47": 0.4057522011420469, "curve_48": 0.40904580212034003, "curve_49": 0.4090454188573305, "curve_5": 0.41623037641539784, "curve_6": 0.4005001228180952, "curve_7": 0.42809899219157, "curve_8": 0.4275391165224246, "curve_9": 0.430957548063793, "x": 0.1978021978021978 }, { "avg_curve": 0.4354810652244477, "curve_0": 0.46580866639228957, "curve_1": 0.4051273712563146, "curve_10": 0.42955778269874134, "curve_11": 0.4511085023655499, "curve_12": 0.4364976324227784, "curve_13": 0.43784782238901365, "curve_14": 0.44073822090678333, "curve_15": 0.44546150385971334, "curve_16": 0.4221768340747168, "curve_17": 0.4229015608890839, "curve_18": 0.44025121797627537, "curve_19": 0.42761376651427485, "curve_2": 0.44757937041355467, "curve_20": 0.4263069292917551, "curve_21": 0.4209755678897852, "curve_22": 0.41641608072699865, "curve_23": 0.4143731899467059, "curve_24": 0.46471966091387795, "curve_25": 0.4399943676599797, "curve_26": 0.4364183391383658, "curve_27": 0.45737246843836443, "curve_28": 0.4528275185797648, "curve_29": 0.4376786876456555, "curve_3": 0.4351621332304605, "curve_30": 0.43486803369079174, "curve_31": 0.45954892434418537, "curve_32": 0.4531530506173503, "curve_33": 0.4268238081751939, "curve_34": 0.43057279439371393, "curve_35": 0.42554783631435616, "curve_36": 0.4509950649355179, "curve_37": 0.4363509536887911, "curve_38": 0.42339467955979104, "curve_39": 0.4323288716844128, "curve_4": 0.42677029931361626, "curve_40": 0.41662373200950387, "curve_41": 0.432294893846552, "curve_42": 0.4392298834898531, "curve_43": 0.44870736671792705, "curve_44": 0.4192935074119701, "curve_45": 0.42500947542973644, "curve_46": 0.42947368851018775, "curve_47": 0.4144257008493009, "curve_48": 0.41768104101388515, "curve_49": 0.4177873212641339, "curve_5": 0.42518824023992424, "curve_6": 0.40894062497137573, "curve_7": 0.437294043687145, "curve_8": 0.4369040834354211, "curve_9": 0.44043454433628004, "x": 0.2032967032967033 }, { "avg_curve": 0.444676272784369, "curve_0": 0.4759015907685031, "curve_1": 0.41342779550932834, "curve_10": 0.4385359373686034, "curve_11": 0.4608241333481559, "curve_12": 0.4456582721428455, "curve_13": 0.4471816128932849, "curve_14": 0.4500591759055757, "curve_15": 0.4547991673012096, "curve_16": 0.4311233337301943, "curve_17": 0.4316678423328302, "curve_18": 0.4495625418396617, "curve_19": 0.43660570074581595, "curve_2": 0.457187814056482, "curve_20": 0.4352151181011188, "curve_21": 0.4297104745791275, "curve_22": 0.4251107650768389, "curve_23": 0.4230351998958276, "curve_24": 0.4748247779355431, "curve_25": 0.44934145783942736, "curve_26": 0.4455352194645583, "curve_27": 0.4672815845861801, "curve_28": 0.4625451228772534, "curve_29": 0.44697921361096, "curve_3": 0.4443018731539169, "curve_30": 0.4441004968801856, "curve_31": 0.4690606499344336, "curve_32": 0.4628270184813315, "curve_33": 0.4359027262565812, "curve_34": 0.43944098042531854, "curve_35": 0.4342820951970496, "curve_36": 0.46072974959795915, "curve_37": 0.44560177553264024, "curve_38": 0.4322025001758168, "curve_39": 0.4413705630780862, "curve_4": 0.43570776162119423, "curve_40": 0.4252993229460348, "curve_41": 0.44151444611914886, "curve_42": 0.448381080305069, "curve_43": 0.45832811801660156, "curve_44": 0.42803474438558814, "curve_45": 0.43400999434218385, "curve_46": 0.438466107392235, "curve_47": 0.4230459022601801, "curve_48": 0.42626101448973286, "curve_49": 0.4264754641277429, "curve_5": 0.4340923058098975, "curve_6": 0.41732681806674277, "curve_7": 0.4464334963186323, "curve_8": 0.4462162498917317, "curve_9": 0.44985889279314767, "x": 0.2087912087912088 }, { "avg_curve": 0.453819240031039, "curve_0": 0.48594253340193205, "curve_1": 0.4216760643812194, "curve_10": 0.4474612372700868, "curve_11": 0.4704885092219681, "curve_12": 0.4547657378304309, "curve_13": 0.4564641910430061, "curve_14": 0.4593274758133002, "curve_15": 0.4640824055826947, "curve_16": 0.4400196620484551, "curve_17": 0.4403810670176894, "curve_18": 0.45882127860191274, "curve_19": 0.4455457986647711, "curve_2": 0.4667449248039738, "curve_20": 0.4440708234684028, "curve_21": 0.4383926848722426, "curve_22": 0.43375408694675305, "curve_23": 0.4316462408891384, "curve_24": 0.4848785982879288, "curve_25": 0.4586366000192467, "curve_26": 0.45459833465742855, "curve_27": 0.4771396444945031, "curve_28": 0.4722107388195778, "curve_29": 0.4562281040589183, "curve_3": 0.45338870423337596, "curve_30": 0.45328153232351437, "curve_31": 0.4785145243050825, "curve_32": 0.47244819287721923, "curve_33": 0.4449314242572884, "curve_34": 0.44825436248825723, "curve_35": 0.4429617774931715, "curve_36": 0.4704135245509838, "curve_37": 0.45480079996820644, "curve_38": 0.44095763872415605, "curve_39": 0.45035913858339993, "curve_4": 0.44459296230226475, "curve_40": 0.4339231953297943, "curve_41": 0.45068349760478627, "curve_42": 0.457477820711976, "curve_43": 0.46789722530596556, "curve_44": 0.4367240728534236, "curve_45": 0.44295991670259044, "curve_46": 0.44740590992680646, "curve_47": 0.4316145230418268, "curve_48": 0.4347875171560316, "curve_49": 0.4351115802219196, "curve_5": 0.4429442997046198, "curve_6": 0.42566046744997144, "curve_7": 0.4555191366391608, "curve_8": 0.4554772917928613, "curve_9": 0.45923226030375336, "x": 0.21428571428571427 }, { "avg_curve": 0.46291159227360756, "curve_0": 0.4959330850051459, "curve_1": 0.4298738307554708, "curve_10": 0.45633533729354087, "curve_11": 0.4801032046379369, "curve_12": 0.46382169015567887, "curve_13": 0.46569714058317047, "curve_14": 0.4685447572153443, "curve_15": 0.47331291970175327, "curve_16": 0.44886737642908814, "curve_17": 0.44904290459727997, "curve_18": 0.46802906266140526, "curve_19": 0.45443567717518385, "curve_2": 0.4762522830029067, "curve_20": 0.45287568888760643, "curve_21": 0.4470238560930115, "curve_22": 0.4423476555064913, "curve_23": 0.4402079086323529, "curve_24": 0.4948826880670748, "curve_25": 0.46788140423746977, "curve_26": 0.46360936864249147, "curve_27": 0.4869482106591569, "curve_28": 0.4818259673047297, "curve_29": 0.4654269590559245, "curve_3": 0.4624242780556544, "curve_30": 0.46241273456040777, "curve_31": 0.487912369642108, "curve_32": 0.48201820494783, "curve_33": 0.45391145739757116, "curve_34": 0.4570146719404095, "curve_35": 0.4515886109857116, "curve_36": 0.4800479515907086, "curve_37": 0.46394963443707415, "curve_38": 0.4496617494643682, "curve_39": 0.4592962606281997, "curve_4": 0.4534275356866826, "curve_40": 0.4424969721752241, "curve_41": 0.4598036095964799, "curve_42": 0.4665218130857882, "curve_43": 0.4774162797780348, "curve_44": 0.44536312064041444, "curve_45": 0.4518608137712125, "curve_46": 0.4562947417244299, "curve_47": 0.44013318298728005, "curve_48": 0.4432622409394622, "curve_49": 0.443697303578036, "curve_5": 0.4517458503437932, "curve_6": 0.43394323740358814, "curve_7": 0.46455264956504855, "curve_8": 0.46468879033152843, "curve_9": 0.4685562196666427, "x": 0.21978021978021978 }, { "avg_curve": 0.47195486497534006, "curve_0": 0.505874749139796, "curve_1": 0.4380226552231633, "curve_10": 0.4651598005326774, "curve_11": 0.4896697077933915, "curve_12": 0.47282769779830697, "curve_13": 0.47488195799589966, "curve_14": 0.4777125662766116, "curve_15": 0.48249231639392925, "curve_16": 0.4576679482855918, "curve_17": 0.4576549318539126, "curve_18": 0.47718743811907255, "curve_19": 0.4632768636747493, "curve_2": 0.48571138213578835, "curve_20": 0.4616312666813118, "curve_21": 0.45560555340979286, "curve_22": 0.4508929906350165, "curve_23": 0.44872171032172325, "curve_24": 0.5048385276741622, "curve_25": 0.477077391714779, "curve_26": 0.47256991192201425, "curve_27": 0.4967087599678755, "curve_28": 0.49139232122570076, "curve_29": 0.47457729040966473, "curve_3": 0.4714101547443879, "curve_30": 0.47149561014942065, "curve_31": 0.49725590672566733, "curve_32": 0.49153859600611166, "curve_33": 0.4628442951420399, "curve_34": 0.4657235436316823, "curve_35": 0.46016422703893856, "curve_36": 0.4896345068316849, "curve_37": 0.47304979764482, "curve_38": 0.45831639474992103, "curve_39": 0.4681834994448262, "curve_4": 0.46221302550805965, "curve_40": 0.45102218635648594, "curve_41": 0.46887625737475713, "curve_42": 0.47551467093745386, "curve_43": 0.4868867851267509, "curve_44": 0.45395342519879683, "curve_45": 0.46071417003717247, "curve_46": 0.4651341571684095, "curve_47": 0.4486034118947366, "curve_48": 0.4516867833748337, "curve_49": 0.45223417743464756, "curve_5": 0.460498495877592, "curve_6": 0.442176699308917, "curve_7": 0.47353562654907566, "curve_8": 0.47385223957335476, "curve_9": 0.47783225713323507, "x": 0.22527472527472528 }, { "avg_curve": 0.48095051078624246, "curve_0": 0.5157689489969678, "curve_1": 0.44612401335673946, "curve_10": 0.47393610548676024, "curve_11": 0.49918942716781034, "curve_12": 0.48178524465822864, "curve_13": 0.4840200593157265, "curve_14": 0.4868323658165265, "curve_15": 0.491622115523423, "curve_16": 0.4664227697702449, "curve_17": 0.4662186399988097, "curve_18": 0.48629786584366347, "curve_19": 0.4720708030675369, "curve_2": 0.49512363559372335, "curve_20": 0.4703390251541912, "curve_21": 0.46413925707777237, "curve_22": 0.4593915299277094, "curve_23": 0.4571890715880984, "curve_24": 0.5147475184769187, "curve_25": 0.4862260017968201, "curve_26": 0.48148146890568416, "curve_27": 0.5064226903607859, "curve_28": 0.5009112323329704, "curve_29": 0.483680528567309, "curve_3": 0.48034781012803973, "curve_30": 0.4805315845459739, "curve_31": 0.5065467629038732, "curve_32": 0.5010108245485437, "curve_33": 0.47173132790065336, "curve_34": 0.4743825235010805, "curve_35": 0.468690168194362, "curve_36": 0.49917458737901166, "curve_37": 0.482102726500261, "curve_38": 0.4669230522467046, "curve_39": 0.4770223403025699, "curve_4": 0.4709508920085729, "curve_40": 0.4595002876856824, "curve_41": 0.4779028369245777, "curve_42": 0.4844579203619231, "curve_43": 0.49631016437235176, "curve_44": 0.46249644070271695, "curve_45": 0.46952139000577975, "curve_46": 0.47392562656941833, "curve_47": 0.457026656636145, "curve_48": 0.4600626550399752, "curve_49": 0.46072366136913245, "curve_5": 0.4692036912658969, "curve_6": 0.4503623389663337, "curve_7": 0.4824695729135286, "curve_8": 0.4829690532618024, "curve_9": 0.4870617791612336, "x": 0.23076923076923078 }, { "avg_curve": 0.48989990587115384, "curve_0": 0.525617033501375, "curve_1": 0.4541793022513034, "curve_10": 0.4826656525399998, "curve_11": 0.508663697586153, "curve_12": 0.49069573634304586, "curve_13": 0.49311278626326266, "curve_14": 0.49590554167545786, "curve_15": 0.5007037567324475, "curve_16": 0.4751331598257012, "curve_17": 0.4747354412386521, "curve_18": 0.49536172982940657, "curve_19": 0.4808188640736706, "curve_2": 0.504490382772837, "curve_20": 0.4790003550285758, "curve_21": 0.4726263689535749, "curve_22": 0.46784463500022244, "curve_23": 0.4656113427441106, "curve_24": 0.524610988807155, "curve_25": 0.4953285982017698, "curve_26": 0.4903454645055227, "curve_27": 0.5160913268266759, "curve_28": 0.5103840574114651, "curve_29": 0.4927380288234084, "curve_3": 0.48923864218915064, "curve_30": 0.4895220082919164, "curve_31": 0.5157864792649974, "curve_32": 0.5104362725672861, "curve_33": 0.48057387305926935, "curve_34": 0.48299307540943504, "curve_35": 0.47716789500201556, "curve_36": 0.5086695173346281, "curve_37": 0.49110978236001623, "curve_38": 0.475483121426524, "curve_39": 0.4858141900143728, "curve_4": 0.47964251833099225, "curve_40": 0.46793264928026923, "curve_41": 0.4868846709805299, "curve_42": 0.49335300673851434, "curve_43": 0.5056877660039144, "curve_44": 0.4709935444305296, "curve_45": 0.4782838043062437, "curve_46": 0.4826705426022948, "curve_47": 0.46540428751582086, "curve_48": 0.4683912862422704, "curve_49": 0.4691671377129934, "curve_5": 0.47786281464731134, "curve_6": 0.45850156317848906, "curve_7": 0.49135591444731175, "curve_8": 0.49204057094250997, "curve_9": 0.496246118493057, "x": 0.23626373626373626 }, { "avg_curve": 0.4988043556186081, "curve_0": 0.5354202828209647, "curve_1": 0.462189846422507, "curve_10": 0.4913497698057865, "curve_11": 0.5180937856909431, "curve_12": 0.49956050602003815, "curve_13": 0.5021614117796657, "curve_14": 0.5049334084583327, "curve_15": 0.5097386054390907, "curve_16": 0.48380036964478357, "curve_17": 0.4832066746975056, "curve_18": 0.5043803429317282, "curve_19": 0.4895223449211358, "curve_2": 0.5138128945758798, "curve_20": 0.4876165752491356, "curve_21": 0.4810682183704638, "curve_22": 0.4762535971742747, "curve_23": 0.4739898044189782, "curve_24": 0.5344301993744722, "curve_25": 0.5043864746572038, "curve_26": 0.4991632500842568, "curve_27": 0.5257159268151725, "curve_28": 0.5198120838548009, "curve_29": 0.5017510769209994, "curve_3": 0.4980839768819166, "curve_30": 0.4984681625999917, "curve_31": 0.5249765171054204, "curve_32": 0.5198162512458485, "curve_33": 0.4893731804208412, "curve_34": 0.49155658730064805, "curve_35": 0.48559879218000257, "curve_36": 0.5181205532181505, "curve_37": 0.5000722566624433, "curve_38": 0.48399792942353453, "curve_39": 0.4945603828057599, "curve_4": 0.4882892162843248, "curve_40": 0.47632057330588645, "curve_41": 0.49582301448151617, "curve_42": 0.5022013007741003, "curve_43": 0.5150208695224473, "curve_44": 0.47944604252117895, "curve_45": 0.48700267520202817, "curve_46": 0.4913702261120475, "curve_47": 0.4737376040052243, "curve_48": 0.4766740330477801, "curve_49": 0.4775659173377342, "curve_5": 0.48647717308404603, "curve_6": 0.4665957056860922, "curve_7": 0.5001960033563533, "curve_8": 0.5010680634893231, "curve_9": 0.5053865396408628, "x": 0.24175824175824176 }, { "avg_curve": 0.5076650998037343, "curve_0": 0.5451799133520288, "curve_1": 0.4701569031374678, "curve_10": 0.49998971841102546, "curve_11": 0.5274808948928643, "curve_12": 0.508380819707907, "curve_13": 0.51116714503271, "curve_14": 0.5139172147291184, "curve_15": 0.5187279582608499, "curve_16": 0.4924255876084668, "curve_17": 0.49163361177059894, "curve_18": 0.513354952054601, "curve_19": 0.49818247849286423, "curve_2": 0.5230923783892266, "curve_20": 0.4961889382314279, "curve_21": 0.4894660674499681, "curve_22": 0.48461964261863005, "curve_23": 0.4823256726534881, "curve_24": 0.5442063481649382, "curve_25": 0.5134008599984621, "curve_26": 0.5079361088337652, "curve_27": 0.5352976851336938, "curve_28": 0.5291965347079619, "curve_29": 0.5107208941176503, "curve_3": 0.5068850733928918, "curve_30": 0.5073712644047497, "curve_31": 0.5341182637768862, "curve_32": 0.5291520061111126, "curve_33": 0.4981304371269221, "curve_34": 0.5000743767711805, "curve_35": 0.49398417418209767, "curve_36": 0.5275288888713124, "curve_37": 0.5089913760231598, "curve_38": 0.49246873632915283, "curve_39": 0.5032621856215655, "curve_4": 0.4968922315572779, "curve_40": 0.4846652961686519, "curve_41": 0.5047190595047006, "curve_42": 0.5110041039670156, "curve_43": 0.5243106904553042, "curve_44": 0.48785517517885235, "curve_45": 0.49567920157450124, "curve_46": 0.5000259313637964, "curve_47": 0.48202783992786746, "curve_48": 0.4849121827310383, "curve_49": 0.4859212448859453, "curve_5": 0.49504800775660723, "curve_6": 0.47464603253317345, "curve_7": 0.5089911236439363, "curve_8": 0.5100527381027198, "curve_9": 0.5144842438482448, "x": 0.24725274725274726 }, { "avg_curve": 0.5164833172683646, "curve_0": 0.5548970822402838, "curve_1": 0.4780816672445907, "curve_10": 0.5085866972854447, "curve_11": 0.5368261698600381, "curve_12": 0.5171578810731523, "curve_13": 0.5201311359555173, "curve_14": 0.5228581477196926, "curve_15": 0.5276730479303555, "curve_16": 0.5010099437623917, "curve_17": 0.5000174609758545, "curve_18": 0.5222867428529535, "curve_19": 0.5068004369921573, "curve_2": 0.5323299825958299, "curve_20": 0.5047186346187525, "curve_21": 0.4978211159153009, "curve_22": 0.49294393700839495, "curve_23": 0.49062010351770036, "curve_24": 0.5539405748840688, "curve_25": 0.5223729227907656, "curve_26": 0.5166652606496362, "curve_27": 0.5448377383885666, "curve_28": 0.538538573239777, "curve_29": 0.5196486417782995, "curve_3": 0.5156431289092969, "curve_30": 0.516232470941591, "curve_31": 0.5432130379850781, "curve_32": 0.5384447217045091, "curve_33": 0.5068467721195457, "curve_34": 0.5085476961164836, "curve_35": 0.5023252902421615, "curve_36": 0.5368956599055669, "curve_37": 0.51786830685441, "curve_38": 0.5008967399905487, "curve_39": 0.511920802935591, "curve_4": 0.5054527484435006, "curve_40": 0.4929679932207398, "curve_41": 0.5135739397388859, "curve_42": 0.5197626535588361, "curve_43": 0.5335583849029607, "curve_44": 0.4962221213898571, "curve_45": 0.504314523440793, "curve_46": 0.50863885080106, "curve_47": 0.49027616815810465, "curve_48": 0.4931069587128024, "curve_49": 0.49423430351192404, "curve_5": 0.5035764986720201, "curve_6": 0.48265374692809765, "curve_7": 0.5177424959870068, "curve_8": 0.518995742841594, "curve_9": 0.5235403735890422, "x": 0.25274725274725274 }, { "avg_curve": 0.5252601301729939, "curve_0": 0.5645728914902519, "curve_1": 0.48596527555924685, "curve_10": 0.517141847511987, "curve_11": 0.5461307005980522, "curve_12": 0.525892835787196, "curve_13": 0.5290544793707702, "curve_14": 0.5317573376080543, "curve_15": 0.5365750477608201, "curve_16": 0.5095545138841171, "curve_17": 0.5083593723601664, "curve_18": 0.5311768440050172, "curve_19": 0.5153773361809981, "curve_2": 0.541526800676525, "curve_20": 0.5132067976030472, "curve_21": 0.5061345054630968, "curve_22": 0.501227589757239, "curve_23": 0.4988741973054744, "curve_24": 0.5636339649954815, "curve_25": 0.5313037755289417, "curve_26": 0.5253518665589575, "curve_27": 0.5543371690217175, "curve_28": 0.5478393070982936, "curve_29": 0.5285354255484016, "curve_3": 0.5243592829507037, "curve_30": 0.5250528839073104, "curve_31": 0.5522620946017878, "curve_32": 0.5476955258266932, "curve_33": 0.5155232601954511, "curve_34": 0.5169777369137819, "curve_35": 0.5106233289548182, "curve_36": 0.546221947744401, "curve_37": 0.526704159562141, "curve_38": 0.5092830803690207, "curve_39": 0.5205373811195256, "curve_4": 0.5139718941339289, "curve_40": 0.5012297830344392, "curve_41": 0.5223887345493746, "curve_42": 0.5284781270321022, "curve_43": 0.5427650536709658, "curve_44": 0.5045480032070273, "curve_45": 0.5129097260585633, "curve_46": 0.5172101193681052, "curve_47": 0.4984837048889429, "curve_48": 0.5012595250439378, "curve_49": 0.5025062191874606, "curve_5": 0.512063768940711, "curve_6": 0.4906199936576371, "curve_7": 0.5264512821655897, "curve_8": 0.5278981707411473, "curve_9": 0.5325560166555521, "x": 0.25824175824175827 }, { "avg_curve": 0.5339966078680243, "curve_0": 0.5742083917083788, "curve_1": 0.4938088108547165, "curve_10": 0.5256562562869775, "curve_11": 0.5553955261659489, "curve_12": 0.5345867754929589, "curve_13": 0.5379382187462697, "curve_14": 0.5406158614135756, "curve_15": 0.5454350757111469, "curve_16": 0.5180603231864244, "curve_17": 0.516660441509878, "curve_18": 0.5400263311022425, "curve_19": 0.5239142392385951, "curve_2": 0.5506838749451852, "curve_20": 0.52165450685819, "curve_21": 0.5144073237425179, "curve_22": 0.5094716578699263, "curve_23": 0.5070890023527611, "curve_24": 0.5732875533998234, "curve_25": 0.5401944784615129, "curve_26": 0.5339970327509046, "curve_27": 0.5637970089875751, "curve_28": 0.5570997920951489, "curve_29": 0.5373822991538306, "curve_3": 0.5330346213125058, "curve_30": 0.5338335532484673, "curve_31": 0.561266629044714, "curve_32": 0.5569054934028911, "curve_33": 0.5241609256977674, "curve_34": 0.5253656341927481, "curve_35": 0.5188794224439687, "curve_36": 0.5555087833051185, "curve_37": 0.5354999923675429, "curve_38": 0.5176288435071145, "curve_39": 0.5291130124200278, "curve_4": 0.5224507426242444, "curve_40": 0.5094517312925899, "curve_41": 0.5311644726795083, "curve_42": 0.5371516462043814, "curve_43": 0.551931746032926, "curve_44": 0.5128338896496559, "curve_45": 0.5214658436634229, "curve_46": 0.5257408184447081, "curve_47": 0.506651513516717, "curve_48": 0.5093709904859045, "curve_49": 0.5107380646210645, "curve_5": 0.5205108886698901, "curve_6": 0.49854586310381377, "curve_7": 0.5351185890948877, "curve_8": 0.5367610635626767, "curve_9": 0.5415322098815494, "x": 0.26373626373626374 }, { "avg_curve": 0.5426937704255929, "curve_0": 0.5838045855194806, "curve_1": 0.5016133055013972, "curve_10": 0.5341309605324623, "curve_11": 0.5646216380675553, "curve_12": 0.5432407414232892, "curve_13": 0.5467833496217743, "curve_14": 0.5494347465508269, "curve_15": 0.5542541980941698, "curve_16": 0.526528349696138, "curve_17": 0.5249217132085058, "curve_18": 0.5488362301982628, "curve_19": 0.5324121602813778, "curve_2": 0.5598021999573533, "curve_20": 0.5300627921278181, "curve_21": 0.5226406079844242, "curve_22": 0.5176771494564099, "curve_23": 0.5152655185205343, "curve_24": 0.5829023277928358, "curve_25": 0.5490460430798633, "curve_26": 0.5426018142532816, "curve_27": 0.5732182431090739, "curve_28": 0.5663210356590958, "curve_29": 0.5461902678679972, "curve_3": 0.5416701796633179, "curve_30": 0.542575480617925, "curve_31": 0.570227781271924, "curve_32": 0.5660756500100057, "curve_33": 0.5327607458844443, "curve_34": 0.5337124702389304, "curve_35": 0.5270946501640312, "curve_36": 0.5647571503590803, "curve_37": 0.5442568147937696, "curve_38": 0.5259350651470155, "curve_39": 0.5376487385865242, "curve_4": 0.5308903182792509, "curve_40": 0.5176348543370926, "curve_41": 0.5399021356282431, "curve_42": 0.5457842809625412, "curve_43": 0.5610594631644598, "curve_44": 0.5210808002607336, "curve_45": 0.5299838628788405, "curve_46": 0.5342319794354231, "curve_47": 0.5147806081842788, "curve_48": 0.5174424122317777, "curve_49": 0.5189308628326543, "curve_5": 0.528918878515083, "curve_6": 0.5064323949067785, "curve_7": 0.543745472503232, "curve_8": 0.5455854152151411, "curve_9": 0.550469942539654, "x": 0.2692307692307692 }, { "avg_curve": 0.5513525918680517, "curve_0": 0.5933624306911023, "curve_1": 0.509379744791808, "curve_10": 0.5425669501977274, "curve_11": 0.5738099833525562, "curve_12": 0.5518557277082741, "curve_13": 0.5555908227420046, "curve_14": 0.5582149740782495, "curve_15": 0.5630334329659856, "curve_16": 0.534959527342923, "curve_17": 0.5331441847792916, "curve_18": 0.5576075210531252, "curve_19": 0.540872067580443, "curve_2": 0.5688827256269665, "curve_20": 0.5384326365044255, "curve_21": 0.530835348317886, "curve_22": 0.5258450269435085, "curve_23": 0.5234047003780465, "curve_24": 0.5924792317365057, "curve_25": 0.5578594353080408, "curve_26": 0.551167218292693, "curve_27": 0.58260181214673, "curve_28": 0.5755039999937558, "curve_29": 0.5549602916815074, "curve_3": 0.5502669468331052, "curve_30": 0.5512796225347949, "curve_31": 0.579146639432038, "curve_32": 0.5752069751013685, "curve_33": 0.5413236540077452, "curve_34": 0.5420192780690918, "curve_35": 0.5352700423730861, "curve_36": 0.5739679886044635, "curve_37": 0.5529755908533979, "curve_38": 0.5342027340373501, "curve_39": 0.5461455541868977, "curve_4": 0.5392915990906639, "curve_40": 0.5257801224118978, "curve_41": 0.5486026607381367, "curve_42": 0.5543770526755376, "curve_43": 0.5701491612830113, "curve_44": 0.5292897083579775, "curve_45": 0.5384647258333254, "curve_46": 0.5426845870501157, "curve_47": 0.5228719570190651, "curve_48": 0.5254747993061432, "curve_49": 0.5270855904204014, "curve_5": 0.5372887129261819, "curve_6": 0.5142805813114925, "curve_7": 0.552332940293565, "curve_8": 0.5543721748833363, "curve_9": 0.5593701594475865, "x": 0.27472527472527475 }, { "avg_curve": 0.5599740031246918, "curve_0": 0.6028828429960964, "curve_1": 0.5171090699842513, "curve_10": 0.5509651712824203, "curve_11": 0.582961467457455, "curve_12": 0.560432684403861, "curve_13": 0.5643615469263729, "curve_14": 0.5669574816734494, "curve_15": 0.5717737532296282, "curve_16": 0.5433547487882491, "curve_17": 0.5413288091454902, "curve_18": 0.5663411401045201, "curve_19": 0.5492948865079765, "curve_2": 0.5779263600815029, "curve_20": 0.5467649794319412, "curve_21": 0.538992490806677, "curve_22": 0.5339762100157138, "curve_23": 0.5315074601176645, "curve_24": 0.6020191674730638, "curve_25": 0.5666355784243489, "curve_26": 0.559694207371344, "curve_27": 0.5919486156105664, "curve_28": 0.5846496049703351, "curve_29": 0.5636932882053185, "curve_3": 0.5588258678242805, "curve_30": 0.5599468932786481, "curve_31": 0.5880242432060947, "curve_32": 0.5843004049605751, "curve_33": 0.5498505421348614, "curve_34": 0.5502870446127487, "curve_35": 0.5434065833122326, "curve_36": 0.5831421964813869, "curve_37": 0.5616572419677754, "curve_38": 0.5424327949609129, "curve_39": 0.5546044096436094, "curve_4": 0.5476555196602828, "curve_40": 0.5338884626323536, "curve_41": 0.5572669440238659, "curve_42": 0.5629309373192601, "curve_43": 0.579201754524091, "curve_44": 0.5374615440105939, "curve_45": 0.546909333015359, "curve_46": 0.5510995823079508, "curve_47": 0.5309264850978862, "curve_48": 0.5334691156774402, "curve_49": 0.5352031805518548, "curve_5": 0.5456213231198646, "curve_6": 0.5220913702312749, "curve_7": 0.5608819556214665, "curve_8": 0.563122249893194, "curve_9": 0.5682337638135723, "x": 0.2802197802197802 }, { "avg_curve": 0.5685588947444595, "curve_0": 0.6123666988400522, "curve_1": 0.5248021810939785, "curve_10": 0.5593265286097366, "curve_11": 0.5920769568129066, "curve_12": 0.5689725202702709, "curve_13": 0.5730963917022859, "curve_14": 0.5756631663630196, "curve_15": 0.5804760894822778, "curve_16": 0.5517148680210415, "curve_17": 0.5494764976372895, "curve_18": 0.5750379831938782, "curve_19": 0.5576815022403421, "curve_2": 0.586933972282197, "curve_20": 0.5550607194600637, "curve_21": 0.5471129402344128, "curve_22": 0.5420715783128247, "curve_23": 0.5395746702287293, "curve_24": 0.6115229985079705, "curve_25": 0.5753753557420868, "curve_26": 0.5681837020894474, "curve_27": 0.6012595143410443, "curve_28": 0.5937587307823023, "curve_29": 0.5723901353345758, "curve_3": 0.5673478465740714, "curve_30": 0.56857816754511, "curve_31": 0.5968615868726624, "curve_32": 0.5933568354120277, "curve_33": 0.5583422637360548, "curve_34": 0.5585167136300121, "curve_35": 0.5515052141212715, "curve_36": 0.5922806337556239, "curve_37": 0.5703026496456166, "curve_38": 0.5506261515118777, "curve_39": 0.5630262140188408, "curve_4": 0.5559829739366173, "curve_40": 0.5419607617089088, "curve_41": 0.5658958427677292, "curve_42": 0.5714468683428933, "curve_43": 0.5882181175807945, "curve_44": 0.545597196769832, "curve_45": 0.5553185458928412, "curve_46": 0.5594778652931068, "curve_47": 0.5389450771664008, "curve_48": 0.5414262831122264, "curve_49": 0.543284525707563, "curve_5": 0.5539175998063572, "curve_6": 0.5298656680572453, "curve_7": 0.569393439718705, "curve_8": 0.5718365083410109, "curve_9": 0.5770616198474798, "x": 0.2857142857142857 }, { "avg_curve": 0.5771081193891008, "curve_0": 0.6218148376770382, "curve_1": 0.5324599394572506, "curve_10": 0.5676518883747401, "curve_11": 0.6011572812407517, "curve_12": 0.5774761053252794, "curve_13": 0.5817961897256625, "curve_14": 0.5843328870314671, "curve_15": 0.589141332631719, "curve_16": 0.5600407027433674, "curve_17": 0.5575881225707996, "curve_18": 0.583698908071876, "curve_19": 0.5660327622422182, "curve_2": 0.5959063944327939, "curve_20": 0.5633207167752462, "curve_21": 0.5551975626635662, "curve_22": 0.5501319739088025, "curve_23": 0.547607165954609, "curve_24": 0.6209915519849326, "curve_25": 0.584079613073541, "curve_26": 0.5766365837387509, "curve_27": 0.6105353328820501, "curve_28": 0.6028322203858091, "curve_29": 0.5810516736970768, "curve_3": 0.5758337484930894, "curve_30": 0.5771742828867129, "curve_31": 0.6056596221239915, "curve_32": 0.6023771243125076, "curve_33": 0.5667996360635835, "curve_34": 0.5667091883922293, "curve_35": 0.5595668355172232, "curve_36": 0.6013841238940065, "curve_37": 0.5789126579449428, "curve_38": 0.5587836686476273, "curve_39": 0.5714118375738229, "curve_4": 0.5642748177296858, "curve_40": 0.549997868449817, "curve_41": 0.5744901779054364, "curve_42": 0.5799257393027244, "curve_43": 0.5971990881302577, "curve_44": 0.553697518178028, "curve_45": 0.5636931893206242, "curve_46": 0.5678202976871086, "curve_47": 0.5469285801378904, "curve_48": 0.5493471837973065, "curve_49": 0.5513304802020284, "curve_5": 0.5621783956951666, "curve_6": 0.5376043422392086, "curve_7": 0.5778682744878355, "curve_8": 0.5805157815102163, "curve_9": 0.5858545551611063, "x": 0.29120879120879123 }, { "avg_curve": 0.5856224941283072, "curve_0": 0.6312280642343784, "curve_1": 0.5400831700907033, "curve_10": 0.5759420804899384, "curve_11": 0.6102032361613582, "curve_12": 0.5859442731945075, "curve_13": 0.5904617390095465, "curve_14": 0.592967466730944, "curve_15": 0.5977703363047397, "curve_16": 0.5683330365667794, "curve_17": 0.565664519621567, "curve_18": 0.5923247367050191, "curve_19": 0.574349478553309, "curve_2": 0.6048444241975722, "curve_20": 0.5715457955303106, "curve_21": 0.5632471877906319, "curve_22": 0.5581582035933759, "curve_23": 0.5556057475542733, "curve_24": 0.6304256208732931, "curve_25": 0.5927491609985026, "curve_26": 0.5850536966897079, "curve_27": 0.6197768616662934, "curve_28": 0.6118708817468603, "curve_29": 0.5896787089075034, "curve_3": 0.5842844028021034, "curve_30": 0.5857360419600903, "curve_31": 0.6144192606577367, "curve_32": 0.6113620938452594, "curve_33": 0.5752234423419471, "curve_34": 0.5748653341488147, "curve_35": 0.567592310259077, "curve_36": 0.6104534562519228, "curve_37": 0.5874880757396423, "curve_38": 0.5669061750373974, "curve_39": 0.5797621141245682, "curve_4": 0.5725318710258083, "curve_40": 0.5580005960645994, "curve_41": 0.5830507362227633, "curve_42": 0.5883684062862933, "curve_43": 0.6061454690679343, "curve_44": 0.5617633240779428, "curve_45": 0.5720340537569459, "curve_46": 0.5761277050997518, "curve_47": 0.5548778053930686, "curve_48": 0.5572326627526221, "curve_49": 0.5593418625039204, "curve_5": 0.5704045278015262, "curve_6": 0.5453082236605333, "curve_7": 0.5863073048903712, "curve_8": 0.5891608660965282, "curve_9": 0.5946133629782924, "x": 0.2967032967032967 }, { "avg_curve": 0.5941028025559617, "curve_0": 0.6406071505648157, "curve_1": 0.5476726638658391, "curve_10": 0.5841979007477016, "curve_11": 0.619215584629513, "curve_12": 0.5943778232783156, "curve_13": 0.5990938049792985, "curve_14": 0.6015676948109915, "curve_15": 0.6063639190675617, "curve_16": 0.5765926210375686, "curve_17": 0.5737064900124789, "curve_18": 0.6009162574024877, "curve_19": 0.5826324298966818, "curve_2": 0.6137488267469862, "curve_20": 0.5797367459921421, "curve_21": 0.5712626111171483, "curve_22": 0.566151040975449, "curve_23": 0.5635711823872739, "curve_24": 0.6398259659858191, "curve_25": 0.6013847769561503, "curve_26": 0.5934358505922215, "curve_27": 0.6289848590311433, "curve_28": 0.6208754899138267, "curve_29": 0.5982720136461416, "curve_3": 0.5927006046864969, "curve_30": 0.5942642145981774, "curve_31": 0.6231413765659546, "curve_32": 0.6203125326356069, "curve_33": 0.5836144337876296, "curve_34": 0.5829859804009622, "curve_35": 0.5755824654194689, "curve_36": 0.6194893880909743, "curve_37": 0.5960296788094834, "curve_38": 0.5749944652273711, "curve_39": 0.5880778432136713, "curve_4": 0.5807549201217044, "curve_40": 0.5659697242875206, "curve_41": 0.5915782723812828, "curve_42": 0.5967756901471413, "curve_43": 0.6150580305681909, "curve_44": 0.5697953967416882, "curve_45": 0.5803418973071895, "curve_46": 0.5844008792180687, "curve_47": 0.562793530900153, "curve_48": 0.5650835300551598, "curve_49": 0.5673194573749508, "curve_5": 0.5785967795727992, "curve_6": 0.5529781088269711, "curve_7": 0.5947113411484684, "curve_8": 0.5977725262599495, "curve_9": 0.6033388041731699, "x": 0.3021978021978022 }, { "avg_curve": 0.6025497967444189, "curve_0": 0.6499528379423407, "curve_1": 0.5552291795162267, "curve_10": 0.5924201128168848, "curve_11": 0.6281950592150508, "curve_12": 0.6027775227526789, "curve_13": 0.6076931223707638, "curve_14": 0.6101343288853321, "curve_15": 0.614922866476114, "curve_16": 0.5848201775071175, "curve_17": 0.5817148025336795, "curve_18": 0.6094742267802522, "curve_19": 0.5908823636256292, "curve_2": 0.6226203366472103, "curve_20": 0.5878943265247109, "curve_21": 0.5792445959540562, "curve_22": 0.574111228425212, "curve_23": 0.5715042068388708, "curve_24": 0.6491933178428736, "curve_25": 0.6099872071770059, "curve_26": 0.601783822407644, "curve_27": 0.6381600530808945, "curve_28": 0.6298467889317989, "curve_29": 0.6068323295786874, "curve_3": 0.6010831172856833, "curve_30": 0.6027595397239714, "curve_31": 0.631826808540626, "curve_32": 0.6292291977049679, "curve_33": 0.5919733314744658, "curve_34": 0.591071923000585, "curve_35": 0.5835380944816421, "curve_36": 0.6284926464428217, "curve_37": 0.6045382117702857, "curve_38": 0.5830493016396365, "curve_39": 0.5963597921156133, "curve_4": 0.5889447195950255, "curve_40": 0.5739060013381497, "curve_41": 0.6000735107893386, "curve_42": 0.6051483785681252, "curve_43": 0.6239375119876293, "curve_44": 0.5777944868363559, "curve_45": 0.5886174476113054, "curve_46": 0.5926405797905839, "curve_47": 0.5706765031722525, "curve_48": 0.5729005628918403, "curve_49": 0.5752640178446151, "curve_5": 0.5867559028519044, "curve_6": 0.560614761887106, "curve_7": 0.6030811607778049, "curve_8": 0.6063514955199821, "curve_9": 0.6120316091527852, "x": 0.3076923076923077 }, { "avg_curve": 0.6109641990518879, "curve_0": 0.6592658386161756, "curve_1": 0.5627534454930297, "curve_10": 0.6006094500890994, "curve_11": 0.6371423637426187, "curve_12": 0.6111441084195002, "curve_13": 0.6162603969859995, "curve_14": 0.6186680966508642, "curve_15": 0.6234479329719956, "curve_16": 0.5930163988617513, "curve_17": 0.5896901954101615, "curve_18": 0.6179993715775949, "curve_19": 0.5990999975240816, "curve_2": 0.6314596596080699, "curve_20": 0.5960192654227617, "curve_21": 0.587193875274931, "curve_22": 0.5820394788699798, "curve_23": 0.5794055281001953, "curve_24": 0.6585283783972009, "curve_25": 0.6185571684698261, "curve_26": 0.6100983582877457, "curve_27": 0.6473031434096982, "curve_28": 0.6387854936134595, "curve_29": 0.6153603691319081, "curve_3": 0.6094326735328393, "curve_30": 0.6112227271205781, "curve_31": 0.6404763619128124, "curve_32": 0.6381128162782771, "curve_33": 0.600300828058976, "curve_34": 0.5991239260907983, "curve_35": 0.5914599592780017, "curve_36": 0.6374639298334817, "curve_37": 0.6130143898591077, "curve_38": 0.5910714164204953, "curve_39": 0.6046086976910775, "curve_4": 0.5971019941265513, "curve_40": 0.5818101457341915, "curve_41": 0.6085371473326279, "curve_42": 0.6134872279692726, "curve_43": 0.6327846236257298, "curve_44": 0.5857613152415615, "curve_45": 0.596861403589436, "curve_46": 0.6008475364621939, "curve_47": 0.5785274390772344, "curve_48": 0.5806845074573538, "curve_49": 0.5831762670360991, "curve_5": 0.5948826196929398, "curve_6": 0.5682189165001575, "curve_7": 0.6114175104673767, "curve_8": 0.6148984785086176, "curve_9": 0.6206924795985446, "x": 0.3131868131868132 }, { "avg_curve": 0.6193467037963365, "curve_0": 0.6685468374358238, "curve_1": 0.5702461616827826, "curve_10": 0.6087666173883922, "curve_11": 0.6460581749034142, "curve_12": 0.6194782884201265, "curve_13": 0.6247963073195606, "curve_14": 0.6271696975723584, "curve_15": 0.6319398436382369, "curve_16": 0.60118195112492, "curve_17": 0.597633378030988, "curve_18": 0.6264923903395186, "curve_19": 0.6072860214739629, "curve_2": 0.6402674741022668, "curve_20": 0.6041122626098344, "curve_21": 0.5951111534319322, "curve_22": 0.5899364774571427, "curve_23": 0.5872758258167132, "curve_24": 0.6678318226320072, "curve_25": 0.6270953498766713, "curve_26": 0.6183801753146569, "curve_27": 0.656414802697838, "curve_28": 0.6476922911795512, "curve_29": 0.6238568171383166, "curve_3": 0.6177499778586448, "curve_30": 0.6196544590706647, "curve_31": 0.6490908105406938, "curve_32": 0.6469640874581902, "curve_33": 0.6085975893784479, "curve_34": 0.6071427239024718, "curve_35": 0.5993487917847982, "curve_36": 0.6464039098807832, "curve_37": 0.621458900587692, "curve_38": 0.5990615131519139, "curve_39": 0.6128252681040911, "curve_4": 0.6052274401876195, "curve_40": 0.5896828479701095, "curve_41": 0.6169698509772084, "curve_42": 0.6217929652744082, "curve_43": 0.6416000483558247, "curve_44": 0.59369657473246, "curve_45": 0.6050744370586895, "curve_46": 0.6090224504733404, "curve_47": 0.586347027513578, "curve_48": 0.5884360807111647, "curve_49": 0.59105689985698, "curve_5": 0.6029776240425255, "curve_6": 0.5757912775651397, "curve_7": 0.6197211078202178, "curve_8": 0.623414152594083, "curve_9": 0.6293220900793567, "x": 0.31868131868131866 }, { "avg_curve": 0.6276979788079042, "curve_0": 0.6777964933587205, "curve_1": 0.5777080009998355, "curve_10": 0.6168922925566104, "curve_11": 0.6549431437503556, "curve_12": 0.627780743824366, "curve_13": 0.6333015060669493, "curve_14": 0.6356398044449143, "curve_15": 0.6403992958274665, "curve_16": 0.6093174749431683, "curve_17": 0.6055450325526001, "curve_18": 0.6349539549770817, "curve_19": 0.6154410990014384, "curve_2": 0.6490444328674292, "curve_20": 0.6121739912128151, "curve_21": 0.6029971077468266, "curve_22": 0.5978028830961845, "curve_23": 0.59511575361683, "curve_24": 0.6771043000436646, "curve_25": 0.6356024142079802, "curve_26": 0.62662996311429, "curve_27": 0.6654956781926832, "curve_28": 0.6565678427806254, "curve_29": 0.6323223323616113, "curve_3": 0.6260357077712498, "curve_30": 0.6280553918770366, "curve_31": 0.6576708985600906, "curve_32": 0.655783683778011, "curve_33": 0.6168642559331822, "curve_34": 0.6151290224198184, "curve_35": 0.607205295785906, "curve_36": 0.6553132327763377, "curve_37": 0.6298724052759879, "curve_38": 0.607020268438431, "curve_39": 0.6210101844143265, "curve_4": 0.6133217276049043, "curve_40": 0.597524772073617, "curve_41": 0.6253722652563635, "curve_42": 0.6300662895492561, "curve_43": 0.6503844431380191, "curve_44": 0.6016009315403343, "curve_45": 0.6132571942326305, "curve_46": 0.6171659962356738, "curve_47": 0.5941359309642735, "curve_48": 0.5961559720063804, "curve_49": 0.5989065845668857, "curve_5": 0.6110415832989377, "curve_6": 0.5833325228238789, "curve_7": 0.6279926429675519, "curve_8": 0.6318991693869332, "curve_9": 0.6379210895479716, "x": 0.3241758241758242 }, { "avg_curve": 0.6360186668705485, "curve_0": 0.6870154408508092, "curve_1": 0.5851396108645781, "curve_10": 0.6249871279254473, "curve_11": 0.6637978970869483, "curve_12": 0.6360521301060039, "curve_13": 0.641776621525619, "curve_14": 0.6440790648449639, "curve_15": 0.6488269606737544, "curve_16": 0.6174235869661474, "curve_17": 0.613425815387355, "curve_18": 0.6433847122164338, "curve_19": 0.6235658687127577, "curve_2": 0.6577911643013047, "curve_20": 0.620205099023936, "curve_21": 0.6108523899881413, "curve_22": 0.6056393298904553, "curve_23": 0.6029259405312353, "curve_24": 0.6863464360191801, "curve_25": 0.6440789994682327, "curve_26": 0.6348483853544208, "curve_27": 0.6745463930844631, "curve_28": 0.6654127849105254, "curve_29": 0.6407575489133942, "curve_3": 0.6342905153234016, "curve_30": 0.6364261572748238, "curve_31": 0.6662173420096488, "curve_32": 0.6645722526440321, "curve_33": 0.625101444263116, "curve_34": 0.623083500926626, "curve_35": 0.6150301484173021, "curve_36": 0.6641925206621857, "curve_37": 0.6382555404763335, "curve_38": 0.6149483333805422, "curve_39": 0.6291641020555975, "curve_4": 0.6213855010133847, "curve_40": 0.6053365570508392, "curve_41": 0.6337450096515691, "curve_42": 0.6383078735223872, "curve_43": 0.6591384404244585, "curve_44": 0.6094750268015838, "curve_45": 0.6214102971138356, "curve_46": 0.625278822795123, "curve_47": 0.601894786939555, "curve_48": 0.6038448446018378, "curve_49": 0.6067259642330021, "curve_5": 0.619075139759833, "curve_6": 0.5908433043490701, "curve_7": 0.6362327800675633, "curve_8": 0.6403541561388607, "curve_9": 0.6464901027308063, "x": 0.32967032967032966 }, { "avg_curve": 0.6443093870625399, "curve_0": 0.6962042911893049, "curve_1": 0.5925416145773996, "curve_10": 0.633051751685018, "curve_11": 0.6726230387590508, "curve_12": 0.6442930785146793, "curve_13": 0.6502222588978439, "curve_14": 0.6524881024794981, "curve_15": 0.6572234844982446, "curve_16": 0.6255008811298634, "curve_17": 0.6212763585872861, "curve_18": 0.6517852849462129, "curve_19": 0.631660945629279, "curve_2": 0.666508273759353, "curve_20": 0.6282062098600072, "curve_21": 0.618677627744357, "curve_22": 0.6134464284682907, "curve_23": 0.6107069923124846, "curve_24": 0.6955588331175308, "curve_25": 0.6525257201816914, "curve_26": 0.6430360811374644, "curve_27": 0.683567547785957, "curve_28": 0.6742277307209827, "curve_29": 0.6491630775706035, "curve_3": 0.6425150284765372, "curve_30": 0.6447673637446802, "curve_31": 0.6747308303415953, "curve_32": 0.6733304176768745, "curve_33": 0.6333097482279847, "curve_34": 0.6310068134435272, "curve_35": 0.6228240016026406, "curve_36": 0.6730423729112353, "curve_37": 0.6466089192977859, "curve_38": 0.6228463349444348, "curve_39": 0.6372876522104447, "curve_4": 0.6294193812072177, "curve_40": 0.6131188182298288, "curve_41": 0.6420886808767373, "curve_42": 0.6465183649991998, "curve_43": 0.6678626494662685, "curve_44": 0.6173194779048171, "curve_45": 0.6295343447887932, "curve_46": 0.633361555192161, "curve_47": 0.6096242093181394, "curve_48": 0.6115033370675873, "curve_49": 0.6145156580831801, "curve_5": 0.6270789119682487, "curve_6": 0.5983242499273923, "curve_7": 0.6444421586988205, "curve_8": 0.6487797170435231, "curve_9": 0.655029731420489, "x": 0.33516483516483514 }, { "avg_curve": 0.652570736004443, "curve_0": 0.7053636336759647, "curve_1": 0.5999146125973259, "curve_10": 0.6410867691578126, "curve_11": 0.6814191508578039, "curve_12": 0.65250419735298, "curve_13": 0.6586390015038268, "curve_14": 0.6608675184421998, "curve_15": 0.6655894901176512, "curve_16": 0.6335499298514176, "curve_17": 0.6290972711320512, "curve_18": 0.6601562734719776, "curve_19": 0.6397269224302905, "curve_2": 0.6751963447630498, "curve_20": 0.636177924827668, "curve_21": 0.6264734257020368, "curve_22": 0.6212247672220792, "curve_23": 0.6184594926633478, "curve_24": 0.7047420722630325, "curve_25": 0.6609431686267461, "curve_26": 0.6511936662969438, "curve_27": 0.6925597211242769, "curve_28": 0.6830132712457491, "curve_29": 0.6575395070021225, "curve_3": 0.6507098523706438, "curve_30": 0.65307959773544, "curve_31": 0.6832120278278634, "curve_32": 0.6820587799604362, "curve_33": 0.641489740199248, "curve_34": 0.6388995900656408, "curve_35": 0.6305874833892596, "curve_36": 0.6818633673196782, "curve_37": 0.6549331326391162, "curve_38": 0.6307148772369418, "curve_39": 0.6453814430896924, "curve_4": 0.6374239663972467, "curve_40": 0.6208721485111321, "curve_41": 0.6504038540739869, "curve_42": 0.6546983881780845, "curve_43": 0.6765576575305421, "curve_44": 0.6251348797447679, "curve_45": 0.6376299146334831, "curve_46": 0.6414147957280498, "curve_47": 0.6173247895956544, "curve_48": 0.6191320645929081, "curve_49": 0.6222762627654101, "curve_5": 0.6350534959655724, "curve_6": 0.6057759643466811, "curve_7": 0.652621395157357, "curve_8": 0.6571764344477453, "curve_9": 0.6635405556794083, "x": 0.34065934065934067 }, { "avg_curve": 0.6608032890223551, "curve_0": 0.7144940367683549, "curve_1": 0.6072591837333753, "curve_10": 0.649092763985987, "curve_11": 0.6901867948411674, "curve_12": 0.6606860731667241, "curve_13": 0.6670274119125702, "curve_14": 0.6692178923843076, "curve_15": 0.6739255780637892, "curve_16": 0.6415712851426733, "curve_17": 0.636889140129141, "curve_18": 0.6684982566854857, "curve_19": 0.6477643706113767, "curve_2": 0.6838559401263854, "curve_20": 0.6441208235025655, "curve_21": 0.6342403668369009, "curve_22": 0.6289749134630286, "curve_23": 0.6261840043816006, "curve_24": 0.7138967138581047, "curve_25": 0.6693319159865324, "curve_26": 0.6593217346057592, "curve_27": 0.7015234714520956, "curve_28": 0.6917699765418459, "curve_29": 0.6658874049121947, "curve_3": 0.6588755705078106, "curve_30": 0.6613634248038315, "curve_31": 0.6916615748704021, "curve_32": 0.6907579192061977, "curve_33": 0.6496419721711871, "curve_34": 0.6467624382089895, "curve_35": 0.6383211991930179, "curve_36": 0.6906560612187589, "curve_37": 0.663228750338141, "curve_38": 0.6385545426936957, "curve_39": 0.6534460611249727, "curve_4": 0.6453998333829963, "curve_40": 0.6285971195332286, "curve_41": 0.658691083928362, "curve_42": 0.6628485448770056, "curve_43": 0.6852240310349166, "curve_44": 0.6329218058908722, "curve_45": 0.6456975634371345, "curve_46": 0.6494391251449769, "curve_47": 0.6249970980480688, "curve_48": 0.6267316202050778, "curve_49": 0.6300083535215415, "curve_5": 0.6429994664593062, "curve_6": 0.6131990305952498, "curve_7": 0.6607710836655168, "curve_8": 0.665544869980614, "curve_9": 0.672023134961732, "x": 0.34615384615384615 }, { "avg_curve": 0.6690076012334097, "curve_0": 0.7235960491358739, "curve_1": 0.6145758862558793, "curve_10": 0.6570702992391703, "curve_11": 0.6989265125807751, "curve_12": 0.6688392718556136, "curve_13": 0.6753880329973054, "curve_14": 0.6775397836072558, "curve_15": 0.6822323277215037, "curve_16": 0.6495654796495469, "curve_17": 0.6446525319336216, "curve_18": 0.6768117931558558, "curve_19": 0.6557738415653203, "curve_2": 0.6924876030073083, "curve_20": 0.6520354650295873, "curve_21": 0.6419790135250589, "curve_22": 0.6366974144986087, "curve_23": 0.6338810704281785, "curve_24": 0.7230232988220675, "curve_25": 0.677692513422742, "curve_26": 0.6674208589035597, "curve_27": 0.710459337684962, "curve_28": 0.7004983967547709, "curve_29": 0.6742073191075129, "curve_3": 0.6670127458566131, "curve_30": 0.6696193906781028, "curve_31": 0.7000800892236153, "curve_32": 0.6994283948398755, "curve_33": 0.6577669767978485, "curve_34": 0.6545959437732577, "curve_35": 0.6460257329595308, "curve_36": 0.6994209925125399, "curve_37": 0.6714963222443024, "curve_38": 0.6463658931876732, "curve_39": 0.6614820720814233, "curve_4": 0.653347538646232, "curve_40": 0.6362942827598975, "curve_41": 0.6669509057081894, "curve_42": 0.6709694156779216, "curve_43": 0.6938623166065389, "curve_44": 0.6406808096775795, "curve_45": 0.6537378284509286, "curve_46": 0.6574351037272087, "curve_47": 0.6326416848171705, "curve_48": 0.6343025759063026, "curve_49": 0.6377124852823564, "curve_5": 0.6509173779126805, "curve_6": 0.6205940109806549, "curve_7": 0.6688917974998728, "curve_8": 0.6738855656072448, "curve_9": 0.6804780091606256, "x": 0.3516483516483517 }, { "avg_curve": 0.6771842085598708, "curve_0": 0.7326702006466242, "curve_1": 0.6218652589343109, "curve_10": 0.6650199184492614, "curve_11": 0.7076388273401674, "curve_12": 0.6769643397107453, "curve_13": 0.6837213889216089, "curve_14": 0.6858337320834553, "curve_15": 0.6905102983916434, "curve_16": 0.6575330276229742, "curve_17": 0.6523879931939748, "curve_18": 0.6850974221489691, "curve_19": 0.6637558675918439, "curve_2": 0.7010918578902029, "curve_20": 0.6599223891505832, "curve_21": 0.6496899085809162, "curve_22": 0.6443927986389758, "curve_23": 0.6415512149249363, "curve_24": 0.732122349561963, "curve_25": 0.6860254930788686, "curve_26": 0.6754915921498104, "curve_27": 0.7193678402706911, "curve_28": 0.7091990631138329, "curve_29": 0.6824997784941916, "curve_3": 0.6751219218837765, "curve_30": 0.6778480222517453, "curve_31": 0.7084681671361006, "curve_32": 0.7080707470167296, "curve_33": 0.6658652683618612, "curve_34": 0.6624006722277257, "curve_35": 0.653701648248634, "curve_36": 0.7081586806476692, "curve_37": 0.679736379220741, "curve_38": 0.6541494710646224, "curve_39": 0.6694900220970605, "curve_4": 0.6612676193724767, "curve_40": 0.6439641704958772, "curve_41": 0.6751838362371202, "curve_42": 0.6790615609957422, "curve_43": 0.702473042071557, "curve_44": 0.6484124252227751, "curve_45": 0.6617512283677472, "curve_46": 0.6654032723296978, "curve_47": 0.6402590809244463, "curve_48": 0.6418454837354939, "curve_49": 0.6453891936904119, "curve_5": 0.6588077655624816, "curve_6": 0.627961448174487, "curve_7": 0.6769840900448082, "curve_8": 0.6821990446133442, "curve_9": 0.6889056995867412, "x": 0.35714285714285715 }, { "avg_curve": 0.6853336286775417, "curve_0": 0.7417170032906623, "curve_1": 0.6291278220075345, "curve_10": 0.6729421465780813, "curve_11": 0.7163242446898863, "curve_12": 0.6850618043848463, "curve_13": 0.6920279860617538, "curve_14": 0.6941002594109759, "curve_15": 0.6987600302850939, "curve_16": 0.6654744258270244, "curve_17": 0.6600960518299774, "curve_18": 0.6933556645808612, "curve_19": 0.6717109628419013, "curve_2": 0.7096692115049213, "curve_20": 0.6677821171653952, "curve_21": 0.6573735762276447, "curve_22": 0.6520615761380787, "curve_23": 0.649194944087666, "curve_24": 0.7411943708808286, "curve_25": 0.6943313690185433, "curve_26": 0.6835344684085208, "curve_27": 0.7282494820962572, "curve_28": 0.717872488863203, "curve_29": 0.6907652940102355, "curve_3": 0.6832036235189555, "curve_30": 0.6860498285129126, "curve_31": 0.7168263844181744, "curve_32": 0.7166854975712362, "curve_33": 0.6739373436805853, "curve_34": 0.6701771696265555, "curve_35": 0.6613494892482555, "curve_36": 0.7168696275205817, "curve_37": 0.6879494340815075, "curve_38": 0.6619058001112473, "curve_39": 0.6774704386547187, "curve_4": 0.6691605944062644, "curve_40": 0.6516072968365755, "curve_41": 0.6833903748033215, "curve_42": 0.6871255220778829, "curve_43": 0.7110567173806983, "curve_44": 0.6561171683800893, "curve_45": 0.6697382642384938, "curve_46": 0.6733441533399654, "curve_47": 0.6478497992191159, "curve_48": 0.6493608767609397, "curve_49": 0.6530389960564508, "curve_5": 0.6666711463708569, "curve_6": 0.6353018661891409, "curve_7": 0.685048495777733, "curve_8": 0.6904858125261056, "curve_9": 0.6973067098834805, "x": 0.3626373626373626 }, { "avg_curve": 0.6934563619036705, "curve_0": 0.7507369520446248, "curve_1": 0.6363640780918337, "curve_10": 0.6808374909231808, "curve_11": 0.7249832533644014, "curve_12": 0.6931321758005483, "curve_13": 0.7003083138703218, "curve_14": 0.7023398697073417, "curve_15": 0.7069820454533171, "curve_16": 0.673390154389121, "curve_17": 0.6677772179479937, "curve_18": 0.7015870239103111, "curve_19": 0.6796396242016844, "curve_2": 0.7182201536873586, "curve_20": 0.6756151528314673, "curve_21": 0.6650305230055525, "curve_22": 0.6597042400746088, "curve_23": 0.656812747099488, "curve_24": 0.7502398508283349, "curve_25": 0.7026106381040725, "curve_26": 0.6915500037700356, "curve_27": 0.7371047493370988, "curve_28": 0.7265191701337452, "curve_29": 0.6990043594985889, "curve_3": 0.6912583580579051, "curve_30": 0.6942253014146075, "curve_31": 0.7251552974410569, "curve_32": 0.7252731509062971, "curve_33": 0.6819836829545283, "curve_34": 0.6779259635590265, "curve_35": 0.6689697817232865, "curve_36": 0.7255543183270563, "curve_37": 0.6961359824690292, "curve_38": 0.6696353864614651, "curve_39": 0.6854238314918779, "curve_4": 0.6770269651453653, "curve_40": 0.6592241585570461, "curve_41": 0.6915710040107707, "curve_42": 0.6951618219399036, "curve_43": 0.7196138354759607, "curve_44": 0.6637955376303176, "curve_45": 0.6776994203299905, "curve_46": 0.6812582515785307, "curve_47": 0.6554143352655283, "curve_48": 0.6568492700093421, "curve_49": 0.6606623922546342, "curve_5": 0.6745080199163118, "curve_6": 0.6426157712919551, "curve_7": 0.6930855311913358, "curve_8": 0.6987463579764569, "curve_9": 0.7056815268840078, "x": 0.36813186813186816 }, { "avg_curve": 0.7015528920290593, "curve_0": 0.7597305256822723, "curve_1": 0.6435745130315739, "curve_10": 0.6887064419666248, "curve_11": 0.7336163260653765, "curve_12": 0.7011759470015217, "curve_13": 0.7085628456856368, "curve_14": 0.7105530504471752, "curve_15": 0.7151768486603359, "curve_16": 0.6812806775968651, "curve_17": 0.6754319846985626, "curve_18": 0.7097919869753557, "curve_19": 0.6875423321210364, "curve_2": 0.7267451581861096, "curve_20": 0.6834219832068172, "curve_21": 0.672661238623195, "curve_22": 0.6673212671774805, "curve_23": 0.6644050969292592, "curve_24": 0.7592592614982514, "curve_25": 0.7108637808198278, "curve_26": 0.6995386972147865, "curve_27": 0.7459341122533008, "curve_28": 0.7351395867602157, "curve_29": 0.7072174525253847, "curve_3": 0.6992866160088442, "curve_30": 0.7023749166902363, "curve_31": 0.7334554440730449, "curve_32": 0.7338341948266777, "curve_33": 0.6900047505625164, "curve_34": 0.6856475640397937, "curve_35": 0.6765630339045254, "curve_36": 0.734213222358596, "curve_37": 0.7042965036764748, "curve_38": 0.6773387194455627, "curve_39": 0.6933506934532212, "curve_4": 0.6848672163787345, "curve_40": 0.6668152359449621, "curve_41": 0.6997261905771486, "curve_42": 0.7031709662422102, "curve_43": 0.7281448731029915, "curve_44": 0.6714480149166958, "curve_45": 0.6856351649289913, "curve_46": 0.6891460551426695, "curve_47": 0.6629531681746423, "curve_48": 0.6643111613361918, "curve_49": 0.6682598655613663, "curve_5": 0.6823188692286317, "curve_6": 0.6499036528616104, "curve_7": 0.7010956956577735, "curve_8": 0.7069811535072125, "curve_9": 0.7140306214145344, "x": 0.37362637362637363 }, { "avg_curve": 0.7096236870986489, "curve_0": 0.76869818753508, "curve_1": 0.650759596696916, "curve_10": 0.6965494741711253, "curve_11": 0.7422239202153754, "curve_12": 0.7091935949508517, "curve_13": 0.7167920394911643, "curve_14": 0.7187402732479898, "curve_15": 0.7233449282006588, "curve_16": 0.6891464446455542, "curve_17": 0.6830608290807105, "curve_18": 0.7179710247780218, "curve_19": 0.6954195513905337, "curve_2": 0.7352446834193277, "curve_20": 0.691203079440716, "curve_21": 0.6802661967556214, "curve_22": 0.6749131186000964, "curve_23": 0.6719724510992151, "curve_24": 0.7682530597767969, "curve_25": 0.7190912620447086, "curve_26": 0.7075010314234614, "curve_27": 0.7547380259367074, "curve_28": 0.7437342030480129, "curve_29": 0.7154050351475857, "curve_3": 0.7072888718863618, "curve_30": 0.7104991346187165, "curve_31": 0.7417273445575143, "curve_32": 0.7423691013209427, "curve_33": 0.6980009958076941, "curve_34": 0.6933424643437819, "curve_35": 0.6841297373223083, "curve_36": 0.7428467937496938, "curve_37": 0.7124314614192363, "curve_38": 0.6850162723866355, "curve_39": 0.7012515012903121, "curve_4": 0.6926818170724998, "curve_40": 0.6743809935818866, "curve_41": 0.7078563860824166, "curve_42": 0.7111534441123449, "curve_43": 0.7366502915733021, "curve_44": 0.6790750664283393, "curve_45": 0.693545951096437, "curve_46": 0.6970080361978521, "curve_47": 0.6704667613838882, "curve_48": 0.6717470322419886, "curve_49": 0.6758318834420391, "curve_5": 0.6901041615720322, "curve_6": 0.6571659841912287, "curve_7": 0.7090794722392558, "curve_8": 0.7151906563312709, "curve_9": 0.7223544490479855, "x": 0.3791208791208791 }, { "avg_curve": 0.7176692001444704, "curve_0": 0.7776403862066305, "curve_1": 0.6579197837325927, "curve_10": 0.7043670467275038, "curve_11": 0.7508064786657394, "curve_12": 0.7171855812806418, "curve_13": 0.72499633862865, "curve_14": 0.7269019946080448, "curve_15": 0.7314867566672265, "curve_16": 0.6969878903401139, "curve_17": 0.6906642126970237, "curve_18": 0.7261245932211875, "curve_19": 0.7032717318711121, "curve_2": 0.7437191731855333, "curve_20": 0.6989588975160292, "curve_21": 0.6878458557937611, "curve_22": 0.6824802406472712, "curve_23": 0.6795152524056857, "curve_24": 0.7772216880455655, "curve_25": 0.727293531777517, "curve_26": 0.7154374735376415, "curve_27": 0.7635169310126536, "curve_28": 0.7523034684932701, "curve_29": 0.7235675546338342, "curve_3": 0.7152655849568316, "curve_30": 0.718598400742938, "curve_31": 0.7499715023371554, "curve_32": 0.7508783272957685, "curve_33": 0.7059728536180602, "curve_34": 0.7010111417899083, "curve_35": 0.6916703675890117, "curve_36": 0.7514554721796768, "curve_37": 0.7205413045593657, "curve_38": 0.6926685033482983, "curve_39": 0.7091267164123903, "curve_4": 0.7004712211079167, "curve_40": 0.68192188107675, "curve_41": 0.7159620276717947, "curve_42": 0.7191097289169769, "curve_43": 0.7451305374800975, "curve_44": 0.6866771433357665, "curve_45": 0.7014322173757078, "curve_46": 0.704844651720813, "curve_47": 0.6779555633893114, "curve_48": 0.6791573486384122, "curve_49": 0.6833788982896379, "curve_5": 0.6978643491804484, "curve_6": 0.664403223242213, "curve_7": 0.7170373284490738, "curve_8": 0.7233753090436217, "curve_9": 0.7306534508117831, "x": 0.38461538461538464 }, { "avg_curve": 0.7256898698745077, "curve_0": 0.7865575562442345, "curve_1": 0.6650555142614054, "curve_10": 0.7121596042571108, "curve_11": 0.7593644303620345, "curve_12": 0.7251523529964792, "curve_13": 0.7331761724684336, "curve_14": 0.7350386565998279, "curve_15": 0.7396027916731055, "curve_16": 0.7048054357548329, "curve_17": 0.6982425824631506, "curve_18": 0.7342531338011311, "curve_19": 0.7110993091797734, "curve_2": 0.7521690573317943, "curve_20": 0.7066898789468214, "curve_21": 0.6954006595485923, "curve_22": 0.6900230654583426, "curve_23": 0.6870339295963795, "curve_24": 0.7861655748423945, "curve_25": 0.7354710258187457, "curve_26": 0.7233484758745947, "curve_27": 0.7722712542996839, "curve_28": 0.7608478184597632, "curve_29": 0.7317054441419905, "curve_3": 0.7232171999389455, "curve_30": 0.7266731465450513, "curve_31": 0.7581884048284532, "curve_32": 0.7593623152661716, "curve_33": 0.7139207452049203, "curve_34": 0.7086540584774558, "curve_35": 0.6991853851342532, "curve_36": 0.7600396835325032, "curve_37": 0.7286264677864674, "curve_38": 0.7002958558372988, "curve_39": 0.7169767855919292, "curve_4": 0.7082358679748685, "curve_40": 0.6894383337550979, "curve_41": 0.7240435387165296, "curve_42": 0.7270402789873472, "curve_43": 0.7535860433711663, "curve_44": 0.6942546824820788, "curve_45": 0.7092943884582954, "curve_46": 0.7126563441978545, "curve_47": 0.6854200084335607, "curve_48": 0.6865425615681836, "curve_49": 0.6909013481187979, "curve_5": 0.7055998699485293, "curve_6": 0.6716158133525094, "curve_7": 0.7249697169667682, "curve_8": 0.7315355402905954, "curve_9": 0.7389280538531574, "x": 0.3901098901098901 }, { "avg_curve": 0.7336861213207073, "curve_0": 0.7954501187709079, "curve_1": 0.6721672145457799, "curve_10": 0.7199275774725129, "curve_11": 0.7678981909701761, "curve_12": 0.7330943431400745, "curve_13": 0.7413319570400784, "curve_14": 0.7431506875224242, "curve_15": 0.7476934765303254, "curve_16": 0.7125994888539989, "curve_17": 0.7057963712750923, "curve_18": 0.7423570742590211, "curve_19": 0.7189027053345944, "curve_2": 0.7605947523823976, "curve_20": 0.7143964514345124, "curve_21": 0.7029310379134216, "curve_22": 0.6975420116496889, "curve_23": 0.6945288980074318, "curve_24": 0.7950851354832481, "curve_25": 0.7436241664119797, "curve_26": 0.7312344765996005, "curve_27": 0.7810014094303271, "curve_28": 0.7693676748157879, "curve_29": 0.739819123356537, "curve_3": 0.7311441476626626, "curve_30": 0.7347237900817458, "curve_31": 0.7663785241500758, "curve_32": 0.7678214940048845, "curve_33": 0.7218450786823418, "curve_34": 0.7162716619785843, "curve_35": 0.7066752358962731, "curve_36": 0.768599840517582, "curve_37": 0.7366873722582385, "curve_38": 0.7078987594643544, "curve_39": 0.7248021416282782, "curve_4": 0.7159761834241775, "curve_40": 0.696930773307363, "curve_41": 0.7321013294355456, "curve_42": 0.7349455383015898, "curve_43": 0.7620172283819742, "curve_44": 0.7018081070330574, "curve_45": 0.717132875810018, "curve_46": 0.7204435422816777, "curve_47": 0.692860517152965, "curve_48": 0.693903107882028, "curve_49": 0.6983996572185892, "curve_5": 0.7133111480815939, "curve_6": 0.6788041839026497, "curve_7": 0.7328770763108088, "curve_8": 0.7396717653994903, "curve_9": 0.7471786720650957, "x": 0.3956043956043956 }, { "avg_curve": 0.7416583664490894, "curve_0": 0.8043184820805594, "curve_1": 0.6792552976104267, "curve_10": 0.7276713837994706, "curve_11": 0.7764081634660657, "curve_12": 0.741011971413107, "curve_13": 0.7494640956261817, "curve_14": 0.7512385025157414, "curve_15": 0.7557592408889641, "curve_16": 0.72037044507626, "curve_17": 0.7133259986373386, "curve_18": 0.7504368291943156, "curve_19": 0.7266823293619875, "curve_2": 0.7689966621308628, "curve_20": 0.7220790294855887, "curve_21": 0.7104374074873097, "curve_22": 0.7050374849195958, "curve_23": 0.7020005601631266, "curve_24": 0.8039807726479242, "curve_25": 0.7517533628478237, "curve_26": 0.7390959003588777, "curve_27": 0.7897077974357345, "curve_28": 0.7778634465338997, "curve_29": 0.7479089990887442, "curve_3": 0.7390468456895836, "curve_30": 0.7427507365824106, "curve_31": 0.7745423178085138, "curve_32": 0.7762562791538274, "curve_33": 0.7297462496504279, "curve_34": 0.7238643859901633, "curve_35": 0.7141403519726791, "curve_36": 0.7771363432544317, "curve_37": 0.7447244262035756, "curve_38": 0.7154776305662381, "curve_39": 0.7326032039724273, "curve_4": 0.7236925800817116, "curve_40": 0.70439960839913, "curve_41": 0.7401357974808046, "curve_42": 0.7428259371270513, "curve_43": 0.7704244988318338, "curve_44": 0.7093378270891536, "curve_45": 0.7249480782606301, "curve_46": 0.728206661409741, "curve_47": 0.7002774971866673, "curve_48": 0.7012394108758545, "curve_49": 0.7058742367670212, "curve_5": 0.7209985947075184, "curve_6": 0.685968750942641, "curve_7": 0.7407598314718592, "curve_8": 0.7477843869714378, "curve_9": 0.7554057066757706, "x": 0.4010989010989011 }, { "avg_curve": 0.7496070047346665, "curve_0": 0.8131630421990077, "curve_1": 0.6863201638288932, "curve_10": 0.7353914279629731, "curve_11": 0.7848947386913369, "curve_12": 0.7489056447650455, "curve_13": 0.7575729793219913, "curve_14": 0.7593025041393143, "curve_15": 0.7638005013393211, "curve_16": 0.7281186878853, "curve_17": 0.7208318712546529, "curve_18": 0.7584928006427899, "curve_19": 0.7344385778689048, "curve_2": 0.7773751781979082, "curve_20": 0.729738014993617, "curve_21": 0.7179201721624262, "curve_22": 0.7125098786181626, "curve_23": 0.7094493063409658, "curve_24": 0.8128528769321559, "curve_25": 0.7598590120330323, "curve_26": 0.746933158875935, "curve_27": 0.7983908072967517, "curve_28": 0.78633553025616, "curve_29": 0.7559754658422587, "curve_3": 0.7469256988975062, "curve_30": 0.7507543790128257, "curve_31": 0.7826802293440293, "curve_32": 0.7846670738003788, "curve_33": 0.7376246417449901, "curve_34": 0.7314326509478404, "curve_35": 0.7215811522334672, "curve_36": 0.7856495798237456, "curve_37": 0.7527380254909165, "curve_38": 0.7230328727918856, "curve_39": 0.7403803793156716, "curve_4": 0.7313854580270147, "curve_40": 0.7118452352461112, "curve_41": 0.7481473284889605, "curve_42": 0.7506818926254727, "curve_43": 0.7788082487857808, "curve_44": 0.7168442402620978, "curve_45": 0.7327403825594413, "curve_46": 0.7359461043868956, "curve_47": 0.7076713437505272, "curve_48": 0.7085518808910024, "curve_49": 0.7133254854100042, "curve_5": 0.7286626084532765, "curve_6": 0.6931099177825077, "curve_7": 0.748618394509448, "curve_8": 0.7558737954401277, "curve_9": 0.7636095468040492, "x": 0.4065934065934066 }, { "avg_curve": 0.7575324237036459, "curve_0": 0.821984183413223, "curve_1": 0.6933622014765628, "curve_10": 0.7430881025398655, "curve_11": 0.7933582958775902, "curve_12": 0.7567757579474831, "curve_13": 0.7656589875632325, "curve_14": 0.7673430829181849, "curve_15": 0.77181766197978, "curve_16": 0.7358445892891983, "curve_17": 0.7283143835900722, "curve_18": 0.7665253786216806, "curve_19": 0.7421718355824597, "curve_2": 0.7857306805577623, "curve_20": 0.7373737977880774, "curve_21": 0.7253797236778781, "curve_22": 0.7199595742847144, "curve_23": 0.7168755151045236, "curve_24": 0.8217018273684634, "curve_25": 0.7679414990272905, "curve_26": 0.7547466515139215, "curve_27": 0.8070508164637786, "curve_28": 0.7947843108273108, "curve_29": 0.7640189063465435, "curve_3": 0.754781100031686, "curve_30": 0.7587350986068084, "curve_31": 0.7907926889397193, "curve_32": 0.7930542690209174, "curve_33": 0.7454806271559854, "curve_34": 0.7389768646050122, "curve_35": 0.7289980428989845, "curve_36": 0.7941399267872263, "curve_37": 0.7607285541642662, "curve_38": 0.7305648776550624, "curve_39": 0.7481340621447223, "curve_4": 0.7390552053389641, "curve_40": 0.719268038156324, "curve_41": 0.7561362966016797, "curve_42": 0.7585138094236534, "curve_43": 0.7871688605845641, "curve_44": 0.724327732218624, "curve_45": 0.7405101638993334, "curve_46": 0.7436622619348194, "curve_47": 0.7150424401782804, "curve_48": 0.715840915880167, "curve_49": 0.7207537898072767, "curve_5": 0.7363035759886242, "curve_6": 0.7002280755490586, "curve_7": 0.7564531651146251, "curve_8": 0.7639403695987929, "curve_9": 0.7717905699834688, "x": 0.41208791208791207 }, { "avg_curve": 0.765434999445191, "curve_0": 0.830782278770992, "curve_1": 0.7003817872524398, "curve_10": 0.750761788480391, "curve_11": 0.8017992031412988, "curve_12": 0.7646226940373135, "curve_13": 0.7737224886243482, "curve_14": 0.7753606178581376, "curve_15": 0.7798111149527451, "curve_16": 0.7435485103306493, "curve_17": 0.7357739183914755, "curve_18": 0.774534941644232, "curve_19": 0.7498824758592266, "curve_2": 0.7940635380350106, "curve_20": 0.7449867561523245, "curve_21": 0.7328164421423438, "curve_22": 0.7273869421549796, "curve_23": 0.7242795538063321, "curve_24": 0.8305279919179169, "curve_25": 0.7760011975498873, "curve_26": 0.7625367658063436, "curve_27": 0.8156881913475758, "curve_28": 0.8032101617981016, "curve_29": 0.7720396920604, "curve_3": 0.7626134302251161, "curve_30": 0.7666932653680381, "curve_31": 0.798880113996261, "curve_32": 0.8014182443939074, "curve_33": 0.7533145671168816, "curve_34": 0.7464974225791476, "curve_35": 0.7363914180852801, "curve_36": 0.8026077496783472, "curve_37": 0.7686963849491465, "curve_38": 0.7380740250559195, "curve_39": 0.7558646352655953, "curve_4": 0.7467021986107437, "curve_40": 0.7266683900417507, "curve_41": 0.7641030649567987, "curve_42": 0.7663220801519964, "curve_43": 0.7955067053449626, "curve_44": 0.7317886771935945, "curve_45": 0.7482577864113715, "curve_46": 0.7513555132105536, "curve_47": 0.7223911584322315, "curve_48": 0.7231069019413946, "curve_49": 0.7281595251475987, "curve_5": 0.7439218725392133, "curve_6": 0.707323603711229, "curve_7": 0.7642645311409685, "curve_8": 0.7719844770976547, "curve_9": 0.7799491426568611, "x": 0.4175824175824176 }, { "avg_curve": 0.773315097094824, "curve_0": 0.839557690553027, "curve_1": 0.7073792867718689, "curve_10": 0.7584128556007826, "curve_11": 0.8102178179513907, "curve_12": 0.7724468249308889, "curve_13": 0.7817638400891828, "curve_14": 0.7833554769323979, "curve_15": 0.7877812409508463, "curve_16": 0.7512308015500345, "curve_17": 0.7432108471888792, "curve_18": 0.7825218572057393, "curve_19": 0.7575708611663008, "curve_2": 0.8023741087739973, "curve_20": 0.7525772573127957, "curve_21": 0.7402306965276629, "curve_22": 0.7347923416401103, "curve_23": 0.7316617790628492, "curve_24": 0.8393317279347978, "curve_25": 0.7840384704583457, "curve_26": 0.770303877958318, "curve_27": 0.824303287783003, "curve_28": 0.811613445900807, "curve_29": 0.7800381836476239, "curve_3": 0.7704230594899508, "curve_30": 0.7746292385441024, "curve_31": 0.8069429096746981, "curve_32": 0.809759368484609, "curve_33": 0.7611268123669435, "curve_34": 0.7539947088677033, "curve_35": 0.7437616603190853, "curve_36": 0.8110534034660308, "curve_37": 0.7766418797305329, "curve_38": 0.7455606837735721, "curve_39": 0.763572470298424, "curve_4": 0.7543268034362439, "curve_40": 0.7340466529015782, "curve_41": 0.7720479861523158, "curve_42": 0.7741070859531431, "curve_43": 0.8038221434324545, "curve_44": 0.7392274384746309, "curve_45": 0.7559836036320243, "curve_46": 0.7590262262962657, "curve_47": 0.7297178595855754, "curve_48": 0.7303502138223475, "curve_49": 0.7355430556353205, "curve_5": 0.7515178623712323, "curve_6": 0.7143968705761683, "curve_7": 0.7720528691061151, "curve_8": 0.7800064749138533, "curve_9": 0.7880856206436366, "x": 0.4230769230769231 }, { "avg_curve": 0.7811730712913942, "curve_0": 0.8483107707193762, "curve_1": 0.714355055032166, "curve_10": 0.7660416630488673, "curve_11": 0.8186144875713491, "curve_12": 0.780248511811121, "curve_13": 0.7897833892959647, "curve_14": 0.7913280175417193, "curve_15": 0.795728409695421, "curve_16": 0.758891803423189, "curve_17": 0.750625530764447, "curve_18": 0.7904864822430192, "curve_19": 0.76523734353603, "curve_2": 0.8106627406826303, "curve_20": 0.7601456579014149, "curve_21": 0.7476228451353448, "curve_22": 0.7421761217794517, "curve_23": 0.7390225372034087, "curve_24": 0.8481133826059823, "curve_25": 0.7920536702009061, "curve_26": 0.7780483533203613, "curve_27": 0.8328964514675142, "curve_28": 0.8199945154988171, "curve_29": 0.7880147314266759, "curve_3": 0.778210347182029, "curve_30": 0.7825433670746446, "curve_31": 0.8149814694094385, "curve_32": 0.8180779993033345, "curve_33": 0.7689177035882704, "curve_34": 0.7614690963357037, "curve_35": 0.7511091410244926, "curve_36": 0.8194772329930692, "curve_37": 0.784565390004672, "curve_38": 0.7530252119316695, "curve_39": 0.7712579281451641, "curve_4": 0.761929374869819, "curve_40": 0.7414031782789452, "curve_41": 0.7799714026850539, "curve_42": 0.7818691969627253, "curve_43": 0.8121155249081096, "curve_44": 0.7466443688601798, "curve_45": 0.7636879589448444, "curve_46": 0.766674758662187, "curve_47": 0.7370228942782706, "curve_48": 0.7375712153968556, "curve_49": 0.7429047349502701, "curve_5": 0.7590918992495032, "curve_6": 0.7214482337580534, "curve_7": 0.7798185446658144, "curve_8": 0.7880067097957194, "curve_9": 0.796200349581576, "x": 0.42857142857142855 }, { "avg_curve": 0.7890092666093729, "curve_0": 0.8570418613318456, "curve_1": 0.7213094368529753, "curve_10": 0.7736485597444858, "curve_11": 0.8269895494775316, "curve_12": 0.788028105589338, "curve_13": 0.7977814737583091, "curve_14": 0.7992785869496372, "curve_15": 0.8036529803891307, "curve_16": 0.7665318467755449, "curve_17": 0.7580183195970422, "curve_18": 0.798429163569081, "curve_19": 0.772882264996177, "curve_2": 0.8189297718522974, "curve_20": 0.7676923043929856, "curve_21": 0.7549932360378139, "curve_22": 0.7495386216688192, "curve_23": 0.7463621646948839, "curve_24": 0.8568732933667297, "curve_25": 0.8000471392446055, "curve_26": 0.7857705468365499, "curve_27": 0.8414680183760895, "curve_28": 0.8283537130120227, "curve_29": 0.7959696757961042, "curve_3": 0.7859756424402938, "curve_30": 0.7904359900153382, "curve_31": 0.8229961753934567, "curve_32": 0.8263744847390101, "curve_33": 0.7766875718192694, "curve_34": 0.7689209471768786, "curve_35": 0.7584342209832241, "curve_36": 0.8278795733909681, "curve_37": 0.7924672573065232, "curve_38": 0.7604679574387628, "curve_39": 0.778921359432004, "curve_4": 0.7695102578611885, "curve_40": 0.7487383076929671, "curve_41": 0.7878736473656822, "curve_42": 0.7896087727640998, "curve_43": 0.8203871899514193, "curve_44": 0.7540398110927907, "curve_45": 0.7713711859983168, "curve_46": 0.7743014576045198, "curve_47": 0.7443066031482339, "curve_48": 0.7447702601156152, "curve_49": 0.750244906682743, "curve_5": 0.7666443268708102, "curve_6": 0.728478040621464, "curve_7": 0.787561913062339, "curve_8": 0.7959855186831013, "curve_9": 0.8042936653448235, "x": 0.4340659340659341 }, { "avg_curve": 0.7968240179681033, "curve_0": 0.8657512949540065, "curve_1": 0.7282427672930284, "curve_10": 0.7812338847963918, "curve_11": 0.8353433317552664, "curve_12": 0.7957859473235602, "curve_13": 0.8057584215638138, "curve_14": 0.8072075226945278, "curve_15": 0.8115553021444191, "curve_16": 0.7741512531742151, "curve_17": 0.7653895542830024, "curve_18": 0.806350238284632, "curve_19": 0.7805059579771342, "curve_2": 0.8271755309554659, "curve_20": 0.7752175335192242, "curve_21": 0.7623422074960603, "curve_22": 0.7568801708658993, "curve_23": 0.7536809885436766, "curve_24": 0.8656117882944246, "curve_25": 0.8080192104805635, "curve_26": 0.7934708034687442, "curve_27": 0.8500183151541495, "curve_28": 0.8366913713195928, "curve_29": 0.8039033476373132, "curve_3": 0.7937192846027654, "curve_30": 0.7983074369392825, "curve_31": 0.8309873990375402, "curve_32": 0.8346491629696725, "curve_33": 0.7844367388461171, "curve_34": 0.7763506133501116, "curve_35": 0.7657372507702439, "curve_36": 0.8362607504727659, "curve_37": 0.8003478136144307, "curve_38": 0.7678892584051339, "curve_39": 0.7865631049281515, "curve_4": 0.7770697876671196, "curve_40": 0.7560523730476759, "curve_41": 0.795755043711653, "curve_42": 0.7973261628187848, "curve_43": 0.8286374692606503, "curve_44": 0.7614140982692468, "curve_45": 0.7790336091014431, "curve_46": 0.781906660659965, "curve_47": 0.7515693172394875, "curve_48": 0.7519476914327451, "curve_49": 0.7575639047452427, "curve_5": 0.7741754792740937, "curve_6": 0.7354866287009979, "curve_7": 0.7952833195489515, "curve_8": 0.8039432291053235, "curve_9": 0.812365894439654, "x": 0.43956043956043955 }, { "avg_curve": 0.8046176510195108, "curve_0": 0.8744393950302481, "curve_1": 0.7351553720448473, "curve_10": 0.7887979678971673, "curve_11": 0.8436761534741766, "curve_12": 0.8035223686147348, "curve_13": 0.8137145517517117, "curve_14": 0.8151151529799816, "curve_15": 0.8194357143893861, "curve_16": 0.7817503352994487, "curve_17": 0.7727395659346937, "curve_18": 0.8142500341679304, "curve_19": 0.7881087456976876, "curve_2": 0.835400337622413, "curve_20": 0.7827216726609573, "curve_21": 0.7696700883552371, "curve_22": 0.7642010897742666, "curve_23": 0.760979326676505, "curve_24": 0.8743291864817023, "curve_25": 0.8159702076079554, "curve_26": 0.8011494585984387, "curve_27": 0.8585476594898845, "curve_28": 0.8450078141416112, "curve_29": 0.8118160686961546, "curve_3": 0.801441603600597, "curve_30": 0.8061580283172912, "curve_31": 0.8389555014052756, "curve_32": 0.8429023628513997, "curve_33": 0.7921655175736404, "curve_34": 0.7837584369928122, "curve_35": 0.7730185711663234, "curve_36": 0.844621081105256, "curve_37": 0.8082073817335095, "curve_38": 0.7752894435376263, "curve_39": 0.794183495942538, "curve_4": 0.7846082902414068, "curve_40": 0.7633456970193777, "curve_41": 0.8036159063194931, "curve_42": 0.8050217068741833, "curve_43": 0.8368666844321803, "curve_44": 0.7687675542290551, "curve_45": 0.7866755435985144, "curve_46": 0.7894906959983959, "curve_47": 0.7588113583887651, "curve_48": 0.7591038432097801, "curve_49": 0.7648620537624871, "curve_5": 0.7816856812290207, "curve_6": 0.7424743260986861, "curve_7": 0.8029830997919826, "curve_8": 0.8118801595582309, "curve_9": 0.8204173543794563, "x": 0.44505494505494503 }, { "avg_curve": 0.8123904825156506, "curve_0": 0.8831064762452121, "curve_1": 0.7420475678088179, "curve_10": 0.7963411296975663, "curve_11": 0.8519883250440557, "curve_12": 0.8112376919823461, "curve_13": 0.8216501746709188, "curve_14": 0.8230017970448879, "curve_15": 0.8272945472525318, "curve_16": 0.7893293972967884, "curve_17": 0.780068676558275, "curve_18": 0.8221288700443711, "curve_19": 0.7956909425307076, "curve_2": 0.8436045027984292, "curve_20": 0.7902050402198908, "curve_21": 0.7769771984196251, "curve_22": 0.7715016900073965, "curve_23": 0.7682574883013592, "curve_24": 0.8830257983902785, "curve_25": 0.823900445498045, "curve_26": 0.8088068384076803, "curve_27": 0.8670563604673158, "curve_28": 0.8533033564009276, "curve_29": 0.819708151944703, "curve_3": 0.8091429203316227, "curve_30": 0.8139880758784251, "curve_31": 0.8469008336253392, "curve_32": 0.8511344042870598, "curve_33": 0.7998742123769407, "curve_34": 0.791144750812702, "curve_35": 0.7802785135490495, "curve_36": 0.8529608735619334, "curve_37": 0.8160462756591116, "curve_38": 0.7826688325138923, "curve_39": 0.8017828546998622, "curve_4": 0.792126082604546, "curve_40": 0.7706185934238242, "curve_41": 0.8114565412177716, "curve_42": 0.8126957353500585, "curve_43": 0.8450751483201666, "curve_44": 0.7761004939226938, "curve_45": 0.7942972962244071, "curve_46": 0.7970538827950873, "curve_47": 0.766033039591963, "curve_48": 0.7662390400985565, "curve_49": 0.7721396694410829, "curve_5": 0.7891752486043224, "curve_6": 0.749441451860637, "curve_7": 0.8106615802519691, "curve_8": 0.8197966198616632, "curve_9": 0.8284483540402656, "x": 0.45054945054945056 }, { "avg_curve": 0.8201428206573813, "curve_0": 0.8917528448648531, "curve_1": 0.748919662647949, "curve_10": 0.8038636821615982, "curve_11": 0.8602801485525359, "curve_12": 0.8189322312207128, "curve_13": 0.829565592319727, "curve_14": 0.8308677655145141, "curve_15": 0.8351321219277138, "curve_16": 0.79688873511115, "curve_17": 0.7873771994119958, "curve_18": 0.8299870561370991, "curve_19": 0.8032528543500452, "curve_2": 0.8517883290827305, "curve_20": 0.7976679459712496, "curve_21": 0.7842638488082803, "curve_22": 0.7787822747339436, "curve_23": 0.7755157742498849, "curve_24": 0.8917019261867037, "curve_25": 0.8318102305395397, "curve_26": 0.816443260240384, "curve_27": 0.8755447189013071, "curve_28": 0.8615783045664803, "curve_29": 0.8275799019244697, "curve_3": 0.8168235470147013, "curve_30": 0.8217978829520289, "curve_31": 0.8548237372825358, "curve_32": 0.8593455985761574, "curve_33": 0.8075631194349834, "curve_34": 0.7985098784593888, "curve_35": 0.7875174002636512, "curve_36": 0.8612804278578865, "curve_37": 0.8238648009216392, "curve_38": 0.7900277363373687, "curve_39": 0.8093614946972856, "curve_4": 0.799623473194395, "curve_40": 0.7778713675644758, "curve_41": 0.8192772462019738, "curve_42": 0.8203485697051129, "curve_43": 0.8532631653777937, "curve_44": 0.7834132237609027, "curve_45": 0.8018991654416436, "curve_46": 0.8045965315837944, "curve_47": 0.7732346653517196, "curve_48": 0.7733535979043383, "curve_49": 0.7793970589201625, "curve_5": 0.796644488717186, "curve_6": 0.7563883163342382, "curve_7": 0.8183190785451798, "curve_8": 0.8276929114986012, "curve_9": 0.8364591939980813, "x": 0.45604395604395603 }, { "avg_curve": 0.8278749654253473, "curve_0": 0.9003787990602776, "curve_1": 0.7557719563245341, "curve_10": 0.8113659289035624, "curve_11": 0.8685519180856794, "curve_12": 0.8266062917371901, "curve_13": 0.8374610986682905, "curve_14": 0.8387133607337801, "curve_15": 0.8429487510205653, "curve_16": 0.8044286368039648, "curve_17": 0.7946654393462561, "curve_18": 0.837824894399836, "curve_19": 0.8107947788598139, "curve_2": 0.8599521110502248, "curve_20": 0.8051106913984906, "curve_21": 0.7915303422925802, "curve_22": 0.7860431390054675, "curve_23": 0.7827544773023629, "curve_24": 0.9003578640611727, "curve_25": 0.8396998609664431, "curve_26": 0.8240590329452823, "curve_27": 0.8840130276556588, "curve_28": 0.8698329569792496, "curve_29": 0.8354316150722237, "curve_3": 0.8244837875260661, "curve_30": 0.8295877447924287, "curve_31": 0.8627245447889287, "curve_32": 0.8675362487469677, "curve_33": 0.8152325270472826, "curve_34": 0.8058541348770064, "curve_35": 0.7947355449749139, "curve_36": 0.869580036067766, "curve_37": 0.8316632549138756, "curve_38": 0.7973664576741927, "curve_39": 0.8169197210430015, "curve_4": 0.8071007621990146, "curve_40": 0.7851043165630537, "curve_41": 0.8270783111524136, "curve_42": 0.8279805227849218, "curve_43": 0.8614310319812526, "curve_44": 0.7907060419462119, "curve_45": 0.8094814417603562, "curve_46": 0.8121189445918953, "curve_47": 0.7804165320073131, "curve_48": 0.7804478239304288, "curve_49": 0.7866345211041815, "curve_5": 0.8040937006648932, "curve_6": 0.763315221507139, "curve_7": 0.825955903786765, "curve_8": 0.8355693279371326, "curve_9": 0.8444501668491103, "x": 0.46153846153846156 }, { "avg_curve": 0.8355872088943632, "curve_0": 0.9089846292154201, "curve_1": 0.7626047406198455, "curve_10": 0.8188481655081521, "curve_11": 0.8768039200325594, "curve_12": 0.8342601708733937, "curve_13": 0.8453369799649689, "curve_14": 0.8465388770838251, "curve_15": 0.8507447388775187, "curve_16": 0.81194938285443, "curve_17": 0.8019336931265595, "curve_18": 0.8456426788330241, "curve_19": 0.8183170059071498, "curve_2": 0.8680961355571951, "curve_20": 0.8125335700112031, "curve_21": 0.7987769736167928, "curve_22": 0.793284570067692, "curve_23": 0.789973882496367, "curve_24": 0.9089938985304333, "curve_25": 0.8475696271694865, "curve_26": 0.8316544572016443, "curve_27": 0.892461571945327, "curve_28": 0.8780676041619143, "curve_29": 0.843263580029495, "curve_3": 0.8321239377187918, "curve_30": 0.837357948887367, "curve_31": 0.8706035797362939, "curve_32": 0.8757066498720462, "curve_33": 0.8228827159347284, "curve_34": 0.813177826639093, "curve_35": 0.8019332530013633, "curve_36": 0.8778599826278721, "curve_37": 0.8394419272019138, "curve_38": 0.8046852911731811, "curve_39": 0.8244578307777971, "curve_4": 0.8145582418727978, "curve_40": 0.7923177296734756, "curve_41": 0.8348600183362349, "curve_42": 0.8355918991523824, "curve_43": 0.869579036737523, "curve_44": 0.7979792387878085, "curve_45": 0.8170444080422201, "curve_46": 0.8196214160586994, "curve_47": 0.7875789280479735, "curve_48": 0.7875220173054196, "curve_49": 0.7938523469789845, "curve_5": 0.8115231756398052, "curve_6": 0.7702224613291502, "curve_7": 0.8335723569166679, "curve_8": 0.8434261549363037, "curve_9": 0.8524215575139912, "x": 0.46703296703296704 }, { "avg_curve": 0.8432798355322256, "curve_0": 0.917570618219547, "curve_1": 0.7694182996379029, "curve_10": 0.8263106798346707, "curve_11": 0.8850364333747978, "curve_12": 0.8418941582104915, "curve_13": 0.8531935150275209, "curve_14": 0.854344601282895, "curve_15": 0.8585203818985082, "curve_16": 0.8194512464458419, "curve_17": 0.8091822497404122, "curve_18": 0.8534406957843129, "curve_19": 0.8258198177794642, "curve_2": 0.8762206820318819, "curve_20": 0.8199368676472295, "curve_21": 0.806004029802714, "curve_22": 0.8005068476563143, "curve_23": 0.7971742674200991, "curve_24": 0.9176103087257705, "curve_25": 0.8554198119921472, "curve_26": 0.8392298258288293, "curve_27": 0.9008906296237384, "curve_28": 0.886282529113214, "curve_29": 0.8510760779367593, "curve_3": 0.8397442857264201, "curve_30": 0.845108775251169, "curve_31": 0.8784611572310507, "curve_32": 0.8838570893681407, "curve_33": 0.8305139595255309, "curve_34": 0.8204812522668078, "curve_35": 0.8091108216328083, "curve_36": 0.8861205446233362, "curve_37": 0.8472010998206935, "curve_38": 0.8119845237699148, "curve_39": 0.8319761131806579, "curve_4": 0.8219961968369129, "curve_40": 0.7995118885801994, "curve_41": 0.8426226426944768, "curve_42": 0.8431829954017489, "curve_43": 0.8777074607769475, "curve_44": 0.8052330970007693, "curve_45": 0.8245883397893337, "curve_46": 0.8271042325379651, "curve_47": 0.7947221344106301, "curve_48": 0.7945764692941467, "curve_49": 0.8010508199121692, "curve_5": 0.8189331972287205, "curve_6": 0.7771103220181121, "curve_7": 0.841168731009362, "curve_8": 0.8512636708368418, "curve_9": 0.8603736435269831, "x": 0.4725274725274725 }, { "avg_curve": 0.8509531224838873, "curve_0": 0.9261370417455029, "curve_1": 0.7762129100942863, "curve_10": 0.8337537523063223, "curve_11": 0.8932497299619797, "curve_12": 0.8495085358595291, "curve_13": 0.8610309755200604, "curve_14": 0.8621308126724989, "curve_15": 0.8662759688343367, "curve_16": 0.8269344937379177, "curve_17": 0.8164113906891446, "curve_18": 0.8612192242343321, "curve_19": 0.8333034894871266, "curve_2": 0.884326022750877, "curve_20": 0.8273208627599615, "curve_21": 0.8132117904393391, "curve_22": 0.8077102442782962, "curve_23": 0.8043559024913358, "curve_24": 0.9262073666669591, "curve_25": 0.8632506910121861, "curve_26": 0.846785424080648, "curve_27": 0.9093004714561009, "curve_28": 0.8944780075879349, "curve_29": 0.8588693827132339, "curve_3": 0.8473451122517, "curve_30": 0.8528404967035669, "curve_31": 0.8862975842127315, "curve_32": 0.8919878472814426, "curve_33": 0.8381265242271769, "curve_34": 0.8277647025314911, "curve_35": 0.8162685404322525, "curve_36": 0.894361992061294, "curve_37": 0.8549410475550732, "curve_38": 0.8192644349758889, "curve_39": 0.8394748500593787, "curve_4": 0.8294149043650106, "curve_40": 0.8066870676819198, "curve_41": 0.8503664521151062, "curve_42": 0.8507541004572544, "curve_43": 0.8858165780315159, "curve_44": 0.8124678919906039, "curve_45": 0.8321135054189591, "curve_46": 0.8345676731855775, "curve_47": 0.801846424763038, "curve_48": 0.8016114635933438, "curve_49": 0.8082302159387004, "curve_5": 0.8263240416975473, "curve_6": 0.7839790823507063, "curve_7": 0.8487453115683882, "curve_8": 0.8590821468376648, "curve_9": 0.8683066953110247, "x": 0.47802197802197804 }, { "avg_curve": 0.8586073398418774, "curve_0": 0.9346841685145503, "curve_1": 0.7829888415908945, "curve_10": 0.8411776561854717, "curve_11": 0.9014440747737793, "curve_12": 0.8571035787376832, "curve_13": 0.8688496262166271, "curve_14": 0.8698977834897154, "curve_15": 0.8740117810696298, "curve_16": 0.8343993841259402, "curve_17": 0.8236213902655567, "curve_18": 0.8689785360686352, "curve_19": 0.8407682890324547, "curve_2": 0.8924124231021778, "curve_20": 0.8346858266917025, "curve_21": 0.8204005279584666, "curve_22": 0.8148950254795111, "curve_23": 0.8115190512228441, "curve_24": 0.9347853375230258, "curve_25": 0.8710625328095697, "curve_26": 0.8543215299254493, "curve_27": 0.9176913613795451, "curve_28": 0.9026543083633825, "curve_29": 0.866643761323142, "curve_3": 0.8549266908413375, "curve_30": 0.8605533791350395, "curve_31": 0.8941131597569784, "curve_32": 0.9000991965590566, "curve_33": 0.8457206696852398, "curve_34": 0.8350284607425154, "curve_35": 0.82340669152312, "curve_36": 0.9025845881308859, "curve_37": 0.862662038207306, "curve_38": 0.8265252971536304, "curve_39": 0.8469543160270828, "curve_4": 0.8368146346550802, "curve_40": 0.8138435343614958, "curve_41": 0.8580917076928555, "curve_42": 0.8583054958572394, "curve_43": 0.8939066554997173, "curve_44": 0.8196838921239932, "curve_45": 0.8396201665249702, "curve_46": 0.8420120100332786, "curve_47": 0.8089520657731617, "curve_48": 0.8086272766129131, "curve_49": 0.8153908040326594, "curve_5": 0.8336959782621767, "curve_6": 0.7908290139391153, "curve_7": 0.8563023768066097, "curve_8": 0.8668818472590261, "curve_9": 0.8762209764395098, "x": 0.4835164835164835 }, { "avg_curve": 0.8662427509037781, "curve_0": 0.9432122605485936, "curve_1": 0.7897463568774818, "curve_10": 0.8485826578357069, "curve_11": 0.9096197261695866, "curve_12": 0.8646795548312812, "curve_13": 0.8766497252521674, "curve_14": 0.8776457791264711, "curve_15": 0.8817280928922298, "curve_16": 0.8418461704875103, "curve_17": 0.8308125158182342, "curve_18": 0.8767188963366334, "curve_19": 0.8482144776658207, "curve_2": 0.9004801418356896, "curve_20": 0.8420320239339246, "curve_21": 0.8275705078970735, "curve_22": 0.8220614500995579, "curve_23": 0.8186639704750737, "curve_24": 0.943344479860601, "curve_25": 0.8788555992215847, "curve_26": 0.8618384143127739, "curve_27": 0.926063556750872, "curve_28": 0.9108116934931377, "curve_29": 0.8743994740292511, "curve_3": 0.8624892881475845, "curve_30": 0.8682476817594643, "curve_31": 0.9019081753639888, "curve_32": 0.9081914033075055, "curve_33": 0.8532966490298194, "curve_34": 0.8422728030212987, "curve_35": 0.8305255498626634, "curve_36": 0.9107885894508658, "curve_37": 0.8703643328517248, "curve_38": 0.8337673757786133, "curve_39": 0.8544147787654842, "curve_4": 0.8441956510882751, "curve_40": 0.82098154924293, "curve_41": 0.8657986639766476, "curve_42": 0.8658374560246511, "curve_43": 0.9019779534987495, "curve_44": 0.8268813589865406, "curve_45": 0.8471085781267937, "curve_46": 0.8494375082492803, "curve_47": 0.8160393173656317, "curve_48": 0.8156241777436698, "curve_49": 0.8225328463659533, "curve_5": 0.8410492693463735, "curve_6": 0.7976603814943735, "curve_7": 0.8638401979130287, "curve_8": 0.8746630297930893, "curve_9": 0.8841167438855655, "x": 0.489010989010989 }, { "avg_curve": 0.8738596124175159, "curve_0": 0.9517215734105227, "curve_1": 0.7964857121007533, "curve_10": 0.8559690169714768, "curve_11": 0.9177769361263646, "curve_12": 0.8722367254463587, "curve_13": 0.8844315243616551, "curve_14": 0.8853750583765532, "curve_15": 0.8894251717498222, "curve_16": 0.8492750994176284, "curve_17": 0.8379850280033144, "curve_18": 0.8844405634982765, "curve_19": 0.8556423101296278, "curve_2": 0.9085294313019077, "curve_20": 0.849359712375183, "curve_21": 0.8347219891472316, "curve_22": 0.8292097705144887, "curve_23": 0.8257909106968687, "curve_24": 0.9518850458805763, "curve_25": 0.8866301455858925, "curve_26": 0.8693363414273673, "curve_27": 0.934417308582634, "curve_28": 0.9189504185488401, "curve_29": 0.8821367746344229, "curve_3": 0.8700331641774336, "curve_30": 0.8759236573548262, "curve_31": 0.9096829152332614, "curve_32": 0.9162647270390227, "curve_33": 0.8608547091103332, "curve_34": 0.8494979985622929, "curve_35": 0.8376253835023686, "curve_36": 0.9189742463055364, "curve_37": 0.8780481860773801, "curve_38": 0.8409909296887451, "curve_39": 0.8618564992756708, "curve_4": 0.8515582104754733, "curve_40": 0.828101366436154, "curve_41": 0.8734875692053337, "curve_42": 0.8733502485247109, "curve_43": 0.910030725904828, "curve_44": 0.8340605476282968, "curve_45": 0.8545789889065762, "curve_46": 0.8568444263865209, "curve_47": 0.823108432966033, "curve_48": 0.8226024296123526, "curve_49": 0.8296565985547465, "curve_5": 0.848384170827442, "curve_6": 0.804473443077192, "curve_7": 0.8713590393069532, "curve_8": 0.8824259457426616, "curve_9": 0.8919942482595605, "x": 0.4945054945054945 }, { "avg_curve": 0.8814581748151745, "curve_0": 0.9602123564333612, "curve_1": 0.8032071570417387, "curve_10": 0.8633369868960252, "curve_11": 0.925915950465412, "curve_12": 0.8797753454474792, "curve_13": 0.8921952691080428, "curve_14": 0.8930858736710626, "curve_15": 0.8971032784945407, "curve_16": 0.8566864114527809, "curve_17": 0.84513918102443, "curve_18": 0.8921437896591949, "curve_19": 0.8630520348908611, "curve_2": 0.9165605376794635, "curve_20": 0.8566691435374097, "curve_21": 0.8418552241942953, "curve_22": 0.8363402328681582, "curve_23": 0.8329001161548938, "curve_24": 0.960407281643749, "curve_25": 0.8943864209722209, "curve_26": 0.876815568931281, "curve_27": 0.9427528617682169, "curve_28": 0.9270707328506889, "curve_29": 0.8898559107118754, "curve_3": 0.8775585725301429, "curve_30": 0.8835815524926708, "curve_31": 0.9174376565254387, "curve_32": 0.9243194209063447, "curve_33": 0.8683950907193365, "curve_34": 0.8567043098817042, "curve_35": 0.8447064538361131, "curve_36": 0.9271418028696886, "curve_37": 0.8857138462193354, "curve_38": 0.8481962113221473, "curve_39": 0.8692797321171286, "curve_4": 0.8589025632922798, "curve_40": 0.8352032337703311, "curve_41": 0.8811586655324166, "curve_42": 0.8808441343104945, "curve_43": 0.9180652203822776, "curve_44": 0.8412217067977693, "curve_45": 0.8620316414352573, "curve_46": 0.8642330166192899, "curve_47": 0.8301596597337283, "curve_48": 0.8295622883246438, "curve_49": 0.8367623098943295, "curve_5": 0.8557009322703804, "curve_6": 0.8112684503369825, "curve_7": 0.8788591588802475, "curve_8": 0.8901708402487768, "curve_9": 0.8998537340355257, "x": 0.5 }, { "avg_curve": 0.8890386824359873, "curve_0": 0.9686848529388614, "curve_1": 0.8099109353421245, "curve_10": 0.8706868147282935, "curve_11": 0.9340370090686713, "curve_12": 0.887295663485488, "curve_13": 0.8999411990996807, "curve_14": 0.9007784713029772, "curve_15": 0.9047626676162329, "curve_16": 0.8640803412846648, "curve_17": 0.8522752228615127, "curve_18": 0.8998288207949616, "curve_19": 0.8704438943628677, "curve_2": 0.9245737011921727, "curve_20": 0.8639605628012493, "curve_21": 0.8489704593440281, "curve_22": 0.8434530772928398, "curve_23": 0.8399918251524234, "curve_24": 0.9689114272860782, "curve_25": 0.9021246684033449, "curve_26": 0.8842763481947478, "curve_27": 0.9510704552965543, "curve_28": 0.9351728796873066, "curve_29": 0.8975571238247987, "curve_3": 0.8850657606237553, "curve_30": 0.8912216077569497, "curve_31": 0.9251726696119887, "curve_32": 0.9323557319266558, "curve_33": 0.8759180288059962, "curve_34": 0.8638919930546518, "curve_35": 0.8517690158367789, "curve_36": 0.935291497423172, "curve_37": 0.8933615555792613, "curve_38": 0.8553834669439021, "curve_39": 0.876684725635688, "curve_4": 0.8662289539031386, "curve_40": 0.8422873930163344, "curve_41": 0.8888121892403946, "curve_42": 0.8883193679571182, "curve_43": 0.9260816786020519, "curve_44": 0.8483650791650765, "curve_45": 0.8694667723881859, "curve_46": 0.8716035249688826, "curve_47": 0.8371932387838795, "curve_48": 0.8365040036968857, "curve_49": 0.8438502235830873, "curve_5": 0.8629997971511807, "curve_6": 0.8180456487397627, "curve_7": 0.8863408082283499, "curve_8": 0.89789795250776, "curve_9": 0.9076954397671207, "x": 0.5054945054945055 }, { "avg_curve": 0.8966013737391169, "curve_0": 0.9771393004461344, "curve_1": 0.8165972847201655, "curve_10": 0.8780187416194137, "curve_11": 0.9421403460851682, "curve_12": 0.8947979222148283, "curve_13": 0.9076695481977983, "curve_14": 0.9084530916414328, "curve_15": 0.9124035874650345, "curve_16": 0.8714571179641298, "curve_17": 0.8593933954890864, "curve_18": 0.9074958969650888, "curve_19": 0.8778181251169753, "curve_2": 0.9325691563161722, "curve_20": 0.8712342096210581, "curve_21": 0.8560679349393008, "curve_22": 0.8505485381197256, "curve_23": 0.8470662702380954, "curve_24": 0.9773977172241374, "curve_25": 0.9098451250659607, "curve_26": 0.8917189245164657, "curve_27": 0.9593703224570576, "curve_28": 0.9432570965255667, "curve_29": 0.9052406497359267, "curve_3": 0.8925549699112372, "curve_30": 0.898844057952856, "curve_31": 0.9328882183134127, "curve_32": 0.9403739011953014, "curve_33": 0.8834237526798031, "curve_34": 0.8710612979414206, "curve_35": 0.8588133182819802, "curve_36": 0.9434235625556798, "curve_37": 0.9009915506359408, "curve_38": 0.8625529368623892, "curve_39": 0.884071722181013, "curve_4": 0.8735376207751676, "curve_40": 0.849354080099013, "curve_41": 0.8964483709453076, "curve_42": 0.895776197885179, "curve_43": 0.9340803364502772, "curve_44": 0.855490901534861, "curve_45": 0.8768846127508693, "curve_46": 0.8789561915189092, "curve_47": 0.8442094053992751, "curve_48": 0.8434278194771362, "curve_49": 0.8509205769361858, "curve_5": 0.8702810030698909, "curve_6": 0.8248052777855733, "curve_7": 0.8938042328706949, "curve_8": 0.9056075159783747, "curve_9": 0.9155195982937373, "x": 0.510989010989011 }, { "avg_curve": 0.9041464815068029, "curve_0": 0.9855759308708791, "curve_1": 0.823266437176767, "curve_10": 0.8853330029593817, "curve_11": 0.9502261901281344, "curve_12": 0.9022823585010028, "curve_13": 0.9153805447146062, "curve_14": 0.9161099693363042, "curve_15": 0.9200262804638489, "curve_16": 0.8788169650958935, "curve_17": 0.8664939350846419, "curve_18": 0.9151452525173374, "curve_19": 0.8851749580845195, "curve_2": 0.9405471319777075, "curve_20": 0.8784903177301501, "curve_21": 0.8631478855669424, "curve_22": 0.8576268440798706, "curve_23": 0.8541236784051947, "curve_24": 0.9858663803513149, "curve_25": 0.917548022512021, "curve_26": 0.8991435373338884, "curve_27": 0.9676526910353082, "curve_28": 0.9513236152109467, "curve_29": 0.9129067186076303, "curve_3": 0.9000264360868204, "curve_30": 0.9064491323062107, "curve_31": 0.9405845601266293, "curve_32": 0.9483741640898415, "curve_33": 0.8909124862050726, "curve_34": 0.878212468403422, "curve_35": 0.8658396039695159, "curve_36": 0.951538225362297, "curve_37": 0.9086040622462448, "curve_38": 0.8697048556357998, "curve_39": 0.8914409583142254, "curve_4": 0.8808287966822957, "curve_40": 0.8564035252998227, "curve_41": 0.9040674357920375, "curve_42": 0.9032148665740506, "curve_43": 0.9420614242273746, "curve_44": 0.8625994050495395, "curve_45": 0.884285388015409, "curve_46": 0.8862912506208375, "curve_47": 0.851208389232539, "curve_48": 0.8503339735561654, "curve_49": 0.8579736015895547, "curve_5": 0.877544781954012, "curve_6": 0.831547571215997, "curve_7": 0.9012496724611337, "curve_8": 0.9132997585796002, "curve_9": 0.9233264369372889, "x": 0.5164835164835165 }, { "avg_curve": 0.9116742330384022, "curve_0": 0.9939949707157242, "curve_1": 0.8299186191922846, "curve_10": 0.8926298285744496, "curve_11": 0.9582947644633296, "curve_12": 0.9097492036187309, "curve_13": 0.9230744116025345, "curve_14": 0.9237493335136212, "curve_15": 0.9276309833112941, "curve_16": 0.8861601010245347, "curve_17": 0.873577072227642, "curve_18": 0.9227771162828718, "curve_19": 0.8925146187498113, "curve_2": 0.9485078517420822, "curve_20": 0.8857291153368267, "curve_21": 0.8702105402552958, "curve_22": 0.864688218496116, "curve_23": 0.8611642712819887, "curve_24": 0.9943176402252661, "curve_25": 0.9252335868510572, "curve_26": 0.9065504204240719, "curve_27": 0.9759177835000225, "curve_28": 0.9593726621589281, "curve_29": 0.9205555551930525, "curve_3": 0.9074803892830874, "curve_30": 0.914037054653923, "curve_31": 0.9482619464421315, "curve_32": 0.9563567504649785, "curve_33": 0.8983844479867389, "curve_34": 0.8853457425094341, "curve_35": 0.8728481099231183, "curve_36": 0.9596357076303209, "curve_37": 0.9161993158371114, "curve_38": 0.8768394522693711, "curve_39": 0.8987926650062087, "curve_4": 0.888102708900239, "curve_40": 0.8634359534503515, "curve_41": 0.9116696036408719, "curve_42": 0.9106356107655981, "curve_43": 0.9500251668382874, "curve_44": 0.869690815383423, "curve_45": 0.8916693183681401, "curve_46": 0.8936089310903105, "curve_47": 0.858190414499255, "curve_48": 0.8572226981689505, "curve_49": 0.8650095236947035, "curve_5": 0.8847913602527698, "curve_6": 0.8382727572123301, "curve_7": 0.9086773609889095, "curve_8": 0.9209749028795653, "curve_9": 0.9311161776902057, "x": 0.521978021978022 }, { "avg_curve": 0.9191848503358302, "curve_0": 1.0023966412521723, "curve_1": 0.8365540519145495, "curve_10": 0.8999094429157543, "curve_11": 0.9663462871890458, "curve_12": 0.9171986834413096, "curve_13": 0.9307513666350992, "curve_14": 0.9313714079623241, "curve_15": 0.9352179271756403, "curve_16": 0.8934867390122484, "curve_17": 0.8806430320896781, "curve_18": 0.9303917117627684, "curve_19": 0.8998373273345442, "curve_2": 0.9564515339942565, "curve_20": 0.8929508253117011, "curve_21": 0.8772561226629855, "curve_22": 0.871732879466486, "curve_23": 0.8681882653136126, "curve_24": 1.0027517152471037, "curve_25": 0.9329020389339845, "curve_26": 0.9139398020956017, "curve_27": 0.9841658171817653, "curve_28": 0.967404458537938, "curve_29": 0.928187379018782, "curve_3": 0.9149170542593115, "curve_30": 0.9216080436260169, "curve_31": 0.9559206227514814, "curve_32": 0.9643218848388605, "curve_33": 0.9058398515479259, "curve_34": 0.892461352732659, "curve_35": 0.8798390675890363, "curve_36": 0.9677162260178324, "curve_37": 0.9237775315890174, "curve_38": 0.8839569504038551, "curve_39": 0.9061270678271055, "curve_4": 0.8953595793928191, "curve_40": 0.8704515841172477, "curve_41": 0.9192550892458132, "curve_42": 0.9180386616588407, "curve_43": 0.9579717839742965, "curve_44": 0.8767653529282127, "curve_45": 0.8990366188689547, "curve_46": 0.9009094563947492, "curve_47": 0.8651557001625045, "curve_48": 0.8640942200871944, "curve_49": 0.87202856410488, "curve_5": 0.8920209591227587, "curve_6": 0.8449810585849247, "curve_7": 0.9160875269707046, "curve_8": 0.9286331662761174, "curve_9": 0.9388890373951131, "x": 0.5274725274725275 }, { "avg_curve": 0.926678550280862, "curve_0": 1.0107811586945967, "curve_1": 0.843172951338602, "curve_10": 0.907172065239651, "curve_11": 0.9743809714082386, "curve_12": 0.9246310186216569, "curve_13": 0.9384116225798427, "curve_14": 0.9389764113128254, "curve_15": 0.9427873378802257, "curve_16": 0.9007970874088035, "curve_17": 0.8876920346162518, "curve_18": 0.937989257306339, "curve_19": 0.9071432989741035, "curve_2": 0.9643783921115445, "curve_20": 0.900155665366786, "curve_21": 0.8842848512593777, "curve_22": 0.8787610400395227, "curve_23": 0.8751958719359556, "curve_24": 1.0111688188327632, "curve_25": 0.940553594528852, "curve_26": 0.9213119053720822, "curve_27": 0.99239700444386, "curve_28": 0.9754192204442845, "curve_29": 0.9358024045595177, "curve_3": 0.9223366505815253, "curve_30": 0.9291623128196755, "curve_31": 0.9635608288456705, "curve_32": 0.9722697865712251, "curve_33": 0.9132789054997341, "curve_34": 0.8995595261390945, "curve_35": 0.886812703023947, "curve_36": 0.9757799922244624, "curve_37": 0.9313389246114081, "curve_38": 0.8910575684956934, "curve_39": 0.9134443871274858, "curve_4": 0.9025996249900956, "curve_40": 0.8774506317790093, "curve_41": 0.9268241024250761, "curve_42": 0.9254242450960519, "curve_43": 0.9659014902868805, "curve_44": 0.8838232329703372, "curve_45": 0.9063874996227618, "curve_46": 0.90819304483271, "curve_47": 0.8721044601092867, "curve_48": 0.8709487608033544, "curve_49": 0.8790309385530353, "curve_5": 0.8992337946054286, "curve_6": 0.8516726929541771, "curve_7": 0.9234803936342478, "curve_8": 0.9362747611694836, "curve_9": 0.9466452279166468, "x": 0.532967032967033 }, { "avg_curve": 0.9341555448047373, "curve_0": 1.0191487343667198, "curve_1": 0.8497755284785774, "curve_10": 0.9144179097802032, "curve_11": 0.9823990253932137, "curve_12": 0.9320464247654856, "curve_13": 0.9460553873637795, "curve_14": 0.9465645572078217, "curve_15": 0.9503394360808116, "curve_16": 0.9080913498141273, "curve_17": 0.8947242947006402, "curve_18": 0.9455699662817165, "curve_19": 0.9144327438862123, "curve_2": 0.9722886346288347, "curve_20": 0.9073438482267925, "curve_21": 0.8912969394971803, "curve_22": 0.8857729083819894, "curve_23": 0.8821872977419858, "curve_24": 1.0195691595769705, "curve_25": 0.948188464488968, "curve_26": 0.9286669481676414, "curve_27": 1.0006115528459107, "curve_28": 0.9834171590695204, "curve_29": 0.943400841405159, "curve_3": 0.9297393927947614, "curve_30": 0.9367000709657386, "curve_31": 0.9711827990048336, "curve_32": 0.9802006700338253, "curve_33": 0.9207018137036665, "curve_34": 0.90664048456769, "curve_35": 0.8937692370746684, "curve_36": 0.983827213154775, "curve_37": 0.9388837051105119, "curve_38": 0.8981415199893491, "curve_39": 0.9207448382116347, "curve_4": 0.9098230575587507, "curve_40": 0.8844333059950811, "curve_41": 0.9343768482241955, "curve_42": 0.9327925817407597, "curve_43": 0.9738144955540476, "curve_44": 0.890864665860571, "curve_45": 0.913722165943506, "curve_46": 0.9154599097054423, "curve_47": 0.8790369033192572, "curve_48": 0.877786536706643, "curve_49": 0.8860168578220409, "curve_5": 0.9064300777968544, "curve_6": 0.858347872923619, "curve_7": 0.9308561790939321, "curve_8": 0.9438998951274457, "curve_9": 0.9543849563058242, "x": 0.5384615384615384 }, { "avg_curve": 0.9416160410504741, "curve_0": 1.0274995748609677, "curve_1": 0.8563619895321652, "curve_10": 0.9216471859142464, "curve_11": 0.9904006527432588, "curve_12": 0.9394451125970246, "curve_13": 0.9536828642317423, "curve_14": 0.9541360544657647, "curve_15": 0.9578744374353039, "curve_16": 0.9153697252339065, "curve_17": 0.9017400223502615, "curve_18": 0.9531340472391087, "curve_19": 0.9217058675323264, "curve_2": 0.9801824653967315, "curve_20": 0.9145155817930498, "curve_21": 0.8982925959775999, "curve_22": 0.8927686879393553, "curve_23": 0.8891627446409119, "curve_24": 1.027952941410198, "curve_25": 0.9558068549138072, "curve_26": 0.9360051434548803, "curve_27": 1.0088096653003298, "curve_28": 0.9913984808606331, "curve_29": 0.9509828944207233, "curve_3": 0.9371254905878846, "curve_30": 0.9442215220880484, "curve_31": 0.9787867621797801, "curve_32": 0.988114744773541, "curve_33": 0.9281087754270817, "curve_34": 0.9137044448027253, "curve_35": 0.900708885550108, "curve_36": 0.9918580910746523, "curve_37": 0.9464120785499489, "curve_38": 0.9052090134822111, "curve_39": 0.9280286315033796, "curve_4": 0.9170300841651409, "curve_40": 0.8913998115676643, "curve_41": 0.9419135270721374, "curve_42": 0.9401438872480766, "curve_43": 0.9817110048395378, "curve_44": 0.8978898571763475, "curve_45": 0.9210408185111391, "curve_46": 0.9227102594810609, "curve_47": 0.8859532340261937, "curve_48": 0.8846077592514245, "curve_49": 0.8929865279075706, "curve_5": 0.9136100150101951, "curve_6": 0.865006806245528, "curve_7": 0.9382150965188714, "curve_8": 0.9515087710434283, "curve_9": 0.9621084249573674, "x": 0.5439560439560439 }, { "avg_curve": 0.949060241528276, "curve_0": 1.035833882191079, "curve_1": 0.8629325360380335, "curve_10": 0.9288600983194133, "curve_11": 0.9983860525355941, "curve_12": 0.9468272881176827, "curve_13": 0.9612942518980035, "curve_14": 0.9616911072373798, "curve_15": 0.9653925527662444, "curve_16": 0.9226324082285701, "curve_17": 0.9087394228459399, "curve_18": 0.9606817040671088, "curve_19": 0.9289628707721548, "curve_2": 0.9880600837329877, "curve_20": 0.9216710693004403, "curve_21": 0.9052720246084511, "curve_22": 0.8997485775894333, "curve_23": 0.8961224100105611, "curve_24": 1.0363203637489793, "curve_25": 0.963408967303081, "curve_26": 0.9433266994256607, "curve_27": 1.016991540222236, "curve_28": 0.9993633876734394, "curve_29": 0.9585487638994654, "curve_3": 0.9444951489514029, "curve_30": 0.9517268656560228, "curve_31": 0.9863729421657753, "curve_32": 0.996012215668569, "curve_33": 0.9354999854920418, "curve_34": 0.9207516187388227, "curve_35": 0.9076318593858591, "curve_36": 0.9998728237610564, "curve_37": 0.9539242458045121, "curve_38": 0.9122602528824639, "curve_39": 0.9352959727048497, "curve_4": 0.9242209072313998, "curve_40": 0.8983503486966237, "curve_41": 0.9494343349307783, "curve_42": 0.9474783724277676, "curve_43": 0.9895912186452706, "curve_44": 0.904899007877149, "curve_45": 0.9283436535219185, "curve_46": 0.9299442979517237, "curve_47": 0.8928536518725753, "curve_48": 0.8914126351184141, "curve_49": 0.8999401501740326, "curve_5": 0.9207738079312341, "curve_6": 0.8716496959794572, "curve_7": 0.9455573542937937, "curve_8": 0.959101587287873, "curve_9": 0.9698158317603502, "x": 0.5494505494505495 }, { "avg_curve": 0.9564883442643938, "curve_0": 1.0441518539383143, "curve_1": 0.8694873650265857, "curve_10": 0.9360568471254924, "curve_11": 1.006355419469985, "curve_12": 0.9541931527580205, "curve_13": 0.9688897446915195, "curve_14": 0.9692299151555926, "curve_15": 0.9728939882164477, "curve_16": 0.9298795890560021, "curve_17": 0.9157226968944387, "curve_18": 0.9682131361424239, "curve_19": 0.9362039500116675, "curve_2": 0.9959216845675769, "curve_20": 0.92881050946771, "curve_21": 0.9122354247555834, "curve_22": 0.9067127717895382, "curve_23": 0.9030664868433271, "curve_24": 1.044671621639925, "curve_25": 0.9709949987043223, "curve_26": 0.9506318196451073, "curve_27": 1.025157371673069, "curve_28": 1.0073120769195376, "curve_29": 0.9660986457095548, "curve_3": 0.951848568328624, "curve_30": 0.9592162967308097, "curve_31": 0.9939415577689735, "curve_32": 1.003893283078042, "curve_33": 0.9428756344178985, "curve_34": 0.9277822135389764, "curve_35": 0.9145383648018284, "curve_36": 1.0078716046455045, "curve_37": 0.9614204033074719, "curve_38": 0.9192954375602895, "curve_39": 0.9425470629485356, "curve_4": 0.931395724684956, "curve_40": 0.9052851131278549, "curve_41": 0.9569394634381002, "curve_42": 0.9547962434004291, "curve_43": 0.997455333057388, "curve_44": 0.9118923144533364, "curve_45": 0.9356308628323751, "curve_46": 0.9371622243841771, "curve_47": 0.8997383520576299, "curve_48": 0.898201366369051, "curve_49": 0.906877921503914, "curve_5": 0.9279216537673538, "curve_6": 0.8782767406440517, "curve_7": 0.9528831561731442, "curve_8": 0.9666785378532451, "curve_9": 0.9775073702425132, "x": 0.554945054945055 }, { "avg_curve": 0.9639005429437802, "curve_0": 1.0524536833915963, "curve_1": 0.8760266691643984, "curve_10": 0.9432376280594631, "curve_11": 1.0143089440073487, "curve_12": 0.9615429035233787, "curve_13": 0.9764695326951291, "curve_14": 0.9767526734792061, "curve_15": 0.98037894539814, "curve_16": 0.937111453808308, "curve_17": 0.9226900407746135, "curve_18": 0.9757285384733607, "curve_19": 0.9434292973449263, "curve_2": 1.003767458581735, "curve_20": 0.9359340966414998, "curve_21": 0.9191829913879754, "curve_22": 0.913661460717492, "curve_23": 0.90999516388602, "curve_24": 1.0530069058977656, "curve_25": 0.9785651418543236, "curve_26": 0.9579207031991777, "curve_27": 1.0333073494982419, "curve_28": 1.01524474170715, "curve_29": 0.9736327314346447, "curve_3": 0.9591859447605051, "curve_30": 0.9666900061053487, "curve_31": 1.001492822965888, "curve_32": 1.0117581429854254, "curve_33": 0.9502359085579409, "curve_34": 0.9347964317859639, "curve_35": 0.9214286034532571, "curve_36": 1.0158546229515886, "curve_37": 0.9689007431917468, "curve_38": 0.9263147624927471, "curve_39": 0.9497820989429979, "curve_4": 0.9385547301018076, "curve_40": 0.912204296295447, "curve_41": 0.9644291000454243, "curve_42": 0.9620977017471442, "curve_43": 1.0053035398862256, "curve_44": 0.9188699690687586, "curve_45": 0.9429026340972834, "curve_46": 0.9443642336640158, "curve_47": 0.9066075254791942, "curve_48": 0.9049741505934052, "curve_49": 0.9138000344408832, "curve_5": 0.9350537453902923, "curve_6": 0.8848881343625008, "curve_7": 0.9601927014287504, "curve_8": 0.9742398124930045, "curve_9": 0.9851832297085755, "x": 0.5604395604395604 }, { "avg_curve": 0.9712970270468503, "curve_0": 1.06073955968189, "curve_1": 0.8825506368926611, "curve_10": 0.9504026325845275, "curve_11": 1.0222468125026543, "curve_12": 0.9688767331334847, "curve_13": 0.984033801879014, "curve_14": 0.9842595732306441, "curve_15": 0.9878476215359301, "curve_16": 0.944328184542933, "curve_17": 0.9296416464775061, "curve_18": 0.9832281018373872, "curve_19": 0.9506391006900531, "curve_2": 1.011597592341276, "curve_20": 0.9430420209344155, "curve_21": 0.9261149152168168, "curve_22": 0.9205948304067955, "curve_23": 0.9169086257739305, "curve_24": 1.0613264032377243, "curve_25": 0.9861195853147411, "curve_26": 0.9651935448361212, "curve_27": 1.041441659459136, "curve_28": 1.023161570976164, "curve_29": 0.9811512085086402, "curve_3": 0.9665074700245109, "curve_30": 0.9741481804386589, "curve_31": 1.0090269470562483, "curve_32": 1.019606987135998, "curve_33": 0.9575809902304078, "curve_34": 0.9417944716274751, "curve_35": 0.9283027725754737, "curve_36": 1.0238220638268334, "curve_37": 0.9763654534252431, "curve_38": 0.9333184184026528, "curve_39": 0.9570012731125478, "curve_4": 0.9456981128438685, "curve_40": 0.9191080854579622, "curve_41": 0.971903428148988, "curve_42": 0.969382944652937, "curve_43": 1.0131360268005178, "curve_44": 0.925832159697458, "curve_45": 0.9501591509019341, "curve_46": 0.9515505164339731, "curve_47": 0.9134613588696969, "curve_48": 0.9117311810519428, "curve_49": 0.9207066773269637, "curve_5": 0.9421702714729926, "curve_6": 0.8914840670019525, "curve_7": 0.9674861849913763, "curve_8": 0.9817855968548475, "curve_9": 0.9928435953728482, "x": 0.5659340659340659 }, { "avg_curve": 0.978677981980651, "curve_0": 1.069009667911114, "curve_1": 0.889059452559923, "curve_10": 0.9575520480334491, "curve_11": 1.0301692073324082, "curve_12": 0.9761948301563435, "curve_13": 0.9915827342287077, "curve_14": 0.9917508013280638, "curve_15": 0.9953002096039251, "curve_16": 0.951529959408424, "curve_17": 0.9365777018406931, "curve_18": 0.9907120129130697, "curve_19": 0.9578335439196349, "curve_2": 1.0194122684244724, "curve_20": 0.950134468357443, "curve_21": 0.9330313828288835, "curve_22": 0.9275130628762601, "curve_23": 0.9238070531594016, "curve_24": 1.0696302964025042, "curve_25": 0.9936585136021573, "curve_26": 0.9724505351021469, "curve_27": 1.0495604833597225, "curve_28": 1.031062749627668, "curve_29": 0.9886542603449626, "curve_3": 0.9738133317677895, "curve_30": 0.981591002384635, "curve_31": 1.0165441348095878, "curve_32": 1.0274400031687274, "curve_33": 0.9649110578441482, "curve_34": 0.9487765269152815, "curve_35": 0.9351610651226965, "curve_36": 1.0317741084691883, "curve_37": 0.9838147179406678, "curve_38": 0.9403065918917648, "curve_39": 0.9642047737312037, "curve_4": 0.9528260581906917, "curve_40": 0.9259966638291245, "curve_41": 0.979362627216149, "curve_42": 0.9766521650443496, "curve_43": 1.0209529774561295, "curve_44": 0.9327790702547737, "curve_45": 0.9574005928890017, "curve_46": 0.95872125922655, "curve_47": 0.9203000349265668, "curve_48": 0.918472646811468, "curve_49": 0.9275980344340827, "curve_5": 0.9492714166208484, "curve_6": 0.8980647243071957, "curve_7": 0.974763797586479, "curve_8": 0.9893160726085067, "curve_9": 1.0004886484864373, "x": 0.5714285714285714 }, { "avg_curve": 0.9860435892047178, "curve_0": 1.077264189275854, "curve_1": 0.895553296549437, "curve_10": 0.964686057736478, "curve_11": 1.0380763070169956, "curve_12": 0.9834973791367002, "curve_13": 0.9991165078679314, "curve_14": 0.9992265407121198, "curve_15": 1.0027368984572864, "curve_16": 0.9587169527651009, "curve_17": 0.9434983906771737, "curve_18": 0.9981804544066688, "curve_19": 0.9650128069858408, "curve_2": 1.0272116655447712, "curve_20": 0.9572116209469892, "curve_21": 0.9399325768144975, "curve_22": 0.9344163362543795, "curve_23": 0.9306906228351826, "curve_24": 1.0779187642841603, "curve_25": 1.001182107312882, "curve_26": 0.9796918604715816, "curve_27": 1.0576639991680794, "curve_28": 1.0389484586482571, "curve_29": 0.9961420664605833, "curve_3": 0.9811037136349493, "curve_30": 0.9890186507156357, "curve_31": 1.0240445866058696, "curve_32": 1.0352573747428087, "curve_33": 0.9722262860191995, "curve_34": 0.9557427873387414, "curve_35": 0.9420036699011867, "curve_36": 1.0397109342484128, "curve_37": 0.9912487167600851, "curve_38": 0.9472794655685604, "curve_39": 0.9713927850512154, "curve_4": 0.9599387474658481, "curve_40": 0.9328702107032052, "curve_41": 0.9868068729064892, "curve_42": 0.9839055517214332, "curve_43": 1.0287545716195887, "curve_44": 0.9397108807231204, "curve_45": 0.964627135880275, "curve_46": 0.965876644591261, "curve_47": 0.927123732437344, "curve_48": 0.9251987328755295, "curve_49": 0.9344742860902794, "curve_5": 0.9563573614976245, "curve_6": 0.9046302880289014, "curve_7": 0.9820257258644551, "curve_8": 0.9968314175683858, "curve_9": 1.0081185664593064, "x": 0.5769230769230769 }, { "avg_curve": 0.9933940263518807, "curve_0": 1.0855033011861372, "curve_1": 0.9020323454013645, "curve_10": 0.9718048411441377, "curve_11": 1.0459682863381299, "curve_12": 0.9907845607193428, "curve_13": 1.0066352971765105, "curve_14": 1.0066869704676422, "curve_15": 1.0101578729585001, "curve_16": 0.9658893353008893, "curve_17": 0.9504038928990695, "curve_18": 1.0056336051736576, "curve_19": 0.9721770660405175, "curve_2": 1.0349959586686015, "curve_20": 0.9642736568868153, "curve_21": 0.946818675890332, "curve_22": 0.9413048248987015, "curve_23": 0.9375595078528267, "curve_24": 1.0861919820411086, "curve_25": 1.008690543242753, "curve_26": 0.9869177034717992, "curve_27": 1.0657523811330571, "curve_28": 1.0468188752293643, "curve_29": 1.003614802595088, "curve_3": 0.9883787953907041, "curve_30": 0.9964313004411172, "curve_31": 1.0315284985704523, "curve_32": 1.0430592816591424, "curve_33": 0.9795268457025349, "curve_34": 0.9626934385529278, "curve_35": 0.9488307716970323, "curve_36": 1.0476327148226137, "curve_37": 0.9986676261144805, "curve_38": 0.9542372181708724, "curve_39": 0.9785654874264208, "curve_4": 0.9670363581582282, "curve_40": 0.9397289015753635, "curve_41": 0.9942363371880666, "curve_42": 0.9911432894844294, "curve_43": 1.0365409852866787, "curve_44": 0.9466277672727123, "curve_45": 0.9718389519935083, "curve_46": 0.9730168512167704, "curve_47": 0.9339326263997599, "curve_48": 0.9319096203095726, "curve_49": 0.9413356088008328, "curve_5": 0.9634282829463218, "curve_6": 0.9111809360466914, "curve_7": 0.9892721525256519, "curve_8": 1.0043318058112811, "curve_9": 1.015733522977456, "x": 0.5824175824175825 }, { "avg_curve": 1.0007294673442708, "curve_0": 1.0937271773795068, "curve_1": 0.9084967719300997, "curve_10": 0.9789085739451198, "curve_11": 1.0538453164516517, "curve_12": 0.9980565517674992, "curve_13": 1.014139272903609, "curve_14": 1.0141322659404817, "curve_15": 1.0175633140986222, "curve_16": 0.9730472741425522, "curve_17": 0.957294384636393, "curve_18": 1.0130716403354108, "curve_19": 0.979326493550508, "curve_2": 1.0427653191285153, "curve_20": 0.9713207506251179, "curve_21": 0.9536898550173252, "curve_22": 0.9481786995104449, "curve_23": 0.944413877636373, "curve_24": 1.0944501212105098, "curve_25": 1.0161839945021802, "curve_26": 0.9941282428031734, "curve_27": 1.0738257998963285, "curve_28": 1.0546741728818638, "curve_29": 1.0110726408250132, "curve_3": 0.9956387530376389, "curve_30": 1.0038291229215566, "curve_31": 1.038996062703672, "curve_32": 1.0508458999769896, "curve_33": 0.9868129042792161, "curve_34": 0.9696286623016397, "curve_35": 0.9556425513988273, "curve_36": 1.0555396202501695, "curve_37": 1.006071618558576, "curve_38": 0.961180024683639, "curve_39": 0.9857230574306931, "curve_4": 0.9741190640385161, "curve_40": 0.946572908257194, "curve_41": 1.0016511884490573, "curve_42": 0.9983655592554064, "curve_43": 1.044312390796326, "curve_44": 0.9535299023774755, "curve_45": 0.9790362097546284, "curve_46": 0.9801420540481655, "curve_47": 0.9407268881370303, "curve_48": 0.9386054863610899, "curve_49": 0.948182175364565, "curve_5": 0.9704843541052257, "curve_6": 0.9177168424872896, "curve_7": 0.9965032564404033, "curve_8": 1.0118174077894329, "curve_9": 1.0233336881154542, "x": 0.5879120879120879 }, { "avg_curve": 1.0080500825047598, "curve_0": 1.10193598803063, "curve_1": 0.9149467453369504, "curve_10": 0.9859974281795325, "curve_11": 1.0617075649959051, "curve_12": 1.0053135254765686, "curve_13": 1.0216286022765204, "curve_14": 1.0215625988497559, "curve_15": 1.0249533991137474, "curve_16": 0.9801909329625482, "curve_17": 0.9641700383511247, "curve_18": 1.020494731391303, "curve_19": 0.986461258408428, "curve_2": 1.0505199147318864, "curve_20": 0.978353072986991, "curve_21": 0.960546285513936, "curve_22": 0.9550381272445975, "curve_23": 0.9512538980915468, "curve_24": 1.1026933498162526, "curve_25": 1.0236626306266652, "curve_26": 1.0013236534543009, "curve_27": 1.0818844226000492, "curve_28": 1.0625145215461773, "curve_29": 1.0185157496736899, "curve_3": 1.0028837589293367, "curve_30": 1.0112122859778958, "curve_31": 1.046447467005307, "curve_32": 1.0586174021260468, "curve_33": 0.9940846256791774, "curve_34": 0.9765486365355514, "curve_35": 0.9624391861154986, "curve_36": 1.0634318170972643, "curve_37": 1.01346086308113, "curve_38": 0.9681080564520055, "curve_39": 0.9928656679717176, "curve_4": 0.9811870352710705, "curve_40": 0.9534023989877131, "curve_41": 1.0090515916050093, "curve_42": 1.0055725381950957, "curve_43": 1.0520689569400223, "curve_44": 0.9604174549263897, "curve_45": 0.9862190742055301, "curve_46": 0.987252424399607, "curve_47": 0.9475066854085984, "curve_48": 0.9452865045750221, "curve_49": 0.9550141549855535, "curve_5": 0.977525744519386, "curve_6": 0.924238177838001, "curve_7": 1.0037192127643288, "curve_8": 1.019288390439134, "curve_9": 1.0309192284445516, "x": 0.5934065934065934 }, { "avg_curve": 1.0153560386640514, "curve_0": 1.1101298998566493, "curve_1": 0.9213824313183983, "curve_10": 0.9930715723477203, "curve_11": 1.0695551961958987, "curve_12": 1.0125556514834109, "curve_13": 1.0291034491052167, "curve_14": 1.028978137395719, "curve_15": 1.0323283015969236, "curve_16": 0.9873204720817212, "curve_17": 0.9710310229468245, "curve_18": 1.027903046326436, "curve_19": 0.9935815260391156, "curve_2": 1.058259909865383, "curve_20": 0.9853707912824922, "curve_21": 0.9673881351649672, "curve_22": 0.9618832718157089, "curve_23": 0.9580797317106925, "curve_24": 1.110921832472747, "curve_25": 1.0311266176830154, "curve_26": 1.0085041068127205, "curve_27": 1.0899284129903377, "curve_28": 1.070340087698098, "curve_29": 1.025944294216803, "curve_3": 1.0101139818790874, "curve_30": 1.0185809539967194, "curve_31": 1.0538828955941675, "curve_32": 1.0663739570141568, "curve_33": 1.001342170479849, "curve_34": 0.9834535355257298, "curve_35": 0.9692208492895122, "curve_36": 1.0713094685412474, "curve_37": 1.020835525210936, "curve_38": 0.9750214812900035, "curve_39": 0.9999934884003217, "curve_4": 0.9882404385214374, "curve_40": 0.9602175385400065, "curve_41": 1.0164377082019216, "curve_42": 1.012764399815159, "curve_43": 1.0598108490669864, "curve_44": 0.9672905903304748, "curve_45": 0.9933877070076668, "curve_46": 0.9943481300625778, "curve_47": 0.9542721825165473, "curve_48": 0.9519528449046327, "curve_49": 0.9618317133804726, "curve_5": 0.9845526202477366, "curve_6": 0.9307451090557383, "curve_7": 1.0109201930491298, "curve_8": 1.0267449172851106, "curve_9": 1.0384903071365863, "x": 0.5989010989010989 }, { "avg_curve": 1.022647499263635, "curve_0": 1.1183090762184795, "curve_1": 0.9278039921701545, "curve_10": 1.0001311715148733, "curve_11": 1.0773883709634582, "curve_12": 1.0197830959714096, "curve_13": 1.0365639738828658, "curve_14": 1.0363790463634615, "curve_15": 1.039688191605741, "curve_16": 0.9944360485680257, "curve_17": 0.9778775038739957, "curve_18": 1.0352967497152015, "curve_19": 1.0006874585019674, "curve_2": 1.0659854655954142, "curve_20": 0.992374069410526, "curve_21": 0.9742155683261724, "curve_22": 0.9687142935995878, "curve_23": 0.9648915376736423, "curve_24": 1.1191357304847303, "curve_25": 1.0385761183714577, "curve_26": 1.0156697707713456, "curve_27": 1.097957931516775, "curve_28": 1.0781510344505343, "curve_29": 1.0333584361838812, "curve_3": 1.0173295872643908, "curve_30": 1.0259352880313732, "curve_31": 1.061302528823048, "curve_32": 1.0741157301308644, "curve_33": 1.0085856960048194, "curve_34": 0.9903435299727491, "curve_35": 0.9759877108056834, "curve_36": 1.0791727344700113, "curve_37": 1.0281957671187294, "curve_38": 0.9819204635850176, "curve_39": 1.007106684615572, "curve_4": 0.9952794370596987, "curve_40": 0.9670184883237433, "curve_41": 1.0238096965153443, "curve_42": 1.0199413140861076, "curve_43": 1.0675382291852757, "curve_44": 0.9741494706256343, "curve_45": 1.0005422665416401, "curve_46": 1.0014293354099435, "curve_47": 0.9610235404078874, "curve_48": 0.9586046738180783, "curve_49": 0.9686350128817758, "curve_5": 0.991565143966072, "curve_6": 0.9372377996718138, "curve_7": 1.0181063653490938, "curve_8": 1.034187148540872, "curve_9": 1.0460470840638842, "x": 0.6043956043956044 }, { "avg_curve": 1.0299246244547973, "curve_0": 1.126473677218248, "curve_1": 0.9342115868872094, "curve_10": 1.007176387411621, "curve_11": 1.0852072469935556, "curve_12": 1.0269960217715044, "curve_13": 1.0440103338825082, "curve_14": 1.0437654872226436, "curve_15": 1.0470332357657928, "curve_16": 1.001537816331474, "curve_17": 0.9847096432313982, "curve_18": 1.0426760028208824, "curve_19": 1.0077792145893494, "curve_2": 1.0736967397647421, "curve_20": 0.9993630679587412, "curve_21": 0.981028746024841, "curve_22": 0.9755313497310968, "curve_23": 0.971689471944717, "curve_24": 1.1273352019432668, "curve_25": 1.0460112921238458, "curve_26": 1.0228208098308116, "curve_27": 1.105973135428112, "curve_28": 1.0859475216513719, "curve_29": 1.040758334055899, "curve_3": 1.0245307371274555, "curve_30": 1.0332754458992122, "curve_31": 1.0687065433892629, "curve_32": 1.081842883647016, "curve_33": 1.0158153564187253, "curve_34": 0.9972187871116048, "curve_35": 0.9827399370957983, "curve_36": 1.0870217715775807, "curve_37": 1.0355417477151936, "curve_38": 0.9888051643982418, "curve_39": 1.0142054191658423, "curve_4": 1.0023041908598596, "curve_40": 0.9738054064837567, "curve_41": 1.0311677116456934, "curve_42": 1.027103447541076, "curve_43": 1.0752512560590344, "curve_44": 0.9809942545715509, "curve_45": 1.0076829080029792, "curve_46": 1.0084962014960195, "curve_47": 0.9677609167729171, "curve_48": 0.9652421544008774, "curve_49": 0.9754242125369168, "curve_5": 0.9985634750660736, "curve_6": 0.9437164098926987, "curve_7": 1.0252778943235135, "curve_8": 1.0416152412052284, "curve_9": 1.0535897158953436, "x": 0.6098901098901099 }, { "avg_curve": 1.037187571193874, "curve_0": 1.1346238597930491, "curve_1": 0.9406053712600617, "curve_10": 1.0142073785308023, "curve_11": 1.0930119788569974, "curve_12": 1.0341945884593866, "curve_13": 1.0514426832500665, "curve_14": 1.0511376182234404, "curve_15": 1.054363597370204, "curve_16": 1.0086259262154809, "curve_17": 0.9915275998635044, "curve_18": 1.0500409636914718, "curve_19": 1.0148569499212725, "curve_2": 1.0813938870854374, "curve_20": 1.0063379442996283, "curve_21": 0.9878278260565571, "curve_22": 0.9823345941982261, "curve_23": 0.9784736873660371, "curve_24": 1.135520401818129, "curve_25": 1.0534322951981436, "curve_26": 1.0299573851979336, "curve_27": 1.113974178864362, "curve_28": 1.0937297059776296, "curve_29": 1.048144143159183, "curve_3": 1.031717590271878, "curve_30": 1.040601582275163, "curve_31": 1.0760951124409703, "curve_32": 1.0895555765105847, "curve_33": 1.0230313028185443, "curve_34": 1.0040794708126297, "curve_35": 0.9894776912392446, "curve_36": 1.0948567334560866, "curve_37": 1.04287362274525, "curve_38": 0.9956757415613118, "curve_39": 1.021289851346035, "curve_4": 1.009314856695456, "curve_40": 0.9805784479948707, "curve_41": 1.038511905609953, "curve_42": 1.0342509633756525, "curve_43": 1.082950085302062, "curve_44": 0.9878250977468198, "curve_45": 1.0148097834942837, "curve_46": 1.0155488861528363, "curve_47": 0.9744844661398399, "curve_48": 0.9718654464544704, "curve_49": 0.9821994682037926, "curve_5": 1.0055477697505715, "curve_6": 0.9501810966969362, "curve_7": 1.0324349413352107, "curve_8": 1.0490293491551486, "curve_9": 1.0611183561888788, "x": 0.6153846153846154 }, { "avg_curve": 1.0444364933339212, "curve_0": 1.1427597778051948, "curve_1": 0.9469854979673138, "curve_10": 1.0212243002205892, "curve_11": 1.100802718089637, "curve_12": 1.0413789524490356, "curve_13": 1.0588611730938675, "curve_14": 1.0584955944888836, "curve_15": 1.0616794364754125, "curve_16": 1.0157005260847762, "curve_17": 0.9983315294542789, "curve_18": 1.0573917872518919, "curve_19": 1.0219208170365033, "curve_2": 1.0890770592283503, "curve_20": 1.0132988526829982, "curve_21": 0.994612963078305, "curve_22": 0.9891241779326257, "curve_23": 0.9852443337473195, "curve_24": 1.143691482046719, "curve_25": 1.060839280769361, "curve_26": 1.0370796548804526, "curve_27": 1.1219612129454448, "curve_28": 1.101497741026088, "curve_29": 1.0555160157557888, "curve_3": 1.038890302355684, "curve_30": 1.047913848781771, "curve_31": 1.083468405679485, "curve_32": 1.0972539645389001, "curve_33": 1.030233683321459, "curve_34": 1.0109257416785984, "curve_35": 0.9962011330598387, "curve_36": 1.1026777706842987, "curve_37": 1.0501915448788022, "curve_38": 1.002532349769295, "curve_39": 1.028360137291143, "curve_4": 1.0163115882315643, "curve_40": 0.9873377647531555, "curve_41": 1.0458424274299347, "curve_42": 1.0413840215439416, "curve_43": 1.0906348694678731, "curve_44": 0.994642152640497, "curve_45": 1.0219230421139063, "curve_46": 1.0225875440827792, "curve_47": 0.9811943399658136, "curve_48": 0.9784747065910564, "curve_49": 0.9889609326425891, "curve_5": 1.0125181811252193, "curve_6": 0.9566320139283931, "curve_7": 1.0395776645453503, "curve_8": 1.0564296232351327, "curve_9": 1.0686331554804003, "x": 0.6208791208791209 }, { "avg_curve": 1.0516715417129674, "curve_0": 1.1508815821291105, "curve_1": 0.9533521166647914, "curve_10": 1.0282273047741315, "curve_11": 1.1085796132782757, "curve_12": 1.048549267082761, "curve_13": 1.0662659515708288, "curve_14": 1.065839568103758, "curve_15": 1.068980909993375, "curve_16": 1.0227617609100421, "curve_17": 1.005121584617449, "curve_18": 1.064728625392774, "curve_19": 1.0289709654802763, "curve_2": 1.0967464049092548, "curve_20": 1.0202459443250051, "curve_21": 1.0013843086980956, "curve_22": 0.9959002488967518, "curve_23": 0.992001557952319, "curve_24": 1.1518485916196946, "curve_25": 1.0682323990170997, "curve_26": 1.0441877737782417, "curve_27": 1.1299343858565423, "curve_28": 1.1092517774005453, "curve_29": 1.0628741011305125, "curve_3": 1.046049025980895, "curve_30": 1.0552123940758906, "curve_31": 1.0908265894577593, "curve_32": 1.1049382005074455, "curve_33": 1.0374226431494489, "curve_34": 1.017757757138193, "curve_35": 1.0029104192190252, "curve_36": 1.110485030912866, "curve_37": 1.0574956637981034, "curve_38": 1.009375140670203, "curve_39": 1.0354164300663184, "curve_4": 1.0232945361133714, "curve_40": 0.9940835056637681, "curve_41": 1.0531594232172534, "curve_42": 1.0485027788510375, "curve_43": 1.0983057581364077, "curve_44": 1.0014455687402253, "curve_45": 1.0290228300413298, "curve_46": 1.0296123269477666, "curve_47": 0.9878906867245958, "curve_48": 0.9850700883248744, "curve_49": 0.9957087556041923, "curve_5": 1.0194748592867462, "curve_6": 0.9630693123860147, "curve_7": 1.0467062190047083, "curve_8": 1.0638162113432583, "curve_9": 1.07613426136948, "x": 0.6263736263736264 }, { "avg_curve": 1.058892864239006, "curve_0": 1.1589894207350406, "curve_1": 0.9597053740713561, "curve_10": 1.0352165415158843, "curve_11": 1.1163428101433985, "curve_12": 1.0557056827179185, "curve_13": 1.0736571639694683, "curve_14": 1.0731696882002153, "curve_15": 1.0762681717803608, "curve_16": 1.0298097728494233, "curve_17": 1.0118979149834284, "curve_18": 1.0720516270559597, "curve_19": 1.0360075418887613, "curve_2": 1.1044020699718209, "curve_20": 1.0271793674938738, "curve_21": 1.008142011561267, "curve_22": 1.0026629521677886, "curve_23": 0.9987455039820706, "curve_24": 1.159991876663446, "curve_25": 1.075611797209872, "curve_26": 1.0512818937711377, "curve_27": 1.137893842930314, "curve_28": 1.1169919627958604, "curve_29": 1.07021854567469, "curve_3": 1.0531939107797856, "curve_30": 1.0624973639321804, "curve_31": 1.0981698268752165, "curve_32": 1.112608434235381, "curve_33": 1.0445983247107617, "curve_34": 1.024575671536003, "curve_35": 1.0096057033056134, "curve_36": 1.1182786589464226, "curve_37": 1.0647861262818934, "curve_38": 1.0162042629511874, "curve_39": 1.0424588797536012, "curve_4": 1.0302638480514696, "curve_40": 1.000815816725542, "curve_41": 1.0604630362551675, "curve_42": 1.0556073890420745, "curve_43": 1.1059628979975473, "curve_44": 1.008235492617097, "curve_45": 1.0361092906193892, "curve_46": 1.03662338345513, "curve_47": 0.9945736519909417, "curve_48": 0.9916517421600965, "curve_49": 1.0024430839153222, "curve_5": 1.0264179514079397, "curve_6": 0.9694931399102462, "curve_7": 1.0538207567415665, "curve_8": 1.071189258514052, "curve_9": 1.0836218186018631, "x": 0.6318681318681318 }, { "avg_curve": 1.066100605971873, "curve_0": 1.167083438769697, "curve_1": 0.9660454140515559, "curve_10": 1.0421921568847654, "curve_11": 1.1240924516188915, "curve_12": 1.0628483468104413, "curve_13": 1.0810349527898775, "curve_14": 1.0804861010402536, "curve_15": 1.0835413727224876, "curve_16": 1.0368447013270548, "curve_17": 1.0186606672830474, "curve_18": 1.07936093831687, "curve_19": 1.043030690070436, "curve_2": 1.1120441974675535, "curve_20": 1.03409926759248, "curve_21": 1.0148862174336168, "curve_22": 1.0094124300184895, "curve_23": 1.005476313055077, "curve_24": 1.1681214805195719, "curve_25": 1.0829776197863297, "curve_26": 1.0583621638035474, "curve_27": 1.1458397267261164, "curve_28": 1.1247184420789271, "curve_29": 1.0775494929669307, "curve_3": 1.0603251034979744, "curve_30": 1.0697689013235374, "curve_31": 1.1054982778690954, "curve_32": 1.120264812667938, "curve_33": 1.051760867678403, "curve_34": 1.0313796362192105, "curve_35": 1.0162871359222114, "curve_36": 1.1260587968226976, "curve_37": 1.0720630762864578, "curve_38": 1.02301986242157, "curve_39": 1.049487633535472, "curve_4": 1.0372196689040225, "curve_40": 1.0075348411124692, "curve_41": 1.0677534070774268, "curve_42": 1.062698002888004, "curve_43": 1.1136064329315778, "curve_44": 1.0150120680074004, "curve_45": 1.0431825644334851, "curve_46": 1.043620859440342, "curve_47": 1.0012433785219021, "curve_48": 0.9982198156754858, "curve_49": 1.0091640615605422, "curve_5": 1.0333476018195156, "curve_6": 0.9759036414662733, "curve_7": 1.0609214268463776, "curve_8": 1.0785489069983294, "curve_9": 1.0910959691489615, "x": 0.6373626373626373 }, { "avg_curve": 1.0732949092021506, "curve_0": 1.1751637786339963, "curve_1": 0.9723723776952578, "curve_10": 1.0491542945142889, "curve_11": 1.1318286779288733, "curve_12": 1.0699774039953376, "curve_13": 1.0883994578207943, "curve_14": 1.0877889500952003, "curve_15": 1.0908006608181493, "curve_16": 1.0438666831087386, "curve_17": 1.0254099854282301, "curve_18": 1.086656702463886, "curve_19": 1.050040551084499, "curve_2": 1.1196729277328408, "curve_20": 1.0410057872379288, "curve_21": 1.0216170692815048, "curve_22": 1.0161488219950745, "curve_23": 1.0121941236845775, "curve_24": 1.1762375438214792, "curve_25": 1.090330008433549, "curve_26": 1.0654287299659753, "curve_27": 1.153772177106357, "curve_28": 1.1324313573667137, "curve_29": 1.0848670838509227, "curve_3": 1.067442748074496, "curve_30": 1.077027146498616, "curve_31": 1.1128120993024642, "curve_32": 1.1279074799558304, "curve_33": 1.0589104090657797, "curve_34": 1.038169799621115, "curve_35": 1.0229548647685058, "curve_36": 1.133825583888763, "curve_37": 1.0793266550237468, "curve_38": 1.0298220820928516, "curve_39": 1.056502835775362, "curve_4": 1.0441621407559416, "curve_40": 1.014240719252214, "curve_41": 1.0750306735442636, "curve_42": 1.0697747682682517, "curve_43": 1.1212365040867425, "curve_44": 1.021775435891391, "curve_45": 1.0502427893879218, "curve_46": 1.050604897946737, "curve_47": 1.0079000063351606, "curve_48": 1.004774453605963, "curve_49": 1.0158718297612799, "curve_5": 1.0402639520890065, "curve_6": 0.9823009592242214, "curve_7": 1.0680083755533505, "curve_8": 1.0858952963401438, "curve_9": 1.0985568522844686, "x": 0.6428571428571429 }, { "avg_curve": 1.080475913527232, "curve_0": 1.1832305800580099, "curve_1": 0.9786864033943978, "curve_10": 1.0561030953098063, "curve_11": 1.1395516266617716, "curve_12": 1.0770929961642841, "curve_13": 1.095750816213906, "curve_14": 1.0950783761223357, "curve_15": 1.098046181257468, "curve_16": 1.0508758523748978, "curve_17": 1.03214601058976, "curve_18": 1.0939390600748684, "curve_19": 1.0570372633164586, "curve_2": 1.1272883984632327, "curve_20": 1.047899066338257, "curve_21": 1.0283347073490607, "curve_22": 1.0228722649923203, "curve_23": 1.018899071753031, "curve_24": 1.1843402045682425, "curve_25": 1.097669102162498, "curve_26": 1.0724817355736107, "curve_27": 1.1616913313101116, "curve_28": 1.1401308481015024, "curve_29": 1.092171456510438, "curve_3": 1.0745469857189873, "curve_30": 1.0842722370565585, "curve_31": 1.1201114450490577, "curve_32": 1.1355365775318096, "curve_33": 1.0660470832996234, "curve_34": 1.0449463073416367, "curve_35": 1.029609034721524, "curve_36": 1.141579156874547, "curve_37": 1.086577001036679, "curve_38": 1.0366110622558264, "curve_39": 1.0635046280952587, "curve_4": 1.051091402995206, "curve_40": 1.020933588901796, "curve_41": 1.0822949709156497, "curve_42": 1.0768378302503891, "curve_43": 1.1288532499540058, "curve_44": 1.0285257345692203, "curve_45": 1.0572901007794973, "curve_46": 1.0575756393023534, "curve_47": 1.014543672784543, "curve_48": 1.0113157979212235, "curve_49": 1.0225665270519948, "curve_5": 1.0471671410968073, "curve_6": 0.9886852326364544, "curve_7": 1.0750817463190934, "curve_8": 1.0932285634509635, "curve_9": 1.1060046046582226, "x": 0.6483516483516484 }, { "avg_curve": 1.0876437559246677, "curve_0": 1.1912839801732493, "curve_1": 0.9849876269169777, "curve_10": 1.0630386975229866, "curve_11": 1.147261432841764, "curve_12": 1.0841952625404487, "curve_13": 1.1030891625555068, "curve_14": 1.10235451723878, "curve_15": 1.1052780764989103, "curve_16": 1.0578723407909283, "curve_17": 1.0388688812722562, "curve_18": 1.1012081490909502, "curve_19": 1.064020962551022, "curve_2": 1.1348907447850791, "curve_20": 1.0547792421663988, "curve_21": 1.03503926923263, "curve_22": 1.0295828933259612, "curve_23": 1.0255912905839346, "curve_24": 1.1924295981958424, "curve_25": 1.1049950373808153, "curve_26": 1.0795213212421038, "curve_27": 1.1695973240241304, "curve_28": 1.1478170511234518, "curve_29": 1.099462746541666, "curve_3": 1.0816379549861161, "curve_30": 1.0915043080190578, "curve_31": 1.1273964660750722, "curve_32": 1.1431522441844932, "curve_33": 1.0731710222903135, "curve_34": 1.0517093022249335, "curve_35": 1.0362497879130224, "curve_36": 1.1493196499637341, "curve_37": 1.093814250271764, "curve_38": 1.0433869405549439, "curve_39": 1.0704931494505379, "curve_4": 1.0580075923864583, "curve_40": 1.0276135852205623, "curve_41": 1.0895464319219454, "curve_42": 1.0838873311669561, "curve_43": 1.136456806439159, "curve_44": 1.0352630997341457, "curve_45": 1.0643246313684676, "curve_46": 1.0645332211940337, "curve_47": 1.0211745126328224, "curve_48": 1.017843987901533, "curve_49": 1.0292482893536217, "curve_5": 1.0540573051095008, "curve_6": 0.9950565985120979, "curve_7": 1.082141679898444, "curve_8": 1.1005488426812118, "curve_9": 1.113439360367438, "x": 0.6538461538461539 }, { "avg_curve": 1.0947985708229184, "curve_0": 1.1993241135824084, "curve_1": 0.9912761814784256, "curve_10": 1.0699612368236546, "curve_11": 1.1549582289976978, "curve_12": 1.0912843397506589, "curve_13": 1.1104146289356185, "curve_14": 1.1096175089927676, "curve_15": 1.1124964863431837, "curve_16": 1.0648562775750599, "curve_17": 1.0455787333864908, "curve_18": 1.108464104887715, "curve_19": 1.0709917820423995, "curve_2": 1.1424800993246365, "curve_20": 1.0616464494315219, "curve_21": 1.0417308899525735, "curve_22": 1.0362808388025238, "curve_23": 1.032270911011094, "curve_24": 1.2005058576458907, "curve_25": 1.112307947963012, "curve_26": 1.0865476249606534, "curve_27": 1.177490287451335, "curve_28": 1.155490100740595, "curve_29": 1.1067410870229868, "curve_3": 1.088715791847369, "curve_30": 1.0987234918998754, "curve_31": 1.134667310518054, "curve_32": 1.1507546161295836, "curve_33": 1.0802823554997147, "curve_34": 1.0584589244342575, "curve_35": 1.042877263804115, "curve_36": 1.1570471948621646, "curve_37": 1.101038536149152, "curve_38": 1.0501498520600234, "curve_39": 1.0774685362021403, "curve_4": 1.0649108431419851, "curve_40": 1.0342808408405693, "curve_41": 1.0967851868320504, "curve_42": 1.0909234106895551, "curve_43": 1.1440473069323778, "curve_44": 1.0419876645431463, "curve_45": 1.071346511447001, "curve_46": 1.071477778738892, "curve_47": 1.0277926581219432, "curve_48": 1.0243591602108266, "curve_49": 1.0359172500444027, "curve_5": 1.0609345778505836, "curve_6": 1.0014151910889117, "curve_7": 1.0891883144176098, "curve_8": 1.1078562658892723, "curve_9": 1.1208612510254214, "x": 0.6593406593406593 }, { "avg_curve": 1.1019404901696204, "curve_0": 1.207351112426664, "curve_1": 0.9975521978104391, "curve_10": 1.076870846369101, "curve_11": 1.1626421452295992, "curve_12": 1.0983603618950355, "curve_13": 1.1177273450146907, "curve_14": 1.116867484432417, "curve_15": 1.1197015480045378, "curve_16": 1.0718277895638382, "curve_17": 1.0522757003191556, "curve_18": 1.1157070603438775, "curve_19": 1.0779498525821412, "curve_2": 1.1500565922747583, "curve_20": 1.0685008203478579, "curve_21": 1.0484097020225394, "curve_22": 1.042966230786703, "curve_23": 1.03893806144546, "curve_24": 1.2085691134319603, "curve_25": 1.119607965318214, "curve_26": 1.0935607821625242, "curve_27": 1.1853703513769278, "curve_28": 1.16315012879639, "curve_29": 1.1140066085822975, "curve_3": 1.0957806297603205, "curve_30": 1.1059299187719172, "curve_31": 1.1419241237630113, "curve_32": 1.158343827078594, "curve_33": 1.087381210006635, "curve_34": 1.0651953115241717, "curve_35": 1.049491599257274, "curve_36": 1.1647619208638424, "curve_37": 1.108249989630227, "curve_38": 1.0568999293354502, "curve_39": 1.0844309221862112, "curve_4": 1.071801286990207, "curve_40": 1.0409354859344893, "curve_41": 1.1040113635191662, "curve_42": 1.097946205900339, "curve_43": 1.1516248823753457, "curve_44": 1.0486995596850488, "curve_45": 1.0783558689052286, "curve_46": 1.0784094445532726, "curve_47": 1.0343982390407678, "curve_48": 1.0308614489672292, "curve_49": 1.04257354002823, "curve_5": 1.0677990905687074, "curve_6": 1.0077611421026245, "curve_7": 1.0962217854447351, "curve_8": 1.1151509625080809, "curve_9": 1.1282704058278819, "x": 0.6648351648351648 }, { "avg_curve": 1.109069643497476, "curve_0": 1.2153651064506472, "curve_1": 1.0038158042274195, "curve_10": 1.0837676568709762, "curve_11": 1.170313309272877, "curve_12": 1.1054234606141986, "curve_13": 1.1250274380879843, "curve_14": 1.124104574172109, "curve_15": 1.1268933961795786, "curve_16": 1.0787870012753271, "curve_17": 1.058959913000193, "curve_18": 1.122937145907574, "curve_19": 1.0848953025646064, "curve_2": 1.1576203514592682, "curve_20": 1.0753424847011308, "curve_21": 1.0550758355163148, "curve_22": 1.0496391962663902, "curve_23": 1.045592867939631, "curve_24": 1.216619493703616, "curve_25": 1.1268952184555463, "curve_26": 1.1005609257931028, "curve_27": 1.1932376432322072, "curve_28": 1.1707972647349236, "curve_29": 1.1212594394619995, "curve_3": 1.1028325997354858, "curve_30": 1.1131237163319787, "curve_31": 1.1491670485158632, "curve_32": 1.165920008305183, "curve_33": 1.0944677105700087, "curve_34": 1.0719185985102417, "curve_35": 1.0560929286058054, "curve_36": 1.1724639549146543, "curve_37": 1.1154487392828487, "curve_38": 1.0636373025069523, "curve_39": 1.0913804387813093, "curve_4": 1.0786790532417763, "curve_40": 1.0475776482811454, "curve_41": 1.1112250875242746, "curve_42": 1.1049558513610045, "curve_43": 1.159189661326047, "curve_44": 1.0553989134462813, "curve_45": 1.0853528292949985, "curve_46": 1.0853283488193004, "curve_47": 1.0409913827904629, "curve_48": 1.037350985811108, "curve_49": 1.0492172878006, "curve_5": 1.0746509721035367, "curve_6": 1.0140945808538422, "curve_7": 1.1032422260580088, "curve_8": 1.1224330596093992, "curve_9": 1.1356669516169369, "x": 0.6703296703296703 }, { "avg_curve": 1.116186157987871, "curve_0": 1.223366223065182, "curve_1": 1.0100671266905967, "curve_10": 1.0906517966598699, "curve_11": 1.1779718465603157, "curve_12": 1.1124737651541496, "curve_13": 1.1323150331477323, "curve_14": 1.1313289064565737, "curve_15": 1.1340721631137034, "curve_16": 1.0857340349701305, "curve_17": 1.0656314999677945, "curve_18": 1.1301544896603655, "curve_19": 1.0918282580501772, "curve_2": 1.1651715023951188, "curve_20": 1.0821715699126873, "curve_21": 1.0617294181323633, "curve_22": 1.0562998599154476, "curve_23": 1.0522354542501253, "curve_24": 1.2246571243082462, "curve_25": 1.1341698340472641, "curve_26": 1.107548186375603, "curve_27": 1.2010922881561914, "curve_28": 1.1784316356638718, "curve_29": 1.1284997055817414, "curve_3": 1.1098718304008637, "curve_30": 1.1203050099632557, "curve_31": 1.1563962248743445, "curve_32": 1.173483288709206, "curve_33": 1.1015419796898993, "curve_34": 1.0786289179363098, "curve_35": 1.062681383720919, "curve_36": 1.1801534216738978, "curve_37": 1.1226349113443432, "curve_38": 1.0703620993260665, "curve_39": 1.0983172149732938, "curve_4": 1.0855442688533932, "curve_40": 1.0542074533287782, "curve_41": 1.1184264821174266, "curve_42": 1.1119524791793953, "curve_43": 1.1667417700213296, "curve_44": 1.0620858517743477, "curve_45": 1.0923375158914277, "curve_46": 1.0922346193491341, "curve_47": 1.0475722144476196, "curve_48": 1.043827899970765, "curve_49": 1.055848619512285, "curve_5": 1.0814903489493324, "curve_6": 1.0204156342726358, "curve_7": 1.1102497669114129, "curve_8": 1.1297026819658749, "curve_9": 1.1430510129429143, "x": 0.6758241758241759 }, { "avg_curve": 1.1232901585323058, "curve_0": 1.2313545874078826, "curve_1": 1.0163062888699503, "curve_10": 1.0975233917476734, "curve_11": 1.185617880281951, "curve_12": 1.1195114024289299, "curve_13": 1.1395902529431778, "curve_14": 1.1385406072227802, "curve_15": 1.1412379786652576, "curve_16": 1.0926690107103254, "curve_17": 1.0722905874311646, "curve_18": 1.1373592173790452, "curve_19": 1.0987488428262966, "curve_2": 1.172710168352425, "curve_20": 1.0889882011014254, "curve_21": 1.068370575256143, "curve_22": 1.0629483441543321, "curve_23": 1.0588659418975173, "curve_24": 1.2326821288507879, "curve_25": 1.1414319364897216, "curve_26": 1.1145226920745093, "curve_27": 1.2089344090551397, "curve_28": 1.1860533664153081, "curve_29": 1.1357275305990169, "curve_3": 1.116898448064265, "curve_30": 1.1274739227957153, "curve_31": 1.1636117903964742, "curve_32": 1.1810337948785745, "curve_33": 1.1086041376664169, "curve_34": 1.0853263999394536, "curve_35": 1.0692570940764854, "curve_36": 1.1878304435737082, "curve_37": 1.1298086297823366, "curve_38": 1.0770744452323897, "curve_39": 1.105241377417981, "curve_4": 1.0923970584894271, "curve_40": 1.0608250242561397, "curve_41": 1.1256156683569354, "curve_42": 1.1189362190738203, "curve_43": 1.1742813324373265, "curve_44": 1.0687604983391232, "curve_45": 1.0993100497523467, "curve_46": 1.0991283816470099, "curve_47": 1.0541408568252053, "curve_48": 1.0502923183258661, "curve_49": 1.0624676590308153, "curve_5": 1.0883173453163535, "curve_6": 1.0267244269809015, "curve_7": 1.1172445362982173, "curve_8": 1.136959952110979, "curve_9": 1.1504227121240422, "x": 0.6813186813186813 }, { "avg_curve": 1.1303817677917494, "curve_0": 1.2393303224017047, "curve_1": 1.022533412204011, "curve_10": 1.1043825658878217, "curve_11": 1.1932515314429235, "curve_12": 1.1265364970811464, "curve_13": 1.1468532180385744, "curve_14": 1.1457398001597283, "curve_15": 1.1483909703675081, "curve_16": 1.0995920464163933, "curve_17": 1.0789372993311455, "curve_18": 1.1445514525953517, "curve_19": 1.1056571784664389, "curve_2": 1.1802364704124686, "curve_20": 1.0957925011436176, "curve_21": 1.0749994300203025, "curve_22": 1.0695847692086526, "curve_23": 1.0654844502245255, "curve_24": 1.2406946287514347, "curve_25": 1.1486816479622737, "curve_26": 1.1214845687568686, "curve_27": 1.2167641266600617, "curve_28": 1.1936625796044535, "curve_29": 1.142943035967706, "curve_3": 1.1239125767735243, "curve_30": 1.134630575764421, "curve_31": 1.1708138801666899, "curve_32": 1.1885716511490207, "curve_33": 1.1156543026566357, "curve_34": 1.09201117231273, "curve_35": 1.075820186811583, "curve_36": 1.1954951408764773, "curve_37": 1.1369700163535246, "curve_38": 1.0837744634137119, "curve_39": 1.1121530505016728, "curve_4": 1.0992375445814477, "curve_40": 1.067430482031507, "curve_41": 1.132792765146565, "curve_42": 1.1259071984351812, "curve_43": 1.1818084703478364, "curve_44": 1.0754229745920654, "curve_45": 1.1062705497757286, "curve_46": 1.1060097589691797, "curve_47": 1.0606974305314407, "curve_48": 1.056744365468706, "curve_49": 1.0690745279998717, "curve_5": 1.0951320831901676, "curve_6": 1.0330210813525957, "curve_7": 1.124226660212312, "curve_8": 1.1442049903969103, "curve_9": 1.1577821693041144, "x": 0.6868131868131868 }, { "avg_curve": 1.137461106253984, "curve_0": 1.2472935488115304, "curve_1": 1.0287486159576387, "curve_10": 1.1112294406334982, "curve_11": 1.2008729189193834, "curve_12": 1.1335491715404575, "curve_13": 1.1541040468692356, "curve_14": 1.1529266067662214, "curve_15": 1.155531263488527, "curve_16": 1.106503257922235, "curve_17": 1.085571757398793, "curve_18": 1.1517313166536685, "curve_19": 1.1125533843870858, "curve_2": 1.1877505275237488, "curve_20": 1.102584590730711, "curve_21": 1.0816161033628404, "curve_22": 1.0762092531657497, "curve_23": 1.07209109645214, "curve_24": 1.248694743301409, "curve_25": 1.1559190884841941, "curve_26": 1.128433940051506, "curve_27": 1.2245815595822993, "curve_28": 1.2012593956864517, "curve_29": 1.1501463409946457, "curve_3": 1.1309143383746778, "curve_30": 1.141775087665888, "curve_31": 1.1780026268597412, "curve_32": 1.196096979661849, "curve_33": 1.1226925907295964, "curve_34": 1.098683360565793, "curve_35": 1.0823707867909274, "curve_36": 1.203147631730344, "curve_37": 1.1441191906604615, "curve_38": 1.0904622748641122, "curve_39": 1.119052356399638, "curve_4": 1.106065847385742, "curve_40": 1.0740239454697016, "curve_41": 1.1399578892907904, "curve_42": 1.1328655423869998, "curve_43": 1.1893233033807373, "curve_44": 1.082073399823421, "curve_45": 1.1132191327551797, "curve_46": 1.1128788723818213, "curve_47": 1.0672420540266863, "curve_48": 1.0631841637633983, "curve_49": 1.0756693458966657, "curve_5": 1.1019346823889633, "curve_6": 1.039305717571925, "curve_7": 1.1311962624074703, "curve_8": 1.1514379150505505, "curve_9": 1.1651295025082202, "x": 0.6923076923076923 }, { "avg_curve": 1.1445282922890374, "curve_0": 1.255244385298871, "curve_1": 1.0349520172778566, "curve_10": 1.118064135393892, "curve_11": 1.2084821595125386, "curve_12": 1.1405495460800985, "curve_13": 1.161342855795713, "curve_14": 1.1601011464067117, "curve_15": 1.1626589810890673, "curve_16": 1.1134027590283466, "curve_17": 1.092194081211985, "curve_18": 1.1588989287667908, "curve_19": 1.1194375779028, "curve_2": 1.195252456556167, "curve_20": 1.1093645884251933, "curve_21": 1.0882207140833144, "curve_22": 1.0828219120293823, "curve_23": 1.078685995733869, "curve_24": 1.2566825897168794, "curve_25": 1.1631443759696902, "curve_26": 1.1353709274062604, "curve_27": 1.2323868243672547, "curve_28": 1.208843933011251, "curve_29": 1.15733756289431, "curve_3": 1.1379038525681942, "curve_30": 1.1489075752125633, "curve_31": 1.1851781608024439, "curve_32": 1.2036099004197625, "curve_33": 1.1297191159194704, "curve_34": 1.1053430879834767, "curve_35": 1.088909016663267, "curve_36": 1.2107880322228344, "curve_37": 1.1512562702064535, "curve_38": 1.0971379984401128, "curve_39": 1.1259394151326376, "curve_4": 1.1128820850389063, "curve_40": 1.0806055312871974, "curve_41": 1.1471111555482165, "curve_42": 1.1398113738434343, "curve_43": 1.1968259490725215, "curve_44": 1.0887118912175189, "curve_45": 1.120155913433578, "curve_46": 1.1197358408170124, "curve_47": 1.07377484367842, "curve_48": 1.0696118334030758, "curve_49": 1.082252230087399, "curve_5": 1.1087252606189384, "curve_6": 1.045578453689583, "curve_7": 1.1381534644546225, "curve_8": 1.158658842227554, "curve_9": 1.1724648276966119, "x": 0.6978021978021978 }, { "avg_curve": 1.1515834422027744, "curve_0": 1.2631829484747639, "curve_1": 1.041143731247825, "curve_10": 1.1248867674885856, "curve_11": 1.21607936800091, "curve_12": 1.1475377388715313, "curve_13": 1.1685697591561812, "curve_14": 1.1672635363652906, "curve_15": 1.169774244078519, "curve_16": 1.1202906615532322, "curve_17": 1.0988043882501475, "curve_18": 1.16605440606985, "curve_19": 1.126309874279467, "curve_2": 1.2027423723534194, "curve_20": 1.1161326107145997, "curve_21": 1.0948133788971801, "curve_22": 1.0894228597725926, "curve_23": 1.0852692612081842, "curve_24": 1.264658283191101, "curve_25": 1.170357626281099, "curve_26": 1.1422956501433155, "curve_27": 1.240180035546349, "curve_28": 1.2164163078766723, "curve_29": 1.1645168168416793, "curve_3": 1.1448812369633399, "curve_30": 1.156028153085493, "curve_31": 1.192340610033376, "curve_32": 1.2111105313408388, "curve_33": 1.1367339902769653, "curve_34": 1.111990475682426, "curve_35": 1.0954349969178359, "curve_36": 1.218416456432733, "curve_37": 1.1583813704486297, "curve_38": 1.1038017509149614, "curve_39": 1.1328143446215693, "curve_4": 1.1196863736115927, "curve_40": 1.0871753541553952, "curve_41": 1.1542526766832277, "curve_42": 1.1467448135653675, "curve_43": 1.2043165229210255, "curve_44": 1.095338563906222, "curve_45": 1.1270810045549318, "curve_46": 1.1265807811268431, "curve_47": 1.0802959138143902, "curve_48": 1.0760274924651838, "curve_49": 1.0888232958808768, "curve_5": 1.1155039335278523, "curve_6": 1.0518394056771116, "curve_7": 1.1450983857972312, "curve_8": 1.165867886064644, "curve_9": 1.1797882588167918, "x": 0.7032967032967034 }, { "avg_curve": 1.1586266702887247, "curve_0": 1.2711093529509345, "curve_1": 1.047323870939027, "curve_10": 1.1316974522001464, "curve_11": 1.2236646571908796, "curve_12": 1.154513866037293, "curve_13": 1.175784869317099, "curve_14": 1.1744138918979035, "curve_15": 1.1768771712690196, "curve_16": 1.1271670753831264, "curve_17": 1.105402793947172, "curve_18": 1.1731978636724574, "curve_19": 1.133170386785784, "curve_2": 1.2102203877836677, "curve_20": 1.1228887720637428, "curve_21": 1.101394212488335, "curve_22": 1.0960122083888304, "curve_23": 1.0918410040492343, "curve_24": 1.272621936944845, "curve_25": 1.1775589532803301, "curve_26": 1.1492082255127072, "curve_27": 1.247961305687275, "curve_28": 1.2239766345797332, "curve_29": 1.1716842160233716, "curve_3": 1.1518466071307516, "curve_30": 1.1631369339852637, "curve_31": 1.199490100360601, "curve_32": 1.2185989883107364, "curve_33": 1.1437373239190378, "curve_34": 1.1186256426658536, "curve_35": 1.1019488459389344, "curve_36": 1.2260330164802522, "curve_37": 1.1654946048492698, "curve_38": 1.1104536470311221, "curve_39": 1.1396772607403114, "curve_4": 1.1264788271604826, "curve_40": 1.0937335267521413, "curve_41": 1.1613825635159392, "curve_42": 1.1536659802146407, "curve_43": 1.2117951384364294, "curve_44": 1.101953531020618, "curve_45": 1.133994516914534, "curve_46": 1.1334138081357457, "curve_47": 1.086805376774009, "curve_48": 1.0824312569649464, "curve_49": 1.0953826565803513, "curve_5": 1.1222708147568106, "curve_6": 1.0580886874794624, "curve_7": 1.1520311438048376, "curve_8": 1.1730651587301908, "curve_9": 1.1870999078538875, "x": 0.7087912087912088 }, { "avg_curve": 1.1656580888782184, "curve_0": 1.2790237113892997, "curve_1": 1.053492547461741, "curve_10": 1.1384963028250012, "curve_11": 1.2312381379655883, "curve_12": 1.1614780417021167, "curve_13": 1.182988296722222, "curve_14": 1.1815523262828609, "curve_15": 1.183967879427795, "curve_16": 1.1340321085200935, "curve_17": 1.111989411742602, "curve_18": 1.1803294147091496, "curve_19": 1.140019226743069, "curve_2": 1.2176866137885647, "curve_20": 1.1296331849652284, "curve_21": 1.1079633275599414, "curve_22": 1.1025900679414042, "curve_23": 1.098401333515902, "curve_24": 1.2805736622751944, "curve_25": 1.1847484688786323, "curve_26": 1.15610876874408, "curve_27": 1.2557307454426185, "curve_28": 1.231525025466303, "curve_29": 1.1788398716871047, "curve_3": 1.1588000766532913, "curve_30": 1.1702340286812785, "curve_31": 1.2066267554175019, "curve_32": 1.2260753852331958, "curve_33": 1.1507292250769872, "curve_34": 1.1252487058765046, "curve_35": 1.1084506800587226, "curve_36": 1.2336378225755684, "curve_37": 1.1725960849254562, "curve_38": 1.1170937995510501, "curve_39": 1.146528277366839, "curve_4": 1.13325955777856, "curve_40": 1.100280159811558, "curve_41": 1.1685009249705212, "curve_42": 1.1605749904065166, "curve_43": 1.219261907190595, "curve_44": 1.1085569037410166, "curve_45": 1.1408965594074778, "curve_46": 1.1402350346911119, "curve_47": 1.093303342958067, "curve_48": 1.0888232409070753, "curve_49": 1.1019304235336695, "curve_5": 1.1290260159903571, "curve_6": 1.0643264110658333, "curve_7": 1.1589518538248553, "curve_8": 1.1802507704731418, "curve_9": 1.1943998848793866, "x": 0.7142857142857143 }, { "avg_curve": 1.1726778083888967, "curve_0": 1.2869261345498693, "curve_1": 1.0596498700138701, "curve_10": 1.1452834307226565, "curve_11": 1.2387999193322576, "curve_12": 1.1684303780423944, "curve_13": 1.1901801499400286, "curve_14": 1.1886789508697118, "curve_15": 1.1910464833278027, "curve_16": 1.1408858671285669, "curve_17": 1.1185643531311507, "curve_18": 1.1874491703881978, "curve_19": 1.1468565035734495, "curve_2": 1.2251411594306907, "curve_20": 1.1363659599883356, "curve_21": 1.1145208348835984, "curve_22": 1.1091565466113242, "curve_23": 1.1049503569992654, "curve_24": 1.2885135686027642, "curve_25": 1.1919262830847488, "curve_26": 1.162997393096764, "curve_27": 1.2634884635969112, "curve_28": 1.239061590979153, "curve_29": 1.185983893189558, "curve_3": 1.1657417571752502, "curve_30": 1.177319546059439, "curve_31": 1.2137506967167948, "curve_32": 1.233539834078908, "curve_33": 1.1577098001429917, "curve_34": 1.1318597802478918, "curve_35": 1.1149406136082907, "curve_36": 1.2412309830657937, "curve_37": 1.179685920297117, "curve_38": 1.1237223193063135, "curve_39": 1.1533675064326787, "curve_4": 1.1400286756437548, "curve_40": 1.1068153621722532, "curve_41": 1.1756078681219593, "curve_42": 1.1674719587604347, "curve_43": 1.2267169388648105, "curve_44": 1.1151487913453226, "curve_45": 1.1477872390756019, "curve_46": 1.1470445717122684, "curve_47": 1.0997899208768311, "curve_48": 1.095203556335797, "curve_49": 1.1084667061817879, "curve_5": 1.1357696470049392, "curve_6": 1.0705526864788488, "curve_7": 1.1658606292326854, "curve_8": 1.1874248296703673, "curve_9": 1.2016882980982968, "x": 0.7197802197802198 }, { "avg_curve": 1.179685937371661, "curve_0": 1.2948167313371177, "curve_1": 1.0657959459281925, "curve_10": 1.1520589453633325, "curve_11": 1.2463501084679944, "curve_12": 1.175370985334045, "curve_13": 1.1973605357096209, "curve_14": 1.1957938751265451, "curve_15": 1.198113095796743, "curve_16": 1.1477284555803977, "curve_17": 1.1251277277106237, "curve_18": 1.194557240038847, "curve_19": 1.153682324846504, "curve_2": 1.2325841319394732, "curve_20": 1.1430872058263188, "curve_21": 1.1210668433469249, "curve_22": 1.1157117507436054, "curve_23": 1.1114881800685328, "curve_24": 1.2964417635174106, "curve_25": 1.1990925040515266, "curve_26": 1.169874209908234, "curve_27": 1.2712345671121772, "curve_28": 1.2465864397044641, "curve_29": 1.1931163880426976, "curve_3": 1.1726717584499706, "curve_30": 1.1843935931682936, "curve_31": 1.2208620437028055, "curve_32": 1.2409924449328178, "curve_33": 1.164679153715149, "curve_34": 1.1384589787538801, "curve_35": 1.1214187589670799, "curve_36": 1.2488126044804417, "curve_37": 1.1867642187335266, "curve_38": 1.1303393152451329, "curve_39": 1.1601950579707703, "curve_4": 1.1467862890660165, "curve_40": 1.1133392408239808, "curve_41": 1.1827034982413138, "curve_42": 1.1743569979491324, "curve_43": 1.2341603412960025, "curve_44": 1.1217293012558507, "curve_45": 1.1546666611529255, "curve_46": 1.1538425282378737, "curve_47": 1.1062652171965903, "curve_48": 1.1015723133832611, "curve_49": 1.1149916121057262, "curve_5": 1.1425018157158129, "curve_6": 1.0767676218821518, "curve_7": 1.1727575814802131, "curve_8": 1.1945874428724883, "curve_9": 1.2089652538947908, "x": 0.7252747252747253 }, { "avg_curve": 1.1866825825561265, "curve_0": 1.3026956088448811, "curve_1": 1.0719308807180923, "curve_10": 1.1588229543740767, "curve_11": 1.2538888107641382, "curve_12": 1.1822999719988556, "curve_13": 1.204529558985167, "curve_14": 1.2028972066857833, "curve_15": 1.2051678277645046, "curve_16": 1.1545599764984602, "curve_17": 1.131679643228307, "curve_18": 1.2016537311570492, "curve_19": 1.1604967963244122, "curve_2": 1.2400156367556414, "curve_20": 1.1497970293421989, "curve_21": 1.1276014599996198, "curve_22": 1.12225578489209, "curve_23": 1.1180149065155074, "curve_24": 1.3043583528224927, "curve_25": 1.2062472381210365, "curve_26": 1.1767393286410246, "curve_27": 1.2789691611720306, "curve_28": 1.2540996784168568, "curve_29": 1.2002374619586211, "curve_3": 1.179590188385944, "curve_30": 1.1914562752637166, "curve_31": 1.2279609138020648, "curve_32": 1.2484333260399143, "curve_33": 1.1716373886410831, "curve_34": 1.1450464124566786, "curve_35": 1.1278852266107189, "curve_36": 1.2563827915754484, "curve_37": 1.1938310861983212, "curve_38": 1.1369448944783984, "curve_39": 1.1670110401618001, "curve_4": 1.1535325045328866, "curve_40": 1.1198519009528023, "curve_41": 1.1897879188395366, "curve_42": 1.1812302187461925, "curve_43": 1.2415922205214782, "curve_44": 1.1282985390846418, "curve_45": 1.1615349291096346, "curve_46": 1.1606290114717999, "curve_47": 1.1127293367847129, "curve_48": 1.1079296203163973, "curve_49": 1.1215052470720144, "curve_5": 1.1492226282224474, "curve_6": 1.0829713236064646, "curve_7": 1.1796428201427571, "curve_8": 1.201738714848241, "curve_9": 1.216230856876399, "x": 0.7307692307692307 }, { "avg_curve": 1.1936678488946315, "curve_0": 1.3105628723998395, "curve_1": 1.0780547781218384, "curve_10": 1.1655755635834106, "curve_11": 1.26141612986921, "curve_12": 1.1892174446493518, "curve_13": 1.2116873229789347, "curve_14": 1.2099890513885239, "curve_15": 1.2122107883091044, "curve_16": 1.1613805307988825, "curve_17": 1.1382202056258794, "curve_18": 1.2087387494497492, "curve_19": 1.1673000220056737, "curve_2": 1.2474357775742801, "curve_20": 1.1564955356130995, "curve_21": 1.134124790098061, "curve_22": 1.1287887518628454, "curve_23": 1.1245306383976403, "curve_24": 1.3122634405777345, "curve_25": 1.213390589868269, "curve_26": 1.1835928569281517, "curve_27": 1.2866923492243871, "curve_28": 1.2616014121229968, "curve_29": 1.207347218892989, "curve_3": 1.1864971530914494, "curve_30": 1.1985076958521717, "curve_31": 1.2350474224723, "curve_32": 1.2558625838495794, "curve_33": 1.1785846060601708, "curve_34": 1.1516221905533075, "curve_35": 1.1343401251573355, "curve_36": 1.2639416473758034, "curve_37": 1.2008866268930922, "curve_38": 1.1435391623242261, "curve_39": 1.1738155593790616, "curve_4": 1.1602674267536224, "curve_40": 1.1263534459848183, "curve_41": 1.1968612317099039, "curve_42": 1.1880917300720821, "curve_43": 1.249012680822253, "curve_44": 1.1348566086773408, "curve_45": 1.168392144694676, "curve_46": 1.1674041268275603, "curve_47": 1.1191823827532714, "curve_48": 1.1142755835822802, "curve_49": 1.1280077150767014, "curve_5": 1.155932188852491, "curve_6": 1.089163896194188, "curve_7": 1.186516452964526, "curve_8": 1.2088787486274402, "curve_9": 1.2234852099168068, "x": 0.7362637362637363 }, { "avg_curve": 1.2006418396048677, "curve_0": 1.3184186256036368, "curve_1": 1.084167740145461, "curve_10": 1.1723168770645715, "curve_11": 1.2689321677305128, "curve_12": 1.1961235081322543, "curve_13": 1.2188339292029753, "curve_14": 1.2170695133274894, "curve_15": 1.2192420847011827, "curve_16": 1.1681902177319454, "curve_17": 1.1447495190829087, "curve_18": 1.215812398877774, "curve_19": 1.174092104167451, "curve_2": 1.254844656386532, "curve_20": 1.1631828279731893, "curve_21": 1.1406369371484941, "curve_22": 1.1353107527561965, "curve_23": 1.1310354760797285, "curve_24": 1.320157129140751, "curve_25": 1.220522662143456, "curve_26": 1.190434900617106, "curve_27": 1.2944042330228342, "curve_28": 1.2690917441038347, "curve_29": 1.2144457610870854, "curve_3": 1.1933927569177856, "curve_30": 1.2055479567326168, "curve_31": 1.2421216832498785, "curve_32": 1.2632803230585405, "curve_33": 1.1855209054444398, "curve_34": 1.158186420420595, "curve_35": 1.1407835614124051, "curve_36": 1.2714892732168475, "curve_37": 1.2079309432996062, "curve_38": 1.1501222223511085, "curve_39": 1.1806087202319042, "curve_4": 1.1669911587019322, "curve_40": 1.1328439776285186, "curve_41": 1.2039235369691144, "curve_42": 1.1949416390387404, "curve_43": 1.256421824765021, "curve_44": 1.141403612155691, "curve_45": 1.1752384079770117, "curve_46": 1.1741679779713345, "curve_47": 1.1256244565012936, "curve_48": 1.120610307852061, "curve_49": 1.1344991183879698, "curve_5": 1.1626306002043496, "curve_6": 1.0953454424425866, "curve_7": 1.1933785859026436, "curve_8": 1.2160076455425943, "curve_9": 1.2307284141973058, "x": 0.7417582417582418 }, { "avg_curve": 1.2076046562111762, "curve_0": 1.3262629703736957, "curve_1": 1.0902698671042836, "curve_10": 1.1790469971774036, "curve_11": 1.2764370246344434, "curve_12": 1.2030182655705814, "curve_13": 1.2259694775095111, "curve_14": 1.2241386948886352, "curve_15": 1.2262618224471054, "curve_16": 1.1749891349217092, "curve_17": 1.1512676860589857, "curve_18": 1.222874781697391, "curve_19": 1.1808731434065918, "curve_2": 1.2622423735200035, "curve_20": 1.169859008055277, "curve_21": 1.1471380029488711, "curve_22": 1.1418218870074424, "curve_23": 1.1375295182743086, "curve_24": 1.3280395192072825, "curve_25": 1.227643556113073, "curve_26": 1.1972655638124685, "curve_27": 1.3021049126667197, "curve_28": 1.2765707759555325, "curve_29": 1.2215331891085746, "curve_3": 1.2002771025011534, "curve_30": 1.2125771580371034, "curve_31": 1.2491838077957653, "curve_32": 1.2706866466524886, "curve_33": 1.1924463846381974, "curve_34": 1.1647392076587666, "curve_35": 1.1472156404121945, "curve_36": 1.279025768784285, "curve_37": 1.214964136220711, "curve_38": 1.156694176419716, "curve_39": 1.1873906256078248, "curve_4": 1.173703801657375, "curve_40": 1.13932359591581, "curve_41": 1.210974933097111, "curve_42": 1.2017800509927714, "curve_43": 1.2638197532428184, "curve_44": 1.1479396499587, "curve_45": 1.182073817385588, "curve_46": 1.1809206668636543, "curve_47": 1.1320556577556906, "curve_48": 1.126933896063521, "curve_49": 1.1409795575874222, "curve_5": 1.169317963188439, "curve_6": 1.1015160634456223, "curve_7": 1.2002293231698, "curve_8": 1.223125505269223, "curve_9": 1.2379605692469593, "x": 0.7472527472527473 }, { "avg_curve": 1.2145563985845664, "curve_0": 1.3340960069827705, "curve_1": 1.0963612576631616, "curve_10": 1.1857660246089472, "curve_11": 1.283930799245555, "curve_12": 1.2099018184044417, "curve_13": 1.2330940661300693, "curve_14": 1.2311966967914707, "curve_15": 1.2332701053307307, "curve_16": 1.181777378404412, "curve_17": 1.15777480733455, "curve_18": 1.2299259985005717, "curve_19": 1.1876432386793767, "curve_2": 1.26962902767792, "curve_20": 1.1765241758311218, "curve_21": 1.1536280876293887, "curve_22": 1.1483222524263101, "curve_23": 1.1440128620807977, "curve_24": 1.3359107098501906, "curve_25": 1.2347533712995726, "curve_26": 1.2040849489172056, "curve_27": 1.309794486640003, "curve_28": 1.284038607629122, "curve_29": 1.2286096018909898, "curve_3": 1.2071502908032394, "curve_30": 1.219595398270117, "curve_31": 1.2562339059400534, "curve_32": 1.2780816559464079, "curve_33": 1.1993611398964277, "curve_34": 1.1712806561336762, "curve_35": 1.1536364654658493, "curve_36": 1.286551232152963, "curve_37": 1.2219863048199762, "curve_38": 1.1632551247233993, "curve_39": 1.1941613767132497, "curve_4": 1.1804054552454775, "curve_40": 1.1457923992417678, "curve_41": 1.2180155169756681, "curve_42": 1.208607069557296, "curve_43": 1.271206565514431, "curve_44": 1.154464820882528, "curve_45": 1.1888984697480651, "curve_46": 1.18766229379979, "curve_47": 1.1384760846109137, "curve_48": 1.1332464494623, "curve_49": 1.1474491316100832, "curve_5": 1.175994377067152, "curve_6": 1.1076758586344833, "curve_7": 1.2070687672755758, "curve_8": 1.2302324258649278, "curve_9": 1.2451817729815233, "x": 0.7527472527472527 }, { "avg_curve": 1.221497164981504, "curve_0": 1.3419178340972913, "curve_1": 1.1024420088754752, "curve_10": 1.192474058412777, "curve_11": 1.291413588644425, "curve_12": 1.2167742664305732, "curve_13": 1.2402077917134189, "curve_14": 1.2382436181281378, "curve_15": 1.2402670354538903, "curve_16": 1.1885550426656888, "curve_17": 1.164270982050453, "curve_18": 1.2369661482540233, "curve_19": 1.1944024873400452, "curve_2": 1.2770047159770863, "curve_20": 1.183178429650495, "curve_21": 1.1601072896917755, "curve_22": 1.1548119452351921, "curve_23": 1.150485603023426, "curve_24": 1.3437707985572604, "curve_25": 1.2418522056198993, "curve_26": 1.2108931566726897, "curve_27": 1.3174730518489168, "curve_28": 1.2914953374689524, "curve_29": 1.2356750967720145, "curve_3": 1.2140124211505499, "curve_30": 1.2266027743467118, "curve_31": 1.2632720857251172, "curve_32": 1.285465450623666, "curve_33": 1.2062652659220134, "curve_34": 1.1778108680177324, "curve_35": 1.1600461381961835, "curve_36": 1.2940657598244618, "curve_37": 1.228997546660111, "curve_38": 1.1698051658274415, "curve_39": 1.2009210731130648, "curve_4": 1.187096217476611, "curve_40": 1.1522504844031627, "curve_41": 1.225045383925795, "curve_42": 1.215422796672511, "curve_43": 1.2785823592425922, "curve_44": 1.160979222119144, "curve_45": 1.1957124603283578, "curve_46": 1.1943929574488972, "curve_47": 1.1448858335673866, "curve_48": 1.1395480676418517, "curve_49": 1.1539079377831662, "curve_5": 1.1826599394935986, "curve_6": 1.113824925816861, "curve_7": 1.213897019066494, "curve_8": 1.2373285038072641, "curve_9": 1.252392121741174, "x": 0.7582417582417582 }, { "avg_curve": 1.2284270520815128, "curve_0": 1.3497285488145432, "curve_1": 1.1085122162209275, "curve_10": 1.1991711960471392, "curve_11": 1.2988854883643703, "curve_12": 1.2236357078406737, "curve_13": 1.2473107493623483, "curve_14": 1.2452795564013002, "curve_15": 1.2472527132756308, "curve_16": 1.195322220676653, "curve_17": 1.1707563077463126, "curve_18": 1.2439953283370253, "curve_19": 1.2011509851781448, "curve_2": 1.2843695339846843, "curve_20": 1.1898218662790512, "curve_21": 1.1665757060473756, "curve_22": 1.1612910601062139, "curve_23": 1.1569478350880131, "curve_24": 1.351619881267856, "curve_25": 1.2489401554228254, "curve_26": 1.2176902861974968, "curve_27": 1.325140703658485, "curve_28": 1.2989410622499635, "curve_29": 1.2427297695305914, "curve_3": 1.2208635912725416, "curve_30": 1.2335993816294806, "curve_31": 1.2702984534474455, "curve_32": 1.2928381287739177, "curve_33": 1.2131588559018203, "curve_34": 1.1843299438295711, "curve_35": 1.166444758579217, "curve_36": 1.3015694467635424, "curve_37": 1.2359979577402147, "curve_38": 1.1763443967071123, "curve_39": 1.2076698127689323, "curve_4": 1.193776184783684, "curve_40": 1.1586979466358087, "curve_41": 1.2320646277440008, "curve_42": 1.2222273326350115, "curve_43": 1.2859472305310207, "curve_44": 1.1674829492938015, "curve_45": 1.2025158828630296, "curve_46": 1.201112754891965, "curve_47": 1.1512849995687653, "curve_48": 1.1458388485821727, "curve_49": 1.1603560718636567, "curve_5": 1.1893147465491591, "curve_6": 1.1199633612150208, "curve_7": 1.2207141777648478, "curve_8": 1.2444138340304585, "curve_9": 1.2595917103270866, "x": 0.7637362637362637 }, { "avg_curve": 1.2353461550236395, "curve_0": 1.3575282466987224, "curve_1": 1.1145719736421904, "curve_10": 1.205857533411928, "curve_11": 1.3063465924270556, "curve_12": 1.2304862392585674, "curve_13": 1.2544030326693318, "curve_14": 1.2523046075608826, "curve_15": 1.2542272376502661, "curve_16": 1.202079003928888, "curve_17": 1.1772308803976985, "curve_18": 1.2510136345781218, "curve_19": 1.207888826454746, "curve_2": 1.2917235757539642, "curve_20": 1.1964545809350484, "curve_21": 1.173033432054076, "curve_22": 1.1677596901971745, "curve_23": 1.1633996507576232, "curve_24": 1.359458052408469, "curve_25": 1.2560173155251617, "curve_26": 1.2244764350250255, "curve_27": 1.332797535927938, "curve_28": 1.3063758772138339, "curve_29": 1.2497737144229129, "curve_3": 1.227703897338599, "curve_30": 1.2405853139644045, "curve_31": 1.2773131136982023, "curve_32": 1.3001997869298576, "curve_33": 1.22004200154169, "curve_34": 1.1908379824725188, "curve_35": 1.172832424982506, "curve_36": 1.3090623864334936, "curve_37": 1.2429876325318976, "curve_38": 1.1828729127845612, "curve_39": 1.2144076920764473, "curve_4": 1.2004454520586887, "curve_40": 1.1651348796507746, "curve_41": 1.2390733407374592, "curve_42": 1.2290207761359149, "curve_43": 1.2933012739603351, "curve_44": 1.1739760965013755, "curve_45": 1.2093088295965855, "curve_46": 1.2078217816586114, "curve_47": 1.1576736760380606, "curve_48": 1.1521188886873508, "curve_49": 1.1667936280747497, "curve_5": 1.1959588927798996, "curve_6": 1.1260912595027137, "curve_7": 1.2275203410063487, "curve_8": 1.2514885099610138, "curve_9": 1.266780632036908, "x": 0.7692307692307693 }, { "avg_curve": 1.2422545674418186, "curve_0": 1.3653170218159127, "curve_1": 1.1206213735804393, "curve_10": 1.2125331648845494, "curve_11": 1.3137969933770293, "curve_12": 1.2373259557762517, "curve_13": 1.261484733751124, "curve_14": 1.2593188660397032, "curve_15": 1.2611907058642817, "curve_16": 1.2088254824683837, "curve_17": 1.1836947944521956, "curve_18": 1.2580211612907082, "curve_19": 1.2146161039375678, "curve_2": 1.2990669338588618, "curve_20": 1.2030766673249595, "curve_21": 1.1794805615521162, "curve_22": 1.1742179271864066, "curve_23": 1.1698411410471479, "curve_24": 1.3672854049272054, "curve_25": 1.2630837792468745, "curve_26": 1.2312516991399807, "curve_27": 1.3404436410450689, "curve_28": 1.313799876104044, "curve_29": 1.2568070242173242, "curve_3": 1.2345334339938931, "curve_30": 1.2475606637156262, "curve_31": 1.2843161694025593, "curve_32": 1.3075505201028699, "curve_33": 1.2269147931003825, "curve_34": 1.197335081271894, "curve_35": 1.1792092342023177, "curve_36": 1.3165446708304205, "curve_37": 1.2499666640143121, "curve_38": 1.1893908079645994, "curve_39": 1.2211348059011722, "curve_4": 1.207104112688145, "curve_40": 1.1715613756695042, "curve_41": 1.2460716137581196, "curve_42": 1.235803224297835, "curve_43": 1.300644582622892, "curve_44": 1.1804587563416014, "curve_45": 1.2160913913157012, "curve_46": 1.2145201317627718, "curve_47": 1.164051954912674, "curve_48": 1.158388282821979, "curve_49": 1.1732206991411898, "curve_5": 1.202592471231886, "curve_6": 1.13220871384097, "curve_7": 1.2343156048766384, "curve_8": 1.2585526235522468, "curve_9": 1.273958978699164, "x": 0.7747252747252747 }, { "avg_curve": 1.249152381499182, "curve_0": 1.3730949667680248, "curve_1": 1.126660507009824, "curve_10": 1.2191981833547094, "curve_11": 1.3212367823152378, "curve_12": 1.2441549509888667, "curve_13": 1.268555943282321, "curve_14": 1.2663224247880451, "curve_15": 1.2681432136721358, "curve_16": 1.2155617449284608, "curve_17": 1.1901481428643879, "curve_18": 1.2650180013075563, "curve_19": 1.2213329089350518, "curve_2": 1.3063996994275864, "curve_20": 1.20968821767802, "curve_21": 1.185917186898827, "curve_22": 1.1806658613065892, "curve_23": 1.1762723955368533, "curve_24": 1.3751020303272454, "curve_25": 1.2701396384451586, "curve_26": 1.2380161730137673, "curve_27": 1.3480791099595655, "curve_28": 1.321213151199896, "curve_29": 1.2638297902281894, "curve_3": 1.2413522943941717, "curve_30": 1.2545255217991853, "curve_31": 1.2913077218578541, "curve_32": 1.314890421817617, "curve_33": 1.2337773194225037, "curve_34": 1.203821336011188, "curve_35": 1.1855752814996856, "curve_36": 1.3240163905165108, "curve_37": 1.256935143708144, "curve_38": 1.1958981746694108, "curve_39": 1.2278512476135937, "curve_4": 1.2137522585874867, "curve_40": 1.1779775254578853, "curve_41": 1.2530595362358001, "curve_42": 1.2425747727107503, "curve_43": 1.3079772481565886, "curve_44": 1.1869310199532608, "curve_45": 1.222863657382432, "curve_46": 1.2212078977373169, "curve_47": 1.1704199266783815, "curve_48": 1.1646471243464747, "curve_49": 1.1796373763235517, "curve_5": 1.209215573485447, "curve_6": 1.1383158159128195, "curve_7": 1.2411000639467098, "curve_8": 1.265606265317793, "curve_9": 1.2811268407066414, "x": 0.7802197802197802 }, { "avg_curve": 1.2560396879213513, "curve_0": 1.3808621727257278, "curve_1": 1.132689463470907, "curve_10": 1.2258526802581706, "curve_11": 1.3286660489315423, "curve_12": 1.2509733170286244, "curve_13": 1.275616750527931, "curve_14": 1.2733153753072, "curve_15": 1.2750848553309968, "curve_16": 1.2222878785617184, "curve_17": 1.196591017129798, "curve_18": 1.2720042460143137, "curve_19": 1.2280393313294249, "curve_2": 1.3137219621752136, "curve_20": 1.2162893227797464, "curve_21": 1.1923433990023344, "curve_22": 1.1871035813775572, "curve_23": 1.1826935024049308, "curve_24": 1.3829080186993166, "curve_25": 1.2771849835474982, "curve_26": 1.2447699496388291, "curve_27": 1.3557040322153604, "curve_28": 1.3286157933495248, "curve_29": 1.270842102348752, "curve_3": 1.2481605702395138, "curve_30": 1.2614799777157515, "curve_31": 1.2982878707706076, "curve_32": 1.322219584145602, "curve_33": 1.2406296679704576, "curve_34": 1.2102968409671702, "curve_35": 1.1919306606353914, "curve_36": 1.3314776346523198, "curve_37": 1.2638931617085913, "curve_38": 1.202395103872229, "curve_39": 1.2345571091230394, "curve_4": 1.220389980234423, "curve_40": 1.1843834183593034, "curve_41": 1.2600371962102996, "curve_42": 1.2493355154668047, "curve_43": 1.3152993607776602, "curve_44": 1.193392977047349, "curve_45": 1.229625715766436, "curve_46": 1.2278851706676432, "curve_47": 1.1767776804023096, "curve_48": 1.170895505151348, "curve_49": 1.1860437494515013, "curve_5": 1.2158282896884127, "curve_6": 1.1444126559569745, "curve_7": 1.247873811307273, "curve_8": 1.2726495243641216, "curve_9": 1.2882843070487826, "x": 0.7857142857142857 }, { "avg_curve": 1.262916576028746, "curve_0": 1.388618729460419, "curve_1": 1.1387083311031159, "curve_10": 1.2324967456095086, "curve_11": 1.3360848815362851, "curve_12": 1.2577811445977383, "curve_13": 1.2826672433749815, "curve_14": 1.2802978076820233, "curve_15": 1.2820157236344538, "curve_16": 1.2290039692710422, "curve_17": 1.2030235073178253, "curve_18": 1.2789799853820185, "curve_19": 1.2347354596087874, "curve_2": 1.3210338104353212, "curve_20": 1.2228800720044675, "curve_21": 1.1987592873542667, "curve_22": 1.1935311748381405, "curve_23": 1.1891045484590834, "curve_24": 1.3907034587532148, "curve_25": 1.2842199035837543, "curve_26": 1.2515131205619752, "curve_27": 1.3633184959820306, "curve_28": 1.3360078920019414, "curve_29": 1.277844049083026, "curve_3": 1.2549583518070895, "curve_30": 1.2684241195823975, "curve_31": 1.3052567142924476, "curve_32": 1.329538097737745, "curve_33": 1.2474719248554593, "curve_34": 1.2167616889439494, "curve_35": 1.1982754639039093, "curve_36": 1.3389284910281074, "curve_37": 1.2708408067173729, "curve_38": 1.2088816851300177, "curve_39": 1.2412524809105951, "curve_4": 1.2270173667013162, "curve_40": 1.1907791423267193, "curve_41": 1.2670046803625656, "curve_42": 1.2560855451940798, "curve_43": 1.322611009312518, "curve_44": 1.1998447159392645, "curve_45": 1.2363776530762483, "curve_46": 1.2345520402242736, "curve_47": 1.1831253037649323, "curve_48": 1.1771335156904534, "curve_49": 1.1924399069560727, "curve_5": 1.2224307085883768, "curve_6": 1.1504993228005167, "curve_7": 1.2546369386021077, "curve_8": 1.2796824884220905, "curve_9": 1.2954314653431256, "x": 0.7912087912087912 }, { "avg_curve": 1.2697831337679493, "curve_0": 1.3963647253752633, "curve_1": 1.1447171966762377, "curve_10": 1.2391304680339124, "curve_11": 1.343493367090935, "curve_12": 1.2645785230003879, "curve_13": 1.2897075083632092, "curve_14": 1.2872698106125382, "curve_15": 1.2889359099452424, "curve_16": 1.2357101016397032, "curve_17": 1.2094457021037166, "curve_18": 1.2859453079986602, "curve_19": 1.2414213808982608, "curve_2": 1.3283353311907027, "curve_20": 1.2294605533468985, "curve_21": 1.2051649400615025, "curve_22": 1.1999487277770724, "curve_23": 1.1955056191671913, "curve_24": 1.3984884378484106, "curve_25": 1.2912444862173162, "curve_26": 1.2582457759167294, "curve_27": 1.3709225880852842, "curve_28": 1.3433895352381398, "curve_29": 1.2848357175767604, "curve_3": 1.2617457279829603, "curve_30": 1.2753580341634396, "curve_31": 1.312214349054981, "curve_32": 1.3368460518560061, "curve_33": 1.2543041748676425, "curve_34": 1.2232159713060393, "curve_35": 1.2046097821663537, "curve_36": 1.3463690460942603, "curve_37": 1.2777781660738017, "curve_38": 1.2153580066151966, "curve_39": 1.2479374520610558, "curve_4": 1.2336345056866123, "curve_40": 1.197164783953807, "curve_41": 1.2739620740449522, "curve_42": 1.2628249530893771, "curve_43": 1.329912281228657, "curve_44": 1.2062863235800518, "curve_45": 1.2431195545896396, "curve_46": 1.2412085946944986, "curve_47": 1.1894628830911333, "curve_48": 1.1833612450132631, "curve_49": 1.198825935900999, "curve_5": 1.2290229175640117, "curve_6": 1.156575903890621, "curve_7": 1.2613895360604384, "curve_8": 1.286705243877585, "curve_9": 1.3025684018658295, "x": 0.7967032967032966 }, { "avg_curve": 1.2766394477421625, "curve_0": 1.40410024753533, "curve_1": 1.1507161456209936, "curve_10": 1.245753934798056, "curve_11": 1.3508915912378443, "curve_12": 1.271365540173754, "curve_13": 1.2967376307148553, "curve_14": 1.2942314714446221, "curve_15": 1.295845504227017, "curve_16": 1.2424063589605854, "curve_17": 1.2158576887996047, "curve_18": 1.2929003010998261, "curve_19": 1.2480971809902306, "curve_2": 1.3356266101031902, "curve_20": 1.2360308534528006, "curve_21": 1.2115604438769927, "curve_22": 1.2063563249629945, "curve_23": 1.201896798687081, "curve_24": 1.4062630420237658, "curve_25": 1.2982588177753476, "curve_26": 1.2649680044547382, "curve_27": 1.3785163940365628, "curve_28": 1.3507608098013042, "curve_29": 1.2918171936474985, "curve_3": 1.2685227862929545, "curve_30": 1.2822818069003865, "curve_31": 1.3191608702036428, "curve_32": 1.344143534404097, "curve_33": 1.261126501505289, "curve_34": 1.2296597780104557, "curve_35": 1.210933704882464, "curve_36": 1.3537993849908363, "curve_37": 1.2847053257849574, "curve_38": 1.2218241551464377, "curve_39": 1.2546121102939467, "curve_4": 1.240241483545355, "curve_40": 1.203540428505184, "curve_41": 1.2809094613106007, "curve_42": 1.2695538289500452, "curve_43": 1.337203262664667, "curve_44": 1.212717885586738, "curve_45": 1.2498515042830967, "curve_46": 1.247854921013102, "curve_47": 1.1957905033803622, "curve_48": 1.1895787807962002, "curve_49": 1.2052019220131311, "curve_5": 1.2356050026554721, "curve_6": 1.1626424853253532, "curve_7": 1.2681316925283663, "curve_8": 1.2937178758012609, "curve_9": 1.3096952015813124, "x": 0.8021978021978022 }, { "avg_curve": 1.2834856032407778, "curve_0": 1.41182538169687, "curve_1": 1.1567052620587277, "curve_10": 1.2523672318400778, "curve_11": 1.3582796383291498, "curve_12": 1.2781422827181557, "curve_13": 1.3037576943636031, "curve_14": 1.3011828761998054, "curve_15": 1.3027445950752032, "curve_16": 1.2490928232645677, "curve_17": 1.2222595533846476, "curve_18": 1.2998450505984624, "curve_19": 1.2547629443737147, "curve_2": 1.3429077315426192, "curve_20": 1.2425910576487498, "curve_21": 1.2179458842296897, "curve_22": 1.2127540498735967, "curve_23": 1.208278169895434, "curve_24": 1.4140273560264018, "curve_25": 1.3052629832781597, "curve_26": 1.271679893576269, "curve_27": 1.3860999980617967, "curve_28": 1.3581218011261453, "curve_29": 1.2987885618137762, "curve_3": 1.27528961293265, "curve_30": 1.2891955219410214, "curve_31": 1.3260963714305718, "curve_32": 1.351430631957299, "curve_33": 1.2679389870032214, "curve_34": 1.236093197637883, "curve_35": 1.21724732014166, "curve_36": 1.3612195915762577, "curve_37": 1.2916223705549845, "curve_38": 1.2282802162185757, "curve_39": 1.261276541993649, "curve_4": 1.2468383853188179, "curve_40": 1.2099061599457657, "curve_41": 1.2878469249419717, "curve_42": 1.2762722612048858, "curve_43": 1.3444840384593806, "curve_44": 1.2191394862717886, "curve_45": 1.2565735848604473, "curve_46": 1.2544911047921934, "curve_47": 1.2021082483359162, "curve_48": 1.1957862093730616, "curve_49": 1.2115679497119742, "curve_5": 1.24217704859392, "curve_6": 1.168699151883576, "curve_7": 1.2748634954993923, "curve_8": 1.3007204679774367, "curve_9": 1.3168119481710374, "x": 0.8076923076923077 }, { "avg_curve": 1.2903216842681058, "curve_0": 1.4195402123357541, "curve_1": 1.1626846288302395, "curve_10": 1.2589704437987017, "curve_11": 1.3656575914548517, "curve_12": 1.2849088359263239, "curve_13": 1.3107677819826904, "curve_14": 1.3081241096042193, "curve_15": 1.3096332697469686, "curve_16": 1.2557695753480962, "curve_17": 1.228651380534303, "curve_18": 1.3067796411137833, "curve_19": 1.2614187542628907, "curve_2": 1.350178778614968, "curve_20": 1.249141249971053, "curve_21": 1.2243213452536186, "curve_22": 1.2191419847239187, "curve_23": 1.2146498144158677, "curve_24": 1.4217814633397434, "curve_25": 1.312257066467746, "curve_26": 1.278381529359834, "curve_27": 1.3936734831293387, "curve_28": 1.3654725933674006, "curve_29": 1.305749905323481, "curve_3": 1.2820462927964988, "curve_30": 1.296099262167654, "curve_31": 1.3330209450065342, "curve_32": 1.3587074297914377, "curve_33": 1.2747417123603797, "curve_34": 1.242516317422947, "curve_35": 1.2235507146932065, "curve_36": 1.368629748455186, "curve_37": 1.2985293838135565, "curve_38": 1.234726274031654, "curve_39": 1.2679308322386587, "curve_4": 1.253425294763288, "curve_40": 1.2162620609692782, "curve_41": 1.2947745464785645, "curve_42": 1.2829803369441732, "curve_43": 1.3517546921801888, "curve_44": 1.225551208671719, "curve_45": 1.2632858777806695, "curve_46": 1.261117230350188, "curve_47": 1.208416200393383, "curve_48": 1.2019836157645651, "curve_49": 1.2179241021383773, "curve_5": 1.248739138830204, "curve_6": 1.174745987053991, "curve_7": 1.2815850311440644, "curve_8": 1.3077131029321558, "curve_9": 1.323918724061476, "x": 0.8131868131868132 }, { "avg_curve": 1.2971477735712857, "curve_0": 1.4272448226751064, "curve_1": 1.1686543275237913, "curve_10": 1.2655636540415232, "curve_11": 1.373025532470091, "curve_12": 1.2916652838118414, "curve_13": 1.3177679750122193, "curve_14": 1.3150552551167167, "curve_15": 1.3165116141903352, "curve_16": 1.2624366947999692, "curve_17": 1.2350332536487627, "curve_18": 1.3137041559993563, "curve_19": 1.2680646926248091, "curve_2": 1.3574398331896937, "curve_20": 1.2556815131938395, "curve_21": 1.2306869098161137, "curve_22": 1.2255202104938459, "curve_23": 1.221011812646214, "curve_24": 1.4295254462107676, "curve_25": 1.319241149835503, "curve_26": 1.2850729965909684, "curve_27": 1.4012369309771049, "curve_28": 1.3728132694275226, "curve_29": 1.312701306181406, "curve_3": 1.2887929095061186, "curve_30": 1.3029931092245668, "curve_31": 1.33993468181194, "curve_32": 1.3659740119110266, "curve_33": 1.2815347573666138, "curve_34": 1.2489292232836167, "curve_35": 1.229843973975511, "curve_36": 1.376029937005606, "curve_37": 1.3054264477435265, "curve_38": 1.2411624115191449, "curve_39": 1.274575064830012, "curve_4": 1.2600022943780258, "curve_40": 1.2226082130259566, "curve_41": 1.3016924062438453, "curve_42": 1.289678141948816, "curve_43": 1.359015306150552, "curve_44": 1.231953134574888, "curve_45": 1.269988463284907, "curve_46": 1.2677333807399591, "curve_47": 1.2147144407482686, "curve_48": 1.2081710837070512, "curve_49": 1.2242704611824022, "curve_5": 1.2552913555627168, "curve_6": 1.1807830730633497, "curve_7": 1.288296384338779, "curve_8": 1.3146958619604519, "curve_9": 1.331015610451276, "x": 0.8186813186813187 }, { "avg_curve": 1.3039639526674036, "curve_0": 1.4349392947121593, "curve_1": 1.1746144385023192, "curve_10": 1.2721469446924982, "curve_11": 1.380383542021663, "curve_12": 1.298411709136776, "curve_13": 1.3247583536856977, "curve_14": 1.3219763949562013, "curve_15": 1.3233797130724703, "curve_16": 1.2690942600273654, "curve_17": 1.2414052548805858, "curve_18": 1.3206186773703934, "curve_19": 1.2747008402063222, "curve_2": 1.3646909759263026, "curve_20": 1.2622119288563556, "curve_21": 1.2370426595452586, "curve_22": 1.2318888069548233, "curve_23": 1.227364243785024, "curve_24": 1.4372593856764864, "curve_25": 1.3262153146491704, "curve_26": 1.291754378790194, "curve_27": 1.4087904221389538, "curve_28": 1.3801439109835885, "curve_29": 1.3196428451760245, "curve_3": 1.2955295454377858, "curve_30": 1.3098771435446883, "curve_31": 1.3468376713669756, "curve_32": 1.373230461076622, "curve_33": 1.2883182006287213, "curve_34": 1.255331999849776, "curve_35": 1.2361271821445892, "curve_36": 1.3834202374051483, "curve_37": 1.3123136433077973, "curve_38": 1.2475887103753684, "curve_39": 1.2812093223189058, "curve_4": 1.266569465432436, "curve_40": 1.228944696349457, "curve_41": 1.3086005833714174, "curve_42": 1.2963657607186905, "curve_43": 1.3662659614767356, "curve_44": 1.2383453445485062, "curve_45": 1.2766814204227228, "curve_46": 1.2743396377761913, "curve_47": 1.2210030493828463, "curve_48": 1.214348695680369, "curve_49": 1.2306071075104041, "curve_5": 1.2618337797644676, "curve_6": 1.1868104909038648, "curve_7": 1.2949976386937656, "curve_8": 1.3216688251528448, "curve_9": 1.3381026873376634, "x": 0.8241758241758241 }, { "avg_curve": 1.3107703018698504, "curve_0": 1.4426237092443606, "curve_1": 1.1805650409298756, "curve_10": 1.2787203966586562, "curve_11": 1.3877316995737856, "curve_12": 1.305148193438536, "curve_13": 1.3317389970558347, "curve_14": 1.3288876101281868, "curve_15": 1.33023764980718, "curve_16": 1.2757423482811432, "curve_17": 1.2477674651615471, "curve_18": 1.327523286130278, "curve_19": 1.2813272765602584, "curve_2": 1.3719322863001735, "curve_20": 1.2687325772894915, "curve_21": 1.2433886748565497, "curve_22": 1.2382478526958205, "curve_23": 1.2337071858573285, "curve_24": 1.4449833615896914, "curve_25": 1.3331796409790115, "curve_26": 1.2984257582401943, "curve_27": 1.4163340359703265, "curve_28": 1.3874645985134564, "curve_29": 1.3265746019055151, "curve_3": 1.302256281749155, "curve_30": 1.316751444375516, "curve_31": 1.35373000186089, "curve_32": 1.3804768588314078, "curve_33": 1.2950921195957528, "curve_34": 1.2617247304909855, "curve_35": 1.2424004221017302, "curve_36": 1.3908007286566735, "curve_37": 1.3191910502754398, "curve_38": 1.254005251082139, "curve_39": 1.2878336860335398, "curve_4": 1.2731268879924718, "curve_40": 1.2352715899830136, "curve_41": 1.3154991558304572, "curve_42": 1.3030432765001811, "curve_43": 1.3735067380737958, "curve_44": 1.24472791796488, "curve_45": 1.283364827077614, "curve_46": 1.2809360820619677, "curve_47": 1.227282105092244, "curve_48": 1.2205165329349745, "curve_49": 1.2369341205913458, "curve_5": 1.2683664912093922, "curve_6": 1.1928283203598444, "curve_7": 1.301688876580285, "curve_8": 1.328632071421093, "curve_9": 1.3451800335421047, "x": 0.8296703296703297 }, { "avg_curve": 1.3175669003139454, "curve_0": 1.4502981458947506, "curve_1": 1.1865062127973294, "curve_10": 1.2852840896560667, "curve_11": 1.395070083433152, "curve_12": 1.311874817055979, "curve_13": 1.3387099830196179, "curve_14": 1.3357889804506147, "curve_15": 1.337085506581635, "curve_16": 1.2823810356804333, "curve_17": 1.2541199642287384, "curve_18": 1.3344180619963488, "curve_19": 1.287944080070861, "curve_2": 1.3791638426276622, "curve_20": 1.2752435376415665, "curve_21": 1.249725034978815, "curve_22": 1.2445974251485683, "curve_23": 1.2400407157396771, "curve_24": 1.452697452643981, "curve_25": 1.340134207723268, "curve_26": 1.3050872160122307, "curve_27": 1.4238678506731746, "curve_28": 1.394775411321192, "curve_29": 1.3334966548030598, "curve_3": 1.3089731984052317, "curve_30": 1.3236160898043154, "curve_31": 1.3606117601804573, "curve_32": 1.3877132855270398, "curve_33": 1.3018565905836135, "curve_34": 1.2681074973434678, "curve_35": 1.2486637755203815, "curve_36": 1.398171488613146, "curve_37": 1.3260587472470777, "curve_38": 1.2604121129346646, "curve_39": 1.2944482361052085, "curve_4": 1.2796746409463022, "curve_40": 1.2415889718048587, "curve_41": 1.3223882004504395, "curve_42": 1.3097107713129437, "curve_43": 1.3807377146908426, "curve_44": 1.2511009330269252, "curve_45": 1.2900387599918157, "curve_46": 1.2875227930146103, "curve_47": 1.2335516855098048, "curve_48": 1.22667467551827, "curve_49": 1.2432515787223808, "curve_5": 1.274889568497925, "curve_6": 1.1988366400335817, "curve_7": 1.3083701791570663, "curve_8": 1.3355856785232296, "curve_9": 1.3522477267352548, "x": 0.8351648351648352 }, { "avg_curve": 1.3243538259818473, "curve_0": 1.4579626831366435, "curve_1": 1.1924380309473515, "curve_10": 1.2918381022350849, "curve_11": 1.4023987707732926, "curve_12": 1.3185916591547928, "curve_13": 1.3456713883426985, "curve_14": 1.3426805845789607, "curve_15": 1.3439233643823554, "curve_16": 1.2890103972365496, "curve_17": 1.2604628306499412, "curve_18": 1.341303083524971, "curve_19": 1.294551327978527, "curve_2": 1.386385722090515, "curve_20": 1.2817448879033986, "curve_21": 1.2560518179794118, "curve_22": 1.2509376006120967, "curve_23": 1.246364909184484, "curve_24": 1.4604017363981003, "curve_25": 1.3470790926329086, "curve_26": 1.311738831991825, "curve_27": 1.431391943320202, "curve_28": 1.4020764275617952, "curve_29": 1.3404090811614422, "curve_3": 1.3156803742036254, "curve_30": 1.330471156782626, "curve_31": 1.367483031937651, "curve_32": 1.3949398203487788, "curve_33": 1.3086116887989825, "curve_34": 1.274480381336342, "curve_35": 1.2549173228722874, "curve_36": 1.4055325940018224, "curve_37": 1.3329168116795758, "curve_38": 1.2668093740667317, "curve_39": 1.3010530514936716, "curve_4": 1.2862128020292678, "curve_40": 1.247896918552943, "curve_41": 1.3292677929451833, "curve_42": 1.3163683259759318, "curve_43": 1.3879589689356067, "curve_44": 1.2574644667929704, "curve_45": 1.2967032947904187, "curve_46": 1.2940998488908064, "curve_47": 1.239811867131743, "curve_48": 1.2328232023002097, "curve_49": 1.2495595590537203, "curve_5": 1.2814030890818648, "curve_6": 1.2048355273705222, "curve_7": 1.315041626396011, "curve_8": 1.3425297230879036, "curve_9": 1.359305843461216, "x": 0.8406593406593407 }, { "avg_curve": 1.331131155726781, "curve_0": 1.4656173983176304, "curve_1": 1.1983605710987062, "curve_10": 1.298382511804901, "curve_11": 1.4097178376582664, "curve_12": 1.3252987977521764, "curve_13": 1.3526232886831036, "curve_14": 1.349562500030644, "curve_15": 1.350751303020477, "curve_16": 1.2956305068762441, "curve_17": 1.2667961418483005, "curve_18": 1.3481784281359186, "curve_19": 1.3011490964038588, "curve_2": 1.3935980007596083, "curve_20": 1.2882367049326806, "curve_21": 1.2623691007887285, "curve_22": 1.2572684542765924, "curve_23": 1.2526798408436988, "curve_24": 1.468096289299612, "curve_25": 1.3540143723356948, "curve_26": 1.3183806849037347, "curve_27": 1.4389063898784413, "curve_28": 1.4093677242652434, "curve_29": 1.347311957156969, "curve_3": 1.322377886799104, "curve_30": 1.337316721150088, "curve_31": 1.3743439014965508, "curve_32": 1.4021565413399275, "curve_33": 1.3153574883625758, "curve_34": 1.2808434622171307, "curve_35": 1.261161143452903, "curve_36": 1.412884120447774, "curve_37": 1.339765319910042, "curve_38": 1.2731971114751868, "curve_39": 1.3076482100118187, "curve_4": 1.2927414478481465, "curve_40": 1.2541955058489678, "curve_41": 1.3361380079362324, "curve_42": 1.3230160201327, "curve_43": 1.3951705772983274, "curve_44": 1.2638185952008745, "curve_45": 1.3033585060048223, "curve_46": 1.3006673268110396, "curve_47": 1.2460627253411178, "curve_48": 1.238962190998195, "curve_49": 1.2558581376128168, "curve_5": 1.287907129288553, "curve_6": 1.210825058683734, "curve_7": 1.3217032971071851, "curve_8": 1.3494642806380543, "curve_9": 1.3663544591611272, "x": 0.8461538461538461 }, { "avg_curve": 1.3378989652966007, "curve_0": 1.473262367682929, "curve_1": 1.2042739078698768, "curve_10": 1.3049173946574164, "curve_11": 1.4170273590657088, "curve_12": 1.3319963097408483, "curve_13": 1.3595657586143013, "curve_14": 1.3564348032087745, "curve_15": 1.3575694011563277, "curve_16": 1.3022414374643225, "curve_17": 1.2731199741263182, "curve_18": 1.3550441721360849, "curve_19": 1.3077374603710608, "curve_2": 1.4008007536180447, "curve_20": 1.2947190644776916, "curve_21": 1.2686769592240137, "curve_22": 1.2635900602466068, "curve_23": 1.2589855842918316, "curve_24": 1.4757811867079245, "curve_25": 1.3609401223595914, "curve_26": 1.3250128523362399, "curve_27": 1.4464112652321868, "curve_28": 1.4166493773598847, "curve_29": 1.354205357872738, "curve_3": 1.32906581272748, "curve_30": 1.3441528576576198, "curve_31": 1.3811944519995127, "curve_32": 1.4093635254256038, "curve_33": 1.322094062331772, "curve_34": 1.2871968185765676, "curve_35": 1.2673953154061102, "curve_36": 1.4202261424967713, "curve_37": 1.34660434717918, "curve_38": 1.2795754010437532, "curve_39": 1.3142337883496633, "curve_4": 1.2992606539047546, "curve_40": 1.2604848082217615, "curve_41": 1.3429989189755989, "curve_42": 1.3296539322760146, "curve_43": 1.4023726151749927, "curve_44": 1.2701633930914853, "curve_45": 1.310004467095545, "curve_46": 1.3072253027833525, "curve_47": 1.2523043344311497, "curve_48": 1.2450917182012877, "curve_49": 1.2621473893278823, "curve_5": 1.2944017643443895, "curve_6": 1.2168053091777042, "curve_7": 1.3283552689631302, "curve_8": 1.3563894256139377, "curve_9": 1.373393648196114, "x": 0.8516483516483516 }, { "avg_curve": 1.3446573293567123, "curve_0": 1.4808976663981004, "curve_1": 1.2101781148020432, "curve_10": 1.3114428259904691, "curve_11": 1.424327408909252, "curve_12": 1.3386842709123976, "curve_13": 1.3664988716476416, "curve_14": 1.3632975694252505, "curve_15": 1.3643777363233327, "curve_16": 1.3088432608256493, "curve_17": 1.279434402689195, "curve_18": 1.3619003907425542, "curve_19": 1.3143164938306977, "curve_2": 1.4079940545836191, "curve_20": 1.3011920412003577, "curve_21": 1.2749754680125545, "curve_22": 1.2699024915636263, "curve_23": 1.2652822120483491, "curve_24": 1.4834565029166982, "curve_25": 1.3678564171555407, "curve_26": 1.3316354107647714, "curve_27": 1.453906643205309, "curve_28": 1.4239214616951916, "curve_29": 1.3610893573212737, "curve_3": 1.3357442274288414, "curve_30": 1.3509796399899667, "curve_31": 1.3880347653926224, "curve_32": 1.4165608484358687, "curve_33": 1.3288214827226248, "curve_34": 1.2935405278727277, "curve_35": 1.2736199157482566, "curve_36": 1.4275587336375453, "curve_37": 1.3534339676540006, "curve_38": 1.2859443175661953, "curve_39": 1.3208098620976818, "curve_4": 1.3057704946189066, "curve_40": 1.2667648991300167, "curve_41": 1.3498505985678892, "curve_42": 1.3362821397717948, "curve_43": 1.4095651568899472, "curve_44": 1.2764989342314566, "curve_45": 1.316641250474417, "curve_46": 1.3137738517264614, "curve_47": 1.2585367676279011, "curve_48": 1.2512118593937602, "curve_49": 1.2684273880507668, "curve_5": 1.3008870683977065, "curve_6": 1.2227763529714881, "curve_7": 1.3349976185225083, "curve_8": 1.3633052313955274, "curve_9": 1.3804234838696123, "x": 0.8571428571428571 }, { "avg_curve": 1.351406321512377, "curve_0": 1.4885233685711576, "curve_1": 1.2160732643814374, "curve_10": 1.3179588799304318, "curve_11": 1.4316180600603463, "curve_12": 1.3453627559800065, "curve_13": 1.37342270025419, "curve_14": 1.3701508729232348, "curve_15": 1.371176384951275, "curve_16": 1.3154360477665548, "curve_17": 1.2857395016675397, "curve_18": 1.3687471581050474, "curve_19": 1.3208862696818386, "curve_2": 1.4151779765306818, "curve_20": 1.3076557086986937, "curve_21": 1.2812647008142277, "curve_22": 1.2762058202280373, "curve_23": 1.271569795599466, "curve_24": 1.4911223111756469, "curve_25": 1.3747633301196218, "curve_26": 1.3382484355749003, "curve_27": 1.4613925965829682, "curve_28": 1.4311840510639064, "curve_29": 1.3679640284665533, "curve_3": 1.34241320527016, "curve_30": 1.3577971407876397, "curve_31": 1.3948649224504608, "curve_32": 1.4237485851282299, "curve_33": 1.3355398205312807, "curve_34": 1.2998746664545, "curve_35": 1.2798350203915445, "curve_36": 1.4348819663234536, "curve_37": 1.3602542544499265, "curve_38": 1.292303934768855, "curve_39": 1.3273765057695186, "curve_4": 1.3122710433507525, "curve_40": 1.2730358509844135, "curve_41": 1.3566931181918354, "curve_42": 1.3429007188824036, "curve_43": 1.4167482757178915, "curve_44": 1.2828252913354488, "curve_45": 1.323268927526173, "curve_46": 1.3203130474922475, "curve_47": 1.2647600971123438, "curve_48": 1.257322688978006, "curve_49": 1.2746982065792156, "curve_5": 1.307363114541028, "curve_6": 1.2287382631212267, "curve_7": 1.34163042125311, "curve_8": 1.3702117703243135, "curve_9": 1.387444038449093, "x": 0.8626373626373627 }, { "avg_curve": 1.3581460143304163, "curve_0": 1.496139547274081, "curve_1": 1.2219594280610941, "curve_10": 1.3244656295542003, "curve_11": 1.4388993843694928, "curve_12": 1.35203183860056, "curve_13": 1.3803373158859773, "curve_14": 1.3769947868990269, "curve_15": 1.3779654223889293, "curve_16": 1.3220198680956723, "curve_17": 1.2920353441394625, "curve_18": 1.3755845473277664, "curve_19": 1.3274468597936053, "curve_2": 1.422352591311417, "curve_20": 1.3141101395286365, "curve_21": 1.2875447302434453, "curve_22": 1.282500117220496, "curve_23": 1.2778484054193486, "curve_24": 1.4987786837117605, "curve_25": 1.3816609336146148, "curve_26": 1.3448520010847058, "curve_27": 1.4688691971327492, "curve_28": 1.4384372182235898, "curve_29": 1.3748294432454404, "curve_3": 1.3490728195672874, "curve_30": 1.364605431668267, "curve_31": 1.4016850028002026, "curve_32": 1.4309268092095415, "curve_33": 1.342249145754824, "curve_34": 1.3061993095844318, "curve_35": 1.2860407041667865, "curve_36": 1.442195911993564, "curve_37": 1.3670652796522986, "curve_38": 1.298654325332584, "curve_39": 1.3339337928240844, "curve_4": 1.3187623724225155, "curve_40": 1.2792977351691457, "curve_41": 1.3635265483212458, "curve_42": 1.3495097447893127, "curve_43": 1.423922043905293, "curve_44": 1.289142536087732, "curve_45": 1.3298875686294651, "curve_46": 1.326842962887641, "curve_47": 1.2709743940418305, "curve_48": 1.263424280296834, "curve_49": 1.2809599166785295, "curve_5": 1.3138299748327267, "curve_6": 1.2346911116420567, "curve_7": 1.348253751554242, "curve_8": 1.3771091137245153, "curve_9": 1.3944553831872026, "x": 0.8681318681318682 }, { "avg_curve": 1.3648764793603378, "curve_0": 1.5037462745637646, "curve_1": 1.2278366762820205, "curve_10": 1.3309631469105976, "curve_11": 1.4461714526869172, "curve_12": 1.3586915913961675, "curve_13": 1.3872427889966836, "curve_14": 1.3838293835233524, "curve_15": 1.3847449229260924, "curve_16": 1.3285947906442162, "curve_17": 1.2983220021520847, "curve_18": 1.3824126304906543, "curve_19": 1.3339983350261477, "curve_2": 1.4295179697765545, "curve_20": 1.3205554052253001, "curve_21": 1.29381562789051, "curve_22": 1.2887854525227298, "curve_23": 1.2841181109907542, "curve_24": 1.5064256917499628, "curve_25": 1.388549298990994, "curve_26": 1.35144618056655, "curve_27": 1.476336515625233, "curve_28": 1.4456810349175997, "curve_29": 1.38168567258855, "curve_3": 1.3557231426063676, "curve_30": 1.3714045832473762, "curve_31": 1.4084950849450681, "curve_32": 1.4380955933573247, "curve_33": 1.3489495274115662, "curve_34": 1.3125145314609576, "curve_35": 1.2922370408455517, "curve_36": 1.4495006410931812, "curve_37": 1.3738671143373136, "curve_38": 1.304995560914087, "curve_39": 1.340481795687062, "curve_4": 1.3252445531396484, "curve_40": 1.2855506220628738, "curve_41": 1.3703509584454028, "curve_42": 1.3561092916151634, "curve_43": 1.431086532691228, "curve_44": 1.295450739163212, "curve_45": 1.3364972431773172, "curve_46": 1.3333636696959237, "curve_47": 1.2771797285709954, "curve_48": 1.2695167056551635, "curve_49": 1.2872125891026434, "curve_5": 1.3202877203181036, "curve_6": 1.240634969529437, "curve_7": 1.3548676827785178, "curve_8": 1.3839973319237302, "curve_9": 1.4014575883423452, "x": 0.8736263736263736 }, { "avg_curve": 1.3715977871549019, "curve_0": 1.5113436215024088, "curve_1": 1.2337050784937982, "curve_10": 1.337451503041206, "curve_11": 1.453434334882693, "curve_12": 1.3653420859751109, "curve_13": 1.394139189061775, "curve_14": 1.3906547339620894, "curve_15": 1.3915149598150292, "curve_16": 1.3351608832857256, "curve_17": 1.3045995467424685, "curve_18": 1.3892314786700957, "curve_19": 1.3405407652510588, "curve_2": 1.4366741817955355, "curve_20": 1.3269915763236626, "curve_21": 1.3000774643424047, "curve_22": 1.2950618951377857, "curve_23": 1.2903789808251211, "curve_24": 1.514063405533225, "curve_25": 1.3954284966073605, "curve_26": 1.3580310462682692, "curve_27": 1.4837946218540277, "curve_28": 1.4529155718955145, "curve_29": 1.3885327864405588, "curve_3": 1.3623642456646798, "curve_30": 1.3781946651586279, "curve_31": 1.4152952462871535, "curve_32": 1.4452550092405203, "curve_33": 1.3556410335607976, "curve_34": 1.318820405240039, "curve_35": 1.298424103161724, "curve_36": 1.4567962230938294, "curve_37": 1.3806598285924048, "curve_38": 1.3113277121667013, "curve_39": 1.3470205857718418, "curve_4": 1.3317176558114299, "curve_40": 1.2917945810591183, "curve_41": 1.3771664170889157, "curve_42": 1.3626994324452386, "curve_43": 1.438241812327671, "curve_44": 1.3017499702478972, "curve_45": 1.343098019597035, "curve_46": 1.3398752386974626, "curve_47": 1.2833761698720951, "curve_48": 1.2756000363411437, "curve_49": 1.293456293614647, "curve_5": 1.3267364210499106, "curve_6": 1.2465699067799016, "curve_7": 1.3614722872530682, "curve_8": 1.3908764942730372, "curve_9": 1.4084507231987158, "x": 0.8791208791208791 }, { "avg_curve": 1.378310007290145, "curve_0": 1.5189316581773789, "curve_1": 1.2395647031746444, "curve_10": 1.343930768000653, "curve_11": 1.4606880998663394, "curve_12": 1.3719833929522436, "curve_13": 1.4010265845981102, "curve_14": 1.3974709083964463, "curve_15": 1.398275605291352, "curve_16": 1.341718212955287, "curve_17": 1.3108680479580002, "curve_18": 1.3960411619590694, "curve_19": 1.347074219371257, "curve_2": 1.4438212962761465, "curve_20": 1.3334187223787082, "curve_21": 1.3063303092030323, "curve_22": 1.3013295131097433, "curve_23": 1.296631082482128, "curve_24": 1.5216918943421531, "curve_25": 1.4022985958503418, "curve_26": 1.3646066694338108, "curve_27": 1.4912435846552734, "curve_28": 1.4601408989330205, "curve_29": 1.395370853779984, "curve_3": 1.3689961990309312, "curve_30": 1.384975746073513, "curve_31": 1.4220855631496552, "curve_32": 1.4524051275396979, "curve_33": 1.36232373132202, "curve_34": 1.3251170030562285, "curve_35": 1.3046019628324863, "curve_36": 1.4640827265127112, "curve_37": 1.387443491536087, "curve_38": 1.3176508487606227, "curve_39": 1.3535502334999046, "curve_4": 1.3381817497710162, "curve_40": 1.298029680586118, "curve_41": 1.3839729918310575, "curve_42": 1.3692802393483696, "curve_43": 1.4453879520992534, "curve_44": 1.308040298058825, "curve_45": 1.3496899653695957, "curve_46": 1.3463777396899008, "curve_47": 1.2895637861548161, "curve_48": 1.281674342646711, "curve_49": 1.2996910990067627, "curve_5": 1.3331761461083278, "curve_6": 1.2524959924112675, "curve_7": 1.368067636300195, "curve_8": 1.3977466691665692, "curve_9": 1.4154348560858103, "x": 0.8846153846153846 }, { "avg_curve": 1.3850132083848823, "curve_0": 1.526510453720546, "curve_1": 1.2454156178509406, "curve_10": 1.3504010108763624, "curve_11": 1.4679328156059082, "curve_12": 1.378615581968852, "curve_13": 1.4079050431830369, "curve_14": 1.4042779760426145, "curve_15": 1.4050269305943537, "curve_16": 1.3482668456682532, "curve_17": 1.3171275748762348, "curve_18": 1.4028417494867733, "curve_19": 1.3535987653403427, "curve_2": 1.4509593811836432, "curve_20": 1.3398369119850413, "curve_21": 1.312574231112925, "curve_22": 1.3075883735429124, "curve_23": 1.3028744825887435, "curve_24": 1.5293112265140656, "curve_25": 1.4091596651539688, "curve_26": 1.3711731203233266, "curve_27": 1.4986834719266402, "curve_28": 1.46735708485128, "curve_29": 1.4021999426384415, "curve_3": 1.3756190720250199, "curve_30": 1.3917478937205394, "curve_31": 1.428866110798513, "curve_32": 1.4595460179667374, "curve_33": 1.368997686893677, "curve_34": 1.3314043960431834, "curve_35": 1.310770690578756, "curve_36": 1.4713602189316608, "curve_37": 1.3942181713372819, "curve_38": 1.3239650394026052, "curve_39": 1.3600708083206698, "curve_4": 1.344636903394967, "curve_40": 1.3042559881261642, "curve_41": 1.3907707493245907, "curve_42": 1.3758517833972945, "curve_43": 1.452525020342505, "curve_44": 1.3143217903634667, "curve_45": 1.356273147048526, "curve_46": 1.3528712415078152, "curve_47": 1.2957426446855613, "curve_48": 1.287739693887609, "curve_49": 1.3059170731197989, "curve_5": 1.3396069636204204, "curve_6": 1.2584132944823088, "curve_7": 1.374653800257479, "curve_8": 1.404607924060578, "curve_9": 1.4224100543974263, "x": 0.8901098901098901 }, { "avg_curve": 1.3917074581196989, "curve_0": 1.534080076327129, "curve_1": 1.2512578891162545, "curve_10": 1.356862299807794, "curve_11": 1.4751685491465736, "curve_12": 1.3852387217120015, "curve_13": 1.4147746314729894, "curve_14": 1.4110760051709097, "curve_15": 1.411769005986811, "curve_16": 1.35480684653848, "curve_17": 1.3233781956242228, "curve_18": 1.4096333094377427, "curve_19": 1.3601144701814547, "curve_2": 1.4580885035593787, "curve_20": 1.3462462127959909, "curve_21": 1.3188092977684374, "curve_22": 1.3138385426205292, "curve_23": 1.3091092468577743, "curve_24": 1.5369214694615756, "curve_25": 1.416011772018549, "curve_26": 1.3777304682327427, "curve_27": 1.506114350645832, "curve_28": 1.4745641975357962, "curve_29": 1.4090201201194084, "curve_3": 1.382232933017282, "curve_30": 1.3985111749039183, "curve_31": 1.4356369634634873, "curve_32": 1.4666777492839995, "curve_33": 1.375662965571398, "curve_34": 1.3376826543536413, "curve_35": 1.3169303561450845, "curve_36": 1.4786287670156042, "curve_37": 1.4009839352341436, "curve_38": 1.3302703518551449, "curve_39": 1.366582378730829, "curve_4": 1.3510831841222648, "curve_40": 1.310473570234433, "curve_41": 1.397559755314109, "curve_42": 1.3824141346884848, "curve_43": 1.4596530844645978, "curve_44": 1.3205945139986262, "curve_45": 1.362847630278294, "curve_46": 1.3593558120418652, "curve_47": 1.3019128118062315, "curve_48": 1.293796158422882, "curve_49": 1.3121342828620952, "curve_5": 1.3460289407790864, "curve_6": 1.2643218801119163, "curve_7": 1.3812308484973688, "curve_8": 1.4114603254919997, "curve_9": 1.4293763846101684, "x": 0.8956043956043956 }, { "avg_curve": 1.3983928232554523, "curve_0": 1.5416405932740478, "curve_1": 1.257091582649864, "curve_10": 1.36331470200518, "curve_11": 1.4823953666287464, "curve_12": 1.3918528799333807, "curve_13": 1.4216354152216086, "curve_14": 1.417865063124416, "curve_15": 1.418501900774275, "curve_16": 1.3613382797960851, "curve_17": 1.329619977397336, "curve_18": 1.4164159090704693, "curve_19": 1.3666214000056358, "curve_2": 1.4652087295389482, "curve_20": 1.3526466915422168, "curve_21": 1.3250355759404437, "curve_22": 1.3200800856229684, "curve_23": 1.315335440105938, "curve_24": 1.5445226896906978, "curve_25": 1.4228549830290536, "curve_26": 1.384278781512822, "curve_27": 1.513536286888618, "curve_28": 1.4817623039547936, "curve_29": 1.4158314524164948, "curve_3": 1.3888378494472409, "curve_30": 1.4052656555217662, "curve_31": 1.4423981943586874, "curve_32": 1.4738003893229996, "curve_33": 1.3823196317657682, "curve_34": 1.343951847178878, "curve_35": 1.3230810283190388, "curve_36": 1.4858884365305445, "curve_37": 1.407740849552393, "curve_38": 1.3365668529551655, "curve_39": 1.3730850122931741, "curve_4": 1.3575206584728388, "curve_40": 1.3166824925573273, "curve_41": 1.404340074653903, "curve_42": 1.388967362361459, "curve_43": 1.4667722109616037, "curve_44": 1.3268585348888464, "curve_45": 1.369413479812221, "curve_46": 1.3658315182574425, "curve_47": 1.3080743529525236, "curve_48": 1.2998438036738658, "curve_49": 1.318342794227979, "curve_5": 1.3524421438615164, "curve_6": 1.27022181549776, "curve_7": 1.3877988494462574, "curve_8": 1.4183039390965442, "curve_9": 1.4363339123014778, "x": 0.9010989010989011 }, { "avg_curve": 1.4050693696513004, "curve_0": 1.5491920709378124, "curve_1": 1.2629167632348068, "curve_10": 1.3697582837677844, "curve_11": 1.4896133333057222, "curve_12": 1.3984581234676627, "curve_13": 1.4284874592973962, "curve_14": 1.4246452163371548, "curve_15": 1.425225683323865, "curve_16": 1.3678612088047573, "curve_17": 1.3358529864776105, "curve_18": 1.4231896147355465, "curve_19": 1.3731196200297286, "curve_2": 1.4723201243698736, "curve_20": 1.3590384140498406, "curve_21": 1.3312531314925529, "curve_22": 1.3263130669454872, "curve_23": 1.321553126271468, "curve_24": 1.5521149528184917, "curve_25": 1.4296893638730326, "curve_26": 1.390818127587738, "curve_27": 1.5209493458463974, "curve_28": 1.4889514701771276, "curve_29": 1.422634004831254, "curve_3": 1.3954338878418746, "curve_30": 1.4120114005838436, "curve_31": 1.4491498757025751, "curve_32": 1.480914005002606, "curve_33": 1.3889677490196488, "curve_34": 1.3502120427676627, "curve_35": 1.3292227749500858, "curve_36": 1.4931392923610882, "curve_37": 1.4144889797231877, "curve_38": 1.3428546086322257, "curve_39": 1.379578775654945, "curve_4": 1.3639493920656145, "curve_40": 1.3228828198503493, "curve_41": 1.4111117713253682, "curve_42": 1.395511534617598, "curve_43": 1.4738824654362888, "curve_44": 1.3331139180643465, "curve_45": 1.3759707595299384, "curve_46": 1.3722984262128453, "curve_47": 1.3142273326717546, "curve_48": 1.305882696142684, "curve_49": 1.324542672315744, "curve_5": 1.358846638247175, "curve_6": 1.2761131659344702, "curve_7": 1.394357870603072, "curve_8": 1.4251388296263197, "curve_9": 1.4432827021672014, "x": 0.9065934065934066 }, { "avg_curve": 1.4117371622822665, "curve_0": 1.5567345748119528, "curve_1": 1.2687334947754612, "curve_10": 1.3761931105016931, "curve_11": 1.4968225135608813, "curve_12": 1.4050545182503957, "curve_13": 1.4353308277009196, "curve_14": 1.431416530351787, "curve_15": 1.4319404210825837, "curve_16": 1.3743756960786198, "curve_17": 1.3420772882516148, "curve_18": 1.4299544918933491, "curve_19": 1.3796091945938131, "curve_2": 1.4794227524288348, "curve_20": 1.3654214452581104, "curve_21": 1.3374620293988553, "curve_22": 1.3325375501155134, "curve_23": 1.3277623684312676, "curve_24": 1.5596983235902553, "curve_25": 1.4365149793580714, "curve_26": 1.3973485729731716, "curve_27": 1.528353591843325, "curve_28": 1.4961317613897354, "curve_29": 1.4294278417905317, "curve_3": 1.4020211138334164, "curve_30": 1.418748474228837, "curve_31": 1.4558920787374503, "curve_32": 1.4880186623467717, "curve_33": 1.3956073800250484, "curve_34": 1.3564633084447273, "curve_35": 1.3353556629679884, "curve_36": 1.5003813985275254, "curve_37": 1.42122839030053, "curve_38": 1.3491336839262569, "curve_39": 1.3860637345657065, "curve_4": 1.3703694496361019, "curve_40": 1.3290746159955122, "curve_41": 1.417874908453971, "curve_42": 1.4020467187384804, "curve_43": 1.4809839126154507, "curve_44": 1.3393607276784962, "curve_45": 1.3825195324543944, "curve_46": 1.3787566010769827, "curve_47": 1.3203718146402303, "curve_48": 1.3119129014302728, "curve_49": 1.33073398134517, "curve_5": 1.3652424884353265, "curve_6": 1.2819959958313498, "curve_7": 1.400907978557386, "curve_8": 1.4319650609670078, "curve_9": 1.4502228180387102, "x": 0.9120879120879121 }, { "avg_curve": 1.4183962652563613, "curve_0": 1.5642681695240113, "curve_1": 1.2745418403146835, "curve_10": 1.3826192467371499, "curve_11": 1.5040229709244533, "curve_12": 1.411642129335438, "curve_13": 1.442165583581579, "curve_14": 1.438179069836867, "curve_15": 1.438646180595163, "curve_16": 1.380881803298668, "curve_17": 1.348292947227867, "curve_18": 1.4367106051312646, "curve_19": 1.3860901871782005, "curve_2": 1.486516677238465, "curve_20": 1.3717958492366156, "curve_21": 1.3436623337612197, "curve_22": 1.3387535978094962, "curve_23": 1.3339632288176306, "curve_24": 1.5672728658962862, "curve_25": 1.443331893428807, "curve_26": 1.4038701832939475, "curve_27": 1.535749088352998, "curve_28": 1.5033032419146486, "curve_29": 1.4362130268633806, "curve_3": 1.408599592176702, "curve_30": 1.425476939741206, "curve_31": 1.4626248737484444, "curve_32": 1.4951144265018195, "curve_33": 1.4022385866395726, "curve_34": 1.362705710628764, "curve_35": 1.3414797584007343, "curve_36": 1.5076148182024762, "curve_37": 1.4279591449782372, "curve_38": 1.3554041430048516, "curve_39": 1.39253995389477, "curve_4": 1.376780895053534, "curve_40": 1.3352579440183117, "curve_41": 1.4246295483257811, "curve_42": 1.4085729811037497, "curve_43": 1.4880766163668195, "curve_44": 1.345599027024846, "curve_45": 1.389059860768433, "curve_46": 1.3852061071466333, "curve_47": 1.3265078616801724, "curve_48": 1.3179344842539449, "curve_49": 1.3369167846745953, "curve_5": 1.3716297580621097, "curve_6": 1.2878703687296362, "curve_7": 1.4074492390070694, "curve_8": 1.4387826961546026, "curve_9": 1.4571543228995854, "x": 0.9175824175824175 }, { "avg_curve": 1.4250467418312702, "curve_0": 1.5717929188521074, "curve_1": 1.2803418620505083, "curve_10": 1.3890367561454573, "curve_11": 1.5112147680898609, "curve_12": 1.4182210209119543, "curve_13": 1.4489917892539557, "curve_14": 1.4449328986036616, "curve_15": 1.445343027521464, "curve_16": 1.3873795913287912, "curve_17": 1.3545000270538101, "curve_18": 1.4434580181804901, "curve_19": 1.392562660419999, "curve_2": 1.4936019614837246, "curve_20": 1.3781616892020707, "curve_21": 1.3498541078261515, "curve_22": 1.3449612718693285, "curve_23": 1.3401557688345354, "curve_24": 1.5748386427882242, "curve_25": 1.4501401691835136, "curve_26": 1.4103830233012251, "curve_27": 1.5431358980147254, "curve_28": 1.5104659752255754, "curve_29": 1.442989622777544, "curve_3": 1.41516938676608, "curve_30": 1.432196859567603, "curve_31": 1.46934833008203, "curve_32": 1.5022013617532892, "curve_33": 1.4088614299024544, "curve_34": 1.3689393148499687, "curve_35": 1.3475951263920092, "curve_36": 1.5148396137271216, "curve_37": 1.4346813066064823, "curve_38": 1.3616660491801136, "curve_39": 1.3990074976481768, "curve_4": 1.3831837913375737, "curve_40": 1.3414328661042656, "curve_41": 1.4313757524035924, "curve_42": 1.4150903872085294, "curve_43": 1.495160639715531, "curve_44": 1.351828878553728, "curve_45": 1.3955918058309522, "curve_46": 1.3916470078632643, "curve_47": 1.3326355357762154, "curve_48": 1.3239475084645078, "curve_49": 1.3430911448175578, "curve_5": 1.3780085099171875, "curve_6": 1.2937363473193255, "curve_7": 1.4139817167754962, "curve_8": 1.445591797391731, "curve_9": 1.4640772789018859, "x": 0.9230769230769231 }, { "avg_curve": 1.431688654430624, "curve_0": 1.579308885741088, "curve_1": 1.2861336213524253, "curve_10": 1.395445701555449, "curve_11": 1.5183979669296543, "curve_12": 1.4247912563209848, "curve_13": 1.4558095062137453, "curve_14": 1.4516780796225468, "curve_15": 1.4520310266534346, "curve_16": 1.3938691202313938, "curve_17": 1.3606985905323572, "curve_18": 1.4501967939324083, "curve_19": 1.3990266761292622, "curve_2": 1.5006786670278653, "curve_20": 1.384519027534671, "curve_21": 1.3560374140012257, "curve_22": 1.351160633318358, "curve_23": 1.346340049073533, "curve_24": 1.5823957164949796, "curve_25": 1.4569398688902722, "curve_26": 1.4168871568892591, "curve_27": 1.5505140826493937, "curve_28": 1.5176200239640691, "curve_29": 1.44975769143553, "curve_3": 1.421730560651896, "curve_30": 1.438908295332883, "curve_31": 1.4760625161640666, "curve_32": 1.5092795315423635, "curve_33": 1.4154759700501867, "curve_34": 1.3751641857671388, "curve_35": 1.3537018312182303, "curve_36": 1.522055846627026, "curve_37": 1.4413949372079207, "curve_38": 1.3679194649250839, "curve_39": 1.4054664289852508, "curve_4": 1.389578200674603, "curve_40": 1.34759944361504, "curve_41": 1.4381135813426342, "curve_42": 1.4215990016804014, "curve_43": 1.5022360448601906, "curve_44": 1.3580503438884388, "curve_45": 1.4021154281926578, "curve_46": 1.3980793658294308, "curve_47": 1.3387548980914905, "curve_48": 1.32995203706295, "curve_49": 1.3492571234590187, "curve_5": 1.3843788059599718, "curve_6": 1.299593993455571, "curve_7": 1.420505475828316, "curve_8": 1.4523924260635592, "curve_9": 1.4709917473820069, "x": 0.9285714285714286 }, { "avg_curve": 1.438322064659862, "curve_0": 1.586816132318278, "curve_1": 1.2919171787772536, "curve_10": 1.401846144969556, "curve_11": 1.525572628511051, "curve_12": 1.4313528980716004, "curve_13": 1.4626187951533018, "curve_14": 1.4584146750389961, "curve_15": 1.4587102419316489, "curve_16": 1.4003504492826269, "curve_17": 1.3668886996380283, "curve_18": 1.4569269944545549, "curve_19": 1.405482295304738, "curve_2": 1.5077468549279969, "curve_20": 1.390867925794046, "curve_21": 1.3622123138711122, "curve_22": 1.3573517423769985, "curve_23": 1.3525161293292365, "curve_24": 1.5899441484382741, "curve_25": 1.4637310540027406, "curve_26": 1.423382647111738, "curve_27": 1.5578837032749353, "curve_28": 1.524765449955295, "curve_29": 1.4565172939302842, "curve_3": 1.4282831760565682, "curve_30": 1.4456113078557153, "curve_31": 1.482767499517393, "curve_32": 1.516348998481888, "curve_33": 1.4220822665317634, "curve_34": 1.381380387184348, "curve_35": 1.3597999363051512, "curve_36": 1.5292635776275703, "curve_37": 1.4481000979934144, "curve_38": 1.374164451889758, "curve_39": 1.4119168102347424, "curve_4": 1.395964184433601, "curve_40": 1.3537577371041696, "curve_41": 1.4448430950058988, "curve_42": 1.4280988882959607, "curve_43": 1.5093028931885355, "curve_44": 1.3642634838410175, "curve_45": 1.408630787611426, "curve_46": 1.4045032428247628, "curve_47": 1.344866008983307, "curve_48": 1.3359481322167117, "curve_49": 1.3554147814711786, "curve_5": 1.390740707335449, "curve_6": 1.3054433681746718, "curve_7": 1.4270205792898087, "curve_8": 1.4591846427533095, "curve_9": 1.4778977888761446, "x": 0.9340659340659341 }, { "avg_curve": 1.4449470333217052, "curve_0": 1.5943147199088437, "curve_1": 1.2976925940846151, "curve_10": 1.4082381475794685, "curve_11": 1.5327388131110893, "curve_12": 1.4379060078566566, "curve_13": 1.4694197159767899, "curve_14": 1.4651427461891726, "curve_15": 1.4653807364614317, "curve_16": 1.4068236369872429, "curve_17": 1.3730704155326803, "curve_18": 1.4636486810061897, "curve_19": 1.411929578149222, "curve_2": 1.5148065854502701, "curve_20": 1.3972084447348116, "curve_21": 1.3683788682131977, "curve_22": 1.3635346584779522, "curve_23": 1.3586840686144257, "curve_24": 1.597483999247794, "curve_25": 1.470513785175529, "curve_26": 1.4298695561977188, "curve_27": 1.565244820121418, "curve_28": 1.531902314223407, "curve_29": 1.4632684905604743, "curve_3": 1.4348272943902607, "curve_30": 1.4523059571638066, "curve_31": 1.489463346778984, "curve_32": 1.5234098243719916, "curve_33": 1.428680378023544, "curve_34": 1.3875879820671997, "curve_35": 1.3658895042440564, "curve_36": 1.5364628666690003, "curve_37": 1.4547968493773689, "curve_38": 1.3804010709167025, "curve_39": 1.418358702910568, "curve_4": 1.4023418031816324, "curve_40": 1.3599078063323904, "curve_41": 1.4515643524790827, "curve_42": 1.4345901099969545, "curve_43": 1.5163612452927115, "curve_44": 1.370468358427632, "curve_45": 1.4151379430672841, "curve_46": 1.4109186998215593, "curve_47": 1.3509689280184438, "curve_48": 1.3419358552755458, "curve_49": 1.3615641789289015, "curve_5": 1.3970942743896082, "curve_6": 1.311284531709664, "curve_7": 1.433527089458833, "curve_8": 1.465968507257388, "curve_9": 1.4847954631353797, "x": 0.9395604395604396 }, { "avg_curve": 1.4515636204312432, "curve_0": 1.6018047090507752, "curve_1": 1.3034599262520281, "curve_10": 1.4146217697814139, "curve_11": 1.5398965802314135, "curve_12": 1.4444506465681604, "curve_13": 1.4762123278149697, "curve_14": 1.4718623536151374, "curve_15": 1.472042572528588, "curve_16": 1.4132887410930832, "curve_17": 1.379243798580851, "curve_18": 1.4703619140534863, "curve_19": 1.4183685840845368, "curve_2": 1.5218579180846858, "curve_20": 1.403540644321742, "curve_21": 1.374537137012826, "curve_22": 1.3697094402810563, "curve_23": 1.3648439251747804, "curve_24": 1.6050153287759732, "curve_25": 1.4772881222791996, "curve_26": 1.43634794556717, "curve_27": 1.5725974926457633, "curve_28": 1.5390306770065458, "curve_29": 1.4700113408453976, "curve_3": 1.441362976266173, "curve_30": 1.4589923025087503, "curve_31": 1.49615012371668, "curve_32": 1.5304620702153229, "curve_33": 1.4352703624437515, "curve_34": 1.393787032558684, "curve_35": 1.3719705968075508, "curve_36": 1.543653772921109, "curve_37": 1.4614852509926881, "curve_38": 1.3866293820562865, "curve_39": 1.4247921677271644, "curve_4": 1.4087111166989508, "curve_40": 1.3660497102825913, "curve_41": 1.4582774120851645, "curve_42": 1.4410727289060299, "curve_43": 1.523411160984174, "curve_44": 1.3766650268835854, "curve_45": 1.4216369527770216, "curve_46": 1.4173257969999926, "curve_47": 1.357063713988062, "curve_48": 1.347915266786992, "curve_49": 1.3677053751247576, "curve_5": 1.4034395666844923, "curve_6": 1.3171175435055233, "curve_7": 1.44002506782438, "curve_8": 1.472744078600143, "curve_9": 1.4916848291403872, "x": 0.945054945054945 }, { "avg_curve": 1.4581718852306575, "curve_0": 1.6092861595095085, "curve_1": 1.3092192334896262, "curve_10": 1.4209970711910593, "curve_11": 1.5470459886126946, "curve_12": 1.4509868743122576, "curve_13": 1.4829966890396165, "curve_14": 1.4785735570796832, "curve_15": 1.4786958116147446, "curve_16": 1.4197458186052132, "curve_17": 1.3854089083647265, "curve_18": 1.477066753284347, "curve_19": 1.4247993717661402, "curve_2": 1.5289009115595429, "curve_20": 1.409864583744567, "curve_21": 1.3806871794781606, "curve_22": 1.375876145687767, "curve_23": 1.3709957565032496, "curve_24": 1.6125381961124154, "curve_25": 1.4840541244148981, "curve_26": 1.4428178758461288, "curve_27": 1.5799417795461046, "curve_28": 1.5461505977714725, "curve_29": 1.4767459035395258, "curve_3": 1.4478902815154528, "curve_30": 1.4656704023805132, "curve_31": 1.5028278952455094, "curve_32": 1.5375057962319179, "curve_33": 1.441852276966618, "curve_34": 1.3999775999946407, "curve_35": 1.3780432749649634, "curve_36": 1.5508363547975583, "curve_37": 1.4681653617053683, "curve_38": 1.3928494445815414, "curve_39": 1.4312172646144619, "curve_4": 1.4150721839937312, "curve_40": 1.3721835071743993, "curve_41": 1.464982331398626, "curve_42": 1.4475468063420864, "curve_43": 1.5304526993082228, "curve_44": 1.3828535476779538, "curve_45": 1.4281278742084451, "curve_46": 1.4237245937629437, "curve_47": 1.3631504249222526, "curve_48": 1.353886426511463, "curve_49": 1.3738384285836969, "curve_5": 1.409776643012876, "curve_6": 1.3229424622339947, "curve_7": 1.4465145750807455, "curve_8": 1.479511415048261, "curve_9": 1.4985659451157902, "x": 0.9505494505494505 }, { "avg_curve": 1.46477188620358, "curve_0": 1.616759130292189, "curve_1": 1.3149705732545194, "curve_10": 1.4273641106580512, "curve_11": 1.5541870962487034, "curve_12": 1.4575147504238573, "curve_13": 1.4897728572775923, "curve_14": 1.485276415580811, "curve_15": 1.4853405144123204, "curve_16": 1.4261949257997106, "curve_17": 1.39156580369874, "curve_18": 1.4837632576228583, "curve_19": 1.4312219990973807, "curve_2": 1.5359356238555344, "curve_20": 1.4161803214324087, "curve_21": 1.3868290540546866, "curve_22": 1.3820348318552869, "curve_23": 1.3771396193540733, "curve_24": 1.6200526595979685, "curve_25": 1.49081184992863, "curve_26": 1.4492794068814923, "curve_27": 1.5872777387758006, "curve_28": 1.5532621352278453, "curve_29": 1.4834722366466935, "curve_3": 1.4544092692017458, "curve_30": 1.4723403145215683, "curve_31": 1.5094967254436071, "curve_32": 1.5445410618737, "curve_33": 1.4484261780361831, "curve_34": 1.4061597449188445, "curve_35": 1.384107598897372, "curve_36": 1.5580106699698533, "curve_37": 1.4748372396287324, "curve_38": 1.3990613170026536, "curve_39": 1.4376340527324956, "curve_4": 1.421425063316447, "curve_40": 1.378309254478409, "curve_41": 1.471679167259326, "curve_42": 1.4540124028352615, "curve_43": 1.537485918558188, "curve_44": 1.3890339785278674, "curve_45": 1.4346107640942858, "curve_46": 1.430115148750473, "curve_47": 1.3692291181042286, "curve_48": 1.359849393436968, "curve_49": 1.3799633970773633, "curve_5": 1.4161055614125893, "curve_6": 1.328759345808059, "curve_7": 1.4529956711423333, "curve_8": 1.4862705741248137, "curve_9": 1.5054388685441624, "x": 0.9560439560439561 }, { "avg_curve": 1.4713636810891082, "curve_0": 1.6242236796615939, "curve_1": 1.3207140022648038, "curve_10": 1.4337229462801995, "curve_11": 1.5613199604000425, "curve_12": 1.4640343334809003, "curve_13": 1.4965408894245755, "curve_14": 1.4919709873658515, "curve_15": 1.4919767408391293, "curve_16": 1.4326361182371217, "curve_17": 1.3977145426438176, "curve_18": 1.4904514852433974, "curve_19": 1.4376365232434043, "curve_2": 1.542962112219505, "curve_20": 1.4224879150678678, "curve_21": 1.392962818439357, "curve_22": 1.3881855552103526, "curve_23": 1.3832755697564603, "curve_24": 1.6275587768384576, "curve_25": 1.4975613564251904, "curve_26": 1.455732597755447, "curve_27": 1.5946054275571075, "curve_28": 1.560365347342152, "curve_29": 1.4901903974339448, "curve_3": 1.4609199976353928, "curve_30": 1.4790020959406858, "curve_31": 1.5161566775677502, "curve_32": 1.5515679258386361, "curve_33": 1.4549921213797599, "curve_34": 1.4123335270977253, "curve_35": 1.3901636280122627, "curve_36": 1.5651767753809822, "curve_37": 1.4815009421373233, "curve_38": 1.4052650570811085, "curve_39": 1.4440425904856606, "curve_4": 1.4277698121738913, "curve_40": 1.3844270089300654, "curve_41": 1.4783679757860384, "curve_42": 1.460469578141546, "curve_43": 1.5445108762892685, "curve_44": 1.395206376412442, "curve_45": 1.4410856784457688, "curve_46": 1.436497519853942, "curve_47": 1.3752998500841724, "curve_48": 1.3658042257934735, "curve_49": 1.3860803376380615, "curve_5": 1.4224263791804908, "curve_6": 1.3345682513960466, "curve_7": 1.4594684151580966, "curve_8": 1.4930216126229647, "curve_9": 1.5123036561796936, "x": 0.9615384615384616 }, { "avg_curve": 1.4779473268954821, "curve_0": 1.6316798651497195, "curve_1": 1.3264495765132334, "curve_10": 1.440073635417323, "curve_11": 1.56844463760755, "curve_12": 1.4705456813182842, "curve_13": 1.5033008416584615, "curve_14": 1.498657329945251, "curve_15": 1.498604550052636, "curve_16": 1.4390694507755943, "curve_17": 1.403855182521282, "curve_18": 1.4971314935843965, "curve_19": 1.4440430006447298, "curve_2": 1.5499804331778764, "curve_20": 1.4287874216007714, "curve_21": 1.3990885295944018, "curve_22": 1.3943283714626873, "curve_23": 1.3894036630279394, "curve_24": 1.6350566047180917, "curve_25": 1.5043027007817602, "curve_26": 1.4621775067995528, "curve_27": 1.6019249023945252, "curve_28": 1.5674602913513074, "curve_29": 1.4969004424450478, "curve_3": 1.4674225243872847, "curve_30": 1.485655802926394, "curve_31": 1.5228078140685155, "curve_32": 1.5585864460845475, "curve_33": 1.461550162021078, "curve_34": 1.418499005534729, "curve_35": 1.3962114209578367, "curve_36": 1.5723347272587263, "curve_37": 1.4881565258804608, "curve_38": 1.411460721843491, "curve_39": 1.4504429355366253, "curve_4": 1.4341064873428684, "curve_40": 1.3905368265432132, "curve_41": 1.4850488123896683, "curve_42": 1.466918391257051, "curve_43": 1.5515276293320428, "curve_44": 1.40137079758638, "curve_45": 1.4475526725658583, "curve_46": 1.4428717642297928, "curve_47": 1.3813626766927478, "curve_48": 1.371750981066918, "curve_49": 1.3921893065723887, "curve_5": 1.4287391528861066, "curve_6": 1.3403692354354106, "curve_7": 1.4659328655256347, "curve_8": 1.4997645866193472, "curve_9": 1.5191603640615263, "x": 0.967032967032967 }, { "avg_curve": 1.4845228799134316, "curve_0": 1.6391277435710456, "curve_1": 1.3321773512805613, "curve_10": 1.4464162347047615, "curve_11": 1.575561183705382, "curve_12": 1.477048851041454, "curve_13": 1.5100527694524422, "curve_14": 1.5053355001060233, "curve_15": 1.5052240004638655, "curve_16": 1.4454949775836956, "curve_17": 1.4099877799264176, "curve_18": 1.5038033393617807, "curve_19": 1.4504414870304945, "curve_2": 1.5569906425497537, "curve_20": 1.4350788972615893, "curve_21": 1.405206243760801, "curve_22": 1.4004633356181317, "curve_23": 1.395523953787389, "curve_24": 1.6425461994125494, "curve_25": 1.5110359391611758, "curve_26": 1.4686141916084867, "curve_27": 1.6092362190878258, "curve_28": 1.5745470237759285, "curve_29": 1.5036024275136834, "curve_3": 1.4739169063023858, "curve_30": 1.4923014910601162, "curve_31": 1.5294501966050749, "curve_32": 1.5655966798425933, "curve_33": 1.4681003542931115, "curve_34": 1.424656238484337, "curve_35": 1.402251035636968, "curve_36": 1.5794845811286526, "curve_37": 1.4948040467954735, "curve_38": 1.417648367594957, "curve_39": 1.456835144819908, "curve_4": 1.44043514488355, "curve_40": 1.3966387626233185, "curve_41": 1.4917217317861486, "curve_42": 1.47335890043193, "curve_43": 1.558536233805654, "curve_44": 1.4075272975932387, "curve_45": 1.4540118010621836, "curve_46": 1.449237938312999, "curve_47": 1.387417653054289, "curve_48": 1.3776897160128896, "curve_49": 1.3982903594745348, "curve_5": 1.4350439383849398, "curve_6": 1.346162353646167, "curve_7": 1.472389079904948, "curve_8": 1.5064995514871218, "curve_9": 1.5260090475267736, "x": 0.9725274725274725 }, { "avg_curve": 1.491090395729208, "curve_0": 1.646567371035485, "curve_1": 1.337897381148563, "curve_10": 1.4527508000665634, "curve_11": 1.5826696538337877, "curve_12": 1.4835438990396697, "curve_13": 1.5167967275877758, "curve_14": 1.512005553924885, "curve_15": 1.5118351497509845, "curve_16": 1.4519127521529243, "curve_17": 1.4161123907417152, "curve_18": 1.5104670785820842, "curve_19": 1.4568320374313888, "curve_2": 1.5639927954597201, "curve_20": 1.4413623975745302, "curve_21": 1.4113160164714391, "curve_22": 1.406590501991463, "curve_23": 1.401636495967755, "curve_24": 1.650027616401755, "curve_25": 1.5177611270248839, "curve_26": 1.4750427090534604, "curve_27": 1.6165394327447722, "curve_28": 1.5816256004332905, "curve_29": 1.5102964077763235, "curve_3": 1.4804031995129334, "curve_30": 1.4989392152289966, "curve_31": 1.5360838860596355, "curve_32": 1.572598683630433, "curve_33": 1.4746427518506011, "curve_34": 1.430805283465747, "curve_35": 1.408282529220833, "curve_36": 1.5866263918268013, "curve_37": 1.5014435601206193, "curve_38": 1.4238280499323803, "curve_39": 1.4632192745551313, "curve_4": 1.446755840152517, "curve_40": 1.4027328717803789, "curve_41": 1.4983867880090311, "curve_42": 1.4797911631839704, "curve_43": 1.5655367451306836, "curve_44": 1.413675931278386, "curve_45": 1.4604631178596594, "curve_46": 1.4555960978301936, "curve_47": 1.3934648335996747, "curve_48": 1.3836204866699773, "curve_49": 1.4043835512392695, "curve_5": 1.441340790831464, "curve_6": 1.3519476610440149, "curve_7": 1.4788371152318667, "curve_8": 1.5132265619087224, "curve_9": 1.5328497612232288, "x": 0.978021978021978 }, { "avg_curve": 1.4976499292373076, "curve_0": 1.6539988029610277, "curve_1": 1.3436097200127481, "curve_10": 1.4590773867283642, "curve_11": 1.5897701024515785, "curve_12": 1.4900308809989589, "curve_13": 1.5235327701662542, "curve_14": 1.5186675467810762, "curve_15": 1.5184380548725585, "curve_16": 1.458322827309928, "curve_17": 1.4222290701498008, "curve_18": 1.5171227665552551, "curve_19": 1.4632147061922807, "curve_2": 1.5709869463503288, "curve_20": 1.4476379773703294, "curve_21": 1.4174179025639446, "curve_22": 1.4127099242189056, "curve_23": 1.4077413428284686, "curve_24": 1.6575009104823544, "curve_25": 1.524478319145589, "curve_26": 1.4814631152953182, "curve_27": 1.623834597793538, "curve_28": 1.5886960764499807, "curve_29": 1.5169824376848007, "curve_3": 1.4868814594513264, "curve_30": 1.5055690296384208, "curve_31": 1.5427089425515381, "curve_32": 1.5795925132650777, "curve_33": 1.4811774076822823, "curve_34": 1.4369461972762296, "curve_35": 1.4143059581622106, "curve_36": 1.5937602135120699, "curve_37": 1.5080751204076965, "curve_38": 1.42999982375719, "curve_39": 1.469595380259963, "curve_4": 1.45306862781549, "curve_40": 1.408819207941522, "curve_41": 1.505044034421781, "curve_42": 1.4862152363118604, "curve_43": 1.5725292180417187, "curve_44": 1.4198167528016474, "curve_45": 1.466906676212806, "curve_46": 1.4619462978124877, "curve_47": 1.3995042720788955, "curve_48": 1.389543348372801, "curve_49": 1.4104689360746179, "curve_5": 1.4476297646918075, "curve_6": 1.3577252119531422, "curve_7": 1.4852770277311615, "curve_8": 1.5199456718883044, "curve_9": 1.5396825591217744, "x": 0.9835164835164835 }, { "avg_curve": 1.5042015346528923, "curve_0": 1.6614220940860902, "curve_1": 1.3493144210947738, "curve_10": 1.4653960492299585, "curve_11": 1.596862583348309, "curve_12": 1.4965098519147642, "curve_13": 1.5302609506223763, "curve_14": 1.5253215333688837, "curve_15": 1.5250327720804977, "curve_16": 1.4647252552284327, "curve_17": 1.4283378726460587, "curve_18": 1.5237704579071625, "curve_19": 1.4695895469845448, "curve_2": 1.5779731489943034, "curve_20": 1.4539056907987322, "curve_21": 1.4235119561932288, "curve_22": 1.4188216552703523, "curve_23": 1.4138385469675707, "curve_24": 1.664966135779898, "curve_25": 1.5311875696196062, "curve_26": 1.4878754657973268, "curve_27": 1.6311217679948358, "curve_28": 1.5957585062742539, "curve_29": 1.5236605710185873, "curve_3": 1.493351740862709, "curve_30": 1.5121909878242457, "curve_31": 1.5493254254510214, "curve_32": 1.5865782238754398, "curve_33": 1.487704374122824, "curve_34": 1.4430790360041703, "curve_35": 1.4203213782084707, "curve_36": 1.6008860996783112, "curve_37": 1.5146987815343602, "curve_38": 1.4361637432879035, "curve_39": 1.4759635167627507, "curve_4": 1.4593735618597623, "curve_40": 1.414897824363311, "curve_41": 1.5116935237297824, "curve_42": 1.492631175908145, "curve_43": 1.579513706599629, "curve_44": 1.4259498156496542, "curve_45": 1.4733425287177804, "curve_46": 1.468288592607986, "curve_47": 1.4055360215733252, "curve_48": 1.3954583557647395, "curve_49": 1.4165465675142388, "curve_5": 1.4539109137561412, "curve_6": 1.3634950600187314, "curve_7": 1.491708872929344, "curve_8": 1.526656934763897, "curve_9": 1.5465074945284991, "x": 0.989010989010989 }, { "avg_curve": 1.5107452655239242, "curve_0": 1.668837298481575, "curve_1": 1.3550115369545621, "curve_10": 1.4717068414375778, "curve_11": 1.603947149656172, "curve_12": 1.502980866104294, "curve_13": 1.536981321735239, "curve_14": 1.5319675677098665, "curve_15": 1.5316193569326984, "curve_16": 1.4711200874408932, "curve_17": 1.4344388520509592, "curve_18": 1.5304102065918064, "curve_19": 1.4759566128181023, "curve_2": 1.5849514565064518, "curve_20": 1.4601655913406866, "curve_21": 1.4295982308437272, "curve_22": 1.4249257474612933, "curve_23": 1.4199281603335512, "curve_24": 1.6724233457607405, "curve_25": 1.5378889318789215, "curve_26": 1.4942798153376657, "curve_27": 1.6384009964537627, "curve_28": 1.6028129436880978, "curve_29": 1.5303308608967825, "curve_3": 1.4998140978172598, "curve_30": 1.518805142664738, "curve_31": 1.5559333933926627, "curve_32": 1.5935558699145889, "curve_33": 1.4942237028644887, "curve_34": 1.449203855041803, "curve_35": 1.4263288444142566, "curve_36": 1.6080041031661452, "curve_37": 1.5213145967161497, "curve_38": 1.4423198620723654, "curve_39": 1.48232373821486, "curve_4": 1.4656706956063366, "curve_40": 1.4209687736437588, "curve_41": 1.5183353079920605, "curve_42": 1.4990390373718763, "curve_43": 1.5864902642035517, "curve_44": 1.4320751726479033, "curve_45": 1.4797707273241252, "curve_46": 1.4746230358940087, "curve_47": 1.4115601345077047, "curve_48": 1.4013655628103512, "curve_49": 1.4226164984295109, "curve_5": 1.460184291150773, "curve_6": 1.3692572582191684, "curve_7": 1.498132705667166, "curve_8": 1.5333604032192722, "curve_9": 1.5533246200965327, "x": 0.9945054945054945 } ], "data-65443eb82aaf61e324ed35935a4274af": [ { "posteriors": "curve_0", "x": 0, "y": 0 }, { "posteriors": "curve_0", "x": 0.005494505494505495, "y": 0.025566765090932534 }, { "posteriors": "curve_0", "x": 0.01098901098901099, "y": 0.04463194865297212 }, { "posteriors": "curve_0", "x": 0.016483516483516484, "y": 0.06182857890905618 }, { "posteriors": "curve_0", "x": 0.02197802197802198, "y": 0.07791407452122377 }, { "posteriors": "curve_0", "x": 0.027472527472527472, "y": 0.09322081151831464 }, { "posteriors": "curve_0", "x": 0.03296703296703297, "y": 0.10793426346041411 }, { "posteriors": "curve_0", "x": 0.038461538461538464, "y": 0.12217198818463172 }, { "posteriors": "curve_0", "x": 0.04395604395604396, "y": 0.13601474261631996 }, { "posteriors": "curve_0", "x": 0.04945054945054945, "y": 0.14952119113689374 }, { "posteriors": "curve_0", "x": 0.054945054945054944, "y": 0.16273574143134018 }, { "posteriors": "curve_0", "x": 0.06043956043956044, "y": 0.17569309113817932 }, { "posteriors": "curve_0", "x": 0.06593406593406594, "y": 0.18842104143907001 }, { "posteriors": "curve_0", "x": 0.07142857142857142, "y": 0.20094232826302375 }, { "posteriors": "curve_0", "x": 0.07692307692307693, "y": 0.21327586357109649 }, { "posteriors": "curve_0", "x": 0.08241758241758242, "y": 0.22543760543920033 }, { "posteriors": "curve_0", "x": 0.08791208791208792, "y": 0.2374411853399397 }, { "posteriors": "curve_0", "x": 0.09340659340659341, "y": 0.24929837133903568 }, { "posteriors": "curve_0", "x": 0.0989010989010989, "y": 0.2610194172636982 }, { "posteriors": "curve_0", "x": 0.1043956043956044, "y": 0.2726133306924116 }, { "posteriors": "curve_0", "x": 0.10989010989010989, "y": 0.28408808191940094 }, { "posteriors": "curve_0", "x": 0.11538461538461539, "y": 0.2954507691952304 }, { "posteriors": "curve_0", "x": 0.12087912087912088, "y": 0.3067077510381723 }, { "posteriors": "curve_0", "x": 0.12637362637362637, "y": 0.3178647533763121 }, { "posteriors": "curve_0", "x": 0.13186813186813187, "y": 0.3289269571937608 }, { "posteriors": "curve_0", "x": 0.13736263736263737, "y": 0.3398990708924363 }, { "posteriors": "curve_0", "x": 0.14285714285714285, "y": 0.35078539053909014 }, { "posteriors": "curve_0", "x": 0.14835164835164835, "y": 0.3615898504133482 }, { "posteriors": "curve_0", "x": 0.15384615384615385, "y": 0.37231606571921877 }, { "posteriors": "curve_0", "x": 0.15934065934065933, "y": 0.38296736891117883 }, { "posteriors": "curve_0", "x": 0.16483516483516483, "y": 0.39354684077649893 }, { "posteriors": "curve_0", "x": 0.17032967032967034, "y": 0.4040573371801248 }, { "posteriors": "curve_0", "x": 0.17582417582417584, "y": 0.41450151219762654 }, { "posteriors": "curve_0", "x": 0.1813186813186813, "y": 0.424881838221509 }, { "posteriors": "curve_0", "x": 0.18681318681318682, "y": 0.43520062351648797 }, { "posteriors": "curve_0", "x": 0.19230769230769232, "y": 0.44546002761282105 }, { "posteriors": "curve_0", "x": 0.1978021978021978, "y": 0.4556620748580266 }, { "posteriors": "curve_0", "x": 0.2032967032967033, "y": 0.46580866639228957 }, { "posteriors": "curve_0", "x": 0.2087912087912088, "y": 0.4759015907685031 }, { "posteriors": "curve_0", "x": 0.21428571428571427, "y": 0.48594253340193205 }, { "posteriors": "curve_0", "x": 0.21978021978021978, "y": 0.4959330850051459 }, { "posteriors": "curve_0", "x": 0.22527472527472528, "y": 0.505874749139796 }, { "posteriors": "curve_0", "x": 0.23076923076923078, "y": 0.5157689489969678 }, { "posteriors": "curve_0", "x": 0.23626373626373626, "y": 0.525617033501375 }, { "posteriors": "curve_0", "x": 0.24175824175824176, "y": 0.5354202828209647 }, { "posteriors": "curve_0", "x": 0.24725274725274726, "y": 0.5451799133520288 }, { "posteriors": "curve_0", "x": 0.25274725274725274, "y": 0.5548970822402838 }, { "posteriors": "curve_0", "x": 0.25824175824175827, "y": 0.5645728914902519 }, { "posteriors": "curve_0", "x": 0.26373626373626374, "y": 0.5742083917083788 }, { "posteriors": "curve_0", "x": 0.2692307692307692, "y": 0.5838045855194806 }, { "posteriors": "curve_0", "x": 0.27472527472527475, "y": 0.5933624306911023 }, { "posteriors": "curve_0", "x": 0.2802197802197802, "y": 0.6028828429960964 }, { "posteriors": "curve_0", "x": 0.2857142857142857, "y": 0.6123666988400522 }, { "posteriors": "curve_0", "x": 0.29120879120879123, "y": 0.6218148376770382 }, { "posteriors": "curve_0", "x": 0.2967032967032967, "y": 0.6312280642343784 }, { "posteriors": "curve_0", "x": 0.3021978021978022, "y": 0.6406071505648157 }, { "posteriors": "curve_0", "x": 0.3076923076923077, "y": 0.6499528379423407 }, { "posteriors": "curve_0", "x": 0.3131868131868132, "y": 0.6592658386161756 }, { "posteriors": "curve_0", "x": 0.31868131868131866, "y": 0.6685468374358238 }, { "posteriors": "curve_0", "x": 0.3241758241758242, "y": 0.6777964933587205 }, { "posteriors": "curve_0", "x": 0.32967032967032966, "y": 0.6870154408508092 }, { "posteriors": "curve_0", "x": 0.33516483516483514, "y": 0.6962042911893049 }, { "posteriors": "curve_0", "x": 0.34065934065934067, "y": 0.7053636336759647 }, { "posteriors": "curve_0", "x": 0.34615384615384615, "y": 0.7144940367683549 }, { "posteriors": "curve_0", "x": 0.3516483516483517, "y": 0.7235960491358739 }, { "posteriors": "curve_0", "x": 0.35714285714285715, "y": 0.7326702006466242 }, { "posteriors": "curve_0", "x": 0.3626373626373626, "y": 0.7417170032906623 }, { "posteriors": "curve_0", "x": 0.36813186813186816, "y": 0.7507369520446248 }, { "posteriors": "curve_0", "x": 0.37362637362637363, "y": 0.7597305256822723 }, { "posteriors": "curve_0", "x": 0.3791208791208791, "y": 0.76869818753508 }, { "posteriors": "curve_0", "x": 0.38461538461538464, "y": 0.7776403862066305 }, { "posteriors": "curve_0", "x": 0.3901098901098901, "y": 0.7865575562442345 }, { "posteriors": "curve_0", "x": 0.3956043956043956, "y": 0.7954501187709079 }, { "posteriors": "curve_0", "x": 0.4010989010989011, "y": 0.8043184820805594 }, { "posteriors": "curve_0", "x": 0.4065934065934066, "y": 0.8131630421990077 }, { "posteriors": "curve_0", "x": 0.41208791208791207, "y": 0.821984183413223 }, { "posteriors": "curve_0", "x": 0.4175824175824176, "y": 0.830782278770992 }, { "posteriors": "curve_0", "x": 0.4230769230769231, "y": 0.839557690553027 }, { "posteriors": "curve_0", "x": 0.42857142857142855, "y": 0.8483107707193762 }, { "posteriors": "curve_0", "x": 0.4340659340659341, "y": 0.8570418613318456 }, { "posteriors": "curve_0", "x": 0.43956043956043955, "y": 0.8657512949540065 }, { "posteriors": "curve_0", "x": 0.44505494505494503, "y": 0.8744393950302481 }, { "posteriors": "curve_0", "x": 0.45054945054945056, "y": 0.8831064762452121 }, { "posteriors": "curve_0", "x": 0.45604395604395603, "y": 0.8917528448648531 }, { "posteriors": "curve_0", "x": 0.46153846153846156, "y": 0.9003787990602776 }, { "posteriors": "curve_0", "x": 0.46703296703296704, "y": 0.9089846292154201 }, { "posteriors": "curve_0", "x": 0.4725274725274725, "y": 0.917570618219547 }, { "posteriors": "curve_0", "x": 0.47802197802197804, "y": 0.9261370417455029 }, { "posteriors": "curve_0", "x": 0.4835164835164835, "y": 0.9346841685145503 }, { "posteriors": "curve_0", "x": 0.489010989010989, "y": 0.9432122605485936 }, { "posteriors": "curve_0", "x": 0.4945054945054945, "y": 0.9517215734105227 }, { "posteriors": "curve_0", "x": 0.5, "y": 0.9602123564333612 }, { "posteriors": "curve_0", "x": 0.5054945054945055, "y": 0.9686848529388614 }, { "posteriors": "curve_0", "x": 0.510989010989011, "y": 0.9771393004461344 }, { "posteriors": "curve_0", "x": 0.5164835164835165, "y": 0.9855759308708791 }, { "posteriors": "curve_0", "x": 0.521978021978022, "y": 0.9939949707157242 }, { "posteriors": "curve_0", "x": 0.5274725274725275, "y": 1.0023966412521723 }, { "posteriors": "curve_0", "x": 0.532967032967033, "y": 1.0107811586945967 }, { "posteriors": "curve_0", "x": 0.5384615384615384, "y": 1.0191487343667198 }, { "posteriors": "curve_0", "x": 0.5439560439560439, "y": 1.0274995748609677 }, { "posteriors": "curve_0", "x": 0.5494505494505495, "y": 1.035833882191079 }, { "posteriors": "curve_0", "x": 0.554945054945055, "y": 1.0441518539383143 }, { "posteriors": "curve_0", "x": 0.5604395604395604, "y": 1.0524536833915963 }, { "posteriors": "curve_0", "x": 0.5659340659340659, "y": 1.06073955968189 }, { "posteriors": "curve_0", "x": 0.5714285714285714, "y": 1.069009667911114 }, { "posteriors": "curve_0", "x": 0.5769230769230769, "y": 1.077264189275854 }, { "posteriors": "curve_0", "x": 0.5824175824175825, "y": 1.0855033011861372 }, { "posteriors": "curve_0", "x": 0.5879120879120879, "y": 1.0937271773795068 }, { "posteriors": "curve_0", "x": 0.5934065934065934, "y": 1.10193598803063 }, { "posteriors": "curve_0", "x": 0.5989010989010989, "y": 1.1101298998566493 }, { "posteriors": "curve_0", "x": 0.6043956043956044, "y": 1.1183090762184795 }, { "posteriors": "curve_0", "x": 0.6098901098901099, "y": 1.126473677218248 }, { "posteriors": "curve_0", "x": 0.6153846153846154, "y": 1.1346238597930491 }, { "posteriors": "curve_0", "x": 0.6208791208791209, "y": 1.1427597778051948 }, { "posteriors": "curve_0", "x": 0.6263736263736264, "y": 1.1508815821291105 }, { "posteriors": "curve_0", "x": 0.6318681318681318, "y": 1.1589894207350406 }, { "posteriors": "curve_0", "x": 0.6373626373626373, "y": 1.167083438769697 }, { "posteriors": "curve_0", "x": 0.6428571428571429, "y": 1.1751637786339963 }, { "posteriors": "curve_0", "x": 0.6483516483516484, "y": 1.1832305800580099 }, { "posteriors": "curve_0", "x": 0.6538461538461539, "y": 1.1912839801732493 }, { "posteriors": "curve_0", "x": 0.6593406593406593, "y": 1.1993241135824084 }, { "posteriors": "curve_0", "x": 0.6648351648351648, "y": 1.207351112426664 }, { "posteriors": "curve_0", "x": 0.6703296703296703, "y": 1.2153651064506472 }, { "posteriors": "curve_0", "x": 0.6758241758241759, "y": 1.223366223065182 }, { "posteriors": "curve_0", "x": 0.6813186813186813, "y": 1.2313545874078826 }, { "posteriors": "curve_0", "x": 0.6868131868131868, "y": 1.2393303224017047 }, { "posteriors": "curve_0", "x": 0.6923076923076923, "y": 1.2472935488115304 }, { "posteriors": "curve_0", "x": 0.6978021978021978, "y": 1.255244385298871 }, { "posteriors": "curve_0", "x": 0.7032967032967034, "y": 1.2631829484747639 }, { "posteriors": "curve_0", "x": 0.7087912087912088, "y": 1.2711093529509345 }, { "posteriors": "curve_0", "x": 0.7142857142857143, "y": 1.2790237113892997 }, { "posteriors": "curve_0", "x": 0.7197802197802198, "y": 1.2869261345498693 }, { "posteriors": "curve_0", "x": 0.7252747252747253, "y": 1.2948167313371177 }, { "posteriors": "curve_0", "x": 0.7307692307692307, "y": 1.3026956088448811 }, { "posteriors": "curve_0", "x": 0.7362637362637363, "y": 1.3105628723998395 }, { "posteriors": "curve_0", "x": 0.7417582417582418, "y": 1.3184186256036368 }, { "posteriors": "curve_0", "x": 0.7472527472527473, "y": 1.3262629703736957 }, { "posteriors": "curve_0", "x": 0.7527472527472527, "y": 1.3340960069827705 }, { "posteriors": "curve_0", "x": 0.7582417582417582, "y": 1.3419178340972913 }, { "posteriors": "curve_0", "x": 0.7637362637362637, "y": 1.3497285488145432 }, { "posteriors": "curve_0", "x": 0.7692307692307693, "y": 1.3575282466987224 }, { "posteriors": "curve_0", "x": 0.7747252747252747, "y": 1.3653170218159127 }, { "posteriors": "curve_0", "x": 0.7802197802197802, "y": 1.3730949667680248 }, { "posteriors": "curve_0", "x": 0.7857142857142857, "y": 1.3808621727257278 }, { "posteriors": "curve_0", "x": 0.7912087912087912, "y": 1.388618729460419 }, { "posteriors": "curve_0", "x": 0.7967032967032966, "y": 1.3963647253752633 }, { "posteriors": "curve_0", "x": 0.8021978021978022, "y": 1.40410024753533 }, { "posteriors": "curve_0", "x": 0.8076923076923077, "y": 1.41182538169687 }, { "posteriors": "curve_0", "x": 0.8131868131868132, "y": 1.4195402123357541 }, { "posteriors": "curve_0", "x": 0.8186813186813187, "y": 1.4272448226751064 }, { "posteriors": "curve_0", "x": 0.8241758241758241, "y": 1.4349392947121593 }, { "posteriors": "curve_0", "x": 0.8296703296703297, "y": 1.4426237092443606 }, { "posteriors": "curve_0", "x": 0.8351648351648352, "y": 1.4502981458947506 }, { "posteriors": "curve_0", "x": 0.8406593406593407, "y": 1.4579626831366435 }, { "posteriors": "curve_0", "x": 0.8461538461538461, "y": 1.4656173983176304 }, { "posteriors": "curve_0", "x": 0.8516483516483516, "y": 1.473262367682929 }, { "posteriors": "curve_0", "x": 0.8571428571428571, "y": 1.4808976663981004 }, { "posteriors": "curve_0", "x": 0.8626373626373627, "y": 1.4885233685711576 }, { "posteriors": "curve_0", "x": 0.8681318681318682, "y": 1.496139547274081 }, { "posteriors": "curve_0", "x": 0.8736263736263736, "y": 1.5037462745637646 }, { "posteriors": "curve_0", "x": 0.8791208791208791, "y": 1.5113436215024088 }, { "posteriors": "curve_0", "x": 0.8846153846153846, "y": 1.5189316581773789 }, { "posteriors": "curve_0", "x": 0.8901098901098901, "y": 1.526510453720546 }, { "posteriors": "curve_0", "x": 0.8956043956043956, "y": 1.534080076327129 }, { "posteriors": "curve_0", "x": 0.9010989010989011, "y": 1.5416405932740478 }, { "posteriors": "curve_0", "x": 0.9065934065934066, "y": 1.5491920709378124 }, { "posteriors": "curve_0", "x": 0.9120879120879121, "y": 1.5567345748119528 }, { "posteriors": "curve_0", "x": 0.9175824175824175, "y": 1.5642681695240113 }, { "posteriors": "curve_0", "x": 0.9230769230769231, "y": 1.5717929188521074 }, { "posteriors": "curve_0", "x": 0.9285714285714286, "y": 1.579308885741088 }, { "posteriors": "curve_0", "x": 0.9340659340659341, "y": 1.586816132318278 }, { "posteriors": "curve_0", "x": 0.9395604395604396, "y": 1.5943147199088437 }, { "posteriors": "curve_0", "x": 0.945054945054945, "y": 1.6018047090507752 }, { "posteriors": "curve_0", "x": 0.9505494505494505, "y": 1.6092861595095085 }, { "posteriors": "curve_0", "x": 0.9560439560439561, "y": 1.616759130292189 }, { "posteriors": "curve_0", "x": 0.9615384615384616, "y": 1.6242236796615939 }, { "posteriors": "curve_0", "x": 0.967032967032967, "y": 1.6316798651497195 }, { "posteriors": "curve_0", "x": 0.9725274725274725, "y": 1.6391277435710456 }, { "posteriors": "curve_0", "x": 0.978021978021978, "y": 1.646567371035485 }, { "posteriors": "curve_0", "x": 0.9835164835164835, "y": 1.6539988029610277 }, { "posteriors": "curve_0", "x": 0.989010989010989, "y": 1.6614220940860902 }, { "posteriors": "curve_0", "x": 0.9945054945054945, "y": 1.668837298481575 }, { "posteriors": "curve_1", "x": 0, "y": 0 }, { "posteriors": "curve_1", "x": 0.005494505494505495, "y": 0.025999469183498526 }, { "posteriors": "curve_1", "x": 0.01098901098901099, "y": 0.044045308254903166 }, { "posteriors": "curve_1", "x": 0.016483516483516484, "y": 0.059953997402891285 }, { "posteriors": "curve_1", "x": 0.02197802197802198, "y": 0.07461649180517586 }, { "posteriors": "curve_1", "x": 0.027472527472527472, "y": 0.08841694198082281 }, { "posteriors": "curve_1", "x": 0.03296703296703297, "y": 0.10156716193267581 }, { "posteriors": "curve_1", "x": 0.038461538461538464, "y": 0.11420017372323218 }, { "posteriors": "curve_1", "x": 0.04395604395604396, "y": 0.1264066723540772 }, { "posteriors": "curve_1", "x": 0.04945054945054945, "y": 0.1382521227343848 }, { "posteriors": "curve_1", "x": 0.054945054945054944, "y": 0.1497858066645805 }, { "posteriors": "curve_1", "x": 0.06043956043956044, "y": 0.16104604194423328 }, { "posteriors": "curve_1", "x": 0.06593406593406594, "y": 0.17206339576885174 }, { "posteriors": "curve_1", "x": 0.07142857142857142, "y": 0.1828627667247046 }, { "posteriors": "curve_1", "x": 0.07692307692307693, "y": 0.19346479033486216 }, { "posteriors": "curve_1", "x": 0.08241758241758242, "y": 0.20388682062994856 }, { "posteriors": "curve_1", "x": 0.08791208791208792, "y": 0.21414363539566267 }, { "posteriors": "curve_1", "x": 0.09340659340659341, "y": 0.22424795529838623 }, { "posteriors": "curve_1", "x": 0.0989010989010989, "y": 0.23421083406562418 }, { "posteriors": "curve_1", "x": 0.1043956043956044, "y": 0.2440419571305858 }, { "posteriors": "curve_1", "x": 0.10989010989010989, "y": 0.253749873898888 }, { "posteriors": "curve_1", "x": 0.11538461538461539, "y": 0.26334218096875334 }, { "posteriors": "curve_1", "x": 0.12087912087912088, "y": 0.27282566850125706 }, { "posteriors": "curve_1", "x": 0.12637362637362637, "y": 0.2822064384879775 }, { "posteriors": "curve_1", "x": 0.13186813186813187, "y": 0.2914900012971991 }, { "posteriors": "curve_1", "x": 0.13736263736263737, "y": 0.3006813552255857 }, { "posteriors": "curve_1", "x": 0.14285714285714285, "y": 0.3097850526058421 }, { "posteriors": "curve_1", "x": 0.14835164835164835, "y": 0.31880525517121977 }, { "posteriors": "curve_1", "x": 0.15384615384615385, "y": 0.32774578075530486 }, { "posteriors": "curve_1", "x": 0.15934065934065933, "y": 0.3366101429436442 }, { "posteriors": "curve_1", "x": 0.16483516483516483, "y": 0.34540158494689066 }, { "posteriors": "curve_1", "x": 0.17032967032967034, "y": 0.35412310870178354 }, { "posteriors": "curve_1", "x": 0.17582417582417584, "y": 0.36277750000426606 }, { "posteriors": "curve_1", "x": 0.1813186813186813, "y": 0.37136735032262075 }, { "posteriors": "curve_1", "x": 0.18681318681318682, "y": 0.37989507581631676 }, { "posteriors": "curve_1", "x": 0.19230769230769232, "y": 0.38836293399003186 }, { "posteriors": "curve_1", "x": 0.1978021978021978, "y": 0.39677303833594146 }, { "posteriors": "curve_1", "x": 0.2032967032967033, "y": 0.4051273712563146 }, { "posteriors": "curve_1", "x": 0.2087912087912088, "y": 0.41342779550932834 }, { "posteriors": "curve_1", "x": 0.21428571428571427, "y": 0.4216760643812194 }, { "posteriors": "curve_1", "x": 0.21978021978021978, "y": 0.4298738307554708 }, { "posteriors": "curve_1", "x": 0.22527472527472528, "y": 0.4380226552231633 }, { "posteriors": "curve_1", "x": 0.23076923076923078, "y": 0.44612401335673946 }, { "posteriors": "curve_1", "x": 0.23626373626373626, "y": 0.4541793022513034 }, { "posteriors": "curve_1", "x": 0.24175824175824176, "y": 0.462189846422507 }, { "posteriors": "curve_1", "x": 0.24725274725274726, "y": 0.4701569031374678 }, { "posteriors": "curve_1", "x": 0.25274725274725274, "y": 0.4780816672445907 }, { "posteriors": "curve_1", "x": 0.25824175824175827, "y": 0.48596527555924685 }, { "posteriors": "curve_1", "x": 0.26373626373626374, "y": 0.4938088108547165 }, { "posteriors": "curve_1", "x": 0.2692307692307692, "y": 0.5016133055013972 }, { "posteriors": "curve_1", "x": 0.27472527472527475, "y": 0.509379744791808 }, { "posteriors": "curve_1", "x": 0.2802197802197802, "y": 0.5171090699842513 }, { "posteriors": "curve_1", "x": 0.2857142857142857, "y": 0.5248021810939785 }, { "posteriors": "curve_1", "x": 0.29120879120879123, "y": 0.5324599394572506 }, { "posteriors": "curve_1", "x": 0.2967032967032967, "y": 0.5400831700907033 }, { "posteriors": "curve_1", "x": 0.3021978021978022, "y": 0.5476726638658391 }, { "posteriors": "curve_1", "x": 0.3076923076923077, "y": 0.5552291795162267 }, { "posteriors": "curve_1", "x": 0.3131868131868132, "y": 0.5627534454930297 }, { "posteriors": "curve_1", "x": 0.31868131868131866, "y": 0.5702461616827826 }, { "posteriors": "curve_1", "x": 0.3241758241758242, "y": 0.5777080009998355 }, { "posteriors": "curve_1", "x": 0.32967032967032966, "y": 0.5851396108645781 }, { "posteriors": "curve_1", "x": 0.33516483516483514, "y": 0.5925416145773996 }, { "posteriors": "curve_1", "x": 0.34065934065934067, "y": 0.5999146125973259 }, { "posteriors": "curve_1", "x": 0.34615384615384615, "y": 0.6072591837333753 }, { "posteriors": "curve_1", "x": 0.3516483516483517, "y": 0.6145758862558793 }, { "posteriors": "curve_1", "x": 0.35714285714285715, "y": 0.6218652589343109 }, { "posteriors": "curve_1", "x": 0.3626373626373626, "y": 0.6291278220075345 }, { "posteriors": "curve_1", "x": 0.36813186813186816, "y": 0.6363640780918337 }, { "posteriors": "curve_1", "x": 0.37362637362637363, "y": 0.6435745130315739 }, { "posteriors": "curve_1", "x": 0.3791208791208791, "y": 0.650759596696916 }, { "posteriors": "curve_1", "x": 0.38461538461538464, "y": 0.6579197837325927 }, { "posteriors": "curve_1", "x": 0.3901098901098901, "y": 0.6650555142614054 }, { "posteriors": "curve_1", "x": 0.3956043956043956, "y": 0.6721672145457799 }, { "posteriors": "curve_1", "x": 0.4010989010989011, "y": 0.6792552976104267 }, { "posteriors": "curve_1", "x": 0.4065934065934066, "y": 0.6863201638288932 }, { "posteriors": "curve_1", "x": 0.41208791208791207, "y": 0.6933622014765628 }, { "posteriors": "curve_1", "x": 0.4175824175824176, "y": 0.7003817872524398 }, { "posteriors": "curve_1", "x": 0.4230769230769231, "y": 0.7073792867718689 }, { "posteriors": "curve_1", "x": 0.42857142857142855, "y": 0.714355055032166 }, { "posteriors": "curve_1", "x": 0.4340659340659341, "y": 0.7213094368529753 }, { "posteriors": "curve_1", "x": 0.43956043956043955, "y": 0.7282427672930284 }, { "posteriors": "curve_1", "x": 0.44505494505494503, "y": 0.7351553720448473 }, { "posteriors": "curve_1", "x": 0.45054945054945056, "y": 0.7420475678088179 }, { "posteriors": "curve_1", "x": 0.45604395604395603, "y": 0.748919662647949 }, { "posteriors": "curve_1", "x": 0.46153846153846156, "y": 0.7557719563245341 }, { "posteriors": "curve_1", "x": 0.46703296703296704, "y": 0.7626047406198455 }, { "posteriors": "curve_1", "x": 0.4725274725274725, "y": 0.7694182996379029 }, { "posteriors": "curve_1", "x": 0.47802197802197804, "y": 0.7762129100942863 }, { "posteriors": "curve_1", "x": 0.4835164835164835, "y": 0.7829888415908945 }, { "posteriors": "curve_1", "x": 0.489010989010989, "y": 0.7897463568774818 }, { "posteriors": "curve_1", "x": 0.4945054945054945, "y": 0.7964857121007533 }, { "posteriors": "curve_1", "x": 0.5, "y": 0.8032071570417387 }, { "posteriors": "curve_1", "x": 0.5054945054945055, "y": 0.8099109353421245 }, { "posteriors": "curve_1", "x": 0.510989010989011, "y": 0.8165972847201655 }, { "posteriors": "curve_1", "x": 0.5164835164835165, "y": 0.823266437176767 }, { "posteriors": "curve_1", "x": 0.521978021978022, "y": 0.8299186191922846 }, { "posteriors": "curve_1", "x": 0.5274725274725275, "y": 0.8365540519145495 }, { "posteriors": "curve_1", "x": 0.532967032967033, "y": 0.843172951338602 }, { "posteriors": "curve_1", "x": 0.5384615384615384, "y": 0.8497755284785774 }, { "posteriors": "curve_1", "x": 0.5439560439560439, "y": 0.8563619895321652 }, { "posteriors": "curve_1", "x": 0.5494505494505495, "y": 0.8629325360380335 }, { "posteriors": "curve_1", "x": 0.554945054945055, "y": 0.8694873650265857 }, { "posteriors": "curve_1", "x": 0.5604395604395604, "y": 0.8760266691643984 }, { "posteriors": "curve_1", "x": 0.5659340659340659, "y": 0.8825506368926611 }, { "posteriors": "curve_1", "x": 0.5714285714285714, "y": 0.889059452559923 }, { "posteriors": "curve_1", "x": 0.5769230769230769, "y": 0.895553296549437 }, { "posteriors": "curve_1", "x": 0.5824175824175825, "y": 0.9020323454013645 }, { "posteriors": "curve_1", "x": 0.5879120879120879, "y": 0.9084967719300997 }, { "posteriors": "curve_1", "x": 0.5934065934065934, "y": 0.9149467453369504 }, { "posteriors": "curve_1", "x": 0.5989010989010989, "y": 0.9213824313183983 }, { "posteriors": "curve_1", "x": 0.6043956043956044, "y": 0.9278039921701545 }, { "posteriors": "curve_1", "x": 0.6098901098901099, "y": 0.9342115868872094 }, { "posteriors": "curve_1", "x": 0.6153846153846154, "y": 0.9406053712600617 }, { "posteriors": "curve_1", "x": 0.6208791208791209, "y": 0.9469854979673138 }, { "posteriors": "curve_1", "x": 0.6263736263736264, "y": 0.9533521166647914 }, { "posteriors": "curve_1", "x": 0.6318681318681318, "y": 0.9597053740713561 }, { "posteriors": "curve_1", "x": 0.6373626373626373, "y": 0.9660454140515559 }, { "posteriors": "curve_1", "x": 0.6428571428571429, "y": 0.9723723776952578 }, { "posteriors": "curve_1", "x": 0.6483516483516484, "y": 0.9786864033943978 }, { "posteriors": "curve_1", "x": 0.6538461538461539, "y": 0.9849876269169777 }, { "posteriors": "curve_1", "x": 0.6593406593406593, "y": 0.9912761814784256 }, { "posteriors": "curve_1", "x": 0.6648351648351648, "y": 0.9975521978104391 }, { "posteriors": "curve_1", "x": 0.6703296703296703, "y": 1.0038158042274195 }, { "posteriors": "curve_1", "x": 0.6758241758241759, "y": 1.0100671266905967 }, { "posteriors": "curve_1", "x": 0.6813186813186813, "y": 1.0163062888699503 }, { "posteriors": "curve_1", "x": 0.6868131868131868, "y": 1.022533412204011 }, { "posteriors": "curve_1", "x": 0.6923076923076923, "y": 1.0287486159576387 }, { "posteriors": "curve_1", "x": 0.6978021978021978, "y": 1.0349520172778566 }, { "posteriors": "curve_1", "x": 0.7032967032967034, "y": 1.041143731247825 }, { "posteriors": "curve_1", "x": 0.7087912087912088, "y": 1.047323870939027 }, { "posteriors": "curve_1", "x": 0.7142857142857143, "y": 1.053492547461741 }, { "posteriors": "curve_1", "x": 0.7197802197802198, "y": 1.0596498700138701 }, { "posteriors": "curve_1", "x": 0.7252747252747253, "y": 1.0657959459281925 }, { "posteriors": "curve_1", "x": 0.7307692307692307, "y": 1.0719308807180923 }, { "posteriors": "curve_1", "x": 0.7362637362637363, "y": 1.0780547781218384 }, { "posteriors": "curve_1", "x": 0.7417582417582418, "y": 1.084167740145461 }, { "posteriors": "curve_1", "x": 0.7472527472527473, "y": 1.0902698671042836 }, { "posteriors": "curve_1", "x": 0.7527472527472527, "y": 1.0963612576631616 }, { "posteriors": "curve_1", "x": 0.7582417582417582, "y": 1.1024420088754752 }, { "posteriors": "curve_1", "x": 0.7637362637362637, "y": 1.1085122162209275 }, { "posteriors": "curve_1", "x": 0.7692307692307693, "y": 1.1145719736421904 }, { "posteriors": "curve_1", "x": 0.7747252747252747, "y": 1.1206213735804393 }, { "posteriors": "curve_1", "x": 0.7802197802197802, "y": 1.126660507009824 }, { "posteriors": "curve_1", "x": 0.7857142857142857, "y": 1.132689463470907 }, { "posteriors": "curve_1", "x": 0.7912087912087912, "y": 1.1387083311031159 }, { "posteriors": "curve_1", "x": 0.7967032967032966, "y": 1.1447171966762377 }, { "posteriors": "curve_1", "x": 0.8021978021978022, "y": 1.1507161456209936 }, { "posteriors": "curve_1", "x": 0.8076923076923077, "y": 1.1567052620587277 }, { "posteriors": "curve_1", "x": 0.8131868131868132, "y": 1.1626846288302395 }, { "posteriors": "curve_1", "x": 0.8186813186813187, "y": 1.1686543275237913 }, { "posteriors": "curve_1", "x": 0.8241758241758241, "y": 1.1746144385023192 }, { "posteriors": "curve_1", "x": 0.8296703296703297, "y": 1.1805650409298756 }, { "posteriors": "curve_1", "x": 0.8351648351648352, "y": 1.1865062127973294 }, { "posteriors": "curve_1", "x": 0.8406593406593407, "y": 1.1924380309473515 }, { "posteriors": "curve_1", "x": 0.8461538461538461, "y": 1.1983605710987062 }, { "posteriors": "curve_1", "x": 0.8516483516483516, "y": 1.2042739078698768 }, { "posteriors": "curve_1", "x": 0.8571428571428571, "y": 1.2101781148020432 }, { "posteriors": "curve_1", "x": 0.8626373626373627, "y": 1.2160732643814374 }, { "posteriors": "curve_1", "x": 0.8681318681318682, "y": 1.2219594280610941 }, { "posteriors": "curve_1", "x": 0.8736263736263736, "y": 1.2278366762820205 }, { "posteriors": "curve_1", "x": 0.8791208791208791, "y": 1.2337050784937982 }, { "posteriors": "curve_1", "x": 0.8846153846153846, "y": 1.2395647031746444 }, { "posteriors": "curve_1", "x": 0.8901098901098901, "y": 1.2454156178509406 }, { "posteriors": "curve_1", "x": 0.8956043956043956, "y": 1.2512578891162545 }, { "posteriors": "curve_1", "x": 0.9010989010989011, "y": 1.257091582649864 }, { "posteriors": "curve_1", "x": 0.9065934065934066, "y": 1.2629167632348068 }, { "posteriors": "curve_1", "x": 0.9120879120879121, "y": 1.2687334947754612 }, { "posteriors": "curve_1", "x": 0.9175824175824175, "y": 1.2745418403146835 }, { "posteriors": "curve_1", "x": 0.9230769230769231, "y": 1.2803418620505083 }, { "posteriors": "curve_1", "x": 0.9285714285714286, "y": 1.2861336213524253 }, { "posteriors": "curve_1", "x": 0.9340659340659341, "y": 1.2919171787772536 }, { "posteriors": "curve_1", "x": 0.9395604395604396, "y": 1.2976925940846151 }, { "posteriors": "curve_1", "x": 0.945054945054945, "y": 1.3034599262520281 }, { "posteriors": "curve_1", "x": 0.9505494505494505, "y": 1.3092192334896262 }, { "posteriors": "curve_1", "x": 0.9560439560439561, "y": 1.3149705732545194 }, { "posteriors": "curve_1", "x": 0.9615384615384616, "y": 1.3207140022648038 }, { "posteriors": "curve_1", "x": 0.967032967032967, "y": 1.3264495765132334 }, { "posteriors": "curve_1", "x": 0.9725274725274725, "y": 1.3321773512805613 }, { "posteriors": "curve_1", "x": 0.978021978021978, "y": 1.337897381148563 }, { "posteriors": "curve_1", "x": 0.9835164835164835, "y": 1.3436097200127481 }, { "posteriors": "curve_1", "x": 0.989010989010989, "y": 1.3493144210947738 }, { "posteriors": "curve_1", "x": 0.9945054945054945, "y": 1.3550115369545621 }, { "posteriors": "curve_2", "x": 0, "y": 0 }, { "posteriors": "curve_2", "x": 0.005494505494505495, "y": 0.025225997774011803 }, { "posteriors": "curve_2", "x": 0.01098901098901099, "y": 0.043813602259356016 }, { "posteriors": "curve_2", "x": 0.016483516483516484, "y": 0.060514566482907886 }, { "posteriors": "curve_2", "x": 0.02197802197802198, "y": 0.07609735639153506 }, { "posteriors": "curve_2", "x": 0.027472527472527472, "y": 0.09089819211797648 }, { "posteriors": "curve_2", "x": 0.03296703296703297, "y": 0.10510431224690563 }, { "posteriors": "curve_2", "x": 0.038461538461538464, "y": 0.11883420824834533 }, { "posteriors": "curve_2", "x": 0.04395604395604396, "y": 0.132169174666384 }, { "posteriors": "curve_2", "x": 0.04945054945054945, "y": 0.145168202638428 }, { "posteriors": "curve_2", "x": 0.054945054945054944, "y": 0.1578759052953878 }, { "posteriors": "curve_2", "x": 0.06043956043956044, "y": 0.17032711186628702 }, { "posteriors": "curve_2", "x": 0.06593406593406594, "y": 0.18254970819323635 }, { "posteriors": "curve_2", "x": 0.07142857142857142, "y": 0.19456648404581894 }, { "posteriors": "curve_2", "x": 0.07692307692307693, "y": 0.20639638446184103 }, { "posteriors": "curve_2", "x": 0.08241758241758242, "y": 0.21805538632712826 }, { "posteriors": "curve_2", "x": 0.08791208791208792, "y": 0.22955712997588856 }, { "posteriors": "curve_2", "x": 0.09340659340659341, "y": 0.24091338532643133 }, { "posteriors": "curve_2", "x": 0.0989010989010989, "y": 0.25213440309021984 }, { "posteriors": "curve_2", "x": 0.1043956043956044, "y": 0.2632291842022955 }, { "posteriors": "curve_2", "x": 0.10989010989010989, "y": 0.27420568981711363 }, { "posteriors": "curve_2", "x": 0.11538461538461539, "y": 0.28507100729615925 }, { "posteriors": "curve_2", "x": 0.12087912087912088, "y": 0.29583148306555646 }, { "posteriors": "curve_2", "x": 0.12637362637362637, "y": 0.3064928301606289 }, { "posteriors": "curve_2", "x": 0.13186813186813187, "y": 0.3170602161703108 }, { "posteriors": "curve_2", "x": 0.13736263736263737, "y": 0.32753833582070213 }, { "posteriors": "curve_2", "x": 0.14285714285714285, "y": 0.33793147138731133 }, { "posteriors": "curve_2", "x": 0.14835164835164835, "y": 0.34824354336610697 }, { "posteriors": "curve_2", "x": 0.15384615384615385, "y": 0.3584781532763168 }, { "posteriors": "curve_2", "x": 0.15934065934065933, "y": 0.3686386200538203 }, { "posteriors": "curve_2", "x": 0.16483516483516483, "y": 0.37872801118255367 }, { "posteriors": "curve_2", "x": 0.17032967032967034, "y": 0.3887491694745655 }, { "posteriors": "curve_2", "x": 0.17582417582417584, "y": 0.39870473622749975 }, { "posteriors": "curve_2", "x": 0.1813186813186813, "y": 0.4085971713472844 }, { "posteriors": "curve_2", "x": 0.18681318681318682, "y": 0.41842877091353137 }, { "posteriors": "curve_2", "x": 0.19230769230769232, "y": 0.4282016825781975 }, { "posteriors": "curve_2", "x": 0.1978021978021978, "y": 0.43791791911897077 }, { "posteriors": "curve_2", "x": 0.2032967032967033, "y": 0.44757937041355467 }, { "posteriors": "curve_2", "x": 0.2087912087912088, "y": 0.457187814056482 }, { "posteriors": "curve_2", "x": 0.21428571428571427, "y": 0.4667449248039738 }, { "posteriors": "curve_2", "x": 0.21978021978021978, "y": 0.4762522830029067 }, { "posteriors": "curve_2", "x": 0.22527472527472528, "y": 0.48571138213578835 }, { "posteriors": "curve_2", "x": 0.23076923076923078, "y": 0.49512363559372335 }, { "posteriors": "curve_2", "x": 0.23626373626373626, "y": 0.504490382772837 }, { "posteriors": "curve_2", "x": 0.24175824175824176, "y": 0.5138128945758798 }, { "posteriors": "curve_2", "x": 0.24725274725274726, "y": 0.5230923783892266 }, { "posteriors": "curve_2", "x": 0.25274725274725274, "y": 0.5323299825958299 }, { "posteriors": "curve_2", "x": 0.25824175824175827, "y": 0.541526800676525 }, { "posteriors": "curve_2", "x": 0.26373626373626374, "y": 0.5506838749451852 }, { "posteriors": "curve_2", "x": 0.2692307692307692, "y": 0.5598021999573533 }, { "posteriors": "curve_2", "x": 0.27472527472527475, "y": 0.5688827256269665 }, { "posteriors": "curve_2", "x": 0.2802197802197802, "y": 0.5779263600815029 }, { "posteriors": "curve_2", "x": 0.2857142857142857, "y": 0.586933972282197 }, { "posteriors": "curve_2", "x": 0.29120879120879123, "y": 0.5959063944327939 }, { "posteriors": "curve_2", "x": 0.2967032967032967, "y": 0.6048444241975722 }, { "posteriors": "curve_2", "x": 0.3021978021978022, "y": 0.6137488267469862 }, { "posteriors": "curve_2", "x": 0.3076923076923077, "y": 0.6226203366472103 }, { "posteriors": "curve_2", "x": 0.3131868131868132, "y": 0.6314596596080699 }, { "posteriors": "curve_2", "x": 0.31868131868131866, "y": 0.6402674741022668 }, { "posteriors": "curve_2", "x": 0.3241758241758242, "y": 0.6490444328674292 }, { "posteriors": "curve_2", "x": 0.32967032967032966, "y": 0.6577911643013047 }, { "posteriors": "curve_2", "x": 0.33516483516483514, "y": 0.666508273759353 }, { "posteriors": "curve_2", "x": 0.34065934065934067, "y": 0.6751963447630498 }, { "posteriors": "curve_2", "x": 0.34615384615384615, "y": 0.6838559401263854 }, { "posteriors": "curve_2", "x": 0.3516483516483517, "y": 0.6924876030073083 }, { "posteriors": "curve_2", "x": 0.35714285714285715, "y": 0.7010918578902029 }, { "posteriors": "curve_2", "x": 0.3626373626373626, "y": 0.7096692115049213 }, { "posteriors": "curve_2", "x": 0.36813186813186816, "y": 0.7182201536873586 }, { "posteriors": "curve_2", "x": 0.37362637362637363, "y": 0.7267451581861096 }, { "posteriors": "curve_2", "x": 0.3791208791208791, "y": 0.7352446834193277 }, { "posteriors": "curve_2", "x": 0.38461538461538464, "y": 0.7437191731855333 }, { "posteriors": "curve_2", "x": 0.3901098901098901, "y": 0.7521690573317943 }, { "posteriors": "curve_2", "x": 0.3956043956043956, "y": 0.7605947523823976 }, { "posteriors": "curve_2", "x": 0.4010989010989011, "y": 0.7689966621308628 }, { "posteriors": "curve_2", "x": 0.4065934065934066, "y": 0.7773751781979082 }, { "posteriors": "curve_2", "x": 0.41208791208791207, "y": 0.7857306805577623 }, { "posteriors": "curve_2", "x": 0.4175824175824176, "y": 0.7940635380350106 }, { "posteriors": "curve_2", "x": 0.4230769230769231, "y": 0.8023741087739973 }, { "posteriors": "curve_2", "x": 0.42857142857142855, "y": 0.8106627406826303 }, { "posteriors": "curve_2", "x": 0.4340659340659341, "y": 0.8189297718522974 }, { "posteriors": "curve_2", "x": 0.43956043956043955, "y": 0.8271755309554659 }, { "posteriors": "curve_2", "x": 0.44505494505494503, "y": 0.835400337622413 }, { "posteriors": "curve_2", "x": 0.45054945054945056, "y": 0.8436045027984292 }, { "posteriors": "curve_2", "x": 0.45604395604395603, "y": 0.8517883290827305 }, { "posteriors": "curve_2", "x": 0.46153846153846156, "y": 0.8599521110502248 }, { "posteriors": "curve_2", "x": 0.46703296703296704, "y": 0.8680961355571951 }, { "posteriors": "curve_2", "x": 0.4725274725274725, "y": 0.8762206820318819 }, { "posteriors": "curve_2", "x": 0.47802197802197804, "y": 0.884326022750877 }, { "posteriors": "curve_2", "x": 0.4835164835164835, "y": 0.8924124231021778 }, { "posteriors": "curve_2", "x": 0.489010989010989, "y": 0.9004801418356896 }, { "posteriors": "curve_2", "x": 0.4945054945054945, "y": 0.9085294313019077 }, { "posteriors": "curve_2", "x": 0.5, "y": 0.9165605376794635 }, { "posteriors": "curve_2", "x": 0.5054945054945055, "y": 0.9245737011921727 }, { "posteriors": "curve_2", "x": 0.510989010989011, "y": 0.9325691563161722 }, { "posteriors": "curve_2", "x": 0.5164835164835165, "y": 0.9405471319777075 }, { "posteriors": "curve_2", "x": 0.521978021978022, "y": 0.9485078517420822 }, { "posteriors": "curve_2", "x": 0.5274725274725275, "y": 0.9564515339942565 }, { "posteriors": "curve_2", "x": 0.532967032967033, "y": 0.9643783921115445 }, { "posteriors": "curve_2", "x": 0.5384615384615384, "y": 0.9722886346288347 }, { "posteriors": "curve_2", "x": 0.5439560439560439, "y": 0.9801824653967315 }, { "posteriors": "curve_2", "x": 0.5494505494505495, "y": 0.9880600837329877 }, { "posteriors": "curve_2", "x": 0.554945054945055, "y": 0.9959216845675769 }, { "posteriors": "curve_2", "x": 0.5604395604395604, "y": 1.003767458581735 }, { "posteriors": "curve_2", "x": 0.5659340659340659, "y": 1.011597592341276 }, { "posteriors": "curve_2", "x": 0.5714285714285714, "y": 1.0194122684244724 }, { "posteriors": "curve_2", "x": 0.5769230769230769, "y": 1.0272116655447712 }, { "posteriors": "curve_2", "x": 0.5824175824175825, "y": 1.0349959586686015 }, { "posteriors": "curve_2", "x": 0.5879120879120879, "y": 1.0427653191285153 }, { "posteriors": "curve_2", "x": 0.5934065934065934, "y": 1.0505199147318864 }, { "posteriors": "curve_2", "x": 0.5989010989010989, "y": 1.058259909865383 }, { "posteriors": "curve_2", "x": 0.6043956043956044, "y": 1.0659854655954142 }, { "posteriors": "curve_2", "x": 0.6098901098901099, "y": 1.0736967397647421 }, { "posteriors": "curve_2", "x": 0.6153846153846154, "y": 1.0813938870854374 }, { "posteriors": "curve_2", "x": 0.6208791208791209, "y": 1.0890770592283503 }, { "posteriors": "curve_2", "x": 0.6263736263736264, "y": 1.0967464049092548 }, { "posteriors": "curve_2", "x": 0.6318681318681318, "y": 1.1044020699718209 }, { "posteriors": "curve_2", "x": 0.6373626373626373, "y": 1.1120441974675535 }, { "posteriors": "curve_2", "x": 0.6428571428571429, "y": 1.1196729277328408 }, { "posteriors": "curve_2", "x": 0.6483516483516484, "y": 1.1272883984632327 }, { "posteriors": "curve_2", "x": 0.6538461538461539, "y": 1.1348907447850791 }, { "posteriors": "curve_2", "x": 0.6593406593406593, "y": 1.1424800993246365 }, { "posteriors": "curve_2", "x": 0.6648351648351648, "y": 1.1500565922747583 }, { "posteriors": "curve_2", "x": 0.6703296703296703, "y": 1.1576203514592682 }, { "posteriors": "curve_2", "x": 0.6758241758241759, "y": 1.1651715023951188 }, { "posteriors": "curve_2", "x": 0.6813186813186813, "y": 1.172710168352425 }, { "posteriors": "curve_2", "x": 0.6868131868131868, "y": 1.1802364704124686 }, { "posteriors": "curve_2", "x": 0.6923076923076923, "y": 1.1877505275237488 }, { "posteriors": "curve_2", "x": 0.6978021978021978, "y": 1.195252456556167 }, { "posteriors": "curve_2", "x": 0.7032967032967034, "y": 1.2027423723534194 }, { "posteriors": "curve_2", "x": 0.7087912087912088, "y": 1.2102203877836677 }, { "posteriors": "curve_2", "x": 0.7142857142857143, "y": 1.2176866137885647 }, { "posteriors": "curve_2", "x": 0.7197802197802198, "y": 1.2251411594306907 }, { "posteriors": "curve_2", "x": 0.7252747252747253, "y": 1.2325841319394732 }, { "posteriors": "curve_2", "x": 0.7307692307692307, "y": 1.2400156367556414 }, { "posteriors": "curve_2", "x": 0.7362637362637363, "y": 1.2474357775742801 }, { "posteriors": "curve_2", "x": 0.7417582417582418, "y": 1.254844656386532 }, { "posteriors": "curve_2", "x": 0.7472527472527473, "y": 1.2622423735200035 }, { "posteriors": "curve_2", "x": 0.7527472527472527, "y": 1.26962902767792 }, { "posteriors": "curve_2", "x": 0.7582417582417582, "y": 1.2770047159770863 }, { "posteriors": "curve_2", "x": 0.7637362637362637, "y": 1.2843695339846843 }, { "posteriors": "curve_2", "x": 0.7692307692307693, "y": 1.2917235757539642 }, { "posteriors": "curve_2", "x": 0.7747252747252747, "y": 1.2990669338588618 }, { "posteriors": "curve_2", "x": 0.7802197802197802, "y": 1.3063996994275864 }, { "posteriors": "curve_2", "x": 0.7857142857142857, "y": 1.3137219621752136 }, { "posteriors": "curve_2", "x": 0.7912087912087912, "y": 1.3210338104353212 }, { "posteriors": "curve_2", "x": 0.7967032967032966, "y": 1.3283353311907027 }, { "posteriors": "curve_2", "x": 0.8021978021978022, "y": 1.3356266101031902 }, { "posteriors": "curve_2", "x": 0.8076923076923077, "y": 1.3429077315426192 }, { "posteriors": "curve_2", "x": 0.8131868131868132, "y": 1.350178778614968 }, { "posteriors": "curve_2", "x": 0.8186813186813187, "y": 1.3574398331896937 }, { "posteriors": "curve_2", "x": 0.8241758241758241, "y": 1.3646909759263026 }, { "posteriors": "curve_2", "x": 0.8296703296703297, "y": 1.3719322863001735 }, { "posteriors": "curve_2", "x": 0.8351648351648352, "y": 1.3791638426276622 }, { "posteriors": "curve_2", "x": 0.8406593406593407, "y": 1.386385722090515 }, { "posteriors": "curve_2", "x": 0.8461538461538461, "y": 1.3935980007596083 }, { "posteriors": "curve_2", "x": 0.8516483516483516, "y": 1.4008007536180447 }, { "posteriors": "curve_2", "x": 0.8571428571428571, "y": 1.4079940545836191 }, { "posteriors": "curve_2", "x": 0.8626373626373627, "y": 1.4151779765306818 }, { "posteriors": "curve_2", "x": 0.8681318681318682, "y": 1.422352591311417 }, { "posteriors": "curve_2", "x": 0.8736263736263736, "y": 1.4295179697765545 }, { "posteriors": "curve_2", "x": 0.8791208791208791, "y": 1.4366741817955355 }, { "posteriors": "curve_2", "x": 0.8846153846153846, "y": 1.4438212962761465 }, { "posteriors": "curve_2", "x": 0.8901098901098901, "y": 1.4509593811836432 }, { "posteriors": "curve_2", "x": 0.8956043956043956, "y": 1.4580885035593787 }, { "posteriors": "curve_2", "x": 0.9010989010989011, "y": 1.4652087295389482 }, { "posteriors": "curve_2", "x": 0.9065934065934066, "y": 1.4723201243698736 }, { "posteriors": "curve_2", "x": 0.9120879120879121, "y": 1.4794227524288348 }, { "posteriors": "curve_2", "x": 0.9175824175824175, "y": 1.486516677238465 }, { "posteriors": "curve_2", "x": 0.9230769230769231, "y": 1.4936019614837246 }, { "posteriors": "curve_2", "x": 0.9285714285714286, "y": 1.5006786670278653 }, { "posteriors": "curve_2", "x": 0.9340659340659341, "y": 1.5077468549279969 }, { "posteriors": "curve_2", "x": 0.9395604395604396, "y": 1.5148065854502701 }, { "posteriors": "curve_2", "x": 0.945054945054945, "y": 1.5218579180846858 }, { "posteriors": "curve_2", "x": 0.9505494505494505, "y": 1.5289009115595429 }, { "posteriors": "curve_2", "x": 0.9560439560439561, "y": 1.5359356238555344 }, { "posteriors": "curve_2", "x": 0.9615384615384616, "y": 1.542962112219505 }, { "posteriors": "curve_2", "x": 0.967032967032967, "y": 1.5499804331778764 }, { "posteriors": "curve_2", "x": 0.9725274725274725, "y": 1.5569906425497537 }, { "posteriors": "curve_2", "x": 0.978021978021978, "y": 1.5639927954597201 }, { "posteriors": "curve_2", "x": 0.9835164835164835, "y": 1.5709869463503288 }, { "posteriors": "curve_2", "x": 0.989010989010989, "y": 1.5779731489943034 }, { "posteriors": "curve_2", "x": 0.9945054945054945, "y": 1.5849514565064518 }, { "posteriors": "curve_3", "x": 0, "y": 0 }, { "posteriors": "curve_3", "x": 0.005494505494505495, "y": 0.02608412678463948 }, { "posteriors": "curve_3", "x": 0.01098901098901099, "y": 0.04477159922926915 }, { "posteriors": "curve_3", "x": 0.016483516483516484, "y": 0.06141156962257961 }, { "posteriors": "curve_3", "x": 0.02197802197802198, "y": 0.07684735295515852 }, { "posteriors": "curve_3", "x": 0.027472527472527472, "y": 0.09144536800844988 }, { "posteriors": "curve_3", "x": 0.03296703296703297, "y": 0.10540871104803964 }, { "posteriors": "curve_3", "x": 0.038461538461538464, "y": 0.11886544342994068 }, { "posteriors": "curve_3", "x": 0.04395604395604396, "y": 0.13190316535206578 }, { "posteriors": "curve_3", "x": 0.04945054945054945, "y": 0.144585284170979 }, { "posteriors": "curve_3", "x": 0.054945054945054944, "y": 0.1569596483581858 }, { "posteriors": "curve_3", "x": 0.06043956043956044, "y": 0.16906354093896264 }, { "posteriors": "curve_3", "x": 0.06593406593406594, "y": 0.18092676075688283 }, { "posteriors": "curve_3", "x": 0.07142857142857142, "y": 0.1925736227982447 }, { "posteriors": "curve_3", "x": 0.07692307692307693, "y": 0.20402431100697563 }, { "posteriors": "curve_3", "x": 0.08241758241758242, "y": 0.21529582456332758 }, { "posteriors": "curve_3", "x": 0.08791208791208792, "y": 0.22640265878834678 }, { "posteriors": "curve_3", "x": 0.09340659340659341, "y": 0.23735730704243843 }, { "posteriors": "curve_3", "x": 0.0989010989010989, "y": 0.24817063844226883 }, { "posteriors": "curve_3", "x": 0.1043956043956044, "y": 0.2588521873130498 }, { "posteriors": "curve_3", "x": 0.10989010989010989, "y": 0.2694103785601131 }, { "posteriors": "curve_3", "x": 0.11538461538461539, "y": 0.2798527056391738 }, { "posteriors": "curve_3", "x": 0.12087912087912088, "y": 0.29018587287567466 }, { "posteriors": "curve_3", "x": 0.12637362637362637, "y": 0.30041591056915784 }, { "posteriors": "curve_3", "x": 0.13186813186813187, "y": 0.3105482690425812 }, { "posteriors": "curve_3", "x": 0.13736263736263737, "y": 0.3205878962038026 }, { "posteriors": "curve_3", "x": 0.14285714285714285, "y": 0.3305393020527992 }, { "posteriors": "curve_3", "x": 0.14835164835164835, "y": 0.3404066127486912 }, { "posteriors": "curve_3", "x": 0.15384615384615385, "y": 0.3501936162498349 }, { "posteriors": "curve_3", "x": 0.15934065934065933, "y": 0.3599038010940437 }, { "posteriors": "curve_3", "x": 0.16483516483516483, "y": 0.36954038955065477 }, { "posteriors": "curve_3", "x": 0.17032967032967034, "y": 0.37910636612135556 }, { "posteriors": "curve_3", "x": 0.17582417582417584, "y": 0.38860450217110587 }, { "posteriors": "curve_3", "x": 0.1813186813186813, "y": 0.3980373773189526 }, { "posteriors": "curve_3", "x": 0.18681318681318682, "y": 0.40740739810008236 }, { "posteriors": "curve_3", "x": 0.19230769230769232, "y": 0.4167168143171078 }, { "posteriors": "curve_3", "x": 0.1978021978021978, "y": 0.4259677334244596 }, { "posteriors": "curve_3", "x": 0.2032967032967033, "y": 0.4351621332304605 }, { "posteriors": "curve_3", "x": 0.2087912087912088, "y": 0.4443018731539169 }, { "posteriors": "curve_3", "x": 0.21428571428571427, "y": 0.45338870423337596 }, { "posteriors": "curve_3", "x": 0.21978021978021978, "y": 0.4624242780556544 }, { "posteriors": "curve_3", "x": 0.22527472527472528, "y": 0.4714101547443879 }, { "posteriors": "curve_3", "x": 0.23076923076923078, "y": 0.48034781012803973 }, { "posteriors": "curve_3", "x": 0.23626373626373626, "y": 0.48923864218915064 }, { "posteriors": "curve_3", "x": 0.24175824175824176, "y": 0.4980839768819166 }, { "posteriors": "curve_3", "x": 0.24725274725274726, "y": 0.5068850733928918 }, { "posteriors": "curve_3", "x": 0.25274725274725274, "y": 0.5156431289092969 }, { "posteriors": "curve_3", "x": 0.25824175824175827, "y": 0.5243592829507037 }, { "posteriors": "curve_3", "x": 0.26373626373626374, "y": 0.5330346213125058 }, { "posteriors": "curve_3", "x": 0.2692307692307692, "y": 0.5416701796633179 }, { "posteriors": "curve_3", "x": 0.27472527472527475, "y": 0.5502669468331052 }, { "posteriors": "curve_3", "x": 0.2802197802197802, "y": 0.5588258678242805 }, { "posteriors": "curve_3", "x": 0.2857142857142857, "y": 0.5673478465740714 }, { "posteriors": "curve_3", "x": 0.29120879120879123, "y": 0.5758337484930894 }, { "posteriors": "curve_3", "x": 0.2967032967032967, "y": 0.5842844028021034 }, { "posteriors": "curve_3", "x": 0.3021978021978022, "y": 0.5927006046864969 }, { "posteriors": "curve_3", "x": 0.3076923076923077, "y": 0.6010831172856833 }, { "posteriors": "curve_3", "x": 0.3131868131868132, "y": 0.6094326735328393 }, { "posteriors": "curve_3", "x": 0.31868131868131866, "y": 0.6177499778586448 }, { "posteriors": "curve_3", "x": 0.3241758241758242, "y": 0.6260357077712498 }, { "posteriors": "curve_3", "x": 0.32967032967032966, "y": 0.6342905153234016 }, { "posteriors": "curve_3", "x": 0.33516483516483514, "y": 0.6425150284765372 }, { "posteriors": "curve_3", "x": 0.34065934065934067, "y": 0.6507098523706438 }, { "posteriors": "curve_3", "x": 0.34615384615384615, "y": 0.6588755705078106 }, { "posteriors": "curve_3", "x": 0.3516483516483517, "y": 0.6670127458566131 }, { "posteriors": "curve_3", "x": 0.35714285714285715, "y": 0.6751219218837765 }, { "posteriors": "curve_3", "x": 0.3626373626373626, "y": 0.6832036235189555 }, { "posteriors": "curve_3", "x": 0.36813186813186816, "y": 0.6912583580579051 }, { "posteriors": "curve_3", "x": 0.37362637362637363, "y": 0.6992866160088442 }, { "posteriors": "curve_3", "x": 0.3791208791208791, "y": 0.7072888718863618 }, { "posteriors": "curve_3", "x": 0.38461538461538464, "y": 0.7152655849568316 }, { "posteriors": "curve_3", "x": 0.3901098901098901, "y": 0.7232171999389455 }, { "posteriors": "curve_3", "x": 0.3956043956043956, "y": 0.7311441476626626 }, { "posteriors": "curve_3", "x": 0.4010989010989011, "y": 0.7390468456895836 }, { "posteriors": "curve_3", "x": 0.4065934065934066, "y": 0.7469256988975062 }, { "posteriors": "curve_3", "x": 0.41208791208791207, "y": 0.754781100031686 }, { "posteriors": "curve_3", "x": 0.4175824175824176, "y": 0.7626134302251161 }, { "posteriors": "curve_3", "x": 0.4230769230769231, "y": 0.7704230594899508 }, { "posteriors": "curve_3", "x": 0.42857142857142855, "y": 0.778210347182029 }, { "posteriors": "curve_3", "x": 0.4340659340659341, "y": 0.7859756424402938 }, { "posteriors": "curve_3", "x": 0.43956043956043955, "y": 0.7937192846027654 }, { "posteriors": "curve_3", "x": 0.44505494505494503, "y": 0.801441603600597 }, { "posteriors": "curve_3", "x": 0.45054945054945056, "y": 0.8091429203316227 }, { "posteriors": "curve_3", "x": 0.45604395604395603, "y": 0.8168235470147013 }, { "posteriors": "curve_3", "x": 0.46153846153846156, "y": 0.8244837875260661 }, { "posteriors": "curve_3", "x": 0.46703296703296704, "y": 0.8321239377187918 }, { "posteriors": "curve_3", "x": 0.4725274725274725, "y": 0.8397442857264201 }, { "posteriors": "curve_3", "x": 0.47802197802197804, "y": 0.8473451122517 }, { "posteriors": "curve_3", "x": 0.4835164835164835, "y": 0.8549266908413375 }, { "posteriors": "curve_3", "x": 0.489010989010989, "y": 0.8624892881475845 }, { "posteriors": "curve_3", "x": 0.4945054945054945, "y": 0.8700331641774336 }, { "posteriors": "curve_3", "x": 0.5, "y": 0.8775585725301429 }, { "posteriors": "curve_3", "x": 0.5054945054945055, "y": 0.8850657606237553 }, { "posteriors": "curve_3", "x": 0.510989010989011, "y": 0.8925549699112372 }, { "posteriors": "curve_3", "x": 0.5164835164835165, "y": 0.9000264360868204 }, { "posteriors": "curve_3", "x": 0.521978021978022, "y": 0.9074803892830874 }, { "posteriors": "curve_3", "x": 0.5274725274725275, "y": 0.9149170542593115 }, { "posteriors": "curve_3", "x": 0.532967032967033, "y": 0.9223366505815253 }, { "posteriors": "curve_3", "x": 0.5384615384615384, "y": 0.9297393927947614 }, { "posteriors": "curve_3", "x": 0.5439560439560439, "y": 0.9371254905878846 }, { "posteriors": "curve_3", "x": 0.5494505494505495, "y": 0.9444951489514029 }, { "posteriors": "curve_3", "x": 0.554945054945055, "y": 0.951848568328624 }, { "posteriors": "curve_3", "x": 0.5604395604395604, "y": 0.9591859447605051 }, { "posteriors": "curve_3", "x": 0.5659340659340659, "y": 0.9665074700245109 }, { "posteriors": "curve_3", "x": 0.5714285714285714, "y": 0.9738133317677895 }, { "posteriors": "curve_3", "x": 0.5769230769230769, "y": 0.9811037136349493 }, { "posteriors": "curve_3", "x": 0.5824175824175825, "y": 0.9883787953907041 }, { "posteriors": "curve_3", "x": 0.5879120879120879, "y": 0.9956387530376389 }, { "posteriors": "curve_3", "x": 0.5934065934065934, "y": 1.0028837589293367 }, { "posteriors": "curve_3", "x": 0.5989010989010989, "y": 1.0101139818790874 }, { "posteriors": "curve_3", "x": 0.6043956043956044, "y": 1.0173295872643908 }, { "posteriors": "curve_3", "x": 0.6098901098901099, "y": 1.0245307371274555 }, { "posteriors": "curve_3", "x": 0.6153846153846154, "y": 1.031717590271878 }, { "posteriors": "curve_3", "x": 0.6208791208791209, "y": 1.038890302355684 }, { "posteriors": "curve_3", "x": 0.6263736263736264, "y": 1.046049025980895 }, { "posteriors": "curve_3", "x": 0.6318681318681318, "y": 1.0531939107797856 }, { "posteriors": "curve_3", "x": 0.6373626373626373, "y": 1.0603251034979744 }, { "posteriors": "curve_3", "x": 0.6428571428571429, "y": 1.067442748074496 }, { "posteriors": "curve_3", "x": 0.6483516483516484, "y": 1.0745469857189873 }, { "posteriors": "curve_3", "x": 0.6538461538461539, "y": 1.0816379549861161 }, { "posteriors": "curve_3", "x": 0.6593406593406593, "y": 1.088715791847369 }, { "posteriors": "curve_3", "x": 0.6648351648351648, "y": 1.0957806297603205 }, { "posteriors": "curve_3", "x": 0.6703296703296703, "y": 1.1028325997354858 }, { "posteriors": "curve_3", "x": 0.6758241758241759, "y": 1.1098718304008637 }, { "posteriors": "curve_3", "x": 0.6813186813186813, "y": 1.116898448064265 }, { "posteriors": "curve_3", "x": 0.6868131868131868, "y": 1.1239125767735243 }, { "posteriors": "curve_3", "x": 0.6923076923076923, "y": 1.1309143383746778 }, { "posteriors": "curve_3", "x": 0.6978021978021978, "y": 1.1379038525681942 }, { "posteriors": "curve_3", "x": 0.7032967032967034, "y": 1.1448812369633399 }, { "posteriors": "curve_3", "x": 0.7087912087912088, "y": 1.1518466071307516 }, { "posteriors": "curve_3", "x": 0.7142857142857143, "y": 1.1588000766532913 }, { "posteriors": "curve_3", "x": 0.7197802197802198, "y": 1.1657417571752502 }, { "posteriors": "curve_3", "x": 0.7252747252747253, "y": 1.1726717584499706 }, { "posteriors": "curve_3", "x": 0.7307692307692307, "y": 1.179590188385944 }, { "posteriors": "curve_3", "x": 0.7362637362637363, "y": 1.1864971530914494 }, { "posteriors": "curve_3", "x": 0.7417582417582418, "y": 1.1933927569177856 }, { "posteriors": "curve_3", "x": 0.7472527472527473, "y": 1.2002771025011534 }, { "posteriors": "curve_3", "x": 0.7527472527472527, "y": 1.2071502908032394 }, { "posteriors": "curve_3", "x": 0.7582417582417582, "y": 1.2140124211505499 }, { "posteriors": "curve_3", "x": 0.7637362637362637, "y": 1.2208635912725416 }, { "posteriors": "curve_3", "x": 0.7692307692307693, "y": 1.227703897338599 }, { "posteriors": "curve_3", "x": 0.7747252747252747, "y": 1.2345334339938931 }, { "posteriors": "curve_3", "x": 0.7802197802197802, "y": 1.2413522943941717 }, { "posteriors": "curve_3", "x": 0.7857142857142857, "y": 1.2481605702395138 }, { "posteriors": "curve_3", "x": 0.7912087912087912, "y": 1.2549583518070895 }, { "posteriors": "curve_3", "x": 0.7967032967032966, "y": 1.2617457279829603 }, { "posteriors": "curve_3", "x": 0.8021978021978022, "y": 1.2685227862929545 }, { "posteriors": "curve_3", "x": 0.8076923076923077, "y": 1.27528961293265 }, { "posteriors": "curve_3", "x": 0.8131868131868132, "y": 1.2820462927964988 }, { "posteriors": "curve_3", "x": 0.8186813186813187, "y": 1.2887929095061186 }, { "posteriors": "curve_3", "x": 0.8241758241758241, "y": 1.2955295454377858 }, { "posteriors": "curve_3", "x": 0.8296703296703297, "y": 1.302256281749155 }, { "posteriors": "curve_3", "x": 0.8351648351648352, "y": 1.3089731984052317 }, { "posteriors": "curve_3", "x": 0.8406593406593407, "y": 1.3156803742036254 }, { "posteriors": "curve_3", "x": 0.8461538461538461, "y": 1.322377886799104 }, { "posteriors": "curve_3", "x": 0.8516483516483516, "y": 1.32906581272748 }, { "posteriors": "curve_3", "x": 0.8571428571428571, "y": 1.3357442274288414 }, { "posteriors": "curve_3", "x": 0.8626373626373627, "y": 1.34241320527016 }, { "posteriors": "curve_3", "x": 0.8681318681318682, "y": 1.3490728195672874 }, { "posteriors": "curve_3", "x": 0.8736263736263736, "y": 1.3557231426063676 }, { "posteriors": "curve_3", "x": 0.8791208791208791, "y": 1.3623642456646798 }, { "posteriors": "curve_3", "x": 0.8846153846153846, "y": 1.3689961990309312 }, { "posteriors": "curve_3", "x": 0.8901098901098901, "y": 1.3756190720250199 }, { "posteriors": "curve_3", "x": 0.8956043956043956, "y": 1.382232933017282 }, { "posteriors": "curve_3", "x": 0.9010989010989011, "y": 1.3888378494472409 }, { "posteriors": "curve_3", "x": 0.9065934065934066, "y": 1.3954338878418746 }, { "posteriors": "curve_3", "x": 0.9120879120879121, "y": 1.4020211138334164 }, { "posteriors": "curve_3", "x": 0.9175824175824175, "y": 1.408599592176702 }, { "posteriors": "curve_3", "x": 0.9230769230769231, "y": 1.41516938676608 }, { "posteriors": "curve_3", "x": 0.9285714285714286, "y": 1.421730560651896 }, { "posteriors": "curve_3", "x": 0.9340659340659341, "y": 1.4282831760565682 }, { "posteriors": "curve_3", "x": 0.9395604395604396, "y": 1.4348272943902607 }, { "posteriors": "curve_3", "x": 0.945054945054945, "y": 1.441362976266173 }, { "posteriors": "curve_3", "x": 0.9505494505494505, "y": 1.4478902815154528 }, { "posteriors": "curve_3", "x": 0.9560439560439561, "y": 1.4544092692017458 }, { "posteriors": "curve_3", "x": 0.9615384615384616, "y": 1.4609199976353928 }, { "posteriors": "curve_3", "x": 0.967032967032967, "y": 1.4674225243872847 }, { "posteriors": "curve_3", "x": 0.9725274725274725, "y": 1.4739169063023858 }, { "posteriors": "curve_3", "x": 0.978021978021978, "y": 1.4804031995129334 }, { "posteriors": "curve_3", "x": 0.9835164835164835, "y": 1.4868814594513264 }, { "posteriors": "curve_3", "x": 0.989010989010989, "y": 1.493351740862709 }, { "posteriors": "curve_3", "x": 0.9945054945054945, "y": 1.4998140978172598 }, { "posteriors": "curve_4", "x": 0, "y": 0 }, { "posteriors": "curve_4", "x": 0.005494505494505495, "y": 0.02578881920721412 }, { "posteriors": "curve_4", "x": 0.01098901098901099, "y": 0.044196063733065845 }, { "posteriors": "curve_4", "x": 0.016483516483516484, "y": 0.06056710509210745 }, { "posteriors": "curve_4", "x": 0.02197802197802198, "y": 0.07574181794840795 }, { "posteriors": "curve_4", "x": 0.027472527472527472, "y": 0.09008479394082501 }, { "posteriors": "curve_4", "x": 0.03296703296703297, "y": 0.1037979914966121 }, { "posteriors": "curve_4", "x": 0.038461538461538464, "y": 0.11700869385205513 }, { "posteriors": "curve_4", "x": 0.04395604395604396, "y": 0.12980393504676974 }, { "posteriors": "curve_4", "x": 0.04945054945054945, "y": 0.14224669186141736 }, { "posteriors": "curve_4", "x": 0.054945054945054944, "y": 0.15438447423273488 }, { "posteriors": "curve_4", "x": 0.06043956043956044, "y": 0.16625429202354403 }, { "posteriors": "curve_4", "x": 0.06593406593406594, "y": 0.17788571902761668 }, { "posteriors": "curve_4", "x": 0.07142857142857142, "y": 0.1893028816248797 }, { "posteriors": "curve_4", "x": 0.07692307692307693, "y": 0.20052580342110435 }, { "posteriors": "curve_4", "x": 0.08241758241758242, "y": 0.21157134562750715 }, { "posteriors": "curve_4", "x": 0.08791208791208792, "y": 0.22245388360103613 }, { "posteriors": "curve_4", "x": 0.09340659340659341, "y": 0.23318580544461853 }, { "posteriors": "curve_4", "x": 0.0989010989010989, "y": 0.2437778871847819 }, { "posteriors": "curve_4", "x": 0.1043956043956044, "y": 0.25423958023714854 }, { "posteriors": "curve_4", "x": 0.10989010989010989, "y": 0.26457923520116444 }, { "posteriors": "curve_4", "x": 0.11538461538461539, "y": 0.27480427856290446 }, { "posteriors": "curve_4", "x": 0.12087912087912088, "y": 0.28492135398401014 }, { "posteriors": "curve_4", "x": 0.12637362637362637, "y": 0.29493643655976975 }, { "posteriors": "curve_4", "x": 0.13186813186813187, "y": 0.30485492616689996 }, { "posteriors": "curve_4", "x": 0.13736263736263737, "y": 0.31468172443857967 }, { "posteriors": "curve_4", "x": 0.14285714285714285, "y": 0.324421298777642 }, { "posteriors": "curve_4", "x": 0.14835164835164835, "y": 0.3340777360044858 }, { "posteriors": "curve_4", "x": 0.15384615384615385, "y": 0.3436547876392958 }, { "posteriors": "curve_4", "x": 0.15934065934065933, "y": 0.35315590837484734 }, { "posteriors": "curve_4", "x": 0.16483516483516483, "y": 0.3625842889630279 }, { "posteriors": "curve_4", "x": 0.17032967032967034, "y": 0.3719428844851022 }, { "posteriors": "curve_4", "x": 0.17582417582417584, "y": 0.381234438781483 }, { "posteriors": "curve_4", "x": 0.1813186813186813, "y": 0.39046150566626475 }, { "posteriors": "curve_4", "x": 0.18681318681318682, "y": 0.3996264674341391 }, { "posteriors": "curve_4", "x": 0.19230769230769232, "y": 0.4087315510746157 }, { "posteriors": "curve_4", "x": 0.1978021978021978, "y": 0.417778842534863 }, { "posteriors": "curve_4", "x": 0.2032967032967033, "y": 0.42677029931361626 }, { "posteriors": "curve_4", "x": 0.2087912087912088, "y": 0.43570776162119423 }, { "posteriors": "curve_4", "x": 0.21428571428571427, "y": 0.44459296230226475 }, { "posteriors": "curve_4", "x": 0.21978021978021978, "y": 0.4534275356866826 }, { "posteriors": "curve_4", "x": 0.22527472527472528, "y": 0.46221302550805965 }, { "posteriors": "curve_4", "x": 0.23076923076923078, "y": 0.4709508920085729 }, { "posteriors": "curve_4", "x": 0.23626373626373626, "y": 0.47964251833099225 }, { "posteriors": "curve_4", "x": 0.24175824175824176, "y": 0.4882892162843248 }, { "posteriors": "curve_4", "x": 0.24725274725274726, "y": 0.4968922315572779 }, { "posteriors": "curve_4", "x": 0.25274725274725274, "y": 0.5054527484435006 }, { "posteriors": "curve_4", "x": 0.25824175824175827, "y": 0.5139718941339289 }, { "posteriors": "curve_4", "x": 0.26373626373626374, "y": 0.5224507426242444 }, { "posteriors": "curve_4", "x": 0.2692307692307692, "y": 0.5308903182792509 }, { "posteriors": "curve_4", "x": 0.27472527472527475, "y": 0.5392915990906639 }, { "posteriors": "curve_4", "x": 0.2802197802197802, "y": 0.5476555196602828 }, { "posteriors": "curve_4", "x": 0.2857142857142857, "y": 0.5559829739366173 }, { "posteriors": "curve_4", "x": 0.29120879120879123, "y": 0.5642748177296858 }, { "posteriors": "curve_4", "x": 0.2967032967032967, "y": 0.5725318710258083 }, { "posteriors": "curve_4", "x": 0.3021978021978022, "y": 0.5807549201217044 }, { "posteriors": "curve_4", "x": 0.3076923076923077, "y": 0.5889447195950255 }, { "posteriors": "curve_4", "x": 0.3131868131868132, "y": 0.5971019941265513 }, { "posteriors": "curve_4", "x": 0.31868131868131866, "y": 0.6052274401876195 }, { "posteriors": "curve_4", "x": 0.3241758241758242, "y": 0.6133217276049043 }, { "posteriors": "curve_4", "x": 0.32967032967032966, "y": 0.6213855010133847 }, { "posteriors": "curve_4", "x": 0.33516483516483514, "y": 0.6294193812072177 }, { "posteriors": "curve_4", "x": 0.34065934065934067, "y": 0.6374239663972467 }, { "posteriors": "curve_4", "x": 0.34615384615384615, "y": 0.6453998333829963 }, { "posteriors": "curve_4", "x": 0.3516483516483517, "y": 0.653347538646232 }, { "posteriors": "curve_4", "x": 0.35714285714285715, "y": 0.6612676193724767 }, { "posteriors": "curve_4", "x": 0.3626373626373626, "y": 0.6691605944062644 }, { "posteriors": "curve_4", "x": 0.36813186813186816, "y": 0.6770269651453653 }, { "posteriors": "curve_4", "x": 0.37362637362637363, "y": 0.6848672163787345 }, { "posteriors": "curve_4", "x": 0.3791208791208791, "y": 0.6926818170724998 }, { "posteriors": "curve_4", "x": 0.38461538461538464, "y": 0.7004712211079167 }, { "posteriors": "curve_4", "x": 0.3901098901098901, "y": 0.7082358679748685 }, { "posteriors": "curve_4", "x": 0.3956043956043956, "y": 0.7159761834241775 }, { "posteriors": "curve_4", "x": 0.4010989010989011, "y": 0.7236925800817116 }, { "posteriors": "curve_4", "x": 0.4065934065934066, "y": 0.7313854580270147 }, { "posteriors": "curve_4", "x": 0.41208791208791207, "y": 0.7390552053389641 }, { "posteriors": "curve_4", "x": 0.4175824175824176, "y": 0.7467021986107437 }, { "posteriors": "curve_4", "x": 0.4230769230769231, "y": 0.7543268034362439 }, { "posteriors": "curve_4", "x": 0.42857142857142855, "y": 0.761929374869819 }, { "posteriors": "curve_4", "x": 0.4340659340659341, "y": 0.7695102578611885 }, { "posteriors": "curve_4", "x": 0.43956043956043955, "y": 0.7770697876671196 }, { "posteriors": "curve_4", "x": 0.44505494505494503, "y": 0.7846082902414068 }, { "posteriors": "curve_4", "x": 0.45054945054945056, "y": 0.792126082604546 }, { "posteriors": "curve_4", "x": 0.45604395604395603, "y": 0.799623473194395 }, { "posteriors": "curve_4", "x": 0.46153846153846156, "y": 0.8071007621990146 }, { "posteriors": "curve_4", "x": 0.46703296703296704, "y": 0.8145582418727978 }, { "posteriors": "curve_4", "x": 0.4725274725274725, "y": 0.8219961968369129 }, { "posteriors": "curve_4", "x": 0.47802197802197804, "y": 0.8294149043650106 }, { "posteriors": "curve_4", "x": 0.4835164835164835, "y": 0.8368146346550802 }, { "posteriors": "curve_4", "x": 0.489010989010989, "y": 0.8441956510882751 }, { "posteriors": "curve_4", "x": 0.4945054945054945, "y": 0.8515582104754733 }, { "posteriors": "curve_4", "x": 0.5, "y": 0.8589025632922798 }, { "posteriors": "curve_4", "x": 0.5054945054945055, "y": 0.8662289539031386 }, { "posteriors": "curve_4", "x": 0.510989010989011, "y": 0.8735376207751676 }, { "posteriors": "curve_4", "x": 0.5164835164835165, "y": 0.8808287966822957 }, { "posteriors": "curve_4", "x": 0.521978021978022, "y": 0.888102708900239 }, { "posteriors": "curve_4", "x": 0.5274725274725275, "y": 0.8953595793928191 }, { "posteriors": "curve_4", "x": 0.532967032967033, "y": 0.9025996249900956 }, { "posteriors": "curve_4", "x": 0.5384615384615384, "y": 0.9098230575587507 }, { "posteriors": "curve_4", "x": 0.5439560439560439, "y": 0.9170300841651409 }, { "posteriors": "curve_4", "x": 0.5494505494505495, "y": 0.9242209072313998 }, { "posteriors": "curve_4", "x": 0.554945054945055, "y": 0.931395724684956 }, { "posteriors": "curve_4", "x": 0.5604395604395604, "y": 0.9385547301018076 }, { "posteriors": "curve_4", "x": 0.5659340659340659, "y": 0.9456981128438685 }, { "posteriors": "curve_4", "x": 0.5714285714285714, "y": 0.9528260581906917 }, { "posteriors": "curve_4", "x": 0.5769230769230769, "y": 0.9599387474658481 }, { "posteriors": "curve_4", "x": 0.5824175824175825, "y": 0.9670363581582282 }, { "posteriors": "curve_4", "x": 0.5879120879120879, "y": 0.9741190640385161 }, { "posteriors": "curve_4", "x": 0.5934065934065934, "y": 0.9811870352710705 }, { "posteriors": "curve_4", "x": 0.5989010989010989, "y": 0.9882404385214374 }, { "posteriors": "curve_4", "x": 0.6043956043956044, "y": 0.9952794370596987 }, { "posteriors": "curve_4", "x": 0.6098901098901099, "y": 1.0023041908598596 }, { "posteriors": "curve_4", "x": 0.6153846153846154, "y": 1.009314856695456 }, { "posteriors": "curve_4", "x": 0.6208791208791209, "y": 1.0163115882315643 }, { "posteriors": "curve_4", "x": 0.6263736263736264, "y": 1.0232945361133714 }, { "posteriors": "curve_4", "x": 0.6318681318681318, "y": 1.0302638480514696 }, { "posteriors": "curve_4", "x": 0.6373626373626373, "y": 1.0372196689040225 }, { "posteriors": "curve_4", "x": 0.6428571428571429, "y": 1.0441621407559416 }, { "posteriors": "curve_4", "x": 0.6483516483516484, "y": 1.051091402995206 }, { "posteriors": "curve_4", "x": 0.6538461538461539, "y": 1.0580075923864583 }, { "posteriors": "curve_4", "x": 0.6593406593406593, "y": 1.0649108431419851 }, { "posteriors": "curve_4", "x": 0.6648351648351648, "y": 1.071801286990207 }, { "posteriors": "curve_4", "x": 0.6703296703296703, "y": 1.0786790532417763 }, { "posteriors": "curve_4", "x": 0.6758241758241759, "y": 1.0855442688533932 }, { "posteriors": "curve_4", "x": 0.6813186813186813, "y": 1.0923970584894271 }, { "posteriors": "curve_4", "x": 0.6868131868131868, "y": 1.0992375445814477 }, { "posteriors": "curve_4", "x": 0.6923076923076923, "y": 1.106065847385742 }, { "posteriors": "curve_4", "x": 0.6978021978021978, "y": 1.1128820850389063 }, { "posteriors": "curve_4", "x": 0.7032967032967034, "y": 1.1196863736115927 }, { "posteriors": "curve_4", "x": 0.7087912087912088, "y": 1.1264788271604826 }, { "posteriors": "curve_4", "x": 0.7142857142857143, "y": 1.13325955777856 }, { "posteriors": "curve_4", "x": 0.7197802197802198, "y": 1.1400286756437548 }, { "posteriors": "curve_4", "x": 0.7252747252747253, "y": 1.1467862890660165 }, { "posteriors": "curve_4", "x": 0.7307692307692307, "y": 1.1535325045328866 }, { "posteriors": "curve_4", "x": 0.7362637362637363, "y": 1.1602674267536224 }, { "posteriors": "curve_4", "x": 0.7417582417582418, "y": 1.1669911587019322 }, { "posteriors": "curve_4", "x": 0.7472527472527473, "y": 1.173703801657375 }, { "posteriors": "curve_4", "x": 0.7527472527472527, "y": 1.1804054552454775 }, { "posteriors": "curve_4", "x": 0.7582417582417582, "y": 1.187096217476611 }, { "posteriors": "curve_4", "x": 0.7637362637362637, "y": 1.193776184783684 }, { "posteriors": "curve_4", "x": 0.7692307692307693, "y": 1.2004454520586887 }, { "posteriors": "curve_4", "x": 0.7747252747252747, "y": 1.207104112688145 }, { "posteriors": "curve_4", "x": 0.7802197802197802, "y": 1.2137522585874867 }, { "posteriors": "curve_4", "x": 0.7857142857142857, "y": 1.220389980234423 }, { "posteriors": "curve_4", "x": 0.7912087912087912, "y": 1.2270173667013162 }, { "posteriors": "curve_4", "x": 0.7967032967032966, "y": 1.2336345056866123 }, { "posteriors": "curve_4", "x": 0.8021978021978022, "y": 1.240241483545355 }, { "posteriors": "curve_4", "x": 0.8076923076923077, "y": 1.2468383853188179 }, { "posteriors": "curve_4", "x": 0.8131868131868132, "y": 1.253425294763288 }, { "posteriors": "curve_4", "x": 0.8186813186813187, "y": 1.2600022943780258 }, { "posteriors": "curve_4", "x": 0.8241758241758241, "y": 1.266569465432436 }, { "posteriors": "curve_4", "x": 0.8296703296703297, "y": 1.2731268879924718 }, { "posteriors": "curve_4", "x": 0.8351648351648352, "y": 1.2796746409463022 }, { "posteriors": "curve_4", "x": 0.8406593406593407, "y": 1.2862128020292678 }, { "posteriors": "curve_4", "x": 0.8461538461538461, "y": 1.2927414478481465 }, { "posteriors": "curve_4", "x": 0.8516483516483516, "y": 1.2992606539047546 }, { "posteriors": "curve_4", "x": 0.8571428571428571, "y": 1.3057704946189066 }, { "posteriors": "curve_4", "x": 0.8626373626373627, "y": 1.3122710433507525 }, { "posteriors": "curve_4", "x": 0.8681318681318682, "y": 1.3187623724225155 }, { "posteriors": "curve_4", "x": 0.8736263736263736, "y": 1.3252445531396484 }, { "posteriors": "curve_4", "x": 0.8791208791208791, "y": 1.3317176558114299 }, { "posteriors": "curve_4", "x": 0.8846153846153846, "y": 1.3381817497710162 }, { "posteriors": "curve_4", "x": 0.8901098901098901, "y": 1.344636903394967 }, { "posteriors": "curve_4", "x": 0.8956043956043956, "y": 1.3510831841222648 }, { "posteriors": "curve_4", "x": 0.9010989010989011, "y": 1.3575206584728388 }, { "posteriors": "curve_4", "x": 0.9065934065934066, "y": 1.3639493920656145 }, { "posteriors": "curve_4", "x": 0.9120879120879121, "y": 1.3703694496361019 }, { "posteriors": "curve_4", "x": 0.9175824175824175, "y": 1.376780895053534 }, { "posteriors": "curve_4", "x": 0.9230769230769231, "y": 1.3831837913375737 }, { "posteriors": "curve_4", "x": 0.9285714285714286, "y": 1.389578200674603 }, { "posteriors": "curve_4", "x": 0.9340659340659341, "y": 1.395964184433601 }, { "posteriors": "curve_4", "x": 0.9395604395604396, "y": 1.4023418031816324 }, { "posteriors": "curve_4", "x": 0.945054945054945, "y": 1.4087111166989508 }, { "posteriors": "curve_4", "x": 0.9505494505494505, "y": 1.4150721839937312 }, { "posteriors": "curve_4", "x": 0.9560439560439561, "y": 1.421425063316447 }, { "posteriors": "curve_4", "x": 0.9615384615384616, "y": 1.4277698121738913 }, { "posteriors": "curve_4", "x": 0.967032967032967, "y": 1.4341064873428684 }, { "posteriors": "curve_4", "x": 0.9725274725274725, "y": 1.44043514488355 }, { "posteriors": "curve_4", "x": 0.978021978021978, "y": 1.446755840152517 }, { "posteriors": "curve_4", "x": 0.9835164835164835, "y": 1.45306862781549 }, { "posteriors": "curve_4", "x": 0.989010989010989, "y": 1.4593735618597623 }, { "posteriors": "curve_4", "x": 0.9945054945054945, "y": 1.4656706956063366 }, { "posteriors": "curve_5", "x": 0, "y": 0 }, { "posteriors": "curve_5", "x": 0.005494505494505495, "y": 0.025695343503766545 }, { "posteriors": "curve_5", "x": 0.01098901098901099, "y": 0.04403516901594545 }, { "posteriors": "curve_5", "x": 0.016483516483516484, "y": 0.060346051639761 }, { "posteriors": "curve_5", "x": 0.02197802197802198, "y": 0.07546488374357169 }, { "posteriors": "curve_5", "x": 0.027472527472527472, "y": 0.08975495895944684 }, { "posteriors": "curve_5", "x": 0.03296703296703297, "y": 0.10341751543474487 }, { "posteriors": "curve_5", "x": 0.038461538461538464, "y": 0.11657938183517712 }, { "posteriors": "curve_5", "x": 0.04395604395604396, "y": 0.12932728102777596 }, { "posteriors": "curve_5", "x": 0.04945054945054945, "y": 0.1417239644208256 }, { "posteriors": "curve_5", "x": 0.054945054945054944, "y": 0.15381677179054373 }, { "posteriors": "curve_5", "x": 0.06043956043956044, "y": 0.16564258035050183 }, { "posteriors": "curve_5", "x": 0.06593406593406594, "y": 0.17723085782879652 }, { "posteriors": "curve_5", "x": 0.07142857142857142, "y": 0.18860564402603555 }, { "posteriors": "curve_5", "x": 0.07692307692307693, "y": 0.19978689065331856 }, { "posteriors": "curve_5", "x": 0.08241758241758242, "y": 0.21079139835190192 }, { "posteriors": "curve_5", "x": 0.08791208791208792, "y": 0.22163349081501862 }, { "posteriors": "curve_5", "x": 0.09340659340659341, "y": 0.232325511604922 }, { "posteriors": "curve_5", "x": 0.0989010989010989, "y": 0.2428781979881329 }, { "posteriors": "curve_5", "x": 0.1043956043956044, "y": 0.25330096737197466 }, { "posteriors": "curve_5", "x": 0.10989010989010989, "y": 0.2636021402979429 }, { "posteriors": "curve_5", "x": 0.11538461538461539, "y": 0.27378911651154914 }, { "posteriors": "curve_5", "x": 0.12087912087912088, "y": 0.283868515744982 }, { "posteriors": "curve_5", "x": 0.12637362637362637, "y": 0.2938462915656366 }, { "posteriors": "curve_5", "x": 0.13186813186813187, "y": 0.30372782438919527 }, { "posteriors": "curve_5", "x": 0.13736263736263737, "y": 0.31351799817858467 }, { "posteriors": "curve_5", "x": 0.14285714285714285, "y": 0.3232212642275162 }, { "posteriors": "curve_5", "x": 0.14835164835164835, "y": 0.3328416946158798 }, { "posteriors": "curve_5", "x": 0.15384615384615385, "y": 0.3423830273294262 }, { "posteriors": "curve_5", "x": 0.15934065934065933, "y": 0.35184870459444145 }, { "posteriors": "curve_5", "x": 0.16483516483516483, "y": 0.36124190564616715 }, { "posteriors": "curve_5", "x": 0.17032967032967034, "y": 0.3705655748975181 }, { "posteriors": "curve_5", "x": 0.17582417582417584, "y": 0.37982244628108286 }, { "posteriors": "curve_5", "x": 0.1813186813186813, "y": 0.38901506438742117 }, { "posteriors": "curve_5", "x": 0.18681318681318682, "y": 0.3981458029054604 }, { "posteriors": "curve_5", "x": 0.19230769230769232, "y": 0.4072168807784261 }, { "posteriors": "curve_5", "x": 0.1978021978021978, "y": 0.41623037641539784 }, { "posteriors": "curve_5", "x": 0.2032967032967033, "y": 0.42518824023992424 }, { "posteriors": "curve_5", "x": 0.2087912087912088, "y": 0.4340923058098975 }, { "posteriors": "curve_5", "x": 0.21428571428571427, "y": 0.4429442997046198 }, { "posteriors": "curve_5", "x": 0.21978021978021978, "y": 0.4517458503437932 }, { "posteriors": "curve_5", "x": 0.22527472527472528, "y": 0.460498495877592 }, { "posteriors": "curve_5", "x": 0.23076923076923078, "y": 0.4692036912658969 }, { "posteriors": "curve_5", "x": 0.23626373626373626, "y": 0.47786281464731134 }, { "posteriors": "curve_5", "x": 0.24175824175824176, "y": 0.48647717308404603 }, { "posteriors": "curve_5", "x": 0.24725274725274726, "y": 0.49504800775660723 }, { "posteriors": "curve_5", "x": 0.25274725274725274, "y": 0.5035764986720201 }, { "posteriors": "curve_5", "x": 0.25824175824175827, "y": 0.512063768940711 }, { "posteriors": "curve_5", "x": 0.26373626373626374, "y": 0.5205108886698901 }, { "posteriors": "curve_5", "x": 0.2692307692307692, "y": 0.528918878515083 }, { "posteriors": "curve_5", "x": 0.27472527472527475, "y": 0.5372887129261819 }, { "posteriors": "curve_5", "x": 0.2802197802197802, "y": 0.5456213231198646 }, { "posteriors": "curve_5", "x": 0.2857142857142857, "y": 0.5539175998063572 }, { "posteriors": "curve_5", "x": 0.29120879120879123, "y": 0.5621783956951666 }, { "posteriors": "curve_5", "x": 0.2967032967032967, "y": 0.5704045278015262 }, { "posteriors": "curve_5", "x": 0.3021978021978022, "y": 0.5785967795727992 }, { "posteriors": "curve_5", "x": 0.3076923076923077, "y": 0.5867559028519044 }, { "posteriors": "curve_5", "x": 0.3131868131868132, "y": 0.5948826196929398 }, { "posteriors": "curve_5", "x": 0.31868131868131866, "y": 0.6029776240425255 }, { "posteriors": "curve_5", "x": 0.3241758241758242, "y": 0.6110415832989377 }, { "posteriors": "curve_5", "x": 0.32967032967032966, "y": 0.619075139759833 }, { "posteriors": "curve_5", "x": 0.33516483516483514, "y": 0.6270789119682487 }, { "posteriors": "curve_5", "x": 0.34065934065934067, "y": 0.6350534959655724 }, { "posteriors": "curve_5", "x": 0.34615384615384615, "y": 0.6429994664593062 }, { "posteriors": "curve_5", "x": 0.3516483516483517, "y": 0.6509173779126805 }, { "posteriors": "curve_5", "x": 0.35714285714285715, "y": 0.6588077655624816 }, { "posteriors": "curve_5", "x": 0.3626373626373626, "y": 0.6666711463708569 }, { "posteriors": "curve_5", "x": 0.36813186813186816, "y": 0.6745080199163118 }, { "posteriors": "curve_5", "x": 0.37362637362637363, "y": 0.6823188692286317 }, { "posteriors": "curve_5", "x": 0.3791208791208791, "y": 0.6901041615720322 }, { "posteriors": "curve_5", "x": 0.38461538461538464, "y": 0.6978643491804484 }, { "posteriors": "curve_5", "x": 0.3901098901098901, "y": 0.7055998699485293 }, { "posteriors": "curve_5", "x": 0.3956043956043956, "y": 0.7133111480815939 }, { "posteriors": "curve_5", "x": 0.4010989010989011, "y": 0.7209985947075184 }, { "posteriors": "curve_5", "x": 0.4065934065934066, "y": 0.7286626084532765 }, { "posteriors": "curve_5", "x": 0.41208791208791207, "y": 0.7363035759886242 }, { "posteriors": "curve_5", "x": 0.4175824175824176, "y": 0.7439218725392133 }, { "posteriors": "curve_5", "x": 0.4230769230769231, "y": 0.7515178623712323 }, { "posteriors": "curve_5", "x": 0.42857142857142855, "y": 0.7590918992495032 }, { "posteriors": "curve_5", "x": 0.4340659340659341, "y": 0.7666443268708102 }, { "posteriors": "curve_5", "x": 0.43956043956043955, "y": 0.7741754792740937 }, { "posteriors": "curve_5", "x": 0.44505494505494503, "y": 0.7816856812290207 }, { "posteriors": "curve_5", "x": 0.45054945054945056, "y": 0.7891752486043224 }, { "posteriors": "curve_5", "x": 0.45604395604395603, "y": 0.796644488717186 }, { "posteriors": "curve_5", "x": 0.46153846153846156, "y": 0.8040937006648932 }, { "posteriors": "curve_5", "x": 0.46703296703296704, "y": 0.8115231756398052 }, { "posteriors": "curve_5", "x": 0.4725274725274725, "y": 0.8189331972287205 }, { "posteriors": "curve_5", "x": 0.47802197802197804, "y": 0.8263240416975473 }, { "posteriors": "curve_5", "x": 0.4835164835164835, "y": 0.8336959782621767 }, { "posteriors": "curve_5", "x": 0.489010989010989, "y": 0.8410492693463735 }, { "posteriors": "curve_5", "x": 0.4945054945054945, "y": 0.848384170827442 }, { "posteriors": "curve_5", "x": 0.5, "y": 0.8557009322703804 }, { "posteriors": "curve_5", "x": 0.5054945054945055, "y": 0.8629997971511807 }, { "posteriors": "curve_5", "x": 0.510989010989011, "y": 0.8702810030698909 }, { "posteriors": "curve_5", "x": 0.5164835164835165, "y": 0.877544781954012 }, { "posteriors": "curve_5", "x": 0.521978021978022, "y": 0.8847913602527698 }, { "posteriors": "curve_5", "x": 0.5274725274725275, "y": 0.8920209591227587 }, { "posteriors": "curve_5", "x": 0.532967032967033, "y": 0.8992337946054286 }, { "posteriors": "curve_5", "x": 0.5384615384615384, "y": 0.9064300777968544 }, { "posteriors": "curve_5", "x": 0.5439560439560439, "y": 0.9136100150101951 }, { "posteriors": "curve_5", "x": 0.5494505494505495, "y": 0.9207738079312341 }, { "posteriors": "curve_5", "x": 0.554945054945055, "y": 0.9279216537673538 }, { "posteriors": "curve_5", "x": 0.5604395604395604, "y": 0.9350537453902923 }, { "posteriors": "curve_5", "x": 0.5659340659340659, "y": 0.9421702714729926 }, { "posteriors": "curve_5", "x": 0.5714285714285714, "y": 0.9492714166208484 }, { "posteriors": "curve_5", "x": 0.5769230769230769, "y": 0.9563573614976245 }, { "posteriors": "curve_5", "x": 0.5824175824175825, "y": 0.9634282829463218 }, { "posteriors": "curve_5", "x": 0.5879120879120879, "y": 0.9704843541052257 }, { "posteriors": "curve_5", "x": 0.5934065934065934, "y": 0.977525744519386 }, { "posteriors": "curve_5", "x": 0.5989010989010989, "y": 0.9845526202477366 }, { "posteriors": "curve_5", "x": 0.6043956043956044, "y": 0.991565143966072 }, { "posteriors": "curve_5", "x": 0.6098901098901099, "y": 0.9985634750660736 }, { "posteriors": "curve_5", "x": 0.6153846153846154, "y": 1.0055477697505715 }, { "posteriors": "curve_5", "x": 0.6208791208791209, "y": 1.0125181811252193 }, { "posteriors": "curve_5", "x": 0.6263736263736264, "y": 1.0194748592867462 }, { "posteriors": "curve_5", "x": 0.6318681318681318, "y": 1.0264179514079397 }, { "posteriors": "curve_5", "x": 0.6373626373626373, "y": 1.0333476018195156 }, { "posteriors": "curve_5", "x": 0.6428571428571429, "y": 1.0402639520890065 }, { "posteriors": "curve_5", "x": 0.6483516483516484, "y": 1.0471671410968073 }, { "posteriors": "curve_5", "x": 0.6538461538461539, "y": 1.0540573051095008 }, { "posteriors": "curve_5", "x": 0.6593406593406593, "y": 1.0609345778505836 }, { "posteriors": "curve_5", "x": 0.6648351648351648, "y": 1.0677990905687074 }, { "posteriors": "curve_5", "x": 0.6703296703296703, "y": 1.0746509721035367 }, { "posteriors": "curve_5", "x": 0.6758241758241759, "y": 1.0814903489493324 }, { "posteriors": "curve_5", "x": 0.6813186813186813, "y": 1.0883173453163535 }, { "posteriors": "curve_5", "x": 0.6868131868131868, "y": 1.0951320831901676 }, { "posteriors": "curve_5", "x": 0.6923076923076923, "y": 1.1019346823889633 }, { "posteriors": "curve_5", "x": 0.6978021978021978, "y": 1.1087252606189384 }, { "posteriors": "curve_5", "x": 0.7032967032967034, "y": 1.1155039335278523 }, { "posteriors": "curve_5", "x": 0.7087912087912088, "y": 1.1222708147568106 }, { "posteriors": "curve_5", "x": 0.7142857142857143, "y": 1.1290260159903571 }, { "posteriors": "curve_5", "x": 0.7197802197802198, "y": 1.1357696470049392 }, { "posteriors": "curve_5", "x": 0.7252747252747253, "y": 1.1425018157158129 }, { "posteriors": "curve_5", "x": 0.7307692307692307, "y": 1.1492226282224474 }, { "posteriors": "curve_5", "x": 0.7362637362637363, "y": 1.155932188852491 }, { "posteriors": "curve_5", "x": 0.7417582417582418, "y": 1.1626306002043496 }, { "posteriors": "curve_5", "x": 0.7472527472527473, "y": 1.169317963188439 }, { "posteriors": "curve_5", "x": 0.7527472527472527, "y": 1.175994377067152 }, { "posteriors": "curve_5", "x": 0.7582417582417582, "y": 1.1826599394935986 }, { "posteriors": "curve_5", "x": 0.7637362637362637, "y": 1.1893147465491591 }, { "posteriors": "curve_5", "x": 0.7692307692307693, "y": 1.1959588927798996 }, { "posteriors": "curve_5", "x": 0.7747252747252747, "y": 1.202592471231886 }, { "posteriors": "curve_5", "x": 0.7802197802197802, "y": 1.209215573485447 }, { "posteriors": "curve_5", "x": 0.7857142857142857, "y": 1.2158282896884127 }, { "posteriors": "curve_5", "x": 0.7912087912087912, "y": 1.2224307085883768 }, { "posteriors": "curve_5", "x": 0.7967032967032966, "y": 1.2290229175640117 }, { "posteriors": "curve_5", "x": 0.8021978021978022, "y": 1.2356050026554721 }, { "posteriors": "curve_5", "x": 0.8076923076923077, "y": 1.24217704859392 }, { "posteriors": "curve_5", "x": 0.8131868131868132, "y": 1.248739138830204 }, { "posteriors": "curve_5", "x": 0.8186813186813187, "y": 1.2552913555627168 }, { "posteriors": "curve_5", "x": 0.8241758241758241, "y": 1.2618337797644676 }, { "posteriors": "curve_5", "x": 0.8296703296703297, "y": 1.2683664912093922 }, { "posteriors": "curve_5", "x": 0.8351648351648352, "y": 1.274889568497925 }, { "posteriors": "curve_5", "x": 0.8406593406593407, "y": 1.2814030890818648 }, { "posteriors": "curve_5", "x": 0.8461538461538461, "y": 1.287907129288553 }, { "posteriors": "curve_5", "x": 0.8516483516483516, "y": 1.2944017643443895 }, { "posteriors": "curve_5", "x": 0.8571428571428571, "y": 1.3008870683977065 }, { "posteriors": "curve_5", "x": 0.8626373626373627, "y": 1.307363114541028 }, { "posteriors": "curve_5", "x": 0.8681318681318682, "y": 1.3138299748327267 }, { "posteriors": "curve_5", "x": 0.8736263736263736, "y": 1.3202877203181036 }, { "posteriors": "curve_5", "x": 0.8791208791208791, "y": 1.3267364210499106 }, { "posteriors": "curve_5", "x": 0.8846153846153846, "y": 1.3331761461083278 }, { "posteriors": "curve_5", "x": 0.8901098901098901, "y": 1.3396069636204204 }, { "posteriors": "curve_5", "x": 0.8956043956043956, "y": 1.3460289407790864 }, { "posteriors": "curve_5", "x": 0.9010989010989011, "y": 1.3524421438615164 }, { "posteriors": "curve_5", "x": 0.9065934065934066, "y": 1.358846638247175 }, { "posteriors": "curve_5", "x": 0.9120879120879121, "y": 1.3652424884353265 }, { "posteriors": "curve_5", "x": 0.9175824175824175, "y": 1.3716297580621097 }, { "posteriors": "curve_5", "x": 0.9230769230769231, "y": 1.3780085099171875 }, { "posteriors": "curve_5", "x": 0.9285714285714286, "y": 1.3843788059599718 }, { "posteriors": "curve_5", "x": 0.9340659340659341, "y": 1.390740707335449 }, { "posteriors": "curve_5", "x": 0.9395604395604396, "y": 1.3970942743896082 }, { "posteriors": "curve_5", "x": 0.945054945054945, "y": 1.4034395666844923 }, { "posteriors": "curve_5", "x": 0.9505494505494505, "y": 1.409776643012876 }, { "posteriors": "curve_5", "x": 0.9560439560439561, "y": 1.4161055614125893 }, { "posteriors": "curve_5", "x": 0.9615384615384616, "y": 1.4224263791804908 }, { "posteriors": "curve_5", "x": 0.967032967032967, "y": 1.4287391528861066 }, { "posteriors": "curve_5", "x": 0.9725274725274725, "y": 1.4350439383849398 }, { "posteriors": "curve_5", "x": 0.978021978021978, "y": 1.441340790831464 }, { "posteriors": "curve_5", "x": 0.9835164835164835, "y": 1.4476297646918075 }, { "posteriors": "curve_5", "x": 0.989010989010989, "y": 1.4539109137561412 }, { "posteriors": "curve_5", "x": 0.9945054945054945, "y": 1.460184291150773 }, { "posteriors": "curve_6", "x": 0, "y": 0 }, { "posteriors": "curve_6", "x": 0.005494505494505495, "y": 0.026179204088814394 }, { "posteriors": "curve_6", "x": 0.01098901098901099, "y": 0.044370905910557853 }, { "posteriors": "curve_6", "x": 0.016483516483516484, "y": 0.060414013643847395 }, { "posteriors": "curve_6", "x": 0.02197802197802198, "y": 0.07520386351870714 }, { "posteriors": "curve_6", "x": 0.027472527472527472, "y": 0.08912660300614479 }, { "posteriors": "curve_6", "x": 0.03296703296703297, "y": 0.10239518764497746 }, { "posteriors": "curve_6", "x": 0.038461538461538464, "y": 0.11514337594256825 }, { "posteriors": "curve_6", "x": 0.04395604395604396, "y": 0.12746237589876663 }, { "posteriors": "curve_6", "x": 0.04945054945054945, "y": 0.1394180293708186 }, { "posteriors": "curve_6", "x": 0.054945054945054944, "y": 0.15105990627893034 }, { "posteriors": "curve_6", "x": 0.06043956043956044, "y": 0.16242655143750756 }, { "posteriors": "curve_6", "x": 0.06593406593406594, "y": 0.17354871528086135 }, { "posteriors": "curve_6", "x": 0.07142857142857142, "y": 0.1844514472355007 }, { "posteriors": "curve_6", "x": 0.07692307692307693, "y": 0.1951555090383599 }, { "posteriors": "curve_6", "x": 0.08241758241758242, "y": 0.2056783617934221 }, { "posteriors": "curve_6", "x": 0.08791208791208792, "y": 0.216034875199159 }, { "posteriors": "curve_6", "x": 0.09340659340659341, "y": 0.22623784962986404 }, { "posteriors": "curve_6", "x": 0.0989010989010989, "y": 0.2362984085559394 }, { "posteriors": "curve_6", "x": 0.1043956043956044, "y": 0.24622629891595596 }, { "posteriors": "curve_6", "x": 0.10989010989010989, "y": 0.25603012473644904 }, { "posteriors": "curve_6", "x": 0.11538461538461539, "y": 0.26571753142660204 }, { "posteriors": "curve_6", "x": 0.12087912087912088, "y": 0.27529535301225516 }, { "posteriors": "curve_6", "x": 0.12637362637362637, "y": 0.2847697311056046 }, { "posteriors": "curve_6", "x": 0.13186813186813187, "y": 0.2941462120277177 }, { "posteriors": "curve_6", "x": 0.13736263736263737, "y": 0.30342982683759223 }, { "posteriors": "curve_6", "x": 0.14285714285714285, "y": 0.3126251578385276 }, { "posteriors": "curve_6", "x": 0.14835164835164835, "y": 0.32173639427815026 }, { "posteriors": "curve_6", "x": 0.15384615384615385, "y": 0.3307673793325108 }, { "posteriors": "curve_6", "x": 0.15934065934065933, "y": 0.33972165000016913 }, { "posteriors": "curve_6", "x": 0.16483516483516483, "y": 0.34860247118333665 }, { "posteriors": "curve_6", "x": 0.17032967032967034, "y": 0.357412864968272 }, { "posteriors": "curve_6", "x": 0.17582417582417584, "y": 0.366155635913953 }, { "posteriors": "curve_6", "x": 0.1813186813186813, "y": 0.37483339300072155 }, { "posteriors": "curve_6", "x": 0.18681318681318682, "y": 0.3834485687677089 }, { "posteriors": "curve_6", "x": 0.19230769230769232, "y": 0.3920034360710515 }, { "posteriors": "curve_6", "x": 0.1978021978021978, "y": 0.4005001228180952 }, { "posteriors": "curve_6", "x": 0.2032967032967033, "y": 0.40894062497137573 }, { "posteriors": "curve_6", "x": 0.2087912087912088, "y": 0.41732681806674277 }, { "posteriors": "curve_6", "x": 0.21428571428571427, "y": 0.42566046744997144 }, { "posteriors": "curve_6", "x": 0.21978021978021978, "y": 0.43394323740358814 }, { "posteriors": "curve_6", "x": 0.22527472527472528, "y": 0.442176699308917 }, { "posteriors": "curve_6", "x": 0.23076923076923078, "y": 0.4503623389663337 }, { "posteriors": "curve_6", "x": 0.23626373626373626, "y": 0.45850156317848906 }, { "posteriors": "curve_6", "x": 0.24175824175824176, "y": 0.4665957056860922 }, { "posteriors": "curve_6", "x": 0.24725274725274726, "y": 0.47464603253317345 }, { "posteriors": "curve_6", "x": 0.25274725274725274, "y": 0.48265374692809765 }, { "posteriors": "curve_6", "x": 0.25824175824175827, "y": 0.4906199936576371 }, { "posteriors": "curve_6", "x": 0.26373626373626374, "y": 0.49854586310381377 }, { "posteriors": "curve_6", "x": 0.2692307692307692, "y": 0.5064323949067785 }, { "posteriors": "curve_6", "x": 0.27472527472527475, "y": 0.5142805813114925 }, { "posteriors": "curve_6", "x": 0.2802197802197802, "y": 0.5220913702312749 }, { "posteriors": "curve_6", "x": 0.2857142857142857, "y": 0.5298656680572453 }, { "posteriors": "curve_6", "x": 0.29120879120879123, "y": 0.5376043422392086 }, { "posteriors": "curve_6", "x": 0.2967032967032967, "y": 0.5453082236605333 }, { "posteriors": "curve_6", "x": 0.3021978021978022, "y": 0.5529781088269711 }, { "posteriors": "curve_6", "x": 0.3076923076923077, "y": 0.560614761887106 }, { "posteriors": "curve_6", "x": 0.3131868131868132, "y": 0.5682189165001575 }, { "posteriors": "curve_6", "x": 0.31868131868131866, "y": 0.5757912775651397 }, { "posteriors": "curve_6", "x": 0.3241758241758242, "y": 0.5833325228238789 }, { "posteriors": "curve_6", "x": 0.32967032967032966, "y": 0.5908433043490701 }, { "posteriors": "curve_6", "x": 0.33516483516483514, "y": 0.5983242499273923 }, { "posteriors": "curve_6", "x": 0.34065934065934067, "y": 0.6057759643466811 }, { "posteriors": "curve_6", "x": 0.34615384615384615, "y": 0.6131990305952498 }, { "posteriors": "curve_6", "x": 0.3516483516483517, "y": 0.6205940109806549 }, { "posteriors": "curve_6", "x": 0.35714285714285715, "y": 0.627961448174487 }, { "posteriors": "curve_6", "x": 0.3626373626373626, "y": 0.6353018661891409 }, { "posteriors": "curve_6", "x": 0.36813186813186816, "y": 0.6426157712919551 }, { "posteriors": "curve_6", "x": 0.37362637362637363, "y": 0.6499036528616104 }, { "posteriors": "curve_6", "x": 0.3791208791208791, "y": 0.6571659841912287 }, { "posteriors": "curve_6", "x": 0.38461538461538464, "y": 0.664403223242213 }, { "posteriors": "curve_6", "x": 0.3901098901098901, "y": 0.6716158133525094 }, { "posteriors": "curve_6", "x": 0.3956043956043956, "y": 0.6788041839026497 }, { "posteriors": "curve_6", "x": 0.4010989010989011, "y": 0.685968750942641 }, { "posteriors": "curve_6", "x": 0.4065934065934066, "y": 0.6931099177825077 }, { "posteriors": "curve_6", "x": 0.41208791208791207, "y": 0.7002280755490586 }, { "posteriors": "curve_6", "x": 0.4175824175824176, "y": 0.707323603711229 }, { "posteriors": "curve_6", "x": 0.4230769230769231, "y": 0.7143968705761683 }, { "posteriors": "curve_6", "x": 0.42857142857142855, "y": 0.7214482337580534 }, { "posteriors": "curve_6", "x": 0.4340659340659341, "y": 0.728478040621464 }, { "posteriors": "curve_6", "x": 0.43956043956043955, "y": 0.7354866287009979 }, { "posteriors": "curve_6", "x": 0.44505494505494503, "y": 0.7424743260986861 }, { "posteriors": "curve_6", "x": 0.45054945054945056, "y": 0.749441451860637 }, { "posteriors": "curve_6", "x": 0.45604395604395603, "y": 0.7563883163342382 }, { "posteriors": "curve_6", "x": 0.46153846153846156, "y": 0.763315221507139 }, { "posteriors": "curve_6", "x": 0.46703296703296704, "y": 0.7702224613291502 }, { "posteriors": "curve_6", "x": 0.4725274725274725, "y": 0.7771103220181121 }, { "posteriors": "curve_6", "x": 0.47802197802197804, "y": 0.7839790823507063 }, { "posteriors": "curve_6", "x": 0.4835164835164835, "y": 0.7908290139391153 }, { "posteriors": "curve_6", "x": 0.489010989010989, "y": 0.7976603814943735 }, { "posteriors": "curve_6", "x": 0.4945054945054945, "y": 0.804473443077192 }, { "posteriors": "curve_6", "x": 0.5, "y": 0.8112684503369825 }, { "posteriors": "curve_6", "x": 0.5054945054945055, "y": 0.8180456487397627 }, { "posteriors": "curve_6", "x": 0.510989010989011, "y": 0.8248052777855733 }, { "posteriors": "curve_6", "x": 0.5164835164835165, "y": 0.831547571215997 }, { "posteriors": "curve_6", "x": 0.521978021978022, "y": 0.8382727572123301 }, { "posteriors": "curve_6", "x": 0.5274725274725275, "y": 0.8449810585849247 }, { "posteriors": "curve_6", "x": 0.532967032967033, "y": 0.8516726929541771 }, { "posteriors": "curve_6", "x": 0.5384615384615384, "y": 0.858347872923619 }, { "posteriors": "curve_6", "x": 0.5439560439560439, "y": 0.865006806245528 }, { "posteriors": "curve_6", "x": 0.5494505494505495, "y": 0.8716496959794572 }, { "posteriors": "curve_6", "x": 0.554945054945055, "y": 0.8782767406440517 }, { "posteriors": "curve_6", "x": 0.5604395604395604, "y": 0.8848881343625008 }, { "posteriors": "curve_6", "x": 0.5659340659340659, "y": 0.8914840670019525 }, { "posteriors": "curve_6", "x": 0.5714285714285714, "y": 0.8980647243071957 }, { "posteriors": "curve_6", "x": 0.5769230769230769, "y": 0.9046302880289014 }, { "posteriors": "curve_6", "x": 0.5824175824175825, "y": 0.9111809360466914 }, { "posteriors": "curve_6", "x": 0.5879120879120879, "y": 0.9177168424872896 }, { "posteriors": "curve_6", "x": 0.5934065934065934, "y": 0.924238177838001 }, { "posteriors": "curve_6", "x": 0.5989010989010989, "y": 0.9307451090557383 }, { "posteriors": "curve_6", "x": 0.6043956043956044, "y": 0.9372377996718138 }, { "posteriors": "curve_6", "x": 0.6098901098901099, "y": 0.9437164098926987 }, { "posteriors": "curve_6", "x": 0.6153846153846154, "y": 0.9501810966969362 }, { "posteriors": "curve_6", "x": 0.6208791208791209, "y": 0.9566320139283931 }, { "posteriors": "curve_6", "x": 0.6263736263736264, "y": 0.9630693123860147 }, { "posteriors": "curve_6", "x": 0.6318681318681318, "y": 0.9694931399102462 }, { "posteriors": "curve_6", "x": 0.6373626373626373, "y": 0.9759036414662733 }, { "posteriors": "curve_6", "x": 0.6428571428571429, "y": 0.9823009592242214 }, { "posteriors": "curve_6", "x": 0.6483516483516484, "y": 0.9886852326364544 }, { "posteriors": "curve_6", "x": 0.6538461538461539, "y": 0.9950565985120979 }, { "posteriors": "curve_6", "x": 0.6593406593406593, "y": 1.0014151910889117 }, { "posteriors": "curve_6", "x": 0.6648351648351648, "y": 1.0077611421026245 }, { "posteriors": "curve_6", "x": 0.6703296703296703, "y": 1.0140945808538422 }, { "posteriors": "curve_6", "x": 0.6758241758241759, "y": 1.0204156342726358 }, { "posteriors": "curve_6", "x": 0.6813186813186813, "y": 1.0267244269809015 }, { "posteriors": "curve_6", "x": 0.6868131868131868, "y": 1.0330210813525957 }, { "posteriors": "curve_6", "x": 0.6923076923076923, "y": 1.039305717571925 }, { "posteriors": "curve_6", "x": 0.6978021978021978, "y": 1.045578453689583 }, { "posteriors": "curve_6", "x": 0.7032967032967034, "y": 1.0518394056771116 }, { "posteriors": "curve_6", "x": 0.7087912087912088, "y": 1.0580886874794624 }, { "posteriors": "curve_6", "x": 0.7142857142857143, "y": 1.0643264110658333 }, { "posteriors": "curve_6", "x": 0.7197802197802198, "y": 1.0705526864788488 }, { "posteriors": "curve_6", "x": 0.7252747252747253, "y": 1.0767676218821518 }, { "posteriors": "curve_6", "x": 0.7307692307692307, "y": 1.0829713236064646 }, { "posteriors": "curve_6", "x": 0.7362637362637363, "y": 1.089163896194188 }, { "posteriors": "curve_6", "x": 0.7417582417582418, "y": 1.0953454424425866 }, { "posteriors": "curve_6", "x": 0.7472527472527473, "y": 1.1015160634456223 }, { "posteriors": "curve_6", "x": 0.7527472527472527, "y": 1.1076758586344833 }, { "posteriors": "curve_6", "x": 0.7582417582417582, "y": 1.113824925816861 }, { "posteriors": "curve_6", "x": 0.7637362637362637, "y": 1.1199633612150208 }, { "posteriors": "curve_6", "x": 0.7692307692307693, "y": 1.1260912595027137 }, { "posteriors": "curve_6", "x": 0.7747252747252747, "y": 1.13220871384097 }, { "posteriors": "curve_6", "x": 0.7802197802197802, "y": 1.1383158159128195 }, { "posteriors": "curve_6", "x": 0.7857142857142857, "y": 1.1444126559569745 }, { "posteriors": "curve_6", "x": 0.7912087912087912, "y": 1.1504993228005167 }, { "posteriors": "curve_6", "x": 0.7967032967032966, "y": 1.156575903890621 }, { "posteriors": "curve_6", "x": 0.8021978021978022, "y": 1.1626424853253532 }, { "posteriors": "curve_6", "x": 0.8076923076923077, "y": 1.168699151883576 }, { "posteriors": "curve_6", "x": 0.8131868131868132, "y": 1.174745987053991 }, { "posteriors": "curve_6", "x": 0.8186813186813187, "y": 1.1807830730633497 }, { "posteriors": "curve_6", "x": 0.8241758241758241, "y": 1.1868104909038648 }, { "posteriors": "curve_6", "x": 0.8296703296703297, "y": 1.1928283203598444 }, { "posteriors": "curve_6", "x": 0.8351648351648352, "y": 1.1988366400335817 }, { "posteriors": "curve_6", "x": 0.8406593406593407, "y": 1.2048355273705222 }, { "posteriors": "curve_6", "x": 0.8461538461538461, "y": 1.210825058683734 }, { "posteriors": "curve_6", "x": 0.8516483516483516, "y": 1.2168053091777042 }, { "posteriors": "curve_6", "x": 0.8571428571428571, "y": 1.2227763529714881 }, { "posteriors": "curve_6", "x": 0.8626373626373627, "y": 1.2287382631212267 }, { "posteriors": "curve_6", "x": 0.8681318681318682, "y": 1.2346911116420567 }, { "posteriors": "curve_6", "x": 0.8736263736263736, "y": 1.240634969529437 }, { "posteriors": "curve_6", "x": 0.8791208791208791, "y": 1.2465699067799016 }, { "posteriors": "curve_6", "x": 0.8846153846153846, "y": 1.2524959924112675 }, { "posteriors": "curve_6", "x": 0.8901098901098901, "y": 1.2584132944823088 }, { "posteriors": "curve_6", "x": 0.8956043956043956, "y": 1.2643218801119163 }, { "posteriors": "curve_6", "x": 0.9010989010989011, "y": 1.27022181549776 }, { "posteriors": "curve_6", "x": 0.9065934065934066, "y": 1.2761131659344702 }, { "posteriors": "curve_6", "x": 0.9120879120879121, "y": 1.2819959958313498 }, { "posteriors": "curve_6", "x": 0.9175824175824175, "y": 1.2878703687296362 }, { "posteriors": "curve_6", "x": 0.9230769230769231, "y": 1.2937363473193255 }, { "posteriors": "curve_6", "x": 0.9285714285714286, "y": 1.299593993455571 }, { "posteriors": "curve_6", "x": 0.9340659340659341, "y": 1.3054433681746718 }, { "posteriors": "curve_6", "x": 0.9395604395604396, "y": 1.311284531709664 }, { "posteriors": "curve_6", "x": 0.945054945054945, "y": 1.3171175435055233 }, { "posteriors": "curve_6", "x": 0.9505494505494505, "y": 1.3229424622339947 }, { "posteriors": "curve_6", "x": 0.9560439560439561, "y": 1.328759345808059 }, { "posteriors": "curve_6", "x": 0.9615384615384616, "y": 1.3345682513960466 }, { "posteriors": "curve_6", "x": 0.967032967032967, "y": 1.3403692354354106 }, { "posteriors": "curve_6", "x": 0.9725274725274725, "y": 1.346162353646167 }, { "posteriors": "curve_6", "x": 0.978021978021978, "y": 1.3519476610440149 }, { "posteriors": "curve_6", "x": 0.9835164835164835, "y": 1.3577252119531422 }, { "posteriors": "curve_6", "x": 0.989010989010989, "y": 1.3634950600187314 }, { "posteriors": "curve_6", "x": 0.9945054945054945, "y": 1.3692572582191684 }, { "posteriors": "curve_7", "x": 0, "y": 0 }, { "posteriors": "curve_7", "x": 0.005494505494505495, "y": 0.026572613908125133 }, { "posteriors": "curve_7", "x": 0.01098901098901099, "y": 0.04549055229312022 }, { "posteriors": "curve_7", "x": 0.016483516483516484, "y": 0.06230204602074513 }, { "posteriors": "curve_7", "x": 0.02197802197802198, "y": 0.07787680787023912 }, { "posteriors": "curve_7", "x": 0.027472527472527472, "y": 0.09259214496337348 }, { "posteriors": "curve_7", "x": 0.03296703296703297, "y": 0.10665696992678943 }, { "posteriors": "curve_7", "x": 0.038461538461538464, "y": 0.12020290556022119 }, { "posteriors": "curve_7", "x": 0.04395604395604396, "y": 0.13331992904767065 }, { "posteriors": "curve_7", "x": 0.04945054945054945, "y": 0.14607313197683502 }, { "posteriors": "curve_7", "x": 0.054945054945054944, "y": 0.15851160999635724 }, { "posteriors": "curve_7", "x": 0.06043956043956044, "y": 0.1706736015390152 }, { "posteriors": "curve_7", "x": 0.06593406593406594, "y": 0.18258965733125712 }, { "posteriors": "curve_7", "x": 0.07142857142857142, "y": 0.19428469719348307 }, { "posteriors": "curve_7", "x": 0.07692307692307693, "y": 0.2057794005542017 }, { "posteriors": "curve_7", "x": 0.08241758241758242, "y": 0.21709117878326997 }, { "posteriors": "curve_7", "x": 0.08791208791208792, "y": 0.22823487463548708 }, { "posteriors": "curve_7", "x": 0.09340659340659341, "y": 0.23922327767214388 }, { "posteriors": "curve_7", "x": 0.0989010989010989, "y": 0.25006751205534333 }, { "posteriors": "curve_7", "x": 0.1043956043956044, "y": 0.2607773336513988 }, { "posteriors": "curve_7", "x": 0.10989010989010989, "y": 0.2713613613074444 }, { "posteriors": "curve_7", "x": 0.11538461538461539, "y": 0.2818272594458725 }, { "posteriors": "curve_7", "x": 0.12087912087912088, "y": 0.29218188405212625 }, { "posteriors": "curve_7", "x": 0.12637362637362637, "y": 0.3024314007234513 }, { "posteriors": "curve_7", "x": 0.13186813186813187, "y": 0.31258138110645894 }, { "posteriors": "curve_7", "x": 0.13736263736263737, "y": 0.3226368824143756 }, { "posteriors": "curve_7", "x": 0.14285714285714285, "y": 0.33260251354988934 }, { "posteriors": "curve_7", "x": 0.14835164835164835, "y": 0.34248249051751883 }, { "posteriors": "curve_7", "x": 0.15384615384615385, "y": 0.35228068319223643 }, { "posteriors": "curve_7", "x": 0.15934065934065933, "y": 0.3620006550527794 }, { "posteriors": "curve_7", "x": 0.16483516483516483, "y": 0.37164569714369666 }, { "posteriors": "curve_7", "x": 0.17032967032967034, "y": 0.3812188572685479 }, { "posteriors": "curve_7", "x": 0.17582417582417584, "y": 0.3907229652158791 }, { "posteriors": "curve_7", "x": 0.1813186813186813, "y": 0.4001606546640368 }, { "posteriors": "curve_7", "x": 0.18681318681318682, "y": 0.4095343822893073 }, { "posteriors": "curve_7", "x": 0.19230769230769232, "y": 0.4188464445060676 }, { "posteriors": "curve_7", "x": 0.1978021978021978, "y": 0.42809899219157 }, { "posteriors": "curve_7", "x": 0.2032967032967033, "y": 0.437294043687145 }, { "posteriors": "curve_7", "x": 0.2087912087912088, "y": 0.4464334963186323 }, { "posteriors": "curve_7", "x": 0.21428571428571427, "y": 0.4555191366391608 }, { "posteriors": "curve_7", "x": 0.21978021978021978, "y": 0.46455264956504855 }, { "posteriors": "curve_7", "x": 0.22527472527472528, "y": 0.47353562654907566 }, { "posteriors": "curve_7", "x": 0.23076923076923078, "y": 0.4824695729135286 }, { "posteriors": "curve_7", "x": 0.23626373626373626, "y": 0.49135591444731175 }, { "posteriors": "curve_7", "x": 0.24175824175824176, "y": 0.5001960033563533 }, { "posteriors": "curve_7", "x": 0.24725274725274726, "y": 0.5089911236439363 }, { "posteriors": "curve_7", "x": 0.25274725274725274, "y": 0.5177424959870068 }, { "posteriors": "curve_7", "x": 0.25824175824175827, "y": 0.5264512821655897 }, { "posteriors": "curve_7", "x": 0.26373626373626374, "y": 0.5351185890948877 }, { "posteriors": "curve_7", "x": 0.2692307692307692, "y": 0.543745472503232 }, { "posteriors": "curve_7", "x": 0.27472527472527475, "y": 0.552332940293565 }, { "posteriors": "curve_7", "x": 0.2802197802197802, "y": 0.5608819556214665 }, { "posteriors": "curve_7", "x": 0.2857142857142857, "y": 0.569393439718705 }, { "posteriors": "curve_7", "x": 0.29120879120879123, "y": 0.5778682744878355 }, { "posteriors": "curve_7", "x": 0.2967032967032967, "y": 0.5863073048903712 }, { "posteriors": "curve_7", "x": 0.3021978021978022, "y": 0.5947113411484684 }, { "posteriors": "curve_7", "x": 0.3076923076923077, "y": 0.6030811607778049 }, { "posteriors": "curve_7", "x": 0.3131868131868132, "y": 0.6114175104673767 }, { "posteriors": "curve_7", "x": 0.31868131868131866, "y": 0.6197211078202178 }, { "posteriors": "curve_7", "x": 0.3241758241758242, "y": 0.6279926429675519 }, { "posteriors": "curve_7", "x": 0.32967032967032966, "y": 0.6362327800675633 }, { "posteriors": "curve_7", "x": 0.33516483516483514, "y": 0.6444421586988205 }, { "posteriors": "curve_7", "x": 0.34065934065934067, "y": 0.652621395157357 }, { "posteriors": "curve_7", "x": 0.34615384615384615, "y": 0.6607710836655168 }, { "posteriors": "curve_7", "x": 0.3516483516483517, "y": 0.6688917974998728 }, { "posteriors": "curve_7", "x": 0.35714285714285715, "y": 0.6769840900448082 }, { "posteriors": "curve_7", "x": 0.3626373626373626, "y": 0.685048495777733 }, { "posteriors": "curve_7", "x": 0.36813186813186816, "y": 0.6930855311913358 }, { "posteriors": "curve_7", "x": 0.37362637362637363, "y": 0.7010956956577735 }, { "posteriors": "curve_7", "x": 0.3791208791208791, "y": 0.7090794722392558 }, { "posteriors": "curve_7", "x": 0.38461538461538464, "y": 0.7170373284490738 }, { "posteriors": "curve_7", "x": 0.3901098901098901, "y": 0.7249697169667682 }, { "posteriors": "curve_7", "x": 0.3956043956043956, "y": 0.7328770763108088 }, { "posteriors": "curve_7", "x": 0.4010989010989011, "y": 0.7407598314718592 }, { "posteriors": "curve_7", "x": 0.4065934065934066, "y": 0.748618394509448 }, { "posteriors": "curve_7", "x": 0.41208791208791207, "y": 0.7564531651146251 }, { "posteriors": "curve_7", "x": 0.4175824175824176, "y": 0.7642645311409685 }, { "posteriors": "curve_7", "x": 0.4230769230769231, "y": 0.7720528691061151 }, { "posteriors": "curve_7", "x": 0.42857142857142855, "y": 0.7798185446658144 }, { "posteriors": "curve_7", "x": 0.4340659340659341, "y": 0.787561913062339 }, { "posteriors": "curve_7", "x": 0.43956043956043955, "y": 0.7952833195489515 }, { "posteriors": "curve_7", "x": 0.44505494505494503, "y": 0.8029830997919826 }, { "posteriors": "curve_7", "x": 0.45054945054945056, "y": 0.8106615802519691 }, { "posteriors": "curve_7", "x": 0.45604395604395603, "y": 0.8183190785451798 }, { "posteriors": "curve_7", "x": 0.46153846153846156, "y": 0.825955903786765 }, { "posteriors": "curve_7", "x": 0.46703296703296704, "y": 0.8335723569166679 }, { "posteriors": "curve_7", "x": 0.4725274725274725, "y": 0.841168731009362 }, { "posteriors": "curve_7", "x": 0.47802197802197804, "y": 0.8487453115683882 }, { "posteriors": "curve_7", "x": 0.4835164835164835, "y": 0.8563023768066097 }, { "posteriors": "curve_7", "x": 0.489010989010989, "y": 0.8638401979130287 }, { "posteriors": "curve_7", "x": 0.4945054945054945, "y": 0.8713590393069532 }, { "posteriors": "curve_7", "x": 0.5, "y": 0.8788591588802475 }, { "posteriors": "curve_7", "x": 0.5054945054945055, "y": 0.8863408082283499 }, { "posteriors": "curve_7", "x": 0.510989010989011, "y": 0.8938042328706949 }, { "posteriors": "curve_7", "x": 0.5164835164835165, "y": 0.9012496724611337 }, { "posteriors": "curve_7", "x": 0.521978021978022, "y": 0.9086773609889095 }, { "posteriors": "curve_7", "x": 0.5274725274725275, "y": 0.9160875269707046 }, { "posteriors": "curve_7", "x": 0.532967032967033, "y": 0.9234803936342478 }, { "posteriors": "curve_7", "x": 0.5384615384615384, "y": 0.9308561790939321 }, { "posteriors": "curve_7", "x": 0.5439560439560439, "y": 0.9382150965188714 }, { "posteriors": "curve_7", "x": 0.5494505494505495, "y": 0.9455573542937937 }, { "posteriors": "curve_7", "x": 0.554945054945055, "y": 0.9528831561731442 }, { "posteriors": "curve_7", "x": 0.5604395604395604, "y": 0.9601927014287504 }, { "posteriors": "curve_7", "x": 0.5659340659340659, "y": 0.9674861849913763 }, { "posteriors": "curve_7", "x": 0.5714285714285714, "y": 0.974763797586479 }, { "posteriors": "curve_7", "x": 0.5769230769230769, "y": 0.9820257258644551 }, { "posteriors": "curve_7", "x": 0.5824175824175825, "y": 0.9892721525256519 }, { "posteriors": "curve_7", "x": 0.5879120879120879, "y": 0.9965032564404033 }, { "posteriors": "curve_7", "x": 0.5934065934065934, "y": 1.0037192127643288 }, { "posteriors": "curve_7", "x": 0.5989010989010989, "y": 1.0109201930491298 }, { "posteriors": "curve_7", "x": 0.6043956043956044, "y": 1.0181063653490938 }, { "posteriors": "curve_7", "x": 0.6098901098901099, "y": 1.0252778943235135 }, { "posteriors": "curve_7", "x": 0.6153846153846154, "y": 1.0324349413352107 }, { "posteriors": "curve_7", "x": 0.6208791208791209, "y": 1.0395776645453503 }, { "posteriors": "curve_7", "x": 0.6263736263736264, "y": 1.0467062190047083 }, { "posteriors": "curve_7", "x": 0.6318681318681318, "y": 1.0538207567415665 }, { "posteriors": "curve_7", "x": 0.6373626373626373, "y": 1.0609214268463776 }, { "posteriors": "curve_7", "x": 0.6428571428571429, "y": 1.0680083755533505 }, { "posteriors": "curve_7", "x": 0.6483516483516484, "y": 1.0750817463190934 }, { "posteriors": "curve_7", "x": 0.6538461538461539, "y": 1.082141679898444 }, { "posteriors": "curve_7", "x": 0.6593406593406593, "y": 1.0891883144176098 }, { "posteriors": "curve_7", "x": 0.6648351648351648, "y": 1.0962217854447351 }, { "posteriors": "curve_7", "x": 0.6703296703296703, "y": 1.1032422260580088 }, { "posteriors": "curve_7", "x": 0.6758241758241759, "y": 1.1102497669114129 }, { "posteriors": "curve_7", "x": 0.6813186813186813, "y": 1.1172445362982173 }, { "posteriors": "curve_7", "x": 0.6868131868131868, "y": 1.124226660212312 }, { "posteriors": "curve_7", "x": 0.6923076923076923, "y": 1.1311962624074703 }, { "posteriors": "curve_7", "x": 0.6978021978021978, "y": 1.1381534644546225 }, { "posteriors": "curve_7", "x": 0.7032967032967034, "y": 1.1450983857972312 }, { "posteriors": "curve_7", "x": 0.7087912087912088, "y": 1.1520311438048376 }, { "posteriors": "curve_7", "x": 0.7142857142857143, "y": 1.1589518538248553 }, { "posteriors": "curve_7", "x": 0.7197802197802198, "y": 1.1658606292326854 }, { "posteriors": "curve_7", "x": 0.7252747252747253, "y": 1.1727575814802131 }, { "posteriors": "curve_7", "x": 0.7307692307692307, "y": 1.1796428201427571 }, { "posteriors": "curve_7", "x": 0.7362637362637363, "y": 1.186516452964526 }, { "posteriors": "curve_7", "x": 0.7417582417582418, "y": 1.1933785859026436 }, { "posteriors": "curve_7", "x": 0.7472527472527473, "y": 1.2002293231698 }, { "posteriors": "curve_7", "x": 0.7527472527472527, "y": 1.2070687672755758 }, { "posteriors": "curve_7", "x": 0.7582417582417582, "y": 1.213897019066494 }, { "posteriors": "curve_7", "x": 0.7637362637362637, "y": 1.2207141777648478 }, { "posteriors": "curve_7", "x": 0.7692307692307693, "y": 1.2275203410063487 }, { "posteriors": "curve_7", "x": 0.7747252747252747, "y": 1.2343156048766384 }, { "posteriors": "curve_7", "x": 0.7802197802197802, "y": 1.2411000639467098 }, { "posteriors": "curve_7", "x": 0.7857142857142857, "y": 1.247873811307273 }, { "posteriors": "curve_7", "x": 0.7912087912087912, "y": 1.2546369386021077 }, { "posteriors": "curve_7", "x": 0.7967032967032966, "y": 1.2613895360604384 }, { "posteriors": "curve_7", "x": 0.8021978021978022, "y": 1.2681316925283663 }, { "posteriors": "curve_7", "x": 0.8076923076923077, "y": 1.2748634954993923 }, { "posteriors": "curve_7", "x": 0.8131868131868132, "y": 1.2815850311440644 }, { "posteriors": "curve_7", "x": 0.8186813186813187, "y": 1.288296384338779 }, { "posteriors": "curve_7", "x": 0.8241758241758241, "y": 1.2949976386937656 }, { "posteriors": "curve_7", "x": 0.8296703296703297, "y": 1.301688876580285 }, { "posteriors": "curve_7", "x": 0.8351648351648352, "y": 1.3083701791570663 }, { "posteriors": "curve_7", "x": 0.8406593406593407, "y": 1.315041626396011 }, { "posteriors": "curve_7", "x": 0.8461538461538461, "y": 1.3217032971071851 }, { "posteriors": "curve_7", "x": 0.8516483516483516, "y": 1.3283552689631302 }, { "posteriors": "curve_7", "x": 0.8571428571428571, "y": 1.3349976185225083 }, { "posteriors": "curve_7", "x": 0.8626373626373627, "y": 1.34163042125311 }, { "posteriors": "curve_7", "x": 0.8681318681318682, "y": 1.348253751554242 }, { "posteriors": "curve_7", "x": 0.8736263736263736, "y": 1.3548676827785178 }, { "posteriors": "curve_7", "x": 0.8791208791208791, "y": 1.3614722872530682 }, { "posteriors": "curve_7", "x": 0.8846153846153846, "y": 1.368067636300195 }, { "posteriors": "curve_7", "x": 0.8901098901098901, "y": 1.374653800257479 }, { "posteriors": "curve_7", "x": 0.8956043956043956, "y": 1.3812308484973688 }, { "posteriors": "curve_7", "x": 0.9010989010989011, "y": 1.3877988494462574 }, { "posteriors": "curve_7", "x": 0.9065934065934066, "y": 1.394357870603072 }, { "posteriors": "curve_7", "x": 0.9120879120879121, "y": 1.400907978557386 }, { "posteriors": "curve_7", "x": 0.9175824175824175, "y": 1.4074492390070694 }, { "posteriors": "curve_7", "x": 0.9230769230769231, "y": 1.4139817167754962 }, { "posteriors": "curve_7", "x": 0.9285714285714286, "y": 1.420505475828316 }, { "posteriors": "curve_7", "x": 0.9340659340659341, "y": 1.4270205792898087 }, { "posteriors": "curve_7", "x": 0.9395604395604396, "y": 1.433527089458833 }, { "posteriors": "curve_7", "x": 0.945054945054945, "y": 1.44002506782438 }, { "posteriors": "curve_7", "x": 0.9505494505494505, "y": 1.4465145750807455 }, { "posteriors": "curve_7", "x": 0.9560439560439561, "y": 1.4529956711423333 }, { "posteriors": "curve_7", "x": 0.9615384615384616, "y": 1.4594684151580966 }, { "posteriors": "curve_7", "x": 0.967032967032967, "y": 1.4659328655256347 }, { "posteriors": "curve_7", "x": 0.9725274725274725, "y": 1.472389079904948 }, { "posteriors": "curve_7", "x": 0.978021978021978, "y": 1.4788371152318667 }, { "posteriors": "curve_7", "x": 0.9835164835164835, "y": 1.4852770277311615 }, { "posteriors": "curve_7", "x": 0.989010989010989, "y": 1.491708872929344 }, { "posteriors": "curve_7", "x": 0.9945054945054945, "y": 1.498132705667166 }, { "posteriors": "curve_8", "x": 0, "y": 0 }, { "posteriors": "curve_8", "x": 0.005494505494505495, "y": 0.025130841989563144 }, { "posteriors": "curve_8", "x": 0.01098901098901099, "y": 0.0434780667827404 }, { "posteriors": "curve_8", "x": 0.016483516483516484, "y": 0.05991399264300645 }, { "posteriors": "curve_8", "x": 0.02197802197802198, "y": 0.07522001419409247 }, { "posteriors": "curve_8", "x": 0.027472527472527472, "y": 0.08973722571139282 }, { "posteriors": "curve_8", "x": 0.03296703296703297, "y": 0.10365528438860451 }, { "posteriors": "curve_8", "x": 0.038461538461538464, "y": 0.11709406843039451 }, { "posteriors": "curve_8", "x": 0.04395604395604396, "y": 0.13013574323883143 }, { "posteriors": "curve_8", "x": 0.04945054945054945, "y": 0.14283988240095694 }, { "posteriors": "curve_8", "x": 0.054945054945054944, "y": 0.15525150705249446 }, { "posteriors": "curve_8", "x": 0.06043956043956044, "y": 0.1674057425338206 }, { "posteriors": "curve_8", "x": 0.06593406593406594, "y": 0.1793306956807633 }, { "posteriors": "curve_8", "x": 0.07142857142857142, "y": 0.19104932495625723 }, { "posteriors": "curve_8", "x": 0.07692307692307693, "y": 0.2025807065753616 }, { "posteriors": "curve_8", "x": 0.08241758241758242, "y": 0.21394092101287612 }, { "posteriors": "curve_8", "x": 0.08791208791208792, "y": 0.22514369147318117 }, { "posteriors": "curve_8", "x": 0.09340659340659341, "y": 0.23620085490204826 }, { "posteriors": "curve_8", "x": 0.0989010989010989, "y": 0.2471227167337559 }, { "posteriors": "curve_8", "x": 0.1043956043956044, "y": 0.2579183229383165 }, { "posteriors": "curve_8", "x": 0.10989010989010989, "y": 0.26859567198555234 }, { "posteriors": "curve_8", "x": 0.11538461538461539, "y": 0.2791618823353361 }, { "posteriors": "curve_8", "x": 0.12087912087912088, "y": 0.28962332645768313 }, { "posteriors": "curve_8", "x": 0.12637362637362637, "y": 0.29998573928741656 }, { "posteriors": "curve_8", "x": 0.13186813186813187, "y": 0.31025430688878636 }, { "posteriors": "curve_8", "x": 0.13736263736263737, "y": 0.3204337396145256 }, { "posteriors": "curve_8", "x": 0.14285714285714285, "y": 0.33052833298205053 }, { "posteriors": "curve_8", "x": 0.14835164835164835, "y": 0.3405420187215784 }, { "posteriors": "curve_8", "x": 0.15384615384615385, "y": 0.3504784078876546 }, { "posteriors": "curve_8", "x": 0.15934065934065933, "y": 0.3603408275070464 }, { "posteriors": "curve_8", "x": 0.16483516483516483, "y": 0.3701323519212701 }, { "posteriors": "curve_8", "x": 0.17032967032967034, "y": 0.37985582974280147 }, { "posteriors": "curve_8", "x": 0.17582417582417584, "y": 0.38951390716033196 }, { "posteriors": "curve_8", "x": 0.1813186813186813, "y": 0.3991090481860418 }, { "posteriors": "curve_8", "x": 0.18681318681318682, "y": 0.40864355232652305 }, { "posteriors": "curve_8", "x": 0.19230769230769232, "y": 0.4181195700712075 }, { "posteriors": "curve_8", "x": 0.1978021978021978, "y": 0.4275391165224246 }, { "posteriors": "curve_8", "x": 0.2032967032967033, "y": 0.4369040834354211 }, { "posteriors": "curve_8", "x": 0.2087912087912088, "y": 0.4462162498917317 }, { "posteriors": "curve_8", "x": 0.21428571428571427, "y": 0.4554772917928613 }, { "posteriors": "curve_8", "x": 0.21978021978021978, "y": 0.46468879033152843 }, { "posteriors": "curve_8", "x": 0.22527472527472528, "y": 0.47385223957335476 }, { "posteriors": "curve_8", "x": 0.23076923076923078, "y": 0.4829690532618024 }, { "posteriors": "curve_8", "x": 0.23626373626373626, "y": 0.49204057094250997 }, { "posteriors": "curve_8", "x": 0.24175824175824176, "y": 0.5010680634893231 }, { "posteriors": "curve_8", "x": 0.24725274725274726, "y": 0.5100527381027198 }, { "posteriors": "curve_8", "x": 0.25274725274725274, "y": 0.518995742841594 }, { "posteriors": "curve_8", "x": 0.25824175824175827, "y": 0.5278981707411473 }, { "posteriors": "curve_8", "x": 0.26373626373626374, "y": 0.5367610635626767 }, { "posteriors": "curve_8", "x": 0.2692307692307692, "y": 0.5455854152151411 }, { "posteriors": "curve_8", "x": 0.27472527472527475, "y": 0.5543721748833363 }, { "posteriors": "curve_8", "x": 0.2802197802197802, "y": 0.563122249893194 }, { "posteriors": "curve_8", "x": 0.2857142857142857, "y": 0.5718365083410109 }, { "posteriors": "curve_8", "x": 0.29120879120879123, "y": 0.5805157815102163 }, { "posteriors": "curve_8", "x": 0.2967032967032967, "y": 0.5891608660965282 }, { "posteriors": "curve_8", "x": 0.3021978021978022, "y": 0.5977725262599495 }, { "posteriors": "curve_8", "x": 0.3076923076923077, "y": 0.6063514955199821 }, { "posteriors": "curve_8", "x": 0.3131868131868132, "y": 0.6148984785086176 }, { "posteriors": "curve_8", "x": 0.31868131868131866, "y": 0.623414152594083 }, { "posteriors": "curve_8", "x": 0.3241758241758242, "y": 0.6318991693869332 }, { "posteriors": "curve_8", "x": 0.32967032967032966, "y": 0.6403541561388607 }, { "posteriors": "curve_8", "x": 0.33516483516483514, "y": 0.6487797170435231 }, { "posteriors": "curve_8", "x": 0.34065934065934067, "y": 0.6571764344477453 }, { "posteriors": "curve_8", "x": 0.34615384615384615, "y": 0.665544869980614 }, { "posteriors": "curve_8", "x": 0.3516483516483517, "y": 0.6738855656072448 }, { "posteriors": "curve_8", "x": 0.35714285714285715, "y": 0.6821990446133442 }, { "posteriors": "curve_8", "x": 0.3626373626373626, "y": 0.6904858125261056 }, { "posteriors": "curve_8", "x": 0.36813186813186816, "y": 0.6987463579764569 }, { "posteriors": "curve_8", "x": 0.37362637362637363, "y": 0.7069811535072125 }, { "posteriors": "curve_8", "x": 0.3791208791208791, "y": 0.7151906563312709 }, { "posteriors": "curve_8", "x": 0.38461538461538464, "y": 0.7233753090436217 }, { "posteriors": "curve_8", "x": 0.3901098901098901, "y": 0.7315355402905954 }, { "posteriors": "curve_8", "x": 0.3956043956043956, "y": 0.7396717653994903 }, { "posteriors": "curve_8", "x": 0.4010989010989011, "y": 0.7477843869714378 }, { "posteriors": "curve_8", "x": 0.4065934065934066, "y": 0.7558737954401277 }, { "posteriors": "curve_8", "x": 0.41208791208791207, "y": 0.7639403695987929 }, { "posteriors": "curve_8", "x": 0.4175824175824176, "y": 0.7719844770976547 }, { "posteriors": "curve_8", "x": 0.4230769230769231, "y": 0.7800064749138533 }, { "posteriors": "curve_8", "x": 0.42857142857142855, "y": 0.7880067097957194 }, { "posteriors": "curve_8", "x": 0.4340659340659341, "y": 0.7959855186831013 }, { "posteriors": "curve_8", "x": 0.43956043956043955, "y": 0.8039432291053235 }, { "posteriors": "curve_8", "x": 0.44505494505494503, "y": 0.8118801595582309 }, { "posteriors": "curve_8", "x": 0.45054945054945056, "y": 0.8197966198616632 }, { "posteriors": "curve_8", "x": 0.45604395604395603, "y": 0.8276929114986012 }, { "posteriors": "curve_8", "x": 0.46153846153846156, "y": 0.8355693279371326 }, { "posteriors": "curve_8", "x": 0.46703296703296704, "y": 0.8434261549363037 }, { "posteriors": "curve_8", "x": 0.4725274725274725, "y": 0.8512636708368418 }, { "posteriors": "curve_8", "x": 0.47802197802197804, "y": 0.8590821468376648 }, { "posteriors": "curve_8", "x": 0.4835164835164835, "y": 0.8668818472590261 }, { "posteriors": "curve_8", "x": 0.489010989010989, "y": 0.8746630297930893 }, { "posteriors": "curve_8", "x": 0.4945054945054945, "y": 0.8824259457426616 }, { "posteriors": "curve_8", "x": 0.5, "y": 0.8901708402487768 }, { "posteriors": "curve_8", "x": 0.5054945054945055, "y": 0.89789795250776 }, { "posteriors": "curve_8", "x": 0.510989010989011, "y": 0.9056075159783747 }, { "posteriors": "curve_8", "x": 0.5164835164835165, "y": 0.9132997585796002 }, { "posteriors": "curve_8", "x": 0.521978021978022, "y": 0.9209749028795653 }, { "posteriors": "curve_8", "x": 0.5274725274725275, "y": 0.9286331662761174 }, { "posteriors": "curve_8", "x": 0.532967032967033, "y": 0.9362747611694836 }, { "posteriors": "curve_8", "x": 0.5384615384615384, "y": 0.9438998951274457 }, { "posteriors": "curve_8", "x": 0.5439560439560439, "y": 0.9515087710434283 }, { "posteriors": "curve_8", "x": 0.5494505494505495, "y": 0.959101587287873 }, { "posteriors": "curve_8", "x": 0.554945054945055, "y": 0.9666785378532451 }, { "posteriors": "curve_8", "x": 0.5604395604395604, "y": 0.9742398124930045 }, { "posteriors": "curve_8", "x": 0.5659340659340659, "y": 0.9817855968548475 }, { "posteriors": "curve_8", "x": 0.5714285714285714, "y": 0.9893160726085067 }, { "posteriors": "curve_8", "x": 0.5769230769230769, "y": 0.9968314175683858 }, { "posteriors": "curve_8", "x": 0.5824175824175825, "y": 1.0043318058112811 }, { "posteriors": "curve_8", "x": 0.5879120879120879, "y": 1.0118174077894329 }, { "posteriors": "curve_8", "x": 0.5934065934065934, "y": 1.019288390439134 }, { "posteriors": "curve_8", "x": 0.5989010989010989, "y": 1.0267449172851106 }, { "posteriors": "curve_8", "x": 0.6043956043956044, "y": 1.034187148540872 }, { "posteriors": "curve_8", "x": 0.6098901098901099, "y": 1.0416152412052284 }, { "posteriors": "curve_8", "x": 0.6153846153846154, "y": 1.0490293491551486 }, { "posteriors": "curve_8", "x": 0.6208791208791209, "y": 1.0564296232351327 }, { "posteriors": "curve_8", "x": 0.6263736263736264, "y": 1.0638162113432583 }, { "posteriors": "curve_8", "x": 0.6318681318681318, "y": 1.071189258514052 }, { "posteriors": "curve_8", "x": 0.6373626373626373, "y": 1.0785489069983294 }, { "posteriors": "curve_8", "x": 0.6428571428571429, "y": 1.0858952963401438 }, { "posteriors": "curve_8", "x": 0.6483516483516484, "y": 1.0932285634509635 }, { "posteriors": "curve_8", "x": 0.6538461538461539, "y": 1.1005488426812118 }, { "posteriors": "curve_8", "x": 0.6593406593406593, "y": 1.1078562658892723 }, { "posteriors": "curve_8", "x": 0.6648351648351648, "y": 1.1151509625080809 }, { "posteriors": "curve_8", "x": 0.6703296703296703, "y": 1.1224330596093992 }, { "posteriors": "curve_8", "x": 0.6758241758241759, "y": 1.1297026819658749 }, { "posteriors": "curve_8", "x": 0.6813186813186813, "y": 1.136959952110979 }, { "posteriors": "curve_8", "x": 0.6868131868131868, "y": 1.1442049903969103 }, { "posteriors": "curve_8", "x": 0.6923076923076923, "y": 1.1514379150505505 }, { "posteriors": "curve_8", "x": 0.6978021978021978, "y": 1.158658842227554 }, { "posteriors": "curve_8", "x": 0.7032967032967034, "y": 1.165867886064644 }, { "posteriors": "curve_8", "x": 0.7087912087912088, "y": 1.1730651587301908 }, { "posteriors": "curve_8", "x": 0.7142857142857143, "y": 1.1802507704731418 }, { "posteriors": "curve_8", "x": 0.7197802197802198, "y": 1.1874248296703673 }, { "posteriors": "curve_8", "x": 0.7252747252747253, "y": 1.1945874428724883 }, { "posteriors": "curve_8", "x": 0.7307692307692307, "y": 1.201738714848241 }, { "posteriors": "curve_8", "x": 0.7362637362637363, "y": 1.2088787486274402 }, { "posteriors": "curve_8", "x": 0.7417582417582418, "y": 1.2160076455425943 }, { "posteriors": "curve_8", "x": 0.7472527472527473, "y": 1.223125505269223 }, { "posteriors": "curve_8", "x": 0.7527472527472527, "y": 1.2302324258649278 }, { "posteriors": "curve_8", "x": 0.7582417582417582, "y": 1.2373285038072641 }, { "posteriors": "curve_8", "x": 0.7637362637362637, "y": 1.2444138340304585 }, { "posteriors": "curve_8", "x": 0.7692307692307693, "y": 1.2514885099610138 }, { "posteriors": "curve_8", "x": 0.7747252747252747, "y": 1.2585526235522468 }, { "posteriors": "curve_8", "x": 0.7802197802197802, "y": 1.265606265317793 }, { "posteriors": "curve_8", "x": 0.7857142857142857, "y": 1.2726495243641216 }, { "posteriors": "curve_8", "x": 0.7912087912087912, "y": 1.2796824884220905 }, { "posteriors": "curve_8", "x": 0.7967032967032966, "y": 1.286705243877585 }, { "posteriors": "curve_8", "x": 0.8021978021978022, "y": 1.2937178758012609 }, { "posteriors": "curve_8", "x": 0.8076923076923077, "y": 1.3007204679774367 }, { "posteriors": "curve_8", "x": 0.8131868131868132, "y": 1.3077131029321558 }, { "posteriors": "curve_8", "x": 0.8186813186813187, "y": 1.3146958619604519 }, { "posteriors": "curve_8", "x": 0.8241758241758241, "y": 1.3216688251528448 }, { "posteriors": "curve_8", "x": 0.8296703296703297, "y": 1.328632071421093 }, { "posteriors": "curve_8", "x": 0.8351648351648352, "y": 1.3355856785232296 }, { "posteriors": "curve_8", "x": 0.8406593406593407, "y": 1.3425297230879036 }, { "posteriors": "curve_8", "x": 0.8461538461538461, "y": 1.3494642806380543 }, { "posteriors": "curve_8", "x": 0.8516483516483516, "y": 1.3563894256139377 }, { "posteriors": "curve_8", "x": 0.8571428571428571, "y": 1.3633052313955274 }, { "posteriors": "curve_8", "x": 0.8626373626373627, "y": 1.3702117703243135 }, { "posteriors": "curve_8", "x": 0.8681318681318682, "y": 1.3771091137245153 }, { "posteriors": "curve_8", "x": 0.8736263736263736, "y": 1.3839973319237302 }, { "posteriors": "curve_8", "x": 0.8791208791208791, "y": 1.3908764942730372 }, { "posteriors": "curve_8", "x": 0.8846153846153846, "y": 1.3977466691665692 }, { "posteriors": "curve_8", "x": 0.8901098901098901, "y": 1.404607924060578 }, { "posteriors": "curve_8", "x": 0.8956043956043956, "y": 1.4114603254919997 }, { "posteriors": "curve_8", "x": 0.9010989010989011, "y": 1.4183039390965442 }, { "posteriors": "curve_8", "x": 0.9065934065934066, "y": 1.4251388296263197 }, { "posteriors": "curve_8", "x": 0.9120879120879121, "y": 1.4319650609670078 }, { "posteriors": "curve_8", "x": 0.9175824175824175, "y": 1.4387826961546026 }, { "posteriors": "curve_8", "x": 0.9230769230769231, "y": 1.445591797391731 }, { "posteriors": "curve_8", "x": 0.9285714285714286, "y": 1.4523924260635592 }, { "posteriors": "curve_8", "x": 0.9340659340659341, "y": 1.4591846427533095 }, { "posteriors": "curve_8", "x": 0.9395604395604396, "y": 1.465968507257388 }, { "posteriors": "curve_8", "x": 0.945054945054945, "y": 1.472744078600143 }, { "posteriors": "curve_8", "x": 0.9505494505494505, "y": 1.479511415048261 }, { "posteriors": "curve_8", "x": 0.9560439560439561, "y": 1.4862705741248137 }, { "posteriors": "curve_8", "x": 0.9615384615384616, "y": 1.4930216126229647 }, { "posteriors": "curve_8", "x": 0.967032967032967, "y": 1.4997645866193472 }, { "posteriors": "curve_8", "x": 0.9725274725274725, "y": 1.5064995514871218 }, { "posteriors": "curve_8", "x": 0.978021978021978, "y": 1.5132265619087224 }, { "posteriors": "curve_8", "x": 0.9835164835164835, "y": 1.5199456718883044 }, { "posteriors": "curve_8", "x": 0.989010989010989, "y": 1.526656934763897 }, { "posteriors": "curve_8", "x": 0.9945054945054945, "y": 1.5333604032192722 }, { "posteriors": "curve_9", "x": 0, "y": 0 }, { "posteriors": "curve_9", "x": 0.005494505494505495, "y": 0.025053836837409194 }, { "posteriors": "curve_9", "x": 0.01098901098901099, "y": 0.04343743977200273 }, { "posteriors": "curve_9", "x": 0.016483516483516484, "y": 0.05993277588022261 }, { "posteriors": "curve_9", "x": 0.02197802197802198, "y": 0.07531026829108539 }, { "posteriors": "curve_9", "x": 0.027472527472527472, "y": 0.08990664303206981 }, { "posteriors": "curve_9", "x": 0.03296703296703297, "y": 0.10390928780932049 }, { "posteriors": "curve_9", "x": 0.038461538461538464, "y": 0.11743672391669696 }, { "posteriors": "curve_9", "x": 0.04395604395604396, "y": 0.13057023019415778 }, { "posteriors": "curve_9", "x": 0.04945054945054945, "y": 0.1433687641545459 }, { "posteriors": "curve_9", "x": 0.054945054945054944, "y": 0.15587689890185813 }, { "posteriors": "curve_9", "x": 0.06043956043956044, "y": 0.16812942233912898 }, { "posteriors": "curve_9", "x": 0.06593406593406594, "y": 0.1801541799869006 }, { "posteriors": "curve_9", "x": 0.07142857142857142, "y": 0.1919739233023179 }, { "posteriors": "curve_9", "x": 0.07692307692307693, "y": 0.2036075613989807 }, { "posteriors": "curve_9", "x": 0.08241758241758242, "y": 0.21507103769984584 }, { "posteriors": "curve_9", "x": 0.08791208791208792, "y": 0.22637796146283842 }, { "posteriors": "curve_9", "x": 0.09340659340659341, "y": 0.23754007377439154 }, { "posteriors": "curve_9", "x": 0.0989010989010989, "y": 0.24856759859036198 }, { "posteriors": "curve_9", "x": 0.1043956043956044, "y": 0.2594695119936952 }, { "posteriors": "curve_9", "x": 0.10989010989010989, "y": 0.2702537520235641 }, { "posteriors": "curve_9", "x": 0.11538461538461539, "y": 0.2809273845073387 }, { "posteriors": "curve_9", "x": 0.12087912087912088, "y": 0.2914967357755307 }, { "posteriors": "curve_9", "x": 0.12637362637362637, "y": 0.3019675000769816 }, { "posteriors": "curve_9", "x": 0.13186813186813187, "y": 0.3123448274066735 }, { "posteriors": "curve_9", "x": 0.13736263736263737, "y": 0.3226333959845454 }, { "posteriors": "curve_9", "x": 0.14285714285714285, "y": 0.33283747257379453 }, { "posteriors": "curve_9", "x": 0.14835164835164835, "y": 0.34296096306770074 }, { "posteriors": "curve_9", "x": 0.15384615384615385, "y": 0.3530074552168731 }, { "posteriors": "curve_9", "x": 0.15934065934065933, "y": 0.3629802549548049 }, { "posteriors": "curve_9", "x": 0.16483516483516483, "y": 0.37288241746828776 }, { "posteriors": "curve_9", "x": 0.17032967032967034, "y": 0.3827167739225448 }, { "posteriors": "curve_9", "x": 0.17582417582417584, "y": 0.3924859545691706 }, { "posteriors": "curve_9", "x": 0.1813186813186813, "y": 0.40219240882404955 }, { "posteriors": "curve_9", "x": 0.18681318681318682, "y": 0.41183842279221977 }, { "posteriors": "curve_9", "x": 0.19230769230769232, "y": 0.4214261346297665 }, { "posteriors": "curve_9", "x": 0.1978021978021978, "y": 0.430957548063793 }, { "posteriors": "curve_9", "x": 0.2032967032967033, "y": 0.44043454433628004 }, { "posteriors": "curve_9", "x": 0.2087912087912088, "y": 0.44985889279314767 }, { "posteriors": "curve_9", "x": 0.21428571428571427, "y": 0.45923226030375336 }, { "posteriors": "curve_9", "x": 0.21978021978021978, "y": 0.4685562196666427 }, { "posteriors": "curve_9", "x": 0.22527472527472528, "y": 0.47783225713323507 }, { "posteriors": "curve_9", "x": 0.23076923076923078, "y": 0.4870617791612336 }, { "posteriors": "curve_9", "x": 0.23626373626373626, "y": 0.496246118493057 }, { "posteriors": "curve_9", "x": 0.24175824175824176, "y": 0.5053865396408628 }, { "posteriors": "curve_9", "x": 0.24725274725274726, "y": 0.5144842438482448 }, { "posteriors": "curve_9", "x": 0.25274725274725274, "y": 0.5235403735890422 }, { "posteriors": "curve_9", "x": 0.25824175824175827, "y": 0.5325560166555521 }, { "posteriors": "curve_9", "x": 0.26373626373626374, "y": 0.5415322098815494 }, { "posteriors": "curve_9", "x": 0.2692307692307692, "y": 0.550469942539654 }, { "posteriors": "curve_9", "x": 0.27472527472527475, "y": 0.5593701594475865 }, { "posteriors": "curve_9", "x": 0.2802197802197802, "y": 0.5682337638135723 }, { "posteriors": "curve_9", "x": 0.2857142857142857, "y": 0.5770616198474798 }, { "posteriors": "curve_9", "x": 0.29120879120879123, "y": 0.5858545551611063 }, { "posteriors": "curve_9", "x": 0.2967032967032967, "y": 0.5946133629782924 }, { "posteriors": "curve_9", "x": 0.3021978021978022, "y": 0.6033388041731699 }, { "posteriors": "curve_9", "x": 0.3076923076923077, "y": 0.6120316091527852 }, { "posteriors": "curve_9", "x": 0.3131868131868132, "y": 0.6206924795985446 }, { "posteriors": "curve_9", "x": 0.31868131868131866, "y": 0.6293220900793567 }, { "posteriors": "curve_9", "x": 0.3241758241758242, "y": 0.6379210895479716 }, { "posteriors": "curve_9", "x": 0.32967032967032966, "y": 0.6464901027308063 }, { "posteriors": "curve_9", "x": 0.33516483516483514, "y": 0.655029731420489 }, { "posteriors": "curve_9", "x": 0.34065934065934067, "y": 0.6635405556794083 }, { "posteriors": "curve_9", "x": 0.34615384615384615, "y": 0.672023134961732 }, { "posteriors": "curve_9", "x": 0.3516483516483517, "y": 0.6804780091606256 }, { "posteriors": "curve_9", "x": 0.35714285714285715, "y": 0.6889056995867412 }, { "posteriors": "curve_9", "x": 0.3626373626373626, "y": 0.6973067098834805 }, { "posteriors": "curve_9", "x": 0.36813186813186816, "y": 0.7056815268840078 }, { "posteriors": "curve_9", "x": 0.37362637362637363, "y": 0.7140306214145344 }, { "posteriors": "curve_9", "x": 0.3791208791208791, "y": 0.7223544490479855 }, { "posteriors": "curve_9", "x": 0.38461538461538464, "y": 0.7306534508117831 }, { "posteriors": "curve_9", "x": 0.3901098901098901, "y": 0.7389280538531574 }, { "posteriors": "curve_9", "x": 0.3956043956043956, "y": 0.7471786720650957 }, { "posteriors": "curve_9", "x": 0.4010989010989011, "y": 0.7554057066757706 }, { "posteriors": "curve_9", "x": 0.4065934065934066, "y": 0.7636095468040492 }, { "posteriors": "curve_9", "x": 0.41208791208791207, "y": 0.7717905699834688 }, { "posteriors": "curve_9", "x": 0.4175824175824176, "y": 0.7799491426568611 }, { "posteriors": "curve_9", "x": 0.4230769230769231, "y": 0.7880856206436366 }, { "posteriors": "curve_9", "x": 0.42857142857142855, "y": 0.796200349581576 }, { "posteriors": "curve_9", "x": 0.4340659340659341, "y": 0.8042936653448235 }, { "posteriors": "curve_9", "x": 0.43956043956043955, "y": 0.812365894439654 }, { "posteriors": "curve_9", "x": 0.44505494505494503, "y": 0.8204173543794563 }, { "posteriors": "curve_9", "x": 0.45054945054945056, "y": 0.8284483540402656 }, { "posteriors": "curve_9", "x": 0.45604395604395603, "y": 0.8364591939980813 }, { "posteriors": "curve_9", "x": 0.46153846153846156, "y": 0.8444501668491103 }, { "posteriors": "curve_9", "x": 0.46703296703296704, "y": 0.8524215575139912 }, { "posteriors": "curve_9", "x": 0.4725274725274725, "y": 0.8603736435269831 }, { "posteriors": "curve_9", "x": 0.47802197802197804, "y": 0.8683066953110247 }, { "posteriors": "curve_9", "x": 0.4835164835164835, "y": 0.8762209764395098 }, { "posteriors": "curve_9", "x": 0.489010989010989, "y": 0.8841167438855655 }, { "posteriors": "curve_9", "x": 0.4945054945054945, "y": 0.8919942482595605 }, { "posteriors": "curve_9", "x": 0.5, "y": 0.8998537340355257 }, { "posteriors": "curve_9", "x": 0.5054945054945055, "y": 0.9076954397671207 }, { "posteriors": "curve_9", "x": 0.510989010989011, "y": 0.9155195982937373 }, { "posteriors": "curve_9", "x": 0.5164835164835165, "y": 0.9233264369372889 }, { "posteriors": "curve_9", "x": 0.521978021978022, "y": 0.9311161776902057 }, { "posteriors": "curve_9", "x": 0.5274725274725275, "y": 0.9388890373951131 }, { "posteriors": "curve_9", "x": 0.532967032967033, "y": 0.9466452279166468 }, { "posteriors": "curve_9", "x": 0.5384615384615384, "y": 0.9543849563058242 }, { "posteriors": "curve_9", "x": 0.5439560439560439, "y": 0.9621084249573674 }, { "posteriors": "curve_9", "x": 0.5494505494505495, "y": 0.9698158317603502 }, { "posteriors": "curve_9", "x": 0.554945054945055, "y": 0.9775073702425132 }, { "posteriors": "curve_9", "x": 0.5604395604395604, "y": 0.9851832297085755 }, { "posteriors": "curve_9", "x": 0.5659340659340659, "y": 0.9928435953728482 }, { "posteriors": "curve_9", "x": 0.5714285714285714, "y": 1.0004886484864373 }, { "posteriors": "curve_9", "x": 0.5769230769230769, "y": 1.0081185664593064 }, { "posteriors": "curve_9", "x": 0.5824175824175825, "y": 1.015733522977456 }, { "posteriors": "curve_9", "x": 0.5879120879120879, "y": 1.0233336881154542 }, { "posteriors": "curve_9", "x": 0.5934065934065934, "y": 1.0309192284445516 }, { "posteriors": "curve_9", "x": 0.5989010989010989, "y": 1.0384903071365863 }, { "posteriors": "curve_9", "x": 0.6043956043956044, "y": 1.0460470840638842 }, { "posteriors": "curve_9", "x": 0.6098901098901099, "y": 1.0535897158953436 }, { "posteriors": "curve_9", "x": 0.6153846153846154, "y": 1.0611183561888788 }, { "posteriors": "curve_9", "x": 0.6208791208791209, "y": 1.0686331554804003 }, { "posteriors": "curve_9", "x": 0.6263736263736264, "y": 1.07613426136948 }, { "posteriors": "curve_9", "x": 0.6318681318681318, "y": 1.0836218186018631 }, { "posteriors": "curve_9", "x": 0.6373626373626373, "y": 1.0910959691489615 }, { "posteriors": "curve_9", "x": 0.6428571428571429, "y": 1.0985568522844686 }, { "posteriors": "curve_9", "x": 0.6483516483516484, "y": 1.1060046046582226 }, { "posteriors": "curve_9", "x": 0.6538461538461539, "y": 1.113439360367438 }, { "posteriors": "curve_9", "x": 0.6593406593406593, "y": 1.1208612510254214 }, { "posteriors": "curve_9", "x": 0.6648351648351648, "y": 1.1282704058278819 }, { "posteriors": "curve_9", "x": 0.6703296703296703, "y": 1.1356669516169369 }, { "posteriors": "curve_9", "x": 0.6758241758241759, "y": 1.1430510129429143 }, { "posteriors": "curve_9", "x": 0.6813186813186813, "y": 1.1504227121240422 }, { "posteriors": "curve_9", "x": 0.6868131868131868, "y": 1.1577821693041144 }, { "posteriors": "curve_9", "x": 0.6923076923076923, "y": 1.1651295025082202 }, { "posteriors": "curve_9", "x": 0.6978021978021978, "y": 1.1724648276966119 }, { "posteriors": "curve_9", "x": 0.7032967032967034, "y": 1.1797882588167918 }, { "posteriors": "curve_9", "x": 0.7087912087912088, "y": 1.1870999078538875 }, { "posteriors": "curve_9", "x": 0.7142857142857143, "y": 1.1943998848793866 }, { "posteriors": "curve_9", "x": 0.7197802197802198, "y": 1.2016882980982968 }, { "posteriors": "curve_9", "x": 0.7252747252747253, "y": 1.2089652538947908 }, { "posteriors": "curve_9", "x": 0.7307692307692307, "y": 1.216230856876399 }, { "posteriors": "curve_9", "x": 0.7362637362637363, "y": 1.2234852099168068 }, { "posteriors": "curve_9", "x": 0.7417582417582418, "y": 1.2307284141973058 }, { "posteriors": "curve_9", "x": 0.7472527472527473, "y": 1.2379605692469593 }, { "posteriors": "curve_9", "x": 0.7527472527472527, "y": 1.2451817729815233 }, { "posteriors": "curve_9", "x": 0.7582417582417582, "y": 1.252392121741174 }, { "posteriors": "curve_9", "x": 0.7637362637362637, "y": 1.2595917103270866 }, { "posteriors": "curve_9", "x": 0.7692307692307693, "y": 1.266780632036908 }, { "posteriors": "curve_9", "x": 0.7747252747252747, "y": 1.273958978699164 }, { "posteriors": "curve_9", "x": 0.7802197802197802, "y": 1.2811268407066414 }, { "posteriors": "curve_9", "x": 0.7857142857142857, "y": 1.2882843070487826 }, { "posteriors": "curve_9", "x": 0.7912087912087912, "y": 1.2954314653431256 }, { "posteriors": "curve_9", "x": 0.7967032967032966, "y": 1.3025684018658295 }, { "posteriors": "curve_9", "x": 0.8021978021978022, "y": 1.3096952015813124 }, { "posteriors": "curve_9", "x": 0.8076923076923077, "y": 1.3168119481710374 }, { "posteriors": "curve_9", "x": 0.8131868131868132, "y": 1.323918724061476 }, { "posteriors": "curve_9", "x": 0.8186813186813187, "y": 1.331015610451276 }, { "posteriors": "curve_9", "x": 0.8241758241758241, "y": 1.3381026873376634 }, { "posteriors": "curve_9", "x": 0.8296703296703297, "y": 1.3451800335421047 }, { "posteriors": "curve_9", "x": 0.8351648351648352, "y": 1.3522477267352548 }, { "posteriors": "curve_9", "x": 0.8406593406593407, "y": 1.359305843461216 }, { "posteriors": "curve_9", "x": 0.8461538461538461, "y": 1.3663544591611272 }, { "posteriors": "curve_9", "x": 0.8516483516483516, "y": 1.373393648196114 }, { "posteriors": "curve_9", "x": 0.8571428571428571, "y": 1.3804234838696123 }, { "posteriors": "curve_9", "x": 0.8626373626373627, "y": 1.387444038449093 }, { "posteriors": "curve_9", "x": 0.8681318681318682, "y": 1.3944553831872026 }, { "posteriors": "curve_9", "x": 0.8736263736263736, "y": 1.4014575883423452 }, { "posteriors": "curve_9", "x": 0.8791208791208791, "y": 1.4084507231987158 }, { "posteriors": "curve_9", "x": 0.8846153846153846, "y": 1.4154348560858103 }, { "posteriors": "curve_9", "x": 0.8901098901098901, "y": 1.4224100543974263 }, { "posteriors": "curve_9", "x": 0.8956043956043956, "y": 1.4293763846101684 }, { "posteriors": "curve_9", "x": 0.9010989010989011, "y": 1.4363339123014778 }, { "posteriors": "curve_9", "x": 0.9065934065934066, "y": 1.4432827021672014 }, { "posteriors": "curve_9", "x": 0.9120879120879121, "y": 1.4502228180387102 }, { "posteriors": "curve_9", "x": 0.9175824175824175, "y": 1.4571543228995854 }, { "posteriors": "curve_9", "x": 0.9230769230769231, "y": 1.4640772789018859 }, { "posteriors": "curve_9", "x": 0.9285714285714286, "y": 1.4709917473820069 }, { "posteriors": "curve_9", "x": 0.9340659340659341, "y": 1.4778977888761446 }, { "posteriors": "curve_9", "x": 0.9395604395604396, "y": 1.4847954631353797 }, { "posteriors": "curve_9", "x": 0.945054945054945, "y": 1.4916848291403872 }, { "posteriors": "curve_9", "x": 0.9505494505494505, "y": 1.4985659451157902 }, { "posteriors": "curve_9", "x": 0.9560439560439561, "y": 1.5054388685441624 }, { "posteriors": "curve_9", "x": 0.9615384615384616, "y": 1.5123036561796936 }, { "posteriors": "curve_9", "x": 0.967032967032967, "y": 1.5191603640615263 }, { "posteriors": "curve_9", "x": 0.9725274725274725, "y": 1.5260090475267736 }, { "posteriors": "curve_9", "x": 0.978021978021978, "y": 1.5328497612232288 }, { "posteriors": "curve_9", "x": 0.9835164835164835, "y": 1.5396825591217744 }, { "posteriors": "curve_9", "x": 0.989010989010989, "y": 1.5465074945284991 }, { "posteriors": "curve_9", "x": 0.9945054945054945, "y": 1.5533246200965327 }, { "posteriors": "curve_10", "x": 0, "y": 0 }, { "posteriors": "curve_10", "x": 0.005494505494505495, "y": 0.026099369087976113 }, { "posteriors": "curve_10", "x": 0.01098901098901099, "y": 0.0446814213956405 }, { "posteriors": "curve_10", "x": 0.016483516483516484, "y": 0.06119472008306215 }, { "posteriors": "curve_10", "x": 0.02197802197802198, "y": 0.07649339764517711 }, { "posteriors": "curve_10", "x": 0.027472527472527472, "y": 0.09094800704401466 }, { "posteriors": "curve_10", "x": 0.03296703296703297, "y": 0.1047637230617667 }, { "posteriors": "curve_10", "x": 0.038461538461538464, "y": 0.1180698144330376 }, { "posteriors": "curve_10", "x": 0.04395604395604396, "y": 0.1309546496180644 }, { "posteriors": "curve_10", "x": 0.04945054945054945, "y": 0.1434821567303534 }, { "posteriors": "curve_10", "x": 0.054945054945054944, "y": 0.1557005540681604 }, { "posteriors": "curve_10", "x": 0.06043956043956044, "y": 0.16764739687650504 }, { "posteriors": "curve_10", "x": 0.06593406593406594, "y": 0.1793526901481881 }, { "posteriors": "curve_10", "x": 0.07142857142857142, "y": 0.1908409086310517 }, { "posteriors": "curve_10", "x": 0.07692307692307693, "y": 0.20213236247224253 }, { "posteriors": "curve_10", "x": 0.08241758241758242, "y": 0.21324415216361936 }, { "posteriors": "curve_10", "x": 0.08791208791208792, "y": 0.2241908554792933 }, { "posteriors": "curve_10", "x": 0.09340659340659341, "y": 0.23498503368266907 }, { "posteriors": "curve_10", "x": 0.0989010989010989, "y": 0.24563761238879045 }, { "posteriors": "curve_10", "x": 0.1043956043956044, "y": 0.2561581733575172 }, { "posteriors": "curve_10", "x": 0.10989010989010989, "y": 0.2665551816369083 }, { "posteriors": "curve_10", "x": 0.11538461538461539, "y": 0.2768361648947857 }, { "posteriors": "curve_10", "x": 0.12087912087912088, "y": 0.2870078567980502 }, { "posteriors": "curve_10", "x": 0.12637362637362637, "y": 0.29707631295236075 }, { "posteriors": "curve_10", "x": 0.13186813186813187, "y": 0.3070470056168841 }, { "posteriors": "curve_10", "x": 0.13736263736263737, "y": 0.3169249018011248 }, { "posteriors": "curve_10", "x": 0.14285714285714285, "y": 0.3267145282067115 }, { "posteriors": "curve_10", "x": 0.14835164835164835, "y": 0.33642002565008766 }, { "posteriors": "curve_10", "x": 0.15384615384615385, "y": 0.3460451949958984 }, { "posteriors": "curve_10", "x": 0.15934065934065933, "y": 0.355593536180758 }, { "posteriors": "curve_10", "x": 0.16483516483516483, "y": 0.365068281568856 }, { "posteriors": "curve_10", "x": 0.17032967032967034, "y": 0.37447242462390434 }, { "posteriors": "curve_10", "x": 0.17582417582417584, "y": 0.38380874468472553 }, { "posteriors": "curve_10", "x": 0.1813186813186813, "y": 0.3930798284789995 }, { "posteriors": "curve_10", "x": 0.18681318681318682, "y": 0.40228808889028583 }, { "posteriors": "curve_10", "x": 0.19230769230769232, "y": 0.41143578139934683 }, { "posteriors": "curve_10", "x": 0.1978021978021978, "y": 0.4205250185460956 }, { "posteriors": "curve_10", "x": 0.2032967032967033, "y": 0.42955778269874134 }, { "posteriors": "curve_10", "x": 0.2087912087912088, "y": 0.4385359373686034 }, { "posteriors": "curve_10", "x": 0.21428571428571427, "y": 0.4474612372700868 }, { "posteriors": "curve_10", "x": 0.21978021978021978, "y": 0.45633533729354087 }, { "posteriors": "curve_10", "x": 0.22527472527472528, "y": 0.4651598005326774 }, { "posteriors": "curve_10", "x": 0.23076923076923078, "y": 0.47393610548676024 }, { "posteriors": "curve_10", "x": 0.23626373626373626, "y": 0.4826656525399998 }, { "posteriors": "curve_10", "x": 0.24175824175824176, "y": 0.4913497698057865 }, { "posteriors": "curve_10", "x": 0.24725274725274726, "y": 0.49998971841102546 }, { "posteriors": "curve_10", "x": 0.25274725274725274, "y": 0.5085866972854447 }, { "posteriors": "curve_10", "x": 0.25824175824175827, "y": 0.517141847511987 }, { "posteriors": "curve_10", "x": 0.26373626373626374, "y": 0.5256562562869775 }, { "posteriors": "curve_10", "x": 0.2692307692307692, "y": 0.5341309605324623 }, { "posteriors": "curve_10", "x": 0.27472527472527475, "y": 0.5425669501977274 }, { "posteriors": "curve_10", "x": 0.2802197802197802, "y": 0.5509651712824203 }, { "posteriors": "curve_10", "x": 0.2857142857142857, "y": 0.5593265286097366 }, { "posteriors": "curve_10", "x": 0.29120879120879123, "y": 0.5676518883747401 }, { "posteriors": "curve_10", "x": 0.2967032967032967, "y": 0.5759420804899384 }, { "posteriors": "curve_10", "x": 0.3021978021978022, "y": 0.5841979007477016 }, { "posteriors": "curve_10", "x": 0.3076923076923077, "y": 0.5924201128168848 }, { "posteriors": "curve_10", "x": 0.3131868131868132, "y": 0.6006094500890994 }, { "posteriors": "curve_10", "x": 0.31868131868131866, "y": 0.6087666173883922 }, { "posteriors": "curve_10", "x": 0.3241758241758242, "y": 0.6168922925566104 }, { "posteriors": "curve_10", "x": 0.32967032967032966, "y": 0.6249871279254473 }, { "posteriors": "curve_10", "x": 0.33516483516483514, "y": 0.633051751685018 }, { "posteriors": "curve_10", "x": 0.34065934065934067, "y": 0.6410867691578126 }, { "posteriors": "curve_10", "x": 0.34615384615384615, "y": 0.649092763985987 }, { "posteriors": "curve_10", "x": 0.3516483516483517, "y": 0.6570702992391703 }, { "posteriors": "curve_10", "x": 0.35714285714285715, "y": 0.6650199184492614 }, { "posteriors": "curve_10", "x": 0.3626373626373626, "y": 0.6729421465780813 }, { "posteriors": "curve_10", "x": 0.36813186813186816, "y": 0.6808374909231808 }, { "posteriors": "curve_10", "x": 0.37362637362637363, "y": 0.6887064419666248 }, { "posteriors": "curve_10", "x": 0.3791208791208791, "y": 0.6965494741711253 }, { "posteriors": "curve_10", "x": 0.38461538461538464, "y": 0.7043670467275038 }, { "posteriors": "curve_10", "x": 0.3901098901098901, "y": 0.7121596042571108 }, { "posteriors": "curve_10", "x": 0.3956043956043956, "y": 0.7199275774725129 }, { "posteriors": "curve_10", "x": 0.4010989010989011, "y": 0.7276713837994706 }, { "posteriors": "curve_10", "x": 0.4065934065934066, "y": 0.7353914279629731 }, { "posteriors": "curve_10", "x": 0.41208791208791207, "y": 0.7430881025398655 }, { "posteriors": "curve_10", "x": 0.4175824175824176, "y": 0.750761788480391 }, { "posteriors": "curve_10", "x": 0.4230769230769231, "y": 0.7584128556007826 }, { "posteriors": "curve_10", "x": 0.42857142857142855, "y": 0.7660416630488673 }, { "posteriors": "curve_10", "x": 0.4340659340659341, "y": 0.7736485597444858 }, { "posteriors": "curve_10", "x": 0.43956043956043955, "y": 0.7812338847963918 }, { "posteriors": "curve_10", "x": 0.44505494505494503, "y": 0.7887979678971673 }, { "posteriors": "curve_10", "x": 0.45054945054945056, "y": 0.7963411296975663 }, { "posteriors": "curve_10", "x": 0.45604395604395603, "y": 0.8038636821615982 }, { "posteriors": "curve_10", "x": 0.46153846153846156, "y": 0.8113659289035624 }, { "posteriors": "curve_10", "x": 0.46703296703296704, "y": 0.8188481655081521 }, { "posteriors": "curve_10", "x": 0.4725274725274725, "y": 0.8263106798346707 }, { "posteriors": "curve_10", "x": 0.47802197802197804, "y": 0.8337537523063223 }, { "posteriors": "curve_10", "x": 0.4835164835164835, "y": 0.8411776561854717 }, { "posteriors": "curve_10", "x": 0.489010989010989, "y": 0.8485826578357069 }, { "posteriors": "curve_10", "x": 0.4945054945054945, "y": 0.8559690169714768 }, { "posteriors": "curve_10", "x": 0.5, "y": 0.8633369868960252 }, { "posteriors": "curve_10", "x": 0.5054945054945055, "y": 0.8706868147282935 }, { "posteriors": "curve_10", "x": 0.510989010989011, "y": 0.8780187416194137 }, { "posteriors": "curve_10", "x": 0.5164835164835165, "y": 0.8853330029593817 }, { "posteriors": "curve_10", "x": 0.521978021978022, "y": 0.8926298285744496 }, { "posteriors": "curve_10", "x": 0.5274725274725275, "y": 0.8999094429157543 }, { "posteriors": "curve_10", "x": 0.532967032967033, "y": 0.907172065239651 }, { "posteriors": "curve_10", "x": 0.5384615384615384, "y": 0.9144179097802032 }, { "posteriors": "curve_10", "x": 0.5439560439560439, "y": 0.9216471859142464 }, { "posteriors": "curve_10", "x": 0.5494505494505495, "y": 0.9288600983194133 }, { "posteriors": "curve_10", "x": 0.554945054945055, "y": 0.9360568471254924 }, { "posteriors": "curve_10", "x": 0.5604395604395604, "y": 0.9432376280594631 }, { "posteriors": "curve_10", "x": 0.5659340659340659, "y": 0.9504026325845275 }, { "posteriors": "curve_10", "x": 0.5714285714285714, "y": 0.9575520480334491 }, { "posteriors": "curve_10", "x": 0.5769230769230769, "y": 0.964686057736478 }, { "posteriors": "curve_10", "x": 0.5824175824175825, "y": 0.9718048411441377 }, { "posteriors": "curve_10", "x": 0.5879120879120879, "y": 0.9789085739451198 }, { "posteriors": "curve_10", "x": 0.5934065934065934, "y": 0.9859974281795325 }, { "posteriors": "curve_10", "x": 0.5989010989010989, "y": 0.9930715723477203 }, { "posteriors": "curve_10", "x": 0.6043956043956044, "y": 1.0001311715148733 }, { "posteriors": "curve_10", "x": 0.6098901098901099, "y": 1.007176387411621 }, { "posteriors": "curve_10", "x": 0.6153846153846154, "y": 1.0142073785308023 }, { "posteriors": "curve_10", "x": 0.6208791208791209, "y": 1.0212243002205892 }, { "posteriors": "curve_10", "x": 0.6263736263736264, "y": 1.0282273047741315 }, { "posteriors": "curve_10", "x": 0.6318681318681318, "y": 1.0352165415158843 }, { "posteriors": "curve_10", "x": 0.6373626373626373, "y": 1.0421921568847654 }, { "posteriors": "curve_10", "x": 0.6428571428571429, "y": 1.0491542945142889 }, { "posteriors": "curve_10", "x": 0.6483516483516484, "y": 1.0561030953098063 }, { "posteriors": "curve_10", "x": 0.6538461538461539, "y": 1.0630386975229866 }, { "posteriors": "curve_10", "x": 0.6593406593406593, "y": 1.0699612368236546 }, { "posteriors": "curve_10", "x": 0.6648351648351648, "y": 1.076870846369101 }, { "posteriors": "curve_10", "x": 0.6703296703296703, "y": 1.0837676568709762 }, { "posteriors": "curve_10", "x": 0.6758241758241759, "y": 1.0906517966598699 }, { "posteriors": "curve_10", "x": 0.6813186813186813, "y": 1.0975233917476734 }, { "posteriors": "curve_10", "x": 0.6868131868131868, "y": 1.1043825658878217 }, { "posteriors": "curve_10", "x": 0.6923076923076923, "y": 1.1112294406334982 }, { "posteriors": "curve_10", "x": 0.6978021978021978, "y": 1.118064135393892 }, { "posteriors": "curve_10", "x": 0.7032967032967034, "y": 1.1248867674885856 }, { "posteriors": "curve_10", "x": 0.7087912087912088, "y": 1.1316974522001464 }, { "posteriors": "curve_10", "x": 0.7142857142857143, "y": 1.1384963028250012 }, { "posteriors": "curve_10", "x": 0.7197802197802198, "y": 1.1452834307226565 }, { "posteriors": "curve_10", "x": 0.7252747252747253, "y": 1.1520589453633325 }, { "posteriors": "curve_10", "x": 0.7307692307692307, "y": 1.1588229543740767 }, { "posteriors": "curve_10", "x": 0.7362637362637363, "y": 1.1655755635834106 }, { "posteriors": "curve_10", "x": 0.7417582417582418, "y": 1.1723168770645715 }, { "posteriors": "curve_10", "x": 0.7472527472527473, "y": 1.1790469971774036 }, { "posteriors": "curve_10", "x": 0.7527472527472527, "y": 1.1857660246089472 }, { "posteriors": "curve_10", "x": 0.7582417582417582, "y": 1.192474058412777 }, { "posteriors": "curve_10", "x": 0.7637362637362637, "y": 1.1991711960471392 }, { "posteriors": "curve_10", "x": 0.7692307692307693, "y": 1.205857533411928 }, { "posteriors": "curve_10", "x": 0.7747252747252747, "y": 1.2125331648845494 }, { "posteriors": "curve_10", "x": 0.7802197802197802, "y": 1.2191981833547094 }, { "posteriors": "curve_10", "x": 0.7857142857142857, "y": 1.2258526802581706 }, { "posteriors": "curve_10", "x": 0.7912087912087912, "y": 1.2324967456095086 }, { "posteriors": "curve_10", "x": 0.7967032967032966, "y": 1.2391304680339124 }, { "posteriors": "curve_10", "x": 0.8021978021978022, "y": 1.245753934798056 }, { "posteriors": "curve_10", "x": 0.8076923076923077, "y": 1.2523672318400778 }, { "posteriors": "curve_10", "x": 0.8131868131868132, "y": 1.2589704437987017 }, { "posteriors": "curve_10", "x": 0.8186813186813187, "y": 1.2655636540415232 }, { "posteriors": "curve_10", "x": 0.8241758241758241, "y": 1.2721469446924982 }, { "posteriors": "curve_10", "x": 0.8296703296703297, "y": 1.2787203966586562 }, { "posteriors": "curve_10", "x": 0.8351648351648352, "y": 1.2852840896560667 }, { "posteriors": "curve_10", "x": 0.8406593406593407, "y": 1.2918381022350849 }, { "posteriors": "curve_10", "x": 0.8461538461538461, "y": 1.298382511804901 }, { "posteriors": "curve_10", "x": 0.8516483516483516, "y": 1.3049173946574164 }, { "posteriors": "curve_10", "x": 0.8571428571428571, "y": 1.3114428259904691 }, { "posteriors": "curve_10", "x": 0.8626373626373627, "y": 1.3179588799304318 }, { "posteriors": "curve_10", "x": 0.8681318681318682, "y": 1.3244656295542003 }, { "posteriors": "curve_10", "x": 0.8736263736263736, "y": 1.3309631469105976 }, { "posteriors": "curve_10", "x": 0.8791208791208791, "y": 1.337451503041206 }, { "posteriors": "curve_10", "x": 0.8846153846153846, "y": 1.343930768000653 }, { "posteriors": "curve_10", "x": 0.8901098901098901, "y": 1.3504010108763624 }, { "posteriors": "curve_10", "x": 0.8956043956043956, "y": 1.356862299807794 }, { "posteriors": "curve_10", "x": 0.9010989010989011, "y": 1.36331470200518 }, { "posteriors": "curve_10", "x": 0.9065934065934066, "y": 1.3697582837677844 }, { "posteriors": "curve_10", "x": 0.9120879120879121, "y": 1.3761931105016931 }, { "posteriors": "curve_10", "x": 0.9175824175824175, "y": 1.3826192467371499 }, { "posteriors": "curve_10", "x": 0.9230769230769231, "y": 1.3890367561454573 }, { "posteriors": "curve_10", "x": 0.9285714285714286, "y": 1.395445701555449 }, { "posteriors": "curve_10", "x": 0.9340659340659341, "y": 1.401846144969556 }, { "posteriors": "curve_10", "x": 0.9395604395604396, "y": 1.4082381475794685 }, { "posteriors": "curve_10", "x": 0.945054945054945, "y": 1.4146217697814139 }, { "posteriors": "curve_10", "x": 0.9505494505494505, "y": 1.4209970711910593 }, { "posteriors": "curve_10", "x": 0.9560439560439561, "y": 1.4273641106580512 }, { "posteriors": "curve_10", "x": 0.9615384615384616, "y": 1.4337229462801995 }, { "posteriors": "curve_10", "x": 0.967032967032967, "y": 1.440073635417323 }, { "posteriors": "curve_10", "x": 0.9725274725274725, "y": 1.4464162347047615 }, { "posteriors": "curve_10", "x": 0.978021978021978, "y": 1.4527508000665634 }, { "posteriors": "curve_10", "x": 0.9835164835164835, "y": 1.4590773867283642 }, { "posteriors": "curve_10", "x": 0.989010989010989, "y": 1.4653960492299585 }, { "posteriors": "curve_10", "x": 0.9945054945054945, "y": 1.4717068414375778 }, { "posteriors": "curve_11", "x": 0, "y": 0 }, { "posteriors": "curve_11", "x": 0.005494505494505495, "y": 0.02519121318636267 }, { "posteriors": "curve_11", "x": 0.01098901098901099, "y": 0.04383080919012593 }, { "posteriors": "curve_11", "x": 0.016483516483516484, "y": 0.06060113468721025 }, { "posteriors": "curve_11", "x": 0.02197802197802198, "y": 0.07626229908217529 }, { "posteriors": "curve_11", "x": 0.027472527472527472, "y": 0.09114721198283128 }, { "posteriors": "curve_11", "x": 0.03296703296703297, "y": 0.1054413994089881 }, { "posteriors": "curve_11", "x": 0.038461538461538464, "y": 0.11926233292281806 }, { "posteriors": "curve_11", "x": 0.04395604395604396, "y": 0.13269064315174336 }, { "posteriors": "curve_11", "x": 0.04945054945054945, "y": 0.14578486149946576 }, { "posteriors": "curve_11", "x": 0.054945054945054944, "y": 0.15858926789576658 }, { "posteriors": "curve_11", "x": 0.06043956043956044, "y": 0.17113844144413862 }, { "posteriors": "curve_11", "x": 0.06593406593406594, "y": 0.1834600749096562 }, { "posteriors": "curve_11", "x": 0.07142857142857142, "y": 0.19557680559479587 }, { "posteriors": "curve_11", "x": 0.07692307692307693, "y": 0.20750745584333982 }, { "posteriors": "curve_11", "x": 0.08241758241758242, "y": 0.21926790221939335 }, { "posteriors": "curve_11", "x": 0.08791208791208792, "y": 0.23087170190150377 }, { "posteriors": "curve_11", "x": 0.09340659340659341, "y": 0.24233055506227874 }, { "posteriors": "curve_11", "x": 0.0989010989010989, "y": 0.25365465330789194 }, { "posteriors": "curve_11", "x": 0.1043956043956044, "y": 0.2648529470272566 }, { "posteriors": "curve_11", "x": 0.10989010989010989, "y": 0.27593335379751 }, { "posteriors": "curve_11", "x": 0.11538461538461539, "y": 0.286902923138263 }, { "posteriors": "curve_11", "x": 0.12087912087912088, "y": 0.29776796839996333 }, { "posteriors": "curve_11", "x": 0.12637362637362637, "y": 0.3085341735376687 }, { "posteriors": "curve_11", "x": 0.13186813186813187, "y": 0.3192066804358783 }, { "posteriors": "curve_11", "x": 0.13736263736263737, "y": 0.32979016098917535 }, { "posteriors": "curve_11", "x": 0.14285714285714285, "y": 0.3402888771026114 }, { "posteriors": "curve_11", "x": 0.14835164835164835, "y": 0.3507067310227091 }, { "posteriors": "curve_11", "x": 0.15384615384615385, "y": 0.3610473078573934 }, { "posteriors": "curve_11", "x": 0.15934065934065933, "y": 0.37131391173245026 }, { "posteriors": "curve_11", "x": 0.16483516483516483, "y": 0.38150959672320156 }, { "posteriors": "curve_11", "x": 0.17032967032967034, "y": 0.3916371934651897 }, { "posteriors": "curve_11", "x": 0.17582417582417584, "y": 0.4016993321672397 }, { "posteriors": "curve_11", "x": 0.1813186813186813, "y": 0.4116984626103659 }, { "posteriors": "curve_11", "x": 0.18681318681318682, "y": 0.4216368716065666 }, { "posteriors": "curve_11", "x": 0.19230769230769232, "y": 0.4315166983052579 }, { "posteriors": "curve_11", "x": 0.1978021978021978, "y": 0.4413399476665323 }, { "posteriors": "curve_11", "x": 0.2032967032967033, "y": 0.4511085023655499 }, { "posteriors": "curve_11", "x": 0.2087912087912088, "y": 0.4608241333481559 }, { "posteriors": "curve_11", "x": 0.21428571428571427, "y": 0.4704885092219681 }, { "posteriors": "curve_11", "x": 0.21978021978021978, "y": 0.4801032046379369 }, { "posteriors": "curve_11", "x": 0.22527472527472528, "y": 0.4896697077933915 }, { "posteriors": "curve_11", "x": 0.23076923076923078, "y": 0.49918942716781034 }, { "posteriors": "curve_11", "x": 0.23626373626373626, "y": 0.508663697586153 }, { "posteriors": "curve_11", "x": 0.24175824175824176, "y": 0.5180937856909431 }, { "posteriors": "curve_11", "x": 0.24725274725274726, "y": 0.5274808948928643 }, { "posteriors": "curve_11", "x": 0.25274725274725274, "y": 0.5368261698600381 }, { "posteriors": "curve_11", "x": 0.25824175824175827, "y": 0.5461307005980522 }, { "posteriors": "curve_11", "x": 0.26373626373626374, "y": 0.5553955261659489 }, { "posteriors": "curve_11", "x": 0.2692307692307692, "y": 0.5646216380675553 }, { "posteriors": "curve_11", "x": 0.27472527472527475, "y": 0.5738099833525562 }, { "posteriors": "curve_11", "x": 0.2802197802197802, "y": 0.582961467457455 }, { "posteriors": "curve_11", "x": 0.2857142857142857, "y": 0.5920769568129066 }, { "posteriors": "curve_11", "x": 0.29120879120879123, "y": 0.6011572812407517 }, { "posteriors": "curve_11", "x": 0.2967032967032967, "y": 0.6102032361613582 }, { "posteriors": "curve_11", "x": 0.3021978021978022, "y": 0.619215584629513 }, { "posteriors": "curve_11", "x": 0.3076923076923077, "y": 0.6281950592150508 }, { "posteriors": "curve_11", "x": 0.3131868131868132, "y": 0.6371423637426187 }, { "posteriors": "curve_11", "x": 0.31868131868131866, "y": 0.6460581749034142 }, { "posteriors": "curve_11", "x": 0.3241758241758242, "y": 0.6549431437503556 }, { "posteriors": "curve_11", "x": 0.32967032967032966, "y": 0.6637978970869483 }, { "posteriors": "curve_11", "x": 0.33516483516483514, "y": 0.6726230387590508 }, { "posteriors": "curve_11", "x": 0.34065934065934067, "y": 0.6814191508578039 }, { "posteriors": "curve_11", "x": 0.34615384615384615, "y": 0.6901867948411674 }, { "posteriors": "curve_11", "x": 0.3516483516483517, "y": 0.6989265125807751 }, { "posteriors": "curve_11", "x": 0.35714285714285715, "y": 0.7076388273401674 }, { "posteriors": "curve_11", "x": 0.3626373626373626, "y": 0.7163242446898863 }, { "posteriors": "curve_11", "x": 0.36813186813186816, "y": 0.7249832533644014 }, { "posteriors": "curve_11", "x": 0.37362637362637363, "y": 0.7336163260653765 }, { "posteriors": "curve_11", "x": 0.3791208791208791, "y": 0.7422239202153754 }, { "posteriors": "curve_11", "x": 0.38461538461538464, "y": 0.7508064786657394 }, { "posteriors": "curve_11", "x": 0.3901098901098901, "y": 0.7593644303620345 }, { "posteriors": "curve_11", "x": 0.3956043956043956, "y": 0.7678981909701761 }, { "posteriors": "curve_11", "x": 0.4010989010989011, "y": 0.7764081634660657 }, { "posteriors": "curve_11", "x": 0.4065934065934066, "y": 0.7848947386913369 }, { "posteriors": "curve_11", "x": 0.41208791208791207, "y": 0.7933582958775902 }, { "posteriors": "curve_11", "x": 0.4175824175824176, "y": 0.8017992031412988 }, { "posteriors": "curve_11", "x": 0.4230769230769231, "y": 0.8102178179513907 }, { "posteriors": "curve_11", "x": 0.42857142857142855, "y": 0.8186144875713491 }, { "posteriors": "curve_11", "x": 0.4340659340659341, "y": 0.8269895494775316 }, { "posteriors": "curve_11", "x": 0.43956043956043955, "y": 0.8353433317552664 }, { "posteriors": "curve_11", "x": 0.44505494505494503, "y": 0.8436761534741766 }, { "posteriors": "curve_11", "x": 0.45054945054945056, "y": 0.8519883250440557 }, { "posteriors": "curve_11", "x": 0.45604395604395603, "y": 0.8602801485525359 }, { "posteriors": "curve_11", "x": 0.46153846153846156, "y": 0.8685519180856794 }, { "posteriors": "curve_11", "x": 0.46703296703296704, "y": 0.8768039200325594 }, { "posteriors": "curve_11", "x": 0.4725274725274725, "y": 0.8850364333747978 }, { "posteriors": "curve_11", "x": 0.47802197802197804, "y": 0.8932497299619797 }, { "posteriors": "curve_11", "x": 0.4835164835164835, "y": 0.9014440747737793 }, { "posteriors": "curve_11", "x": 0.489010989010989, "y": 0.9096197261695866 }, { "posteriors": "curve_11", "x": 0.4945054945054945, "y": 0.9177769361263646 }, { "posteriors": "curve_11", "x": 0.5, "y": 0.925915950465412 }, { "posteriors": "curve_11", "x": 0.5054945054945055, "y": 0.9340370090686713 }, { "posteriors": "curve_11", "x": 0.510989010989011, "y": 0.9421403460851682 }, { "posteriors": "curve_11", "x": 0.5164835164835165, "y": 0.9502261901281344 }, { "posteriors": "curve_11", "x": 0.521978021978022, "y": 0.9582947644633296 }, { "posteriors": "curve_11", "x": 0.5274725274725275, "y": 0.9663462871890458 }, { "posteriors": "curve_11", "x": 0.532967032967033, "y": 0.9743809714082386 }, { "posteriors": "curve_11", "x": 0.5384615384615384, "y": 0.9823990253932137 }, { "posteriors": "curve_11", "x": 0.5439560439560439, "y": 0.9904006527432588 }, { "posteriors": "curve_11", "x": 0.5494505494505495, "y": 0.9983860525355941 }, { "posteriors": "curve_11", "x": 0.554945054945055, "y": 1.006355419469985 }, { "posteriors": "curve_11", "x": 0.5604395604395604, "y": 1.0143089440073487 }, { "posteriors": "curve_11", "x": 0.5659340659340659, "y": 1.0222468125026543 }, { "posteriors": "curve_11", "x": 0.5714285714285714, "y": 1.0301692073324082 }, { "posteriors": "curve_11", "x": 0.5769230769230769, "y": 1.0380763070169956 }, { "posteriors": "curve_11", "x": 0.5824175824175825, "y": 1.0459682863381299 }, { "posteriors": "curve_11", "x": 0.5879120879120879, "y": 1.0538453164516517 }, { "posteriors": "curve_11", "x": 0.5934065934065934, "y": 1.0617075649959051 }, { "posteriors": "curve_11", "x": 0.5989010989010989, "y": 1.0695551961958987 }, { "posteriors": "curve_11", "x": 0.6043956043956044, "y": 1.0773883709634582 }, { "posteriors": "curve_11", "x": 0.6098901098901099, "y": 1.0852072469935556 }, { "posteriors": "curve_11", "x": 0.6153846153846154, "y": 1.0930119788569974 }, { "posteriors": "curve_11", "x": 0.6208791208791209, "y": 1.100802718089637 }, { "posteriors": "curve_11", "x": 0.6263736263736264, "y": 1.1085796132782757 }, { "posteriors": "curve_11", "x": 0.6318681318681318, "y": 1.1163428101433985 }, { "posteriors": "curve_11", "x": 0.6373626373626373, "y": 1.1240924516188915 }, { "posteriors": "curve_11", "x": 0.6428571428571429, "y": 1.1318286779288733 }, { "posteriors": "curve_11", "x": 0.6483516483516484, "y": 1.1395516266617716 }, { "posteriors": "curve_11", "x": 0.6538461538461539, "y": 1.147261432841764 }, { "posteriors": "curve_11", "x": 0.6593406593406593, "y": 1.1549582289976978 }, { "posteriors": "curve_11", "x": 0.6648351648351648, "y": 1.1626421452295992 }, { "posteriors": "curve_11", "x": 0.6703296703296703, "y": 1.170313309272877 }, { "posteriors": "curve_11", "x": 0.6758241758241759, "y": 1.1779718465603157 }, { "posteriors": "curve_11", "x": 0.6813186813186813, "y": 1.185617880281951 }, { "posteriors": "curve_11", "x": 0.6868131868131868, "y": 1.1932515314429235 }, { "posteriors": "curve_11", "x": 0.6923076923076923, "y": 1.2008729189193834 }, { "posteriors": "curve_11", "x": 0.6978021978021978, "y": 1.2084821595125386 }, { "posteriors": "curve_11", "x": 0.7032967032967034, "y": 1.21607936800091 }, { "posteriors": "curve_11", "x": 0.7087912087912088, "y": 1.2236646571908796 }, { "posteriors": "curve_11", "x": 0.7142857142857143, "y": 1.2312381379655883 }, { "posteriors": "curve_11", "x": 0.7197802197802198, "y": 1.2387999193322576 }, { "posteriors": "curve_11", "x": 0.7252747252747253, "y": 1.2463501084679944 }, { "posteriors": "curve_11", "x": 0.7307692307692307, "y": 1.2538888107641382 }, { "posteriors": "curve_11", "x": 0.7362637362637363, "y": 1.26141612986921 }, { "posteriors": "curve_11", "x": 0.7417582417582418, "y": 1.2689321677305128 }, { "posteriors": "curve_11", "x": 0.7472527472527473, "y": 1.2764370246344434 }, { "posteriors": "curve_11", "x": 0.7527472527472527, "y": 1.283930799245555 }, { "posteriors": "curve_11", "x": 0.7582417582417582, "y": 1.291413588644425 }, { "posteriors": "curve_11", "x": 0.7637362637362637, "y": 1.2988854883643703 }, { "posteriors": "curve_11", "x": 0.7692307692307693, "y": 1.3063465924270556 }, { "posteriors": "curve_11", "x": 0.7747252747252747, "y": 1.3137969933770293 }, { "posteriors": "curve_11", "x": 0.7802197802197802, "y": 1.3212367823152378 }, { "posteriors": "curve_11", "x": 0.7857142857142857, "y": 1.3286660489315423 }, { "posteriors": "curve_11", "x": 0.7912087912087912, "y": 1.3360848815362851 }, { "posteriors": "curve_11", "x": 0.7967032967032966, "y": 1.343493367090935 }, { "posteriors": "curve_11", "x": 0.8021978021978022, "y": 1.3508915912378443 }, { "posteriors": "curve_11", "x": 0.8076923076923077, "y": 1.3582796383291498 }, { "posteriors": "curve_11", "x": 0.8131868131868132, "y": 1.3656575914548517 }, { "posteriors": "curve_11", "x": 0.8186813186813187, "y": 1.373025532470091 }, { "posteriors": "curve_11", "x": 0.8241758241758241, "y": 1.380383542021663 }, { "posteriors": "curve_11", "x": 0.8296703296703297, "y": 1.3877316995737856 }, { "posteriors": "curve_11", "x": 0.8351648351648352, "y": 1.395070083433152 }, { "posteriors": "curve_11", "x": 0.8406593406593407, "y": 1.4023987707732926 }, { "posteriors": "curve_11", "x": 0.8461538461538461, "y": 1.4097178376582664 }, { "posteriors": "curve_11", "x": 0.8516483516483516, "y": 1.4170273590657088 }, { "posteriors": "curve_11", "x": 0.8571428571428571, "y": 1.424327408909252 }, { "posteriors": "curve_11", "x": 0.8626373626373627, "y": 1.4316180600603463 }, { "posteriors": "curve_11", "x": 0.8681318681318682, "y": 1.4388993843694928 }, { "posteriors": "curve_11", "x": 0.8736263736263736, "y": 1.4461714526869172 }, { "posteriors": "curve_11", "x": 0.8791208791208791, "y": 1.453434334882693 }, { "posteriors": "curve_11", "x": 0.8846153846153846, "y": 1.4606880998663394 }, { "posteriors": "curve_11", "x": 0.8901098901098901, "y": 1.4679328156059082 }, { "posteriors": "curve_11", "x": 0.8956043956043956, "y": 1.4751685491465736 }, { "posteriors": "curve_11", "x": 0.9010989010989011, "y": 1.4823953666287464 }, { "posteriors": "curve_11", "x": 0.9065934065934066, "y": 1.4896133333057222 }, { "posteriors": "curve_11", "x": 0.9120879120879121, "y": 1.4968225135608813 }, { "posteriors": "curve_11", "x": 0.9175824175824175, "y": 1.5040229709244533 }, { "posteriors": "curve_11", "x": 0.9230769230769231, "y": 1.5112147680898609 }, { "posteriors": "curve_11", "x": 0.9285714285714286, "y": 1.5183979669296543 }, { "posteriors": "curve_11", "x": 0.9340659340659341, "y": 1.525572628511051 }, { "posteriors": "curve_11", "x": 0.9395604395604396, "y": 1.5327388131110893 }, { "posteriors": "curve_11", "x": 0.945054945054945, "y": 1.5398965802314135 }, { "posteriors": "curve_11", "x": 0.9505494505494505, "y": 1.5470459886126946 }, { "posteriors": "curve_11", "x": 0.9560439560439561, "y": 1.5541870962487034 }, { "posteriors": "curve_11", "x": 0.9615384615384616, "y": 1.5613199604000425 }, { "posteriors": "curve_11", "x": 0.967032967032967, "y": 1.56844463760755 }, { "posteriors": "curve_11", "x": 0.9725274725274725, "y": 1.575561183705382 }, { "posteriors": "curve_11", "x": 0.978021978021978, "y": 1.5826696538337877 }, { "posteriors": "curve_11", "x": 0.9835164835164835, "y": 1.5897701024515785 }, { "posteriors": "curve_11", "x": 0.989010989010989, "y": 1.596862583348309 }, { "posteriors": "curve_11", "x": 0.9945054945054945, "y": 1.603947149656172 }, { "posteriors": "curve_12", "x": 0, "y": 0 }, { "posteriors": "curve_12", "x": 0.005494505494505495, "y": 0.026221075182390165 }, { "posteriors": "curve_12", "x": 0.01098901098901099, "y": 0.04498789857554309 }, { "posteriors": "curve_12", "x": 0.016483516483516484, "y": 0.061693209535678924 }, { "posteriors": "curve_12", "x": 0.02197802197802198, "y": 0.07718642367505174 }, { "posteriors": "curve_12", "x": 0.027472527472527472, "y": 0.09183652017674684 }, { "posteriors": "curve_12", "x": 0.03296703296703297, "y": 0.10584798045408969 }, { "posteriors": "curve_12", "x": 0.038461538461538464, "y": 0.11934972276045488 }, { "posteriors": "curve_12", "x": 0.04395604395604396, "y": 0.13242992423263386 }, { "posteriors": "curve_12", "x": 0.04945054945054945, "y": 0.14515240417636624 }, { "posteriors": "curve_12", "x": 0.054945054945054944, "y": 0.1575653182222292 }, { "posteriors": "curve_12", "x": 0.06043956043956044, "y": 0.16970618617660055 }, { "posteriors": "curve_12", "x": 0.06593406593406594, "y": 0.18160499430216684 }, { "posteriors": "curve_12", "x": 0.07142857142857142, "y": 0.1932862091593828 }, { "posteriors": "curve_12", "x": 0.07692307692307693, "y": 0.20477013948583234 }, { "posteriors": "curve_12", "x": 0.08241758241758242, "y": 0.2160738887662651 }, { "posteriors": "curve_12", "x": 0.08791208791208792, "y": 0.22721204063156625 }, { "posteriors": "curve_12", "x": 0.09340659340659341, "y": 0.23819716404807506 }, { "posteriors": "curve_12", "x": 0.0989010989010989, "y": 0.24904019349550388 }, { "posteriors": "curve_12", "x": 0.1043956043956044, "y": 0.2597507202940203 }, { "posteriors": "curve_12", "x": 0.10989010989010989, "y": 0.270337219427425 }, { "posteriors": "curve_12", "x": 0.11538461538461539, "y": 0.280807228653648 }, { "posteriors": "curve_12", "x": 0.12087912087912088, "y": 0.2911674917313287 }, { "posteriors": "curve_12", "x": 0.12637362637362637, "y": 0.3014240742544178 }, { "posteriors": "curve_12", "x": 0.13186813186813187, "y": 0.31158245829541265 }, { "posteriors": "curve_12", "x": 0.13736263736263737, "y": 0.3216476204544881 }, { "posteriors": "curve_12", "x": 0.14285714285714285, "y": 0.3316240967705766 }, { "posteriors": "curve_12", "x": 0.14835164835164835, "y": 0.34151603712551654 }, { "posteriors": "curve_12", "x": 0.15384615384615385, "y": 0.3513272511676123 }, { "posteriors": "curve_12", "x": 0.15934065934065933, "y": 0.36106124733180933 }, { "posteriors": "curve_12", "x": 0.16483516483516483, "y": 0.3707212661961418 }, { "posteriors": "curve_12", "x": 0.17032967032967034, "y": 0.38031030915764663 }, { "posteriors": "curve_12", "x": 0.17582417582417584, "y": 0.38983116321408284 }, { "posteriors": "curve_12", "x": 0.1813186813186813, "y": 0.39928642248527324 }, { "posteriors": "curve_12", "x": 0.18681318681318682, "y": 0.4086785069886669 }, { "posteriors": "curve_12", "x": 0.19230769230769232, "y": 0.4180096790897703 }, { "posteriors": "curve_12", "x": 0.1978021978021978, "y": 0.42728205797349306 }, { "posteriors": "curve_12", "x": 0.2032967032967033, "y": 0.4364976324227784 }, { "posteriors": "curve_12", "x": 0.2087912087912088, "y": 0.4456582721428455 }, { "posteriors": "curve_12", "x": 0.21428571428571427, "y": 0.4547657378304309 }, { "posteriors": "curve_12", "x": 0.21978021978021978, "y": 0.46382169015567887 }, { "posteriors": "curve_12", "x": 0.22527472527472528, "y": 0.47282769779830697 }, { "posteriors": "curve_12", "x": 0.23076923076923078, "y": 0.48178524465822864 }, { "posteriors": "curve_12", "x": 0.23626373626373626, "y": 0.49069573634304586 }, { "posteriors": "curve_12", "x": 0.24175824175824176, "y": 0.49956050602003815 }, { "posteriors": "curve_12", "x": 0.24725274725274726, "y": 0.508380819707907 }, { "posteriors": "curve_12", "x": 0.25274725274725274, "y": 0.5171578810731523 }, { "posteriors": "curve_12", "x": 0.25824175824175827, "y": 0.525892835787196 }, { "posteriors": "curve_12", "x": 0.26373626373626374, "y": 0.5345867754929589 }, { "posteriors": "curve_12", "x": 0.2692307692307692, "y": 0.5432407414232892 }, { "posteriors": "curve_12", "x": 0.27472527472527475, "y": 0.5518557277082741 }, { "posteriors": "curve_12", "x": 0.2802197802197802, "y": 0.560432684403861 }, { "posteriors": "curve_12", "x": 0.2857142857142857, "y": 0.5689725202702709 }, { "posteriors": "curve_12", "x": 0.29120879120879123, "y": 0.5774761053252794 }, { "posteriors": "curve_12", "x": 0.2967032967032967, "y": 0.5859442731945075 }, { "posteriors": "curve_12", "x": 0.3021978021978022, "y": 0.5943778232783156 }, { "posteriors": "curve_12", "x": 0.3076923076923077, "y": 0.6027775227526789 }, { "posteriors": "curve_12", "x": 0.3131868131868132, "y": 0.6111441084195002 }, { "posteriors": "curve_12", "x": 0.31868131868131866, "y": 0.6194782884201265 }, { "posteriors": "curve_12", "x": 0.3241758241758242, "y": 0.627780743824366 }, { "posteriors": "curve_12", "x": 0.32967032967032966, "y": 0.6360521301060039 }, { "posteriors": "curve_12", "x": 0.33516483516483514, "y": 0.6442930785146793 }, { "posteriors": "curve_12", "x": 0.34065934065934067, "y": 0.65250419735298 }, { "posteriors": "curve_12", "x": 0.34615384615384615, "y": 0.6606860731667241 }, { "posteriors": "curve_12", "x": 0.3516483516483517, "y": 0.6688392718556136 }, { "posteriors": "curve_12", "x": 0.35714285714285715, "y": 0.6769643397107453 }, { "posteriors": "curve_12", "x": 0.3626373626373626, "y": 0.6850618043848463 }, { "posteriors": "curve_12", "x": 0.36813186813186816, "y": 0.6931321758005483 }, { "posteriors": "curve_12", "x": 0.37362637362637363, "y": 0.7011759470015217 }, { "posteriors": "curve_12", "x": 0.3791208791208791, "y": 0.7091935949508517 }, { "posteriors": "curve_12", "x": 0.38461538461538464, "y": 0.7171855812806418 }, { "posteriors": "curve_12", "x": 0.3901098901098901, "y": 0.7251523529964792 }, { "posteriors": "curve_12", "x": 0.3956043956043956, "y": 0.7330943431400745 }, { "posteriors": "curve_12", "x": 0.4010989010989011, "y": 0.741011971413107 }, { "posteriors": "curve_12", "x": 0.4065934065934066, "y": 0.7489056447650455 }, { "posteriors": "curve_12", "x": 0.41208791208791207, "y": 0.7567757579474831 }, { "posteriors": "curve_12", "x": 0.4175824175824176, "y": 0.7646226940373135 }, { "posteriors": "curve_12", "x": 0.4230769230769231, "y": 0.7724468249308889 }, { "posteriors": "curve_12", "x": 0.42857142857142855, "y": 0.780248511811121 }, { "posteriors": "curve_12", "x": 0.4340659340659341, "y": 0.788028105589338 }, { "posteriors": "curve_12", "x": 0.43956043956043955, "y": 0.7957859473235602 }, { "posteriors": "curve_12", "x": 0.44505494505494503, "y": 0.8035223686147348 }, { "posteriors": "curve_12", "x": 0.45054945054945056, "y": 0.8112376919823461 }, { "posteriors": "curve_12", "x": 0.45604395604395603, "y": 0.8189322312207128 }, { "posteriors": "curve_12", "x": 0.46153846153846156, "y": 0.8266062917371901 }, { "posteriors": "curve_12", "x": 0.46703296703296704, "y": 0.8342601708733937 }, { "posteriors": "curve_12", "x": 0.4725274725274725, "y": 0.8418941582104915 }, { "posteriors": "curve_12", "x": 0.47802197802197804, "y": 0.8495085358595291 }, { "posteriors": "curve_12", "x": 0.4835164835164835, "y": 0.8571035787376832 }, { "posteriors": "curve_12", "x": 0.489010989010989, "y": 0.8646795548312812 }, { "posteriors": "curve_12", "x": 0.4945054945054945, "y": 0.8722367254463587 }, { "posteriors": "curve_12", "x": 0.5, "y": 0.8797753454474792 }, { "posteriors": "curve_12", "x": 0.5054945054945055, "y": 0.887295663485488 }, { "posteriors": "curve_12", "x": 0.510989010989011, "y": 0.8947979222148283 }, { "posteriors": "curve_12", "x": 0.5164835164835165, "y": 0.9022823585010028 }, { "posteriors": "curve_12", "x": 0.521978021978022, "y": 0.9097492036187309 }, { "posteriors": "curve_12", "x": 0.5274725274725275, "y": 0.9171986834413096 }, { "posteriors": "curve_12", "x": 0.532967032967033, "y": 0.9246310186216569 }, { "posteriors": "curve_12", "x": 0.5384615384615384, "y": 0.9320464247654856 }, { "posteriors": "curve_12", "x": 0.5439560439560439, "y": 0.9394451125970246 }, { "posteriors": "curve_12", "x": 0.5494505494505495, "y": 0.9468272881176827 }, { "posteriors": "curve_12", "x": 0.554945054945055, "y": 0.9541931527580205 }, { "posteriors": "curve_12", "x": 0.5604395604395604, "y": 0.9615429035233787 }, { "posteriors": "curve_12", "x": 0.5659340659340659, "y": 0.9688767331334847 }, { "posteriors": "curve_12", "x": 0.5714285714285714, "y": 0.9761948301563435 }, { "posteriors": "curve_12", "x": 0.5769230769230769, "y": 0.9834973791367002 }, { "posteriors": "curve_12", "x": 0.5824175824175825, "y": 0.9907845607193428 }, { "posteriors": "curve_12", "x": 0.5879120879120879, "y": 0.9980565517674992 }, { "posteriors": "curve_12", "x": 0.5934065934065934, "y": 1.0053135254765686 }, { "posteriors": "curve_12", "x": 0.5989010989010989, "y": 1.0125556514834109 }, { "posteriors": "curve_12", "x": 0.6043956043956044, "y": 1.0197830959714096 }, { "posteriors": "curve_12", "x": 0.6098901098901099, "y": 1.0269960217715044 }, { "posteriors": "curve_12", "x": 0.6153846153846154, "y": 1.0341945884593866 }, { "posteriors": "curve_12", "x": 0.6208791208791209, "y": 1.0413789524490356 }, { "posteriors": "curve_12", "x": 0.6263736263736264, "y": 1.048549267082761 }, { "posteriors": "curve_12", "x": 0.6318681318681318, "y": 1.0557056827179185 }, { "posteriors": "curve_12", "x": 0.6373626373626373, "y": 1.0628483468104413 }, { "posteriors": "curve_12", "x": 0.6428571428571429, "y": 1.0699774039953376 }, { "posteriors": "curve_12", "x": 0.6483516483516484, "y": 1.0770929961642841 }, { "posteriors": "curve_12", "x": 0.6538461538461539, "y": 1.0841952625404487 }, { "posteriors": "curve_12", "x": 0.6593406593406593, "y": 1.0912843397506589 }, { "posteriors": "curve_12", "x": 0.6648351648351648, "y": 1.0983603618950355 }, { "posteriors": "curve_12", "x": 0.6703296703296703, "y": 1.1054234606141986 }, { "posteriors": "curve_12", "x": 0.6758241758241759, "y": 1.1124737651541496 }, { "posteriors": "curve_12", "x": 0.6813186813186813, "y": 1.1195114024289299 }, { "posteriors": "curve_12", "x": 0.6868131868131868, "y": 1.1265364970811464 }, { "posteriors": "curve_12", "x": 0.6923076923076923, "y": 1.1335491715404575 }, { "posteriors": "curve_12", "x": 0.6978021978021978, "y": 1.1405495460800985 }, { "posteriors": "curve_12", "x": 0.7032967032967034, "y": 1.1475377388715313 }, { "posteriors": "curve_12", "x": 0.7087912087912088, "y": 1.154513866037293 }, { "posteriors": "curve_12", "x": 0.7142857142857143, "y": 1.1614780417021167 }, { "posteriors": "curve_12", "x": 0.7197802197802198, "y": 1.1684303780423944 }, { "posteriors": "curve_12", "x": 0.7252747252747253, "y": 1.175370985334045 }, { "posteriors": "curve_12", "x": 0.7307692307692307, "y": 1.1822999719988556 }, { "posteriors": "curve_12", "x": 0.7362637362637363, "y": 1.1892174446493518 }, { "posteriors": "curve_12", "x": 0.7417582417582418, "y": 1.1961235081322543 }, { "posteriors": "curve_12", "x": 0.7472527472527473, "y": 1.2030182655705814 }, { "posteriors": "curve_12", "x": 0.7527472527472527, "y": 1.2099018184044417 }, { "posteriors": "curve_12", "x": 0.7582417582417582, "y": 1.2167742664305732 }, { "posteriors": "curve_12", "x": 0.7637362637362637, "y": 1.2236357078406737 }, { "posteriors": "curve_12", "x": 0.7692307692307693, "y": 1.2304862392585674 }, { "posteriors": "curve_12", "x": 0.7747252747252747, "y": 1.2373259557762517 }, { "posteriors": "curve_12", "x": 0.7802197802197802, "y": 1.2441549509888667 }, { "posteriors": "curve_12", "x": 0.7857142857142857, "y": 1.2509733170286244 }, { "posteriors": "curve_12", "x": 0.7912087912087912, "y": 1.2577811445977383 }, { "posteriors": "curve_12", "x": 0.7967032967032966, "y": 1.2645785230003879 }, { "posteriors": "curve_12", "x": 0.8021978021978022, "y": 1.271365540173754 }, { "posteriors": "curve_12", "x": 0.8076923076923077, "y": 1.2781422827181557 }, { "posteriors": "curve_12", "x": 0.8131868131868132, "y": 1.2849088359263239 }, { "posteriors": "curve_12", "x": 0.8186813186813187, "y": 1.2916652838118414 }, { "posteriors": "curve_12", "x": 0.8241758241758241, "y": 1.298411709136776 }, { "posteriors": "curve_12", "x": 0.8296703296703297, "y": 1.305148193438536 }, { "posteriors": "curve_12", "x": 0.8351648351648352, "y": 1.311874817055979 }, { "posteriors": "curve_12", "x": 0.8406593406593407, "y": 1.3185916591547928 }, { "posteriors": "curve_12", "x": 0.8461538461538461, "y": 1.3252987977521764 }, { "posteriors": "curve_12", "x": 0.8516483516483516, "y": 1.3319963097408483 }, { "posteriors": "curve_12", "x": 0.8571428571428571, "y": 1.3386842709123976 }, { "posteriors": "curve_12", "x": 0.8626373626373627, "y": 1.3453627559800065 }, { "posteriors": "curve_12", "x": 0.8681318681318682, "y": 1.35203183860056 }, { "posteriors": "curve_12", "x": 0.8736263736263736, "y": 1.3586915913961675 }, { "posteriors": "curve_12", "x": 0.8791208791208791, "y": 1.3653420859751109 }, { "posteriors": "curve_12", "x": 0.8846153846153846, "y": 1.3719833929522436 }, { "posteriors": "curve_12", "x": 0.8901098901098901, "y": 1.378615581968852 }, { "posteriors": "curve_12", "x": 0.8956043956043956, "y": 1.3852387217120015 }, { "posteriors": "curve_12", "x": 0.9010989010989011, "y": 1.3918528799333807 }, { "posteriors": "curve_12", "x": 0.9065934065934066, "y": 1.3984581234676627 }, { "posteriors": "curve_12", "x": 0.9120879120879121, "y": 1.4050545182503957 }, { "posteriors": "curve_12", "x": 0.9175824175824175, "y": 1.411642129335438 }, { "posteriors": "curve_12", "x": 0.9230769230769231, "y": 1.4182210209119543 }, { "posteriors": "curve_12", "x": 0.9285714285714286, "y": 1.4247912563209848 }, { "posteriors": "curve_12", "x": 0.9340659340659341, "y": 1.4313528980716004 }, { "posteriors": "curve_12", "x": 0.9395604395604396, "y": 1.4379060078566566 }, { "posteriors": "curve_12", "x": 0.945054945054945, "y": 1.4444506465681604 }, { "posteriors": "curve_12", "x": 0.9505494505494505, "y": 1.4509868743122576 }, { "posteriors": "curve_12", "x": 0.9560439560439561, "y": 1.4575147504238573 }, { "posteriors": "curve_12", "x": 0.9615384615384616, "y": 1.4640343334809003 }, { "posteriors": "curve_12", "x": 0.967032967032967, "y": 1.4705456813182842 }, { "posteriors": "curve_12", "x": 0.9725274725274725, "y": 1.477048851041454 }, { "posteriors": "curve_12", "x": 0.978021978021978, "y": 1.4835438990396697 }, { "posteriors": "curve_12", "x": 0.9835164835164835, "y": 1.4900308809989589 }, { "posteriors": "curve_12", "x": 0.989010989010989, "y": 1.4965098519147642 }, { "posteriors": "curve_12", "x": 0.9945054945054945, "y": 1.502980866104294 }, { "posteriors": "curve_13", "x": 0, "y": 0 }, { "posteriors": "curve_13", "x": 0.005494505494505495, "y": 0.02517361983185613 }, { "posteriors": "curve_13", "x": 0.01098901098901099, "y": 0.04355589590986838 }, { "posteriors": "curve_13", "x": 0.016483516483516484, "y": 0.06002432329636474 }, { "posteriors": "curve_13", "x": 0.02197802197802198, "y": 0.07536127426976436 }, { "posteriors": "curve_13", "x": 0.027472527472527472, "y": 0.08990828743760883 }, { "posteriors": "curve_13", "x": 0.03296703296703297, "y": 0.10385527369601107 }, { "posteriors": "curve_13", "x": 0.038461538461538464, "y": 0.11732227484057502 }, { "posteriors": "curve_13", "x": 0.04395604395604396, "y": 0.13039157020934777 }, { "posteriors": "curve_13", "x": 0.04945054945054945, "y": 0.1431228171098054 }, { "posteriors": "curve_13", "x": 0.054945054945054944, "y": 0.15556110067696513 }, { "posteriors": "curve_13", "x": 0.06043956043956044, "y": 0.1677415966868973 }, { "posteriors": "curve_13", "x": 0.06593406593406594, "y": 0.17969245269486606 }, { "posteriors": "curve_13", "x": 0.07142857142857142, "y": 0.19143666069232146 }, { "posteriors": "curve_13", "x": 0.07692307692307693, "y": 0.20299332495672606 }, { "posteriors": "curve_13", "x": 0.08241758241758242, "y": 0.21437854977647083 }, { "posteriors": "curve_13", "x": 0.08791208791208792, "y": 0.2256060788038004 }, { "posteriors": "curve_13", "x": 0.09340659340659341, "y": 0.2366877667224474 }, { "posteriors": "curve_13", "x": 0.0989010989010989, "y": 0.24763393449173945 }, { "posteriors": "curve_13", "x": 0.1043956043956044, "y": 0.25845364177714664 }, { "posteriors": "curve_13", "x": 0.10989010989010989, "y": 0.2691548992146221 }, { "posteriors": "curve_13", "x": 0.11538461538461539, "y": 0.2797448361393004 }, { "posteriors": "curve_13", "x": 0.12087912087912088, "y": 0.2902298347972993 }, { "posteriors": "curve_13", "x": 0.12637362637362637, "y": 0.3006156389562194 }, { "posteriors": "curve_13", "x": 0.13186813186813187, "y": 0.31090744269770154 }, { "posteriors": "curve_13", "x": 0.13736263736263737, "y": 0.3211099636824725 }, { "posteriors": "curve_13", "x": 0.14285714285714285, "y": 0.33122750411507834 }, { "posteriors": "curve_13", "x": 0.14835164835164835, "y": 0.34126400186651323 }, { "posteriors": "curve_13", "x": 0.15384615384615385, "y": 0.3512230736488934 }, { "posteriors": "curve_13", "x": 0.15934065934065933, "y": 0.36110805171721005 }, { "posteriors": "curve_13", "x": 0.16483516483516483, "y": 0.3709220152580663 }, { "posteriors": "curve_13", "x": 0.17032967032967034, "y": 0.3806678173857533 }, { "posteriors": "curve_13", "x": 0.17582417582417584, "y": 0.390348108482075 }, { "posteriors": "curve_13", "x": 0.1813186813186813, "y": 0.39996535647374004 }, { "posteriors": "curve_13", "x": 0.18681318681318682, "y": 0.4095218645296433 }, { "posteriors": "curve_13", "x": 0.19230769230769232, "y": 0.4190197865724585 }, { "posteriors": "curve_13", "x": 0.1978021978021978, "y": 0.42846114092913457 }, { "posteriors": "curve_13", "x": 0.2032967032967033, "y": 0.43784782238901365 }, { "posteriors": "curve_13", "x": 0.2087912087912088, "y": 0.4471816128932849 }, { "posteriors": "curve_13", "x": 0.21428571428571427, "y": 0.4564641910430061 }, { "posteriors": "curve_13", "x": 0.21978021978021978, "y": 0.46569714058317047 }, { "posteriors": "curve_13", "x": 0.22527472527472528, "y": 0.47488195799589966 }, { "posteriors": "curve_13", "x": 0.23076923076923078, "y": 0.4840200593157265 }, { "posteriors": "curve_13", "x": 0.23626373626373626, "y": 0.49311278626326266 }, { "posteriors": "curve_13", "x": 0.24175824175824176, "y": 0.5021614117796657 }, { "posteriors": "curve_13", "x": 0.24725274725274726, "y": 0.51116714503271 }, { "posteriors": "curve_13", "x": 0.25274725274725274, "y": 0.5201311359555173 }, { "posteriors": "curve_13", "x": 0.25824175824175827, "y": 0.5290544793707702 }, { "posteriors": "curve_13", "x": 0.26373626373626374, "y": 0.5379382187462697 }, { "posteriors": "curve_13", "x": 0.2692307692307692, "y": 0.5467833496217743 }, { "posteriors": "curve_13", "x": 0.27472527472527475, "y": 0.5555908227420046 }, { "posteriors": "curve_13", "x": 0.2802197802197802, "y": 0.5643615469263729 }, { "posteriors": "curve_13", "x": 0.2857142857142857, "y": 0.5730963917022859 }, { "posteriors": "curve_13", "x": 0.29120879120879123, "y": 0.5817961897256625 }, { "posteriors": "curve_13", "x": 0.2967032967032967, "y": 0.5904617390095465 }, { "posteriors": "curve_13", "x": 0.3021978021978022, "y": 0.5990938049792985 }, { "posteriors": "curve_13", "x": 0.3076923076923077, "y": 0.6076931223707638 }, { "posteriors": "curve_13", "x": 0.3131868131868132, "y": 0.6162603969859995 }, { "posteriors": "curve_13", "x": 0.31868131868131866, "y": 0.6247963073195606 }, { "posteriors": "curve_13", "x": 0.3241758241758242, "y": 0.6333015060669493 }, { "posteriors": "curve_13", "x": 0.32967032967032966, "y": 0.641776621525619 }, { "posteriors": "curve_13", "x": 0.33516483516483514, "y": 0.6502222588978439 }, { "posteriors": "curve_13", "x": 0.34065934065934067, "y": 0.6586390015038268 }, { "posteriors": "curve_13", "x": 0.34615384615384615, "y": 0.6670274119125702 }, { "posteriors": "curve_13", "x": 0.3516483516483517, "y": 0.6753880329973054 }, { "posteriors": "curve_13", "x": 0.35714285714285715, "y": 0.6837213889216089 }, { "posteriors": "curve_13", "x": 0.3626373626373626, "y": 0.6920279860617538 }, { "posteriors": "curve_13", "x": 0.36813186813186816, "y": 0.7003083138703218 }, { "posteriors": "curve_13", "x": 0.37362637362637363, "y": 0.7085628456856368 }, { "posteriors": "curve_13", "x": 0.3791208791208791, "y": 0.7167920394911643 }, { "posteriors": "curve_13", "x": 0.38461538461538464, "y": 0.72499633862865 }, { "posteriors": "curve_13", "x": 0.3901098901098901, "y": 0.7331761724684336 }, { "posteriors": "curve_13", "x": 0.3956043956043956, "y": 0.7413319570400784 }, { "posteriors": "curve_13", "x": 0.4010989010989011, "y": 0.7494640956261817 }, { "posteriors": "curve_13", "x": 0.4065934065934066, "y": 0.7575729793219913 }, { "posteriors": "curve_13", "x": 0.41208791208791207, "y": 0.7656589875632325 }, { "posteriors": "curve_13", "x": 0.4175824175824176, "y": 0.7737224886243482 }, { "posteriors": "curve_13", "x": 0.4230769230769231, "y": 0.7817638400891828 }, { "posteriors": "curve_13", "x": 0.42857142857142855, "y": 0.7897833892959647 }, { "posteriors": "curve_13", "x": 0.4340659340659341, "y": 0.7977814737583091 }, { "posteriors": "curve_13", "x": 0.43956043956043955, "y": 0.8057584215638138 }, { "posteriors": "curve_13", "x": 0.44505494505494503, "y": 0.8137145517517117 }, { "posteriors": "curve_13", "x": 0.45054945054945056, "y": 0.8216501746709188 }, { "posteriors": "curve_13", "x": 0.45604395604395603, "y": 0.829565592319727 }, { "posteriors": "curve_13", "x": 0.46153846153846156, "y": 0.8374610986682905 }, { "posteriors": "curve_13", "x": 0.46703296703296704, "y": 0.8453369799649689 }, { "posteriors": "curve_13", "x": 0.4725274725274725, "y": 0.8531935150275209 }, { "posteriors": "curve_13", "x": 0.47802197802197804, "y": 0.8610309755200604 }, { "posteriors": "curve_13", "x": 0.4835164835164835, "y": 0.8688496262166271 }, { "posteriors": "curve_13", "x": 0.489010989010989, "y": 0.8766497252521674 }, { "posteriors": "curve_13", "x": 0.4945054945054945, "y": 0.8844315243616551 }, { "posteriors": "curve_13", "x": 0.5, "y": 0.8921952691080428 }, { "posteriors": "curve_13", "x": 0.5054945054945055, "y": 0.8999411990996807 }, { "posteriors": "curve_13", "x": 0.510989010989011, "y": 0.9076695481977983 }, { "posteriors": "curve_13", "x": 0.5164835164835165, "y": 0.9153805447146062 }, { "posteriors": "curve_13", "x": 0.521978021978022, "y": 0.9230744116025345 }, { "posteriors": "curve_13", "x": 0.5274725274725275, "y": 0.9307513666350992 }, { "posteriors": "curve_13", "x": 0.532967032967033, "y": 0.9384116225798427 }, { "posteriors": "curve_13", "x": 0.5384615384615384, "y": 0.9460553873637795 }, { "posteriors": "curve_13", "x": 0.5439560439560439, "y": 0.9536828642317423 }, { "posteriors": "curve_13", "x": 0.5494505494505495, "y": 0.9612942518980035 }, { "posteriors": "curve_13", "x": 0.554945054945055, "y": 0.9688897446915195 }, { "posteriors": "curve_13", "x": 0.5604395604395604, "y": 0.9764695326951291 }, { "posteriors": "curve_13", "x": 0.5659340659340659, "y": 0.984033801879014 }, { "posteriors": "curve_13", "x": 0.5714285714285714, "y": 0.9915827342287077 }, { "posteriors": "curve_13", "x": 0.5769230769230769, "y": 0.9991165078679314 }, { "posteriors": "curve_13", "x": 0.5824175824175825, "y": 1.0066352971765105 }, { "posteriors": "curve_13", "x": 0.5879120879120879, "y": 1.014139272903609 }, { "posteriors": "curve_13", "x": 0.5934065934065934, "y": 1.0216286022765204 }, { "posteriors": "curve_13", "x": 0.5989010989010989, "y": 1.0291034491052167 }, { "posteriors": "curve_13", "x": 0.6043956043956044, "y": 1.0365639738828658 }, { "posteriors": "curve_13", "x": 0.6098901098901099, "y": 1.0440103338825082 }, { "posteriors": "curve_13", "x": 0.6153846153846154, "y": 1.0514426832500665 }, { "posteriors": "curve_13", "x": 0.6208791208791209, "y": 1.0588611730938675 }, { "posteriors": "curve_13", "x": 0.6263736263736264, "y": 1.0662659515708288 }, { "posteriors": "curve_13", "x": 0.6318681318681318, "y": 1.0736571639694683 }, { "posteriors": "curve_13", "x": 0.6373626373626373, "y": 1.0810349527898775 }, { "posteriors": "curve_13", "x": 0.6428571428571429, "y": 1.0883994578207943 }, { "posteriors": "curve_13", "x": 0.6483516483516484, "y": 1.095750816213906 }, { "posteriors": "curve_13", "x": 0.6538461538461539, "y": 1.1030891625555068 }, { "posteriors": "curve_13", "x": 0.6593406593406593, "y": 1.1104146289356185 }, { "posteriors": "curve_13", "x": 0.6648351648351648, "y": 1.1177273450146907 }, { "posteriors": "curve_13", "x": 0.6703296703296703, "y": 1.1250274380879843 }, { "posteriors": "curve_13", "x": 0.6758241758241759, "y": 1.1323150331477323 }, { "posteriors": "curve_13", "x": 0.6813186813186813, "y": 1.1395902529431778 }, { "posteriors": "curve_13", "x": 0.6868131868131868, "y": 1.1468532180385744 }, { "posteriors": "curve_13", "x": 0.6923076923076923, "y": 1.1541040468692356 }, { "posteriors": "curve_13", "x": 0.6978021978021978, "y": 1.161342855795713 }, { "posteriors": "curve_13", "x": 0.7032967032967034, "y": 1.1685697591561812 }, { "posteriors": "curve_13", "x": 0.7087912087912088, "y": 1.175784869317099 }, { "posteriors": "curve_13", "x": 0.7142857142857143, "y": 1.182988296722222 }, { "posteriors": "curve_13", "x": 0.7197802197802198, "y": 1.1901801499400286 }, { "posteriors": "curve_13", "x": 0.7252747252747253, "y": 1.1973605357096209 }, { "posteriors": "curve_13", "x": 0.7307692307692307, "y": 1.204529558985167 }, { "posteriors": "curve_13", "x": 0.7362637362637363, "y": 1.2116873229789347 }, { "posteriors": "curve_13", "x": 0.7417582417582418, "y": 1.2188339292029753 }, { "posteriors": "curve_13", "x": 0.7472527472527473, "y": 1.2259694775095111 }, { "posteriors": "curve_13", "x": 0.7527472527472527, "y": 1.2330940661300693 }, { "posteriors": "curve_13", "x": 0.7582417582417582, "y": 1.2402077917134189 }, { "posteriors": "curve_13", "x": 0.7637362637362637, "y": 1.2473107493623483 }, { "posteriors": "curve_13", "x": 0.7692307692307693, "y": 1.2544030326693318 }, { "posteriors": "curve_13", "x": 0.7747252747252747, "y": 1.261484733751124 }, { "posteriors": "curve_13", "x": 0.7802197802197802, "y": 1.268555943282321 }, { "posteriors": "curve_13", "x": 0.7857142857142857, "y": 1.275616750527931 }, { "posteriors": "curve_13", "x": 0.7912087912087912, "y": 1.2826672433749815 }, { "posteriors": "curve_13", "x": 0.7967032967032966, "y": 1.2897075083632092 }, { "posteriors": "curve_13", "x": 0.8021978021978022, "y": 1.2967376307148553 }, { "posteriors": "curve_13", "x": 0.8076923076923077, "y": 1.3037576943636031 }, { "posteriors": "curve_13", "x": 0.8131868131868132, "y": 1.3107677819826904 }, { "posteriors": "curve_13", "x": 0.8186813186813187, "y": 1.3177679750122193 }, { "posteriors": "curve_13", "x": 0.8241758241758241, "y": 1.3247583536856977 }, { "posteriors": "curve_13", "x": 0.8296703296703297, "y": 1.3317389970558347 }, { "posteriors": "curve_13", "x": 0.8351648351648352, "y": 1.3387099830196179 }, { "posteriors": "curve_13", "x": 0.8406593406593407, "y": 1.3456713883426985 }, { "posteriors": "curve_13", "x": 0.8461538461538461, "y": 1.3526232886831036 }, { "posteriors": "curve_13", "x": 0.8516483516483516, "y": 1.3595657586143013 }, { "posteriors": "curve_13", "x": 0.8571428571428571, "y": 1.3664988716476416 }, { "posteriors": "curve_13", "x": 0.8626373626373627, "y": 1.37342270025419 }, { "posteriors": "curve_13", "x": 0.8681318681318682, "y": 1.3803373158859773 }, { "posteriors": "curve_13", "x": 0.8736263736263736, "y": 1.3872427889966836 }, { "posteriors": "curve_13", "x": 0.8791208791208791, "y": 1.394139189061775 }, { "posteriors": "curve_13", "x": 0.8846153846153846, "y": 1.4010265845981102 }, { "posteriors": "curve_13", "x": 0.8901098901098901, "y": 1.4079050431830369 }, { "posteriors": "curve_13", "x": 0.8956043956043956, "y": 1.4147746314729894 }, { "posteriors": "curve_13", "x": 0.9010989010989011, "y": 1.4216354152216086 }, { "posteriors": "curve_13", "x": 0.9065934065934066, "y": 1.4284874592973962 }, { "posteriors": "curve_13", "x": 0.9120879120879121, "y": 1.4353308277009196 }, { "posteriors": "curve_13", "x": 0.9175824175824175, "y": 1.442165583581579 }, { "posteriors": "curve_13", "x": 0.9230769230769231, "y": 1.4489917892539557 }, { "posteriors": "curve_13", "x": 0.9285714285714286, "y": 1.4558095062137453 }, { "posteriors": "curve_13", "x": 0.9340659340659341, "y": 1.4626187951533018 }, { "posteriors": "curve_13", "x": 0.9395604395604396, "y": 1.4694197159767899 }, { "posteriors": "curve_13", "x": 0.945054945054945, "y": 1.4762123278149697 }, { "posteriors": "curve_13", "x": 0.9505494505494505, "y": 1.4829966890396165 }, { "posteriors": "curve_13", "x": 0.9560439560439561, "y": 1.4897728572775923 }, { "posteriors": "curve_13", "x": 0.9615384615384616, "y": 1.4965408894245755 }, { "posteriors": "curve_13", "x": 0.967032967032967, "y": 1.5033008416584615 }, { "posteriors": "curve_13", "x": 0.9725274725274725, "y": 1.5100527694524422 }, { "posteriors": "curve_13", "x": 0.978021978021978, "y": 1.5167967275877758 }, { "posteriors": "curve_13", "x": 0.9835164835164835, "y": 1.5235327701662542 }, { "posteriors": "curve_13", "x": 0.989010989010989, "y": 1.5302609506223763 }, { "posteriors": "curve_13", "x": 0.9945054945054945, "y": 1.536981321735239 }, { "posteriors": "curve_14", "x": 0, "y": 0 }, { "posteriors": "curve_14", "x": 0.005494505494505495, "y": 0.02591373979462201 }, { "posteriors": "curve_14", "x": 0.01098901098901099, "y": 0.04464411431617743 }, { "posteriors": "curve_14", "x": 0.016483516483516484, "y": 0.061369461415998014 }, { "posteriors": "curve_14", "x": 0.02197802197802198, "y": 0.07691274817421584 }, { "posteriors": "curve_14", "x": 0.027472527472527472, "y": 0.09163232981950607 }, { "posteriors": "curve_14", "x": 0.03296703296703297, "y": 0.10572712671702657 }, { "posteriors": "curve_14", "x": 0.038461538461538464, "y": 0.11932270972552636 }, { "posteriors": "curve_14", "x": 0.04395604395604396, "y": 0.13250505519753927 }, { "posteriors": "curve_14", "x": 0.04945054945054945, "y": 0.14533644407710253 }, { "posteriors": "curve_14", "x": 0.054945054945054944, "y": 0.1578639069444038 }, { "posteriors": "curve_14", "x": 0.06043956043956044, "y": 0.17012411168513325 }, { "posteriors": "curve_14", "x": 0.06593406593406594, "y": 0.18214638137469807 }, { "posteriors": "curve_14", "x": 0.07142857142857142, "y": 0.19395465454815783 }, { "posteriors": "curve_14", "x": 0.07692307692307693, "y": 0.20556881159268267 }, { "posteriors": "curve_14", "x": 0.08241758241758242, "y": 0.21700560296909502 }, { "posteriors": "curve_14", "x": 0.08791208791208792, "y": 0.22827931740435345 }, { "posteriors": "curve_14", "x": 0.09340659340659341, "y": 0.23940227461194538 }, { "posteriors": "curve_14", "x": 0.0989010989010989, "y": 0.25038519623599303 }, { "posteriors": "curve_14", "x": 0.1043956043956044, "y": 0.26123749020983383 }, { "posteriors": "curve_14", "x": 0.10989010989010989, "y": 0.2719674722321245 }, { "posteriors": "curve_14", "x": 0.11538461538461539, "y": 0.28258254071350775 }, { "posteriors": "curve_14", "x": 0.12087912087912088, "y": 0.29308931671782307 }, { "posteriors": "curve_14", "x": 0.12637362637362637, "y": 0.30349375717363936 }, { "posteriors": "curve_14", "x": 0.13186813186813187, "y": 0.3138012474007203 }, { "posteriors": "curve_14", "x": 0.13736263736263737, "y": 0.32401667743431234 }, { "posteriors": "curve_14", "x": 0.14285714285714285, "y": 0.3341445055182536 }, { "posteriors": "curve_14", "x": 0.14835164835164835, "y": 0.34418881133394497 }, { "posteriors": "curve_14", "x": 0.15384615384615385, "y": 0.35415334094267237 }, { "posteriors": "curve_14", "x": 0.15934065934065933, "y": 0.3640415449808267 }, { "posteriors": "curve_14", "x": 0.16483516483516483, "y": 0.37385661131836667 }, { "posteriors": "curve_14", "x": 0.17032967032967034, "y": 0.3836014931406768 }, { "posteriors": "curve_14", "x": 0.17582417582417584, "y": 0.3932789332219026 }, { "posteriors": "curve_14", "x": 0.1813186813186813, "y": 0.4028914850089862 }, { "posteriors": "curve_14", "x": 0.18681318681318682, "y": 0.4124415310192586 }, { "posteriors": "curve_14", "x": 0.19230769230769232, "y": 0.4219312989627132 }, { "posteriors": "curve_14", "x": 0.1978021978021978, "y": 0.4313628759272352 }, { "posteriors": "curve_14", "x": 0.2032967032967033, "y": 0.44073822090678333 }, { "posteriors": "curve_14", "x": 0.2087912087912088, "y": 0.4500591759055757 }, { "posteriors": "curve_14", "x": 0.21428571428571427, "y": 0.4593274758133002 }, { "posteriors": "curve_14", "x": 0.21978021978021978, "y": 0.4685447572153443 }, { "posteriors": "curve_14", "x": 0.22527472527472528, "y": 0.4777125662766116 }, { "posteriors": "curve_14", "x": 0.23076923076923078, "y": 0.4868323658165265 }, { "posteriors": "curve_14", "x": 0.23626373626373626, "y": 0.49590554167545786 }, { "posteriors": "curve_14", "x": 0.24175824175824176, "y": 0.5049334084583327 }, { "posteriors": "curve_14", "x": 0.24725274725274726, "y": 0.5139172147291184 }, { "posteriors": "curve_14", "x": 0.25274725274725274, "y": 0.5228581477196926 }, { "posteriors": "curve_14", "x": 0.25824175824175827, "y": 0.5317573376080543 }, { "posteriors": "curve_14", "x": 0.26373626373626374, "y": 0.5406158614135756 }, { "posteriors": "curve_14", "x": 0.2692307692307692, "y": 0.5494347465508269 }, { "posteriors": "curve_14", "x": 0.27472527472527475, "y": 0.5582149740782495 }, { "posteriors": "curve_14", "x": 0.2802197802197802, "y": 0.5669574816734494 }, { "posteriors": "curve_14", "x": 0.2857142857142857, "y": 0.5756631663630196 }, { "posteriors": "curve_14", "x": 0.29120879120879123, "y": 0.5843328870314671 }, { "posteriors": "curve_14", "x": 0.2967032967032967, "y": 0.592967466730944 }, { "posteriors": "curve_14", "x": 0.3021978021978022, "y": 0.6015676948109915 }, { "posteriors": "curve_14", "x": 0.3076923076923077, "y": 0.6101343288853321 }, { "posteriors": "curve_14", "x": 0.3131868131868132, "y": 0.6186680966508642 }, { "posteriors": "curve_14", "x": 0.31868131868131866, "y": 0.6271696975723584 }, { "posteriors": "curve_14", "x": 0.3241758241758242, "y": 0.6356398044449143 }, { "posteriors": "curve_14", "x": 0.32967032967032966, "y": 0.6440790648449639 }, { "posteriors": "curve_14", "x": 0.33516483516483514, "y": 0.6524881024794981 }, { "posteriors": "curve_14", "x": 0.34065934065934067, "y": 0.6608675184421998 }, { "posteriors": "curve_14", "x": 0.34615384615384615, "y": 0.6692178923843076 }, { "posteriors": "curve_14", "x": 0.3516483516483517, "y": 0.6775397836072558 }, { "posteriors": "curve_14", "x": 0.35714285714285715, "y": 0.6858337320834553 }, { "posteriors": "curve_14", "x": 0.3626373626373626, "y": 0.6941002594109759 }, { "posteriors": "curve_14", "x": 0.36813186813186816, "y": 0.7023398697073417 }, { "posteriors": "curve_14", "x": 0.37362637362637363, "y": 0.7105530504471752 }, { "posteriors": "curve_14", "x": 0.3791208791208791, "y": 0.7187402732479898 }, { "posteriors": "curve_14", "x": 0.38461538461538464, "y": 0.7269019946080448 }, { "posteriors": "curve_14", "x": 0.3901098901098901, "y": 0.7350386565998279 }, { "posteriors": "curve_14", "x": 0.3956043956043956, "y": 0.7431506875224242 }, { "posteriors": "curve_14", "x": 0.4010989010989011, "y": 0.7512385025157414 }, { "posteriors": "curve_14", "x": 0.4065934065934066, "y": 0.7593025041393143 }, { "posteriors": "curve_14", "x": 0.41208791208791207, "y": 0.7673430829181849 }, { "posteriors": "curve_14", "x": 0.4175824175824176, "y": 0.7753606178581376 }, { "posteriors": "curve_14", "x": 0.4230769230769231, "y": 0.7833554769323979 }, { "posteriors": "curve_14", "x": 0.42857142857142855, "y": 0.7913280175417193 }, { "posteriors": "curve_14", "x": 0.4340659340659341, "y": 0.7992785869496372 }, { "posteriors": "curve_14", "x": 0.43956043956043955, "y": 0.8072075226945278 }, { "posteriors": "curve_14", "x": 0.44505494505494503, "y": 0.8151151529799816 }, { "posteriors": "curve_14", "x": 0.45054945054945056, "y": 0.8230017970448879 }, { "posteriors": "curve_14", "x": 0.45604395604395603, "y": 0.8308677655145141 }, { "posteriors": "curve_14", "x": 0.46153846153846156, "y": 0.8387133607337801 }, { "posteriors": "curve_14", "x": 0.46703296703296704, "y": 0.8465388770838251 }, { "posteriors": "curve_14", "x": 0.4725274725274725, "y": 0.854344601282895 }, { "posteriors": "curve_14", "x": 0.47802197802197804, "y": 0.8621308126724989 }, { "posteriors": "curve_14", "x": 0.4835164835164835, "y": 0.8698977834897154 }, { "posteriors": "curve_14", "x": 0.489010989010989, "y": 0.8776457791264711 }, { "posteriors": "curve_14", "x": 0.4945054945054945, "y": 0.8853750583765532 }, { "posteriors": "curve_14", "x": 0.5, "y": 0.8930858736710626 }, { "posteriors": "curve_14", "x": 0.5054945054945055, "y": 0.9007784713029772 }, { "posteriors": "curve_14", "x": 0.510989010989011, "y": 0.9084530916414328 }, { "posteriors": "curve_14", "x": 0.5164835164835165, "y": 0.9161099693363042 }, { "posteriors": "curve_14", "x": 0.521978021978022, "y": 0.9237493335136212 }, { "posteriors": "curve_14", "x": 0.5274725274725275, "y": 0.9313714079623241 }, { "posteriors": "curve_14", "x": 0.532967032967033, "y": 0.9389764113128254 }, { "posteriors": "curve_14", "x": 0.5384615384615384, "y": 0.9465645572078217 }, { "posteriors": "curve_14", "x": 0.5439560439560439, "y": 0.9541360544657647 }, { "posteriors": "curve_14", "x": 0.5494505494505495, "y": 0.9616911072373798 }, { "posteriors": "curve_14", "x": 0.554945054945055, "y": 0.9692299151555926 }, { "posteriors": "curve_14", "x": 0.5604395604395604, "y": 0.9767526734792061 }, { "posteriors": "curve_14", "x": 0.5659340659340659, "y": 0.9842595732306441 }, { "posteriors": "curve_14", "x": 0.5714285714285714, "y": 0.9917508013280638 }, { "posteriors": "curve_14", "x": 0.5769230769230769, "y": 0.9992265407121198 }, { "posteriors": "curve_14", "x": 0.5824175824175825, "y": 1.0066869704676422 }, { "posteriors": "curve_14", "x": 0.5879120879120879, "y": 1.0141322659404817 }, { "posteriors": "curve_14", "x": 0.5934065934065934, "y": 1.0215625988497559 }, { "posteriors": "curve_14", "x": 0.5989010989010989, "y": 1.028978137395719 }, { "posteriors": "curve_14", "x": 0.6043956043956044, "y": 1.0363790463634615 }, { "posteriors": "curve_14", "x": 0.6098901098901099, "y": 1.0437654872226436 }, { "posteriors": "curve_14", "x": 0.6153846153846154, "y": 1.0511376182234404 }, { "posteriors": "curve_14", "x": 0.6208791208791209, "y": 1.0584955944888836 }, { "posteriors": "curve_14", "x": 0.6263736263736264, "y": 1.065839568103758 }, { "posteriors": "curve_14", "x": 0.6318681318681318, "y": 1.0731696882002153 }, { "posteriors": "curve_14", "x": 0.6373626373626373, "y": 1.0804861010402536 }, { "posteriors": "curve_14", "x": 0.6428571428571429, "y": 1.0877889500952003 }, { "posteriors": "curve_14", "x": 0.6483516483516484, "y": 1.0950783761223357 }, { "posteriors": "curve_14", "x": 0.6538461538461539, "y": 1.10235451723878 }, { "posteriors": "curve_14", "x": 0.6593406593406593, "y": 1.1096175089927676 }, { "posteriors": "curve_14", "x": 0.6648351648351648, "y": 1.116867484432417 }, { "posteriors": "curve_14", "x": 0.6703296703296703, "y": 1.124104574172109 }, { "posteriors": "curve_14", "x": 0.6758241758241759, "y": 1.1313289064565737 }, { "posteriors": "curve_14", "x": 0.6813186813186813, "y": 1.1385406072227802 }, { "posteriors": "curve_14", "x": 0.6868131868131868, "y": 1.1457398001597283 }, { "posteriors": "curve_14", "x": 0.6923076923076923, "y": 1.1529266067662214 }, { "posteriors": "curve_14", "x": 0.6978021978021978, "y": 1.1601011464067117 }, { "posteriors": "curve_14", "x": 0.7032967032967034, "y": 1.1672635363652906 }, { "posteriors": "curve_14", "x": 0.7087912087912088, "y": 1.1744138918979035 }, { "posteriors": "curve_14", "x": 0.7142857142857143, "y": 1.1815523262828609 }, { "posteriors": "curve_14", "x": 0.7197802197802198, "y": 1.1886789508697118 }, { "posteriors": "curve_14", "x": 0.7252747252747253, "y": 1.1957938751265451 }, { "posteriors": "curve_14", "x": 0.7307692307692307, "y": 1.2028972066857833 }, { "posteriors": "curve_14", "x": 0.7362637362637363, "y": 1.2099890513885239 }, { "posteriors": "curve_14", "x": 0.7417582417582418, "y": 1.2170695133274894 }, { "posteriors": "curve_14", "x": 0.7472527472527473, "y": 1.2241386948886352 }, { "posteriors": "curve_14", "x": 0.7527472527472527, "y": 1.2311966967914707 }, { "posteriors": "curve_14", "x": 0.7582417582417582, "y": 1.2382436181281378 }, { "posteriors": "curve_14", "x": 0.7637362637362637, "y": 1.2452795564013002 }, { "posteriors": "curve_14", "x": 0.7692307692307693, "y": 1.2523046075608826 }, { "posteriors": "curve_14", "x": 0.7747252747252747, "y": 1.2593188660397032 }, { "posteriors": "curve_14", "x": 0.7802197802197802, "y": 1.2663224247880451 }, { "posteriors": "curve_14", "x": 0.7857142857142857, "y": 1.2733153753072 }, { "posteriors": "curve_14", "x": 0.7912087912087912, "y": 1.2802978076820233 }, { "posteriors": "curve_14", "x": 0.7967032967032966, "y": 1.2872698106125382 }, { "posteriors": "curve_14", "x": 0.8021978021978022, "y": 1.2942314714446221 }, { "posteriors": "curve_14", "x": 0.8076923076923077, "y": 1.3011828761998054 }, { "posteriors": "curve_14", "x": 0.8131868131868132, "y": 1.3081241096042193 }, { "posteriors": "curve_14", "x": 0.8186813186813187, "y": 1.3150552551167167 }, { "posteriors": "curve_14", "x": 0.8241758241758241, "y": 1.3219763949562013 }, { "posteriors": "curve_14", "x": 0.8296703296703297, "y": 1.3288876101281868 }, { "posteriors": "curve_14", "x": 0.8351648351648352, "y": 1.3357889804506147 }, { "posteriors": "curve_14", "x": 0.8406593406593407, "y": 1.3426805845789607 }, { "posteriors": "curve_14", "x": 0.8461538461538461, "y": 1.349562500030644 }, { "posteriors": "curve_14", "x": 0.8516483516483516, "y": 1.3564348032087745 }, { "posteriors": "curve_14", "x": 0.8571428571428571, "y": 1.3632975694252505 }, { "posteriors": "curve_14", "x": 0.8626373626373627, "y": 1.3701508729232348 }, { "posteriors": "curve_14", "x": 0.8681318681318682, "y": 1.3769947868990269 }, { "posteriors": "curve_14", "x": 0.8736263736263736, "y": 1.3838293835233524 }, { "posteriors": "curve_14", "x": 0.8791208791208791, "y": 1.3906547339620894 }, { "posteriors": "curve_14", "x": 0.8846153846153846, "y": 1.3974709083964463 }, { "posteriors": "curve_14", "x": 0.8901098901098901, "y": 1.4042779760426145 }, { "posteriors": "curve_14", "x": 0.8956043956043956, "y": 1.4110760051709097 }, { "posteriors": "curve_14", "x": 0.9010989010989011, "y": 1.417865063124416 }, { "posteriors": "curve_14", "x": 0.9065934065934066, "y": 1.4246452163371548 }, { "posteriors": "curve_14", "x": 0.9120879120879121, "y": 1.431416530351787 }, { "posteriors": "curve_14", "x": 0.9175824175824175, "y": 1.438179069836867 }, { "posteriors": "curve_14", "x": 0.9230769230769231, "y": 1.4449328986036616 }, { "posteriors": "curve_14", "x": 0.9285714285714286, "y": 1.4516780796225468 }, { "posteriors": "curve_14", "x": 0.9340659340659341, "y": 1.4584146750389961 }, { "posteriors": "curve_14", "x": 0.9395604395604396, "y": 1.4651427461891726 }, { "posteriors": "curve_14", "x": 0.945054945054945, "y": 1.4718623536151374 }, { "posteriors": "curve_14", "x": 0.9505494505494505, "y": 1.4785735570796832 }, { "posteriors": "curve_14", "x": 0.9560439560439561, "y": 1.485276415580811 }, { "posteriors": "curve_14", "x": 0.9615384615384616, "y": 1.4919709873658515 }, { "posteriors": "curve_14", "x": 0.967032967032967, "y": 1.498657329945251 }, { "posteriors": "curve_14", "x": 0.9725274725274725, "y": 1.5053355001060233 }, { "posteriors": "curve_14", "x": 0.978021978021978, "y": 1.512005553924885 }, { "posteriors": "curve_14", "x": 0.9835164835164835, "y": 1.5186675467810762 }, { "posteriors": "curve_14", "x": 0.989010989010989, "y": 1.5253215333688837 }, { "posteriors": "curve_14", "x": 0.9945054945054945, "y": 1.5319675677098665 }, { "posteriors": "curve_15", "x": 0, "y": 0 }, { "posteriors": "curve_15", "x": 0.005494505494505495, "y": 0.026848110924379512 }, { "posteriors": "curve_15", "x": 0.01098901098901099, "y": 0.04603450670007346 }, { "posteriors": "curve_15", "x": 0.016483516483516484, "y": 0.06310503648864078 }, { "posteriors": "curve_15", "x": 0.02197802197802198, "y": 0.07893202665498465 }, { "posteriors": "curve_15", "x": 0.027472527472527472, "y": 0.09389426759472856 }, { "posteriors": "curve_15", "x": 0.03296703296703297, "y": 0.10820162480805351 }, { "posteriors": "curve_15", "x": 0.038461538461538464, "y": 0.12198638526792768 }, { "posteriors": "curve_15", "x": 0.04395604395604396, "y": 0.1353390158485888 }, { "posteriors": "curve_15", "x": 0.04945054945054945, "y": 0.1483249842586353 }, { "posteriors": "curve_15", "x": 0.054945054945054944, "y": 0.16099368416878354 }, { "posteriors": "curve_15", "x": 0.06043956043956044, "y": 0.17338359600327038 }, { "posteriors": "curve_15", "x": 0.06593406593406594, "y": 0.18552547090611704 }, { "posteriors": "curve_15", "x": 0.07142857142857142, "y": 0.19744439741160566 }, { "posteriors": "curve_15", "x": 0.07692307692307693, "y": 0.20916119892945287 }, { "posteriors": "curve_15", "x": 0.08241758241758242, "y": 0.22069341114272403 }, { "posteriors": "curve_15", "x": 0.08791208791208792, "y": 0.2320559852203902 }, { "posteriors": "curve_15", "x": 0.09340659340659341, "y": 0.24326180610197595 }, { "posteriors": "curve_15", "x": 0.0989010989010989, "y": 0.2543220825060801 }, { "posteriors": "curve_15", "x": 0.1043956043956044, "y": 0.26524664577319834 }, { "posteriors": "curve_15", "x": 0.10989010989010989, "y": 0.2760441825278498 }, { "posteriors": "curve_15", "x": 0.11538461538461539, "y": 0.2867224183903314 }, { "posteriors": "curve_15", "x": 0.12087912087912088, "y": 0.29728826487556104 }, { "posteriors": "curve_15", "x": 0.12637362637362637, "y": 0.30774793819213453 }, { "posteriors": "curve_15", "x": 0.13186813186813187, "y": 0.3181070563034152 }, { "posteriors": "curve_15", "x": 0.13736263736263737, "y": 0.32837071896723197 }, { "posteriors": "curve_15", "x": 0.14285714285714285, "y": 0.3385435742997844 }, { "posteriors": "curve_15", "x": 0.14835164835164835, "y": 0.34862987456293715 }, { "posteriors": "curve_15", "x": 0.15384615384615385, "y": 0.3586335232535853 }, { "posteriors": "curve_15", "x": 0.15934065934065933, "y": 0.36855811511296926 }, { "posteriors": "curve_15", "x": 0.16483516483516483, "y": 0.37840697032752574 }, { "posteriors": "curve_15", "x": 0.17032967032967034, "y": 0.38818316392975233 }, { "posteriors": "curve_15", "x": 0.17582417582417584, "y": 0.39788955120562497 }, { "posteriors": "curve_15", "x": 0.1813186813186813, "y": 0.407528789758641 }, { "posteriors": "curve_15", "x": 0.18681318681318682, "y": 0.41710335875827326 }, { "posteriors": "curve_15", "x": 0.19230769230769232, "y": 0.42661557580424697 }, { "posteriors": "curve_15", "x": 0.1978021978021978, "y": 0.43606761176152864 }, { "posteriors": "curve_15", "x": 0.2032967032967033, "y": 0.44546150385971334 }, { "posteriors": "curve_15", "x": 0.2087912087912088, "y": 0.4547991673012096 }, { "posteriors": "curve_15", "x": 0.21428571428571427, "y": 0.4640824055826947 }, { "posteriors": "curve_15", "x": 0.21978021978021978, "y": 0.47331291970175327 }, { "posteriors": "curve_15", "x": 0.22527472527472528, "y": 0.48249231639392925 }, { "posteriors": "curve_15", "x": 0.23076923076923078, "y": 0.491622115523423 }, { "posteriors": "curve_15", "x": 0.23626373626373626, "y": 0.5007037567324475 }, { "posteriors": "curve_15", "x": 0.24175824175824176, "y": 0.5097386054390907 }, { "posteriors": "curve_15", "x": 0.24725274725274726, "y": 0.5187279582608499 }, { "posteriors": "curve_15", "x": 0.25274725274725274, "y": 0.5276730479303555 }, { "posteriors": "curve_15", "x": 0.25824175824175827, "y": 0.5365750477608201 }, { "posteriors": "curve_15", "x": 0.26373626373626374, "y": 0.5454350757111469 }, { "posteriors": "curve_15", "x": 0.2692307692307692, "y": 0.5542541980941698 }, { "posteriors": "curve_15", "x": 0.27472527472527475, "y": 0.5630334329659856 }, { "posteriors": "curve_15", "x": 0.2802197802197802, "y": 0.5717737532296282 }, { "posteriors": "curve_15", "x": 0.2857142857142857, "y": 0.5804760894822778 }, { "posteriors": "curve_15", "x": 0.29120879120879123, "y": 0.589141332631719 }, { "posteriors": "curve_15", "x": 0.2967032967032967, "y": 0.5977703363047397 }, { "posteriors": "curve_15", "x": 0.3021978021978022, "y": 0.6063639190675617 }, { "posteriors": "curve_15", "x": 0.3076923076923077, "y": 0.614922866476114 }, { "posteriors": "curve_15", "x": 0.3131868131868132, "y": 0.6234479329719956 }, { "posteriors": "curve_15", "x": 0.31868131868131866, "y": 0.6319398436382369 }, { "posteriors": "curve_15", "x": 0.3241758241758242, "y": 0.6403992958274665 }, { "posteriors": "curve_15", "x": 0.32967032967032966, "y": 0.6488269606737544 }, { "posteriors": "curve_15", "x": 0.33516483516483514, "y": 0.6572234844982446 }, { "posteriors": "curve_15", "x": 0.34065934065934067, "y": 0.6655894901176512 }, { "posteriors": "curve_15", "x": 0.34615384615384615, "y": 0.6739255780637892 }, { "posteriors": "curve_15", "x": 0.3516483516483517, "y": 0.6822323277215037 }, { "posteriors": "curve_15", "x": 0.35714285714285715, "y": 0.6905102983916434 }, { "posteriors": "curve_15", "x": 0.3626373626373626, "y": 0.6987600302850939 }, { "posteriors": "curve_15", "x": 0.36813186813186816, "y": 0.7069820454533171 }, { "posteriors": "curve_15", "x": 0.37362637362637363, "y": 0.7151768486603359 }, { "posteriors": "curve_15", "x": 0.3791208791208791, "y": 0.7233449282006588 }, { "posteriors": "curve_15", "x": 0.38461538461538464, "y": 0.7314867566672265 }, { "posteriors": "curve_15", "x": 0.3901098901098901, "y": 0.7396027916731055 }, { "posteriors": "curve_15", "x": 0.3956043956043956, "y": 0.7476934765303254 }, { "posteriors": "curve_15", "x": 0.4010989010989011, "y": 0.7557592408889641 }, { "posteriors": "curve_15", "x": 0.4065934065934066, "y": 0.7638005013393211 }, { "posteriors": "curve_15", "x": 0.41208791208791207, "y": 0.77181766197978 }, { "posteriors": "curve_15", "x": 0.4175824175824176, "y": 0.7798111149527451 }, { "posteriors": "curve_15", "x": 0.4230769230769231, "y": 0.7877812409508463 }, { "posteriors": "curve_15", "x": 0.42857142857142855, "y": 0.795728409695421 }, { "posteriors": "curve_15", "x": 0.4340659340659341, "y": 0.8036529803891307 }, { "posteriors": "curve_15", "x": 0.43956043956043955, "y": 0.8115553021444191 }, { "posteriors": "curve_15", "x": 0.44505494505494503, "y": 0.8194357143893861 }, { "posteriors": "curve_15", "x": 0.45054945054945056, "y": 0.8272945472525318 }, { "posteriors": "curve_15", "x": 0.45604395604395603, "y": 0.8351321219277138 }, { "posteriors": "curve_15", "x": 0.46153846153846156, "y": 0.8429487510205653 }, { "posteriors": "curve_15", "x": 0.46703296703296704, "y": 0.8507447388775187 }, { "posteriors": "curve_15", "x": 0.4725274725274725, "y": 0.8585203818985082 }, { "posteriors": "curve_15", "x": 0.47802197802197804, "y": 0.8662759688343367 }, { "posteriors": "curve_15", "x": 0.4835164835164835, "y": 0.8740117810696298 }, { "posteriors": "curve_15", "x": 0.489010989010989, "y": 0.8817280928922298 }, { "posteriors": "curve_15", "x": 0.4945054945054945, "y": 0.8894251717498222 }, { "posteriors": "curve_15", "x": 0.5, "y": 0.8971032784945407 }, { "posteriors": "curve_15", "x": 0.5054945054945055, "y": 0.9047626676162329 }, { "posteriors": "curve_15", "x": 0.510989010989011, "y": 0.9124035874650345 }, { "posteriors": "curve_15", "x": 0.5164835164835165, "y": 0.9200262804638489 }, { "posteriors": "curve_15", "x": 0.521978021978022, "y": 0.9276309833112941 }, { "posteriors": "curve_15", "x": 0.5274725274725275, "y": 0.9352179271756403 }, { "posteriors": "curve_15", "x": 0.532967032967033, "y": 0.9427873378802257 }, { "posteriors": "curve_15", "x": 0.5384615384615384, "y": 0.9503394360808116 }, { "posteriors": "curve_15", "x": 0.5439560439560439, "y": 0.9578744374353039 }, { "posteriors": "curve_15", "x": 0.5494505494505495, "y": 0.9653925527662444 }, { "posteriors": "curve_15", "x": 0.554945054945055, "y": 0.9728939882164477 }, { "posteriors": "curve_15", "x": 0.5604395604395604, "y": 0.98037894539814 }, { "posteriors": "curve_15", "x": 0.5659340659340659, "y": 0.9878476215359301 }, { "posteriors": "curve_15", "x": 0.5714285714285714, "y": 0.9953002096039251 }, { "posteriors": "curve_15", "x": 0.5769230769230769, "y": 1.0027368984572864 }, { "posteriors": "curve_15", "x": 0.5824175824175825, "y": 1.0101578729585001 }, { "posteriors": "curve_15", "x": 0.5879120879120879, "y": 1.0175633140986222 }, { "posteriors": "curve_15", "x": 0.5934065934065934, "y": 1.0249533991137474 }, { "posteriors": "curve_15", "x": 0.5989010989010989, "y": 1.0323283015969236 }, { "posteriors": "curve_15", "x": 0.6043956043956044, "y": 1.039688191605741 }, { "posteriors": "curve_15", "x": 0.6098901098901099, "y": 1.0470332357657928 }, { "posteriors": "curve_15", "x": 0.6153846153846154, "y": 1.054363597370204 }, { "posteriors": "curve_15", "x": 0.6208791208791209, "y": 1.0616794364754125 }, { "posteriors": "curve_15", "x": 0.6263736263736264, "y": 1.068980909993375 }, { "posteriors": "curve_15", "x": 0.6318681318681318, "y": 1.0762681717803608 }, { "posteriors": "curve_15", "x": 0.6373626373626373, "y": 1.0835413727224876 }, { "posteriors": "curve_15", "x": 0.6428571428571429, "y": 1.0908006608181493 }, { "posteriors": "curve_15", "x": 0.6483516483516484, "y": 1.098046181257468 }, { "posteriors": "curve_15", "x": 0.6538461538461539, "y": 1.1052780764989103 }, { "posteriors": "curve_15", "x": 0.6593406593406593, "y": 1.1124964863431837 }, { "posteriors": "curve_15", "x": 0.6648351648351648, "y": 1.1197015480045378 }, { "posteriors": "curve_15", "x": 0.6703296703296703, "y": 1.1268933961795786 }, { "posteriors": "curve_15", "x": 0.6758241758241759, "y": 1.1340721631137034 }, { "posteriors": "curve_15", "x": 0.6813186813186813, "y": 1.1412379786652576 }, { "posteriors": "curve_15", "x": 0.6868131868131868, "y": 1.1483909703675081 }, { "posteriors": "curve_15", "x": 0.6923076923076923, "y": 1.155531263488527 }, { "posteriors": "curve_15", "x": 0.6978021978021978, "y": 1.1626589810890673 }, { "posteriors": "curve_15", "x": 0.7032967032967034, "y": 1.169774244078519 }, { "posteriors": "curve_15", "x": 0.7087912087912088, "y": 1.1768771712690196 }, { "posteriors": "curve_15", "x": 0.7142857142857143, "y": 1.183967879427795 }, { "posteriors": "curve_15", "x": 0.7197802197802198, "y": 1.1910464833278027 }, { "posteriors": "curve_15", "x": 0.7252747252747253, "y": 1.198113095796743 }, { "posteriors": "curve_15", "x": 0.7307692307692307, "y": 1.2051678277645046 }, { "posteriors": "curve_15", "x": 0.7362637362637363, "y": 1.2122107883091044 }, { "posteriors": "curve_15", "x": 0.7417582417582418, "y": 1.2192420847011827 }, { "posteriors": "curve_15", "x": 0.7472527472527473, "y": 1.2262618224471054 }, { "posteriors": "curve_15", "x": 0.7527472527472527, "y": 1.2332701053307307 }, { "posteriors": "curve_15", "x": 0.7582417582417582, "y": 1.2402670354538903 }, { "posteriors": "curve_15", "x": 0.7637362637362637, "y": 1.2472527132756308 }, { "posteriors": "curve_15", "x": 0.7692307692307693, "y": 1.2542272376502661 }, { "posteriors": "curve_15", "x": 0.7747252747252747, "y": 1.2611907058642817 }, { "posteriors": "curve_15", "x": 0.7802197802197802, "y": 1.2681432136721358 }, { "posteriors": "curve_15", "x": 0.7857142857142857, "y": 1.2750848553309968 }, { "posteriors": "curve_15", "x": 0.7912087912087912, "y": 1.2820157236344538 }, { "posteriors": "curve_15", "x": 0.7967032967032966, "y": 1.2889359099452424 }, { "posteriors": "curve_15", "x": 0.8021978021978022, "y": 1.295845504227017 }, { "posteriors": "curve_15", "x": 0.8076923076923077, "y": 1.3027445950752032 }, { "posteriors": "curve_15", "x": 0.8131868131868132, "y": 1.3096332697469686 }, { "posteriors": "curve_15", "x": 0.8186813186813187, "y": 1.3165116141903352 }, { "posteriors": "curve_15", "x": 0.8241758241758241, "y": 1.3233797130724703 }, { "posteriors": "curve_15", "x": 0.8296703296703297, "y": 1.33023764980718 }, { "posteriors": "curve_15", "x": 0.8351648351648352, "y": 1.337085506581635 }, { "posteriors": "curve_15", "x": 0.8406593406593407, "y": 1.3439233643823554 }, { "posteriors": "curve_15", "x": 0.8461538461538461, "y": 1.350751303020477 }, { "posteriors": "curve_15", "x": 0.8516483516483516, "y": 1.3575694011563277 }, { "posteriors": "curve_15", "x": 0.8571428571428571, "y": 1.3643777363233327 }, { "posteriors": "curve_15", "x": 0.8626373626373627, "y": 1.371176384951275 }, { "posteriors": "curve_15", "x": 0.8681318681318682, "y": 1.3779654223889293 }, { "posteriors": "curve_15", "x": 0.8736263736263736, "y": 1.3847449229260924 }, { "posteriors": "curve_15", "x": 0.8791208791208791, "y": 1.3915149598150292 }, { "posteriors": "curve_15", "x": 0.8846153846153846, "y": 1.398275605291352 }, { "posteriors": "curve_15", "x": 0.8901098901098901, "y": 1.4050269305943537 }, { "posteriors": "curve_15", "x": 0.8956043956043956, "y": 1.411769005986811 }, { "posteriors": "curve_15", "x": 0.9010989010989011, "y": 1.418501900774275 }, { "posteriors": "curve_15", "x": 0.9065934065934066, "y": 1.425225683323865 }, { "posteriors": "curve_15", "x": 0.9120879120879121, "y": 1.4319404210825837 }, { "posteriors": "curve_15", "x": 0.9175824175824175, "y": 1.438646180595163 }, { "posteriors": "curve_15", "x": 0.9230769230769231, "y": 1.445343027521464 }, { "posteriors": "curve_15", "x": 0.9285714285714286, "y": 1.4520310266534346 }, { "posteriors": "curve_15", "x": 0.9340659340659341, "y": 1.4587102419316489 }, { "posteriors": "curve_15", "x": 0.9395604395604396, "y": 1.4653807364614317 }, { "posteriors": "curve_15", "x": 0.945054945054945, "y": 1.472042572528588 }, { "posteriors": "curve_15", "x": 0.9505494505494505, "y": 1.4786958116147446 }, { "posteriors": "curve_15", "x": 0.9560439560439561, "y": 1.4853405144123204 }, { "posteriors": "curve_15", "x": 0.9615384615384616, "y": 1.4919767408391293 }, { "posteriors": "curve_15", "x": 0.967032967032967, "y": 1.498604550052636 }, { "posteriors": "curve_15", "x": 0.9725274725274725, "y": 1.5052240004638655 }, { "posteriors": "curve_15", "x": 0.978021978021978, "y": 1.5118351497509845 }, { "posteriors": "curve_15", "x": 0.9835164835164835, "y": 1.5184380548725585 }, { "posteriors": "curve_15", "x": 0.989010989010989, "y": 1.5250327720804977 }, { "posteriors": "curve_15", "x": 0.9945054945054945, "y": 1.5316193569326984 }, { "posteriors": "curve_16", "x": 0, "y": 0 }, { "posteriors": "curve_16", "x": 0.005494505494505495, "y": 0.024681767824902924 }, { "posteriors": "curve_16", "x": 0.01098901098901099, "y": 0.042568078001592534 }, { "posteriors": "curve_16", "x": 0.016483516483516484, "y": 0.058553008728514974 }, { "posteriors": "curve_16", "x": 0.02197802197802198, "y": 0.07341618629607999 }, { "posteriors": "curve_16", "x": 0.027472527472527472, "y": 0.08749731074848012 }, { "posteriors": "curve_16", "x": 0.03296703296703297, "y": 0.1009850291302283 }, { "posteriors": "curve_16", "x": 0.038461538461538464, "y": 0.11399846700911982 }, { "posteriors": "curve_16", "x": 0.04395604395604396, "y": 0.126619210058276 }, { "posteriors": "curve_16", "x": 0.04945054945054945, "y": 0.13890637232647393 }, { "posteriors": "curve_16", "x": 0.054945054945054944, "y": 0.1509046019431767 }, { "posteriors": "curve_16", "x": 0.06043956043956044, "y": 0.16264871548922102 }, { "posteriors": "curve_16", "x": 0.06593406593406594, "y": 0.174166560009182 }, { "posteriors": "curve_16", "x": 0.07142857142857142, "y": 0.18548087233958369 }, { "posteriors": "curve_16", "x": 0.07692307692307693, "y": 0.19661053738662948 }, { "posteriors": "curve_16", "x": 0.08241758241758242, "y": 0.20757146879925706 }, { "posteriors": "curve_16", "x": 0.08791208791208792, "y": 0.21837724301184336 }, { "posteriors": "curve_16", "x": 0.09340659340659341, "y": 0.2290395668364512 }, { "posteriors": "curve_16", "x": 0.0989010989010989, "y": 0.2395686295268379 }, { "posteriors": "curve_16", "x": 0.1043956043956044, "y": 0.24997337269088596 }, { "posteriors": "curve_16", "x": 0.10989010989010989, "y": 0.26026170053488396 }, { "posteriors": "curve_16", "x": 0.11538461538461539, "y": 0.2704406459527407 }, { "posteriors": "curve_16", "x": 0.12087912087912088, "y": 0.28051650339317713 }, { "posteriors": "curve_16", "x": 0.12637362637362637, "y": 0.2904949363569669 }, { "posteriors": "curve_16", "x": 0.13186813186813187, "y": 0.3003810652598206 }, { "posteriors": "curve_16", "x": 0.13736263736263737, "y": 0.3101795399149537 }, { "posteriors": "curve_16", "x": 0.14285714285714285, "y": 0.31989459983447843 }, { "posteriors": "curve_16", "x": 0.14835164835164835, "y": 0.3295301247859611 }, { "posteriors": "curve_16", "x": 0.15384615384615385, "y": 0.33908967748107344 }, { "posteriors": "curve_16", "x": 0.15934065934065933, "y": 0.3485765398576909 }, { "posteriors": "curve_16", "x": 0.16483516483516483, "y": 0.3579937441043754 }, { "posteriors": "curve_16", "x": 0.17032967032967034, "y": 0.36734409933873957 }, { "posteriors": "curve_16", "x": 0.17582417582417584, "y": 0.37663021466888935 }, { "posteriors": "curve_16", "x": 0.1813186813186813, "y": 0.3858545192258555 }, { "posteriors": "curve_16", "x": 0.18681318681318682, "y": 0.3950192796444624 }, { "posteriors": "curve_16", "x": 0.19230769230769232, "y": 0.4041266153830108 }, { "posteriors": "curve_16", "x": 0.1978021978021978, "y": 0.4131785122029917 }, { "posteriors": "curve_16", "x": 0.2032967032967033, "y": 0.4221768340747168 }, { "posteriors": "curve_16", "x": 0.2087912087912088, "y": 0.4311233337301943 }, { "posteriors": "curve_16", "x": 0.21428571428571427, "y": 0.4400196620484551 }, { "posteriors": "curve_16", "x": 0.21978021978021978, "y": 0.44886737642908814 }, { "posteriors": "curve_16", "x": 0.22527472527472528, "y": 0.4576679482855918 }, { "posteriors": "curve_16", "x": 0.23076923076923078, "y": 0.4664227697702449 }, { "posteriors": "curve_16", "x": 0.23626373626373626, "y": 0.4751331598257012 }, { "posteriors": "curve_16", "x": 0.24175824175824176, "y": 0.48380036964478357 }, { "posteriors": "curve_16", "x": 0.24725274725274726, "y": 0.4924255876084668 }, { "posteriors": "curve_16", "x": 0.25274725274725274, "y": 0.5010099437623917 }, { "posteriors": "curve_16", "x": 0.25824175824175827, "y": 0.5095545138841171 }, { "posteriors": "curve_16", "x": 0.26373626373626374, "y": 0.5180603231864244 }, { "posteriors": "curve_16", "x": 0.2692307692307692, "y": 0.526528349696138 }, { "posteriors": "curve_16", "x": 0.27472527472527475, "y": 0.534959527342923 }, { "posteriors": "curve_16", "x": 0.2802197802197802, "y": 0.5433547487882491 }, { "posteriors": "curve_16", "x": 0.2857142857142857, "y": 0.5517148680210415 }, { "posteriors": "curve_16", "x": 0.29120879120879123, "y": 0.5600407027433674 }, { "posteriors": "curve_16", "x": 0.2967032967032967, "y": 0.5683330365667794 }, { "posteriors": "curve_16", "x": 0.3021978021978022, "y": 0.5765926210375686 }, { "posteriors": "curve_16", "x": 0.3076923076923077, "y": 0.5848201775071175 }, { "posteriors": "curve_16", "x": 0.3131868131868132, "y": 0.5930163988617513 }, { "posteriors": "curve_16", "x": 0.31868131868131866, "y": 0.60118195112492 }, { "posteriors": "curve_16", "x": 0.3241758241758242, "y": 0.6093174749431683 }, { "posteriors": "curve_16", "x": 0.32967032967032966, "y": 0.6174235869661474 }, { "posteriors": "curve_16", "x": 0.33516483516483514, "y": 0.6255008811298634 }, { "posteriors": "curve_16", "x": 0.34065934065934067, "y": 0.6335499298514176 }, { "posteriors": "curve_16", "x": 0.34615384615384615, "y": 0.6415712851426733 }, { "posteriors": "curve_16", "x": 0.3516483516483517, "y": 0.6495654796495469 }, { "posteriors": "curve_16", "x": 0.35714285714285715, "y": 0.6575330276229742 }, { "posteriors": "curve_16", "x": 0.3626373626373626, "y": 0.6654744258270244 }, { "posteriors": "curve_16", "x": 0.36813186813186816, "y": 0.673390154389121 }, { "posteriors": "curve_16", "x": 0.37362637362637363, "y": 0.6812806775968651 }, { "posteriors": "curve_16", "x": 0.3791208791208791, "y": 0.6891464446455542 }, { "posteriors": "curve_16", "x": 0.38461538461538464, "y": 0.6969878903401139 }, { "posteriors": "curve_16", "x": 0.3901098901098901, "y": 0.7048054357548329 }, { "posteriors": "curve_16", "x": 0.3956043956043956, "y": 0.7125994888539989 }, { "posteriors": "curve_16", "x": 0.4010989010989011, "y": 0.72037044507626 }, { "posteriors": "curve_16", "x": 0.4065934065934066, "y": 0.7281186878853 }, { "posteriors": "curve_16", "x": 0.41208791208791207, "y": 0.7358445892891983 }, { "posteriors": "curve_16", "x": 0.4175824175824176, "y": 0.7435485103306493 }, { "posteriors": "curve_16", "x": 0.4230769230769231, "y": 0.7512308015500345 }, { "posteriors": "curve_16", "x": 0.42857142857142855, "y": 0.758891803423189 }, { "posteriors": "curve_16", "x": 0.4340659340659341, "y": 0.7665318467755449 }, { "posteriors": "curve_16", "x": 0.43956043956043955, "y": 0.7741512531742151 }, { "posteriors": "curve_16", "x": 0.44505494505494503, "y": 0.7817503352994487 }, { "posteriors": "curve_16", "x": 0.45054945054945056, "y": 0.7893293972967884 }, { "posteriors": "curve_16", "x": 0.45604395604395603, "y": 0.79688873511115 }, { "posteriors": "curve_16", "x": 0.46153846153846156, "y": 0.8044286368039648 }, { "posteriors": "curve_16", "x": 0.46703296703296704, "y": 0.81194938285443 }, { "posteriors": "curve_16", "x": 0.4725274725274725, "y": 0.8194512464458419 }, { "posteriors": "curve_16", "x": 0.47802197802197804, "y": 0.8269344937379177 }, { "posteriors": "curve_16", "x": 0.4835164835164835, "y": 0.8343993841259402 }, { "posteriors": "curve_16", "x": 0.489010989010989, "y": 0.8418461704875103 }, { "posteriors": "curve_16", "x": 0.4945054945054945, "y": 0.8492750994176284 }, { "posteriors": "curve_16", "x": 0.5, "y": 0.8566864114527809 }, { "posteriors": "curve_16", "x": 0.5054945054945055, "y": 0.8640803412846648 }, { "posteriors": "curve_16", "x": 0.510989010989011, "y": 0.8714571179641298 }, { "posteriors": "curve_16", "x": 0.5164835164835165, "y": 0.8788169650958935 }, { "posteriors": "curve_16", "x": 0.521978021978022, "y": 0.8861601010245347 }, { "posteriors": "curve_16", "x": 0.5274725274725275, "y": 0.8934867390122484 }, { "posteriors": "curve_16", "x": 0.532967032967033, "y": 0.9007970874088035 }, { "posteriors": "curve_16", "x": 0.5384615384615384, "y": 0.9080913498141273 }, { "posteriors": "curve_16", "x": 0.5439560439560439, "y": 0.9153697252339065 }, { "posteriors": "curve_16", "x": 0.5494505494505495, "y": 0.9226324082285701 }, { "posteriors": "curve_16", "x": 0.554945054945055, "y": 0.9298795890560021 }, { "posteriors": "curve_16", "x": 0.5604395604395604, "y": 0.937111453808308 }, { "posteriors": "curve_16", "x": 0.5659340659340659, "y": 0.944328184542933 }, { "posteriors": "curve_16", "x": 0.5714285714285714, "y": 0.951529959408424 }, { "posteriors": "curve_16", "x": 0.5769230769230769, "y": 0.9587169527651009 }, { "posteriors": "curve_16", "x": 0.5824175824175825, "y": 0.9658893353008893 }, { "posteriors": "curve_16", "x": 0.5879120879120879, "y": 0.9730472741425522 }, { "posteriors": "curve_16", "x": 0.5934065934065934, "y": 0.9801909329625482 }, { "posteriors": "curve_16", "x": 0.5989010989010989, "y": 0.9873204720817212 }, { "posteriors": "curve_16", "x": 0.6043956043956044, "y": 0.9944360485680257 }, { "posteriors": "curve_16", "x": 0.6098901098901099, "y": 1.001537816331474 }, { "posteriors": "curve_16", "x": 0.6153846153846154, "y": 1.0086259262154809 }, { "posteriors": "curve_16", "x": 0.6208791208791209, "y": 1.0157005260847762 }, { "posteriors": "curve_16", "x": 0.6263736263736264, "y": 1.0227617609100421 }, { "posteriors": "curve_16", "x": 0.6318681318681318, "y": 1.0298097728494233 }, { "posteriors": "curve_16", "x": 0.6373626373626373, "y": 1.0368447013270548 }, { "posteriors": "curve_16", "x": 0.6428571428571429, "y": 1.0438666831087386 }, { "posteriors": "curve_16", "x": 0.6483516483516484, "y": 1.0508758523748978 }, { "posteriors": "curve_16", "x": 0.6538461538461539, "y": 1.0578723407909283 }, { "posteriors": "curve_16", "x": 0.6593406593406593, "y": 1.0648562775750599 }, { "posteriors": "curve_16", "x": 0.6648351648351648, "y": 1.0718277895638382 }, { "posteriors": "curve_16", "x": 0.6703296703296703, "y": 1.0787870012753271 }, { "posteriors": "curve_16", "x": 0.6758241758241759, "y": 1.0857340349701305 }, { "posteriors": "curve_16", "x": 0.6813186813186813, "y": 1.0926690107103254 }, { "posteriors": "curve_16", "x": 0.6868131868131868, "y": 1.0995920464163933 }, { "posteriors": "curve_16", "x": 0.6923076923076923, "y": 1.106503257922235 }, { "posteriors": "curve_16", "x": 0.6978021978021978, "y": 1.1134027590283466 }, { "posteriors": "curve_16", "x": 0.7032967032967034, "y": 1.1202906615532322 }, { "posteriors": "curve_16", "x": 0.7087912087912088, "y": 1.1271670753831264 }, { "posteriors": "curve_16", "x": 0.7142857142857143, "y": 1.1340321085200935 }, { "posteriors": "curve_16", "x": 0.7197802197802198, "y": 1.1408858671285669 }, { "posteriors": "curve_16", "x": 0.7252747252747253, "y": 1.1477284555803977 }, { "posteriors": "curve_16", "x": 0.7307692307692307, "y": 1.1545599764984602 }, { "posteriors": "curve_16", "x": 0.7362637362637363, "y": 1.1613805307988825 }, { "posteriors": "curve_16", "x": 0.7417582417582418, "y": 1.1681902177319454 }, { "posteriors": "curve_16", "x": 0.7472527472527473, "y": 1.1749891349217092 }, { "posteriors": "curve_16", "x": 0.7527472527472527, "y": 1.181777378404412 }, { "posteriors": "curve_16", "x": 0.7582417582417582, "y": 1.1885550426656888 }, { "posteriors": "curve_16", "x": 0.7637362637362637, "y": 1.195322220676653 }, { "posteriors": "curve_16", "x": 0.7692307692307693, "y": 1.202079003928888 }, { "posteriors": "curve_16", "x": 0.7747252747252747, "y": 1.2088254824683837 }, { "posteriors": "curve_16", "x": 0.7802197802197802, "y": 1.2155617449284608 }, { "posteriors": "curve_16", "x": 0.7857142857142857, "y": 1.2222878785617184 }, { "posteriors": "curve_16", "x": 0.7912087912087912, "y": 1.2290039692710422 }, { "posteriors": "curve_16", "x": 0.7967032967032966, "y": 1.2357101016397032 }, { "posteriors": "curve_16", "x": 0.8021978021978022, "y": 1.2424063589605854 }, { "posteriors": "curve_16", "x": 0.8076923076923077, "y": 1.2490928232645677 }, { "posteriors": "curve_16", "x": 0.8131868131868132, "y": 1.2557695753480962 }, { "posteriors": "curve_16", "x": 0.8186813186813187, "y": 1.2624366947999692 }, { "posteriors": "curve_16", "x": 0.8241758241758241, "y": 1.2690942600273654 }, { "posteriors": "curve_16", "x": 0.8296703296703297, "y": 1.2757423482811432 }, { "posteriors": "curve_16", "x": 0.8351648351648352, "y": 1.2823810356804333 }, { "posteriors": "curve_16", "x": 0.8406593406593407, "y": 1.2890103972365496 }, { "posteriors": "curve_16", "x": 0.8461538461538461, "y": 1.2956305068762441 }, { "posteriors": "curve_16", "x": 0.8516483516483516, "y": 1.3022414374643225 }, { "posteriors": "curve_16", "x": 0.8571428571428571, "y": 1.3088432608256493 }, { "posteriors": "curve_16", "x": 0.8626373626373627, "y": 1.3154360477665548 }, { "posteriors": "curve_16", "x": 0.8681318681318682, "y": 1.3220198680956723 }, { "posteriors": "curve_16", "x": 0.8736263736263736, "y": 1.3285947906442162 }, { "posteriors": "curve_16", "x": 0.8791208791208791, "y": 1.3351608832857256 }, { "posteriors": "curve_16", "x": 0.8846153846153846, "y": 1.341718212955287 }, { "posteriors": "curve_16", "x": 0.8901098901098901, "y": 1.3482668456682532 }, { "posteriors": "curve_16", "x": 0.8956043956043956, "y": 1.35480684653848 }, { "posteriors": "curve_16", "x": 0.9010989010989011, "y": 1.3613382797960851 }, { "posteriors": "curve_16", "x": 0.9065934065934066, "y": 1.3678612088047573 }, { "posteriors": "curve_16", "x": 0.9120879120879121, "y": 1.3743756960786198 }, { "posteriors": "curve_16", "x": 0.9175824175824175, "y": 1.380881803298668 }, { "posteriors": "curve_16", "x": 0.9230769230769231, "y": 1.3873795913287912 }, { "posteriors": "curve_16", "x": 0.9285714285714286, "y": 1.3938691202313938 }, { "posteriors": "curve_16", "x": 0.9340659340659341, "y": 1.4003504492826269 }, { "posteriors": "curve_16", "x": 0.9395604395604396, "y": 1.4068236369872429 }, { "posteriors": "curve_16", "x": 0.945054945054945, "y": 1.4132887410930832 }, { "posteriors": "curve_16", "x": 0.9505494505494505, "y": 1.4197458186052132 }, { "posteriors": "curve_16", "x": 0.9560439560439561, "y": 1.4261949257997106 }, { "posteriors": "curve_16", "x": 0.9615384615384616, "y": 1.4326361182371217 }, { "posteriors": "curve_16", "x": 0.967032967032967, "y": 1.4390694507755943 }, { "posteriors": "curve_16", "x": 0.9725274725274725, "y": 1.4454949775836956 }, { "posteriors": "curve_16", "x": 0.978021978021978, "y": 1.4519127521529243 }, { "posteriors": "curve_16", "x": 0.9835164835164835, "y": 1.458322827309928 }, { "posteriors": "curve_16", "x": 0.989010989010989, "y": 1.4647252552284327 }, { "posteriors": "curve_16", "x": 0.9945054945054945, "y": 1.4711200874408932 }, { "posteriors": "curve_17", "x": 0, "y": 0 }, { "posteriors": "curve_17", "x": 0.005494505494505495, "y": 0.026287999515986763 }, { "posteriors": "curve_17", "x": 0.01098901098901099, "y": 0.044807656521324686 }, { "posteriors": "curve_17", "x": 0.016483516483516484, "y": 0.06121057243258492 }, { "posteriors": "curve_17", "x": 0.02197802197802198, "y": 0.0763742437575759 }, { "posteriors": "curve_17", "x": 0.027472527472527472, "y": 0.09067838175237553 }, { "posteriors": "curve_17", "x": 0.03296703296703297, "y": 0.10433286501565041 }, { "posteriors": "curve_17", "x": 0.038461538461538464, "y": 0.11746974820248891 }, { "posteriors": "curve_17", "x": 0.04395604395604396, "y": 0.13017920512682002 }, { "posteriors": "curve_17", "x": 0.04945054945054945, "y": 0.14252640925553078 }, { "posteriors": "curve_17", "x": 0.054945054945054944, "y": 0.15456047847988874 }, { "posteriors": "curve_17", "x": 0.06043956043956044, "y": 0.1663196413556577 }, { "posteriors": "curve_17", "x": 0.06593406593406594, "y": 0.1778344212409164 }, { "posteriors": "curve_17", "x": 0.07142857142857142, "y": 0.1891297012352065 }, { "posteriors": "curve_17", "x": 0.07692307692307693, "y": 0.2002261193706525 }, { "posteriors": "curve_17", "x": 0.08241758241758242, "y": 0.21114104368983674 }, { "posteriors": "curve_17", "x": 0.08791208791208792, "y": 0.22188927331630273 }, { "posteriors": "curve_17", "x": 0.09340659340659341, "y": 0.23248355483816519 }, { "posteriors": "curve_17", "x": 0.0989010989010989, "y": 0.24293497066050346 }, { "posteriors": "curve_17", "x": 0.1043956043956044, "y": 0.25325323641757397 }, { "posteriors": "curve_17", "x": 0.10989010989010989, "y": 0.2634469324030072 }, { "posteriors": "curve_17", "x": 0.11538461538461539, "y": 0.27352368622090095 }, { "posteriors": "curve_17", "x": 0.12087912087912088, "y": 0.2834903187700579 }, { "posteriors": "curve_17", "x": 0.12637362637362637, "y": 0.2933529622523895 }, { "posteriors": "curve_17", "x": 0.13186813186813187, "y": 0.3031171565483971 }, { "posteriors": "curve_17", "x": 0.13736263736263737, "y": 0.31278792866034116 }, { "posteriors": "curve_17", "x": 0.14285714285714285, "y": 0.322369858755294 }, { "posteriors": "curve_17", "x": 0.14835164835164835, "y": 0.33186713549604363 }, { "posteriors": "curve_17", "x": 0.15384615384615385, "y": 0.34128360272914376 }, { "posteriors": "curve_17", "x": 0.15934065934065933, "y": 0.35062279914012534 }, { "posteriors": "curve_17", "x": 0.16483516483516483, "y": 0.3598879921408538 }, { "posteriors": "curve_17", "x": 0.17032967032967034, "y": 0.36908220699195443 }, { "posteriors": "curve_17", "x": 0.17582417582417584, "y": 0.3782082519621511 }, { "posteriors": "curve_17", "x": 0.1813186813186813, "y": 0.3872687401706188 }, { "posteriors": "curve_17", "x": 0.18681318681318682, "y": 0.3962661086367581 }, { "posteriors": "curve_17", "x": 0.19230769230769232, "y": 0.40520263496592196 }, { "posteriors": "curve_17", "x": 0.1978021978021978, "y": 0.41408045202352206 }, { "posteriors": "curve_17", "x": 0.2032967032967033, "y": 0.4229015608890839 }, { "posteriors": "curve_17", "x": 0.2087912087912088, "y": 0.4316678423328302 }, { "posteriors": "curve_17", "x": 0.21428571428571427, "y": 0.4403810670176894 }, { "posteriors": "curve_17", "x": 0.21978021978021978, "y": 0.44904290459727997 }, { "posteriors": "curve_17", "x": 0.22527472527472528, "y": 0.4576549318539126 }, { "posteriors": "curve_17", "x": 0.23076923076923078, "y": 0.4662186399988097 }, { "posteriors": "curve_17", "x": 0.23626373626373626, "y": 0.4747354412386521 }, { "posteriors": "curve_17", "x": 0.24175824175824176, "y": 0.4832066746975056 }, { "posteriors": "curve_17", "x": 0.24725274725274726, "y": 0.49163361177059894 }, { "posteriors": "curve_17", "x": 0.25274725274725274, "y": 0.5000174609758545 }, { "posteriors": "curve_17", "x": 0.25824175824175827, "y": 0.5083593723601664 }, { "posteriors": "curve_17", "x": 0.26373626373626374, "y": 0.516660441509878 }, { "posteriors": "curve_17", "x": 0.2692307692307692, "y": 0.5249217132085058 }, { "posteriors": "curve_17", "x": 0.27472527472527475, "y": 0.5331441847792916 }, { "posteriors": "curve_17", "x": 0.2802197802197802, "y": 0.5413288091454902 }, { "posteriors": "curve_17", "x": 0.2857142857142857, "y": 0.5494764976372895 }, { "posteriors": "curve_17", "x": 0.29120879120879123, "y": 0.5575881225707996 }, { "posteriors": "curve_17", "x": 0.2967032967032967, "y": 0.565664519621567 }, { "posteriors": "curve_17", "x": 0.3021978021978022, "y": 0.5737064900124789 }, { "posteriors": "curve_17", "x": 0.3076923076923077, "y": 0.5817148025336795 }, { "posteriors": "curve_17", "x": 0.3131868131868132, "y": 0.5896901954101615 }, { "posteriors": "curve_17", "x": 0.31868131868131866, "y": 0.597633378030988 }, { "posteriors": "curve_17", "x": 0.3241758241758242, "y": 0.6055450325526001 }, { "posteriors": "curve_17", "x": 0.32967032967032966, "y": 0.613425815387355 }, { "posteriors": "curve_17", "x": 0.33516483516483514, "y": 0.6212763585872861 }, { "posteriors": "curve_17", "x": 0.34065934065934067, "y": 0.6290972711320512 }, { "posteriors": "curve_17", "x": 0.34615384615384615, "y": 0.636889140129141 }, { "posteriors": "curve_17", "x": 0.3516483516483517, "y": 0.6446525319336216 }, { "posteriors": "curve_17", "x": 0.35714285714285715, "y": 0.6523879931939748 }, { "posteriors": "curve_17", "x": 0.3626373626373626, "y": 0.6600960518299774 }, { "posteriors": "curve_17", "x": 0.36813186813186816, "y": 0.6677772179479937 }, { "posteriors": "curve_17", "x": 0.37362637362637363, "y": 0.6754319846985626 }, { "posteriors": "curve_17", "x": 0.3791208791208791, "y": 0.6830608290807105 }, { "posteriors": "curve_17", "x": 0.38461538461538464, "y": 0.6906642126970237 }, { "posteriors": "curve_17", "x": 0.3901098901098901, "y": 0.6982425824631506 }, { "posteriors": "curve_17", "x": 0.3956043956043956, "y": 0.7057963712750923 }, { "posteriors": "curve_17", "x": 0.4010989010989011, "y": 0.7133259986373386 }, { "posteriors": "curve_17", "x": 0.4065934065934066, "y": 0.7208318712546529 }, { "posteriors": "curve_17", "x": 0.41208791208791207, "y": 0.7283143835900722 }, { "posteriors": "curve_17", "x": 0.4175824175824176, "y": 0.7357739183914755 }, { "posteriors": "curve_17", "x": 0.4230769230769231, "y": 0.7432108471888792 }, { "posteriors": "curve_17", "x": 0.42857142857142855, "y": 0.750625530764447 }, { "posteriors": "curve_17", "x": 0.4340659340659341, "y": 0.7580183195970422 }, { "posteriors": "curve_17", "x": 0.43956043956043955, "y": 0.7653895542830024 }, { "posteriors": "curve_17", "x": 0.44505494505494503, "y": 0.7727395659346937 }, { "posteriors": "curve_17", "x": 0.45054945054945056, "y": 0.780068676558275 }, { "posteriors": "curve_17", "x": 0.45604395604395603, "y": 0.7873771994119958 }, { "posteriors": "curve_17", "x": 0.46153846153846156, "y": 0.7946654393462561 }, { "posteriors": "curve_17", "x": 0.46703296703296704, "y": 0.8019336931265595 }, { "posteriors": "curve_17", "x": 0.4725274725274725, "y": 0.8091822497404122 }, { "posteriors": "curve_17", "x": 0.47802197802197804, "y": 0.8164113906891446 }, { "posteriors": "curve_17", "x": 0.4835164835164835, "y": 0.8236213902655567 }, { "posteriors": "curve_17", "x": 0.489010989010989, "y": 0.8308125158182342 }, { "posteriors": "curve_17", "x": 0.4945054945054945, "y": 0.8379850280033144 }, { "posteriors": "curve_17", "x": 0.5, "y": 0.84513918102443 }, { "posteriors": "curve_17", "x": 0.5054945054945055, "y": 0.8522752228615127 }, { "posteriors": "curve_17", "x": 0.510989010989011, "y": 0.8593933954890864 }, { "posteriors": "curve_17", "x": 0.5164835164835165, "y": 0.8664939350846419 }, { "posteriors": "curve_17", "x": 0.521978021978022, "y": 0.873577072227642 }, { "posteriors": "curve_17", "x": 0.5274725274725275, "y": 0.8806430320896781 }, { "posteriors": "curve_17", "x": 0.532967032967033, "y": 0.8876920346162518 }, { "posteriors": "curve_17", "x": 0.5384615384615384, "y": 0.8947242947006402 }, { "posteriors": "curve_17", "x": 0.5439560439560439, "y": 0.9017400223502615 }, { "posteriors": "curve_17", "x": 0.5494505494505495, "y": 0.9087394228459399 }, { "posteriors": "curve_17", "x": 0.554945054945055, "y": 0.9157226968944387 }, { "posteriors": "curve_17", "x": 0.5604395604395604, "y": 0.9226900407746135 }, { "posteriors": "curve_17", "x": 0.5659340659340659, "y": 0.9296416464775061 }, { "posteriors": "curve_17", "x": 0.5714285714285714, "y": 0.9365777018406931 }, { "posteriors": "curve_17", "x": 0.5769230769230769, "y": 0.9434983906771737 }, { "posteriors": "curve_17", "x": 0.5824175824175825, "y": 0.9504038928990695 }, { "posteriors": "curve_17", "x": 0.5879120879120879, "y": 0.957294384636393 }, { "posteriors": "curve_17", "x": 0.5934065934065934, "y": 0.9641700383511247 }, { "posteriors": "curve_17", "x": 0.5989010989010989, "y": 0.9710310229468245 }, { "posteriors": "curve_17", "x": 0.6043956043956044, "y": 0.9778775038739957 }, { "posteriors": "curve_17", "x": 0.6098901098901099, "y": 0.9847096432313982 }, { "posteriors": "curve_17", "x": 0.6153846153846154, "y": 0.9915275998635044 }, { "posteriors": "curve_17", "x": 0.6208791208791209, "y": 0.9983315294542789 }, { "posteriors": "curve_17", "x": 0.6263736263736264, "y": 1.005121584617449 }, { "posteriors": "curve_17", "x": 0.6318681318681318, "y": 1.0118979149834284 }, { "posteriors": "curve_17", "x": 0.6373626373626373, "y": 1.0186606672830474 }, { "posteriors": "curve_17", "x": 0.6428571428571429, "y": 1.0254099854282301 }, { "posteriors": "curve_17", "x": 0.6483516483516484, "y": 1.03214601058976 }, { "posteriors": "curve_17", "x": 0.6538461538461539, "y": 1.0388688812722562 }, { "posteriors": "curve_17", "x": 0.6593406593406593, "y": 1.0455787333864908 }, { "posteriors": "curve_17", "x": 0.6648351648351648, "y": 1.0522757003191556 }, { "posteriors": "curve_17", "x": 0.6703296703296703, "y": 1.058959913000193 }, { "posteriors": "curve_17", "x": 0.6758241758241759, "y": 1.0656314999677945 }, { "posteriors": "curve_17", "x": 0.6813186813186813, "y": 1.0722905874311646 }, { "posteriors": "curve_17", "x": 0.6868131868131868, "y": 1.0789372993311455 }, { "posteriors": "curve_17", "x": 0.6923076923076923, "y": 1.085571757398793 }, { "posteriors": "curve_17", "x": 0.6978021978021978, "y": 1.092194081211985 }, { "posteriors": "curve_17", "x": 0.7032967032967034, "y": 1.0988043882501475 }, { "posteriors": "curve_17", "x": 0.7087912087912088, "y": 1.105402793947172 }, { "posteriors": "curve_17", "x": 0.7142857142857143, "y": 1.111989411742602 }, { "posteriors": "curve_17", "x": 0.7197802197802198, "y": 1.1185643531311507 }, { "posteriors": "curve_17", "x": 0.7252747252747253, "y": 1.1251277277106237 }, { "posteriors": "curve_17", "x": 0.7307692307692307, "y": 1.131679643228307 }, { "posteriors": "curve_17", "x": 0.7362637362637363, "y": 1.1382202056258794 }, { "posteriors": "curve_17", "x": 0.7417582417582418, "y": 1.1447495190829087 }, { "posteriors": "curve_17", "x": 0.7472527472527473, "y": 1.1512676860589857 }, { "posteriors": "curve_17", "x": 0.7527472527472527, "y": 1.15777480733455 }, { "posteriors": "curve_17", "x": 0.7582417582417582, "y": 1.164270982050453 }, { "posteriors": "curve_17", "x": 0.7637362637362637, "y": 1.1707563077463126 }, { "posteriors": "curve_17", "x": 0.7692307692307693, "y": 1.1772308803976985 }, { "posteriors": "curve_17", "x": 0.7747252747252747, "y": 1.1836947944521956 }, { "posteriors": "curve_17", "x": 0.7802197802197802, "y": 1.1901481428643879 }, { "posteriors": "curve_17", "x": 0.7857142857142857, "y": 1.196591017129798 }, { "posteriors": "curve_17", "x": 0.7912087912087912, "y": 1.2030235073178253 }, { "posteriors": "curve_17", "x": 0.7967032967032966, "y": 1.2094457021037166 }, { "posteriors": "curve_17", "x": 0.8021978021978022, "y": 1.2158576887996047 }, { "posteriors": "curve_17", "x": 0.8076923076923077, "y": 1.2222595533846476 }, { "posteriors": "curve_17", "x": 0.8131868131868132, "y": 1.228651380534303 }, { "posteriors": "curve_17", "x": 0.8186813186813187, "y": 1.2350332536487627 }, { "posteriors": "curve_17", "x": 0.8241758241758241, "y": 1.2414052548805858 }, { "posteriors": "curve_17", "x": 0.8296703296703297, "y": 1.2477674651615471 }, { "posteriors": "curve_17", "x": 0.8351648351648352, "y": 1.2541199642287384 }, { "posteriors": "curve_17", "x": 0.8406593406593407, "y": 1.2604628306499412 }, { "posteriors": "curve_17", "x": 0.8461538461538461, "y": 1.2667961418483005 }, { "posteriors": "curve_17", "x": 0.8516483516483516, "y": 1.2731199741263182 }, { "posteriors": "curve_17", "x": 0.8571428571428571, "y": 1.279434402689195 }, { "posteriors": "curve_17", "x": 0.8626373626373627, "y": 1.2857395016675397 }, { "posteriors": "curve_17", "x": 0.8681318681318682, "y": 1.2920353441394625 }, { "posteriors": "curve_17", "x": 0.8736263736263736, "y": 1.2983220021520847 }, { "posteriors": "curve_17", "x": 0.8791208791208791, "y": 1.3045995467424685 }, { "posteriors": "curve_17", "x": 0.8846153846153846, "y": 1.3108680479580002 }, { "posteriors": "curve_17", "x": 0.8901098901098901, "y": 1.3171275748762348 }, { "posteriors": "curve_17", "x": 0.8956043956043956, "y": 1.3233781956242228 }, { "posteriors": "curve_17", "x": 0.9010989010989011, "y": 1.329619977397336 }, { "posteriors": "curve_17", "x": 0.9065934065934066, "y": 1.3358529864776105 }, { "posteriors": "curve_17", "x": 0.9120879120879121, "y": 1.3420772882516148 }, { "posteriors": "curve_17", "x": 0.9175824175824175, "y": 1.348292947227867 }, { "posteriors": "curve_17", "x": 0.9230769230769231, "y": 1.3545000270538101 }, { "posteriors": "curve_17", "x": 0.9285714285714286, "y": 1.3606985905323572 }, { "posteriors": "curve_17", "x": 0.9340659340659341, "y": 1.3668886996380283 }, { "posteriors": "curve_17", "x": 0.9395604395604396, "y": 1.3730704155326803 }, { "posteriors": "curve_17", "x": 0.945054945054945, "y": 1.379243798580851 }, { "posteriors": "curve_17", "x": 0.9505494505494505, "y": 1.3854089083647265 }, { "posteriors": "curve_17", "x": 0.9560439560439561, "y": 1.39156580369874 }, { "posteriors": "curve_17", "x": 0.9615384615384616, "y": 1.3977145426438176 }, { "posteriors": "curve_17", "x": 0.967032967032967, "y": 1.403855182521282 }, { "posteriors": "curve_17", "x": 0.9725274725274725, "y": 1.4099877799264176 }, { "posteriors": "curve_17", "x": 0.978021978021978, "y": 1.4161123907417152 }, { "posteriors": "curve_17", "x": 0.9835164835164835, "y": 1.4222290701498008 }, { "posteriors": "curve_17", "x": 0.989010989010989, "y": 1.4283378726460587 }, { "posteriors": "curve_17", "x": 0.9945054945054945, "y": 1.4344388520509592 }, { "posteriors": "curve_18", "x": 0, "y": 0 }, { "posteriors": "curve_18", "x": 0.005494505494505495, "y": 0.025879896581749537 }, { "posteriors": "curve_18", "x": 0.01098901098901099, "y": 0.04458753192976924 }, { "posteriors": "curve_18", "x": 0.016483516483516484, "y": 0.06129306636632765 }, { "posteriors": "curve_18", "x": 0.02197802197802198, "y": 0.07681823601220106 }, { "posteriors": "curve_18", "x": 0.027472527472527472, "y": 0.091520868193234 }, { "posteriors": "curve_18", "x": 0.03296703296703297, "y": 0.10559959330012704 }, { "posteriors": "curve_18", "x": 0.038461538461538464, "y": 0.11917980062849712 }, { "posteriors": "curve_18", "x": 0.04395604395604396, "y": 0.13234734304919768 }, { "posteriors": "curve_18", "x": 0.04945054945054945, "y": 0.1451644125671029 }, { "posteriors": "curve_18", "x": 0.054945054945054944, "y": 0.15767797293609428 }, { "posteriors": "curve_18", "x": 0.06043956043956044, "y": 0.1699246401709515 }, { "posteriors": "curve_18", "x": 0.06593406593406594, "y": 0.1819336960318626 }, { "posteriors": "curve_18", "x": 0.07142857142857142, "y": 0.19372904544790248 }, { "posteriors": "curve_18", "x": 0.07692307692307693, "y": 0.2053305409904159 }, { "posteriors": "curve_18", "x": 0.08241758241758242, "y": 0.21675490975600323 }, { "posteriors": "curve_18", "x": 0.08791208791208792, "y": 0.2280164205983585 }, { "posteriors": "curve_18", "x": 0.09340659340659341, "y": 0.23912737614228882 }, { "posteriors": "curve_18", "x": 0.0989010989010989, "y": 0.25009848319742933 }, { "posteriors": "curve_18", "x": 0.1043956043956044, "y": 0.26093913671124136 }, { "posteriors": "curve_18", "x": 0.10989010989010989, "y": 0.2716576409299592 }, { "posteriors": "curve_18", "x": 0.11538461538461539, "y": 0.28226138409685814 }, { "posteriors": "curve_18", "x": 0.12087912087912088, "y": 0.29275697819518326 }, { "posteriors": "curve_18", "x": 0.12637362637362637, "y": 0.3031503719995925 }, { "posteriors": "curve_18", "x": 0.13186813186813187, "y": 0.313446943472029 }, { "posteriors": "curve_18", "x": 0.13736263736263737, "y": 0.3236515759784799 }, { "posteriors": "curve_18", "x": 0.14285714285714285, "y": 0.3337687216927869 }, { "posteriors": "curve_18", "x": 0.14835164835164835, "y": 0.3438024547508803 }, { "posteriors": "curve_18", "x": 0.15384615384615385, "y": 0.35375651613009845 }, { "posteriors": "curve_18", "x": 0.15934065934065933, "y": 0.36363435179094733 }, { "posteriors": "curve_18", "x": 0.16483516483516483, "y": 0.373439145289919 }, { "posteriors": "curve_18", "x": 0.17032967032967034, "y": 0.3831738458221581 }, { "posteriors": "curve_18", "x": 0.17582417582417584, "y": 0.39284119246096744 }, { "posteriors": "curve_18", "x": 0.1813186813186813, "y": 0.4024437352124992 }, { "posteriors": "curve_18", "x": 0.18681318681318682, "y": 0.41198385338777344 }, { "posteriors": "curve_18", "x": 0.19230769230769232, "y": 0.4214637717025693 }, { "posteriors": "curve_18", "x": 0.1978021978021978, "y": 0.43088557444298664 }, { "posteriors": "curve_18", "x": 0.2032967032967033, "y": 0.44025121797627537 }, { "posteriors": "curve_18", "x": 0.2087912087912088, "y": 0.4495625418396617 }, { "posteriors": "curve_18", "x": 0.21428571428571427, "y": 0.45882127860191274 }, { "posteriors": "curve_18", "x": 0.21978021978021978, "y": 0.46802906266140526 }, { "posteriors": "curve_18", "x": 0.22527472527472528, "y": 0.47718743811907255 }, { "posteriors": "curve_18", "x": 0.23076923076923078, "y": 0.48629786584366347 }, { "posteriors": "curve_18", "x": 0.23626373626373626, "y": 0.49536172982940657 }, { "posteriors": "curve_18", "x": 0.24175824175824176, "y": 0.5043803429317282 }, { "posteriors": "curve_18", "x": 0.24725274725274726, "y": 0.513354952054601 }, { "posteriors": "curve_18", "x": 0.25274725274725274, "y": 0.5222867428529535 }, { "posteriors": "curve_18", "x": 0.25824175824175827, "y": 0.5311768440050172 }, { "posteriors": "curve_18", "x": 0.26373626373626374, "y": 0.5400263311022425 }, { "posteriors": "curve_18", "x": 0.2692307692307692, "y": 0.5488362301982628 }, { "posteriors": "curve_18", "x": 0.27472527472527475, "y": 0.5576075210531252 }, { "posteriors": "curve_18", "x": 0.2802197802197802, "y": 0.5663411401045201 }, { "posteriors": "curve_18", "x": 0.2857142857142857, "y": 0.5750379831938782 }, { "posteriors": "curve_18", "x": 0.29120879120879123, "y": 0.583698908071876 }, { "posteriors": "curve_18", "x": 0.2967032967032967, "y": 0.5923247367050191 }, { "posteriors": "curve_18", "x": 0.3021978021978022, "y": 0.6009162574024877 }, { "posteriors": "curve_18", "x": 0.3076923076923077, "y": 0.6094742267802522 }, { "posteriors": "curve_18", "x": 0.3131868131868132, "y": 0.6179993715775949 }, { "posteriors": "curve_18", "x": 0.31868131868131866, "y": 0.6264923903395186 }, { "posteriors": "curve_18", "x": 0.3241758241758242, "y": 0.6349539549770817 }, { "posteriors": "curve_18", "x": 0.32967032967032966, "y": 0.6433847122164338 }, { "posteriors": "curve_18", "x": 0.33516483516483514, "y": 0.6517852849462129 }, { "posteriors": "curve_18", "x": 0.34065934065934067, "y": 0.6601562734719776 }, { "posteriors": "curve_18", "x": 0.34615384615384615, "y": 0.6684982566854857 }, { "posteriors": "curve_18", "x": 0.3516483516483517, "y": 0.6768117931558558 }, { "posteriors": "curve_18", "x": 0.35714285714285715, "y": 0.6850974221489691 }, { "posteriors": "curve_18", "x": 0.3626373626373626, "y": 0.6933556645808612 }, { "posteriors": "curve_18", "x": 0.36813186813186816, "y": 0.7015870239103111 }, { "posteriors": "curve_18", "x": 0.37362637362637363, "y": 0.7097919869753557 }, { "posteriors": "curve_18", "x": 0.3791208791208791, "y": 0.7179710247780218 }, { "posteriors": "curve_18", "x": 0.38461538461538464, "y": 0.7261245932211875 }, { "posteriors": "curve_18", "x": 0.3901098901098901, "y": 0.7342531338011311 }, { "posteriors": "curve_18", "x": 0.3956043956043956, "y": 0.7423570742590211 }, { "posteriors": "curve_18", "x": 0.4010989010989011, "y": 0.7504368291943156 }, { "posteriors": "curve_18", "x": 0.4065934065934066, "y": 0.7584928006427899 }, { "posteriors": "curve_18", "x": 0.41208791208791207, "y": 0.7665253786216806 }, { "posteriors": "curve_18", "x": 0.4175824175824176, "y": 0.774534941644232 }, { "posteriors": "curve_18", "x": 0.4230769230769231, "y": 0.7825218572057393 }, { "posteriors": "curve_18", "x": 0.42857142857142855, "y": 0.7904864822430192 }, { "posteriors": "curve_18", "x": 0.4340659340659341, "y": 0.798429163569081 }, { "posteriors": "curve_18", "x": 0.43956043956043955, "y": 0.806350238284632 }, { "posteriors": "curve_18", "x": 0.44505494505494503, "y": 0.8142500341679304 }, { "posteriors": "curve_18", "x": 0.45054945054945056, "y": 0.8221288700443711 }, { "posteriors": "curve_18", "x": 0.45604395604395603, "y": 0.8299870561370991 }, { "posteriors": "curve_18", "x": 0.46153846153846156, "y": 0.837824894399836 }, { "posteriors": "curve_18", "x": 0.46703296703296704, "y": 0.8456426788330241 }, { "posteriors": "curve_18", "x": 0.4725274725274725, "y": 0.8534406957843129 }, { "posteriors": "curve_18", "x": 0.47802197802197804, "y": 0.8612192242343321 }, { "posteriors": "curve_18", "x": 0.4835164835164835, "y": 0.8689785360686352 }, { "posteriors": "curve_18", "x": 0.489010989010989, "y": 0.8767188963366334 }, { "posteriors": "curve_18", "x": 0.4945054945054945, "y": 0.8844405634982765 }, { "posteriors": "curve_18", "x": 0.5, "y": 0.8921437896591949 }, { "posteriors": "curve_18", "x": 0.5054945054945055, "y": 0.8998288207949616 }, { "posteriors": "curve_18", "x": 0.510989010989011, "y": 0.9074958969650888 }, { "posteriors": "curve_18", "x": 0.5164835164835165, "y": 0.9151452525173374 }, { "posteriors": "curve_18", "x": 0.521978021978022, "y": 0.9227771162828718 }, { "posteriors": "curve_18", "x": 0.5274725274725275, "y": 0.9303917117627684 }, { "posteriors": "curve_18", "x": 0.532967032967033, "y": 0.937989257306339 }, { "posteriors": "curve_18", "x": 0.5384615384615384, "y": 0.9455699662817165 }, { "posteriors": "curve_18", "x": 0.5439560439560439, "y": 0.9531340472391087 }, { "posteriors": "curve_18", "x": 0.5494505494505495, "y": 0.9606817040671088 }, { "posteriors": "curve_18", "x": 0.554945054945055, "y": 0.9682131361424239 }, { "posteriors": "curve_18", "x": 0.5604395604395604, "y": 0.9757285384733607 }, { "posteriors": "curve_18", "x": 0.5659340659340659, "y": 0.9832281018373872 }, { "posteriors": "curve_18", "x": 0.5714285714285714, "y": 0.9907120129130697 }, { "posteriors": "curve_18", "x": 0.5769230769230769, "y": 0.9981804544066688 }, { "posteriors": "curve_18", "x": 0.5824175824175825, "y": 1.0056336051736576 }, { "posteriors": "curve_18", "x": 0.5879120879120879, "y": 1.0130716403354108 }, { "posteriors": "curve_18", "x": 0.5934065934065934, "y": 1.020494731391303 }, { "posteriors": "curve_18", "x": 0.5989010989010989, "y": 1.027903046326436 }, { "posteriors": "curve_18", "x": 0.6043956043956044, "y": 1.0352967497152015 }, { "posteriors": "curve_18", "x": 0.6098901098901099, "y": 1.0426760028208824 }, { "posteriors": "curve_18", "x": 0.6153846153846154, "y": 1.0500409636914718 }, { "posteriors": "curve_18", "x": 0.6208791208791209, "y": 1.0573917872518919 }, { "posteriors": "curve_18", "x": 0.6263736263736264, "y": 1.064728625392774 }, { "posteriors": "curve_18", "x": 0.6318681318681318, "y": 1.0720516270559597 }, { "posteriors": "curve_18", "x": 0.6373626373626373, "y": 1.07936093831687 }, { "posteriors": "curve_18", "x": 0.6428571428571429, "y": 1.086656702463886 }, { "posteriors": "curve_18", "x": 0.6483516483516484, "y": 1.0939390600748684 }, { "posteriors": "curve_18", "x": 0.6538461538461539, "y": 1.1012081490909502 }, { "posteriors": "curve_18", "x": 0.6593406593406593, "y": 1.108464104887715 }, { "posteriors": "curve_18", "x": 0.6648351648351648, "y": 1.1157070603438775 }, { "posteriors": "curve_18", "x": 0.6703296703296703, "y": 1.122937145907574 }, { "posteriors": "curve_18", "x": 0.6758241758241759, "y": 1.1301544896603655 }, { "posteriors": "curve_18", "x": 0.6813186813186813, "y": 1.1373592173790452 }, { "posteriors": "curve_18", "x": 0.6868131868131868, "y": 1.1445514525953517 }, { "posteriors": "curve_18", "x": 0.6923076923076923, "y": 1.1517313166536685 }, { "posteriors": "curve_18", "x": 0.6978021978021978, "y": 1.1588989287667908 }, { "posteriors": "curve_18", "x": 0.7032967032967034, "y": 1.16605440606985 }, { "posteriors": "curve_18", "x": 0.7087912087912088, "y": 1.1731978636724574 }, { "posteriors": "curve_18", "x": 0.7142857142857143, "y": 1.1803294147091496 }, { "posteriors": "curve_18", "x": 0.7197802197802198, "y": 1.1874491703881978 }, { "posteriors": "curve_18", "x": 0.7252747252747253, "y": 1.194557240038847 }, { "posteriors": "curve_18", "x": 0.7307692307692307, "y": 1.2016537311570492 }, { "posteriors": "curve_18", "x": 0.7362637362637363, "y": 1.2087387494497492 }, { "posteriors": "curve_18", "x": 0.7417582417582418, "y": 1.215812398877774 }, { "posteriors": "curve_18", "x": 0.7472527472527473, "y": 1.222874781697391 }, { "posteriors": "curve_18", "x": 0.7527472527472527, "y": 1.2299259985005717 }, { "posteriors": "curve_18", "x": 0.7582417582417582, "y": 1.2369661482540233 }, { "posteriors": "curve_18", "x": 0.7637362637362637, "y": 1.2439953283370253 }, { "posteriors": "curve_18", "x": 0.7692307692307693, "y": 1.2510136345781218 }, { "posteriors": "curve_18", "x": 0.7747252747252747, "y": 1.2580211612907082 }, { "posteriors": "curve_18", "x": 0.7802197802197802, "y": 1.2650180013075563 }, { "posteriors": "curve_18", "x": 0.7857142857142857, "y": 1.2720042460143137 }, { "posteriors": "curve_18", "x": 0.7912087912087912, "y": 1.2789799853820185 }, { "posteriors": "curve_18", "x": 0.7967032967032966, "y": 1.2859453079986602 }, { "posteriors": "curve_18", "x": 0.8021978021978022, "y": 1.2929003010998261 }, { "posteriors": "curve_18", "x": 0.8076923076923077, "y": 1.2998450505984624 }, { "posteriors": "curve_18", "x": 0.8131868131868132, "y": 1.3067796411137833 }, { "posteriors": "curve_18", "x": 0.8186813186813187, "y": 1.3137041559993563 }, { "posteriors": "curve_18", "x": 0.8241758241758241, "y": 1.3206186773703934 }, { "posteriors": "curve_18", "x": 0.8296703296703297, "y": 1.327523286130278 }, { "posteriors": "curve_18", "x": 0.8351648351648352, "y": 1.3344180619963488 }, { "posteriors": "curve_18", "x": 0.8406593406593407, "y": 1.341303083524971 }, { "posteriors": "curve_18", "x": 0.8461538461538461, "y": 1.3481784281359186 }, { "posteriors": "curve_18", "x": 0.8516483516483516, "y": 1.3550441721360849 }, { "posteriors": "curve_18", "x": 0.8571428571428571, "y": 1.3619003907425542 }, { "posteriors": "curve_18", "x": 0.8626373626373627, "y": 1.3687471581050474 }, { "posteriors": "curve_18", "x": 0.8681318681318682, "y": 1.3755845473277664 }, { "posteriors": "curve_18", "x": 0.8736263736263736, "y": 1.3824126304906543 }, { "posteriors": "curve_18", "x": 0.8791208791208791, "y": 1.3892314786700957 }, { "posteriors": "curve_18", "x": 0.8846153846153846, "y": 1.3960411619590694 }, { "posteriors": "curve_18", "x": 0.8901098901098901, "y": 1.4028417494867733 }, { "posteriors": "curve_18", "x": 0.8956043956043956, "y": 1.4096333094377427 }, { "posteriors": "curve_18", "x": 0.9010989010989011, "y": 1.4164159090704693 }, { "posteriors": "curve_18", "x": 0.9065934065934066, "y": 1.4231896147355465 }, { "posteriors": "curve_18", "x": 0.9120879120879121, "y": 1.4299544918933491 }, { "posteriors": "curve_18", "x": 0.9175824175824175, "y": 1.4367106051312646 }, { "posteriors": "curve_18", "x": 0.9230769230769231, "y": 1.4434580181804901 }, { "posteriors": "curve_18", "x": 0.9285714285714286, "y": 1.4501967939324083 }, { "posteriors": "curve_18", "x": 0.9340659340659341, "y": 1.4569269944545549 }, { "posteriors": "curve_18", "x": 0.9395604395604396, "y": 1.4636486810061897 }, { "posteriors": "curve_18", "x": 0.945054945054945, "y": 1.4703619140534863 }, { "posteriors": "curve_18", "x": 0.9505494505494505, "y": 1.477066753284347 }, { "posteriors": "curve_18", "x": 0.9560439560439561, "y": 1.4837632576228583 }, { "posteriors": "curve_18", "x": 0.9615384615384616, "y": 1.4904514852433974 }, { "posteriors": "curve_18", "x": 0.967032967032967, "y": 1.4971314935843965 }, { "posteriors": "curve_18", "x": 0.9725274725274725, "y": 1.5038033393617807 }, { "posteriors": "curve_18", "x": 0.978021978021978, "y": 1.5104670785820842 }, { "posteriors": "curve_18", "x": 0.9835164835164835, "y": 1.5171227665552551 }, { "posteriors": "curve_18", "x": 0.989010989010989, "y": 1.5237704579071625 }, { "posteriors": "curve_18", "x": 0.9945054945054945, "y": 1.5304102065918064 }, { "posteriors": "curve_19", "x": 0, "y": 0 }, { "posteriors": "curve_19", "x": 0.005494505494505495, "y": 0.02554649206640321 }, { "posteriors": "curve_19", "x": 0.01098901098901099, "y": 0.043876813077677414 }, { "posteriors": "curve_19", "x": 0.016483516483516484, "y": 0.06020672327754309 }, { "posteriors": "curve_19", "x": 0.02197802197802198, "y": 0.07535965097866747 }, { "posteriors": "curve_19", "x": 0.027472527472527472, "y": 0.08969350841980563 }, { "posteriors": "curve_19", "x": 0.03296703296703297, "y": 0.10340672748343174 }, { "posteriors": "curve_19", "x": 0.038461538461538464, "y": 0.11662445296199599 }, { "posteriors": "curve_19", "x": 0.04395604395604396, "y": 0.12943230369928216 }, { "posteriors": "curve_19", "x": 0.04945054945054945, "y": 0.1418922613091671 }, { "posteriors": "curve_19", "x": 0.054945054945054944, "y": 0.15405110388492513 }, { "posteriors": "curve_19", "x": 0.06043956043956044, "y": 0.16594528422636834 }, { "posteriors": "curve_19", "x": 0.06593406593406594, "y": 0.17760394033636362 }, { "posteriors": "curve_19", "x": 0.07142857142857142, "y": 0.18905084999127256 }, { "posteriors": "curve_19", "x": 0.07692307692307693, "y": 0.20030575272718204 }, { "posteriors": "curve_19", "x": 0.08241758241758242, "y": 0.21138527462739537 }, { "posteriors": "curve_19", "x": 0.08791208791208792, "y": 0.22230359381103698 }, { "posteriors": "curve_19", "x": 0.09340659340659341, "y": 0.23307293100147788 }, { "posteriors": "curve_19", "x": 0.0989010989010989, "y": 0.2437039187395499 }, { "posteriors": "curve_19", "x": 0.1043956043956044, "y": 0.2542058843358415 }, { "posteriors": "curve_19", "x": 0.10989010989010989, "y": 0.2645870701934064 }, { "posteriors": "curve_19", "x": 0.11538461538461539, "y": 0.2748548078000882 }, { "posteriors": "curve_19", "x": 0.12087912087912088, "y": 0.2850156568736114 }, { "posteriors": "curve_19", "x": 0.12637362637362637, "y": 0.2950755179039353 }, { "posteriors": "curve_19", "x": 0.13186813186813187, "y": 0.3050397241132748 }, { "posteriors": "curve_19", "x": 0.13736263736263737, "y": 0.31491311729776844 }, { "posteriors": "curve_19", "x": 0.14285714285714285, "y": 0.32470011090688966 }, { "posteriors": "curve_19", "x": 0.14835164835164835, "y": 0.334404742915791 }, { "posteriors": "curve_19", "x": 0.15384615384615385, "y": 0.34403072045857785 }, { "posteriors": "curve_19", "x": 0.15934065934065933, "y": 0.35358145775439226 }, { "posteriors": "curve_19", "x": 0.16483516483516483, "y": 0.36306010853041487 }, { "posteriors": "curve_19", "x": 0.17032967032967034, "y": 0.37246959389683754 }, { "posteriors": "curve_19", "x": 0.17582417582417584, "y": 0.38181262643768116 }, { "posteriors": "curve_19", "x": 0.1813186813186813, "y": 0.39109173113320017 }, { "posteriors": "curve_19", "x": 0.18681318681318682, "y": 0.40030926361382335 }, { "posteriors": "curve_19", "x": 0.19230769230769232, "y": 0.40946742615432535 }, { "posteriors": "curve_19", "x": 0.1978021978021978, "y": 0.41856828174445393 }, { "posteriors": "curve_19", "x": 0.2032967032967033, "y": 0.42761376651427485 }, { "posteriors": "curve_19", "x": 0.2087912087912088, "y": 0.43660570074581595 }, { "posteriors": "curve_19", "x": 0.21428571428571427, "y": 0.4455457986647711 }, { "posteriors": "curve_19", "x": 0.21978021978021978, "y": 0.45443567717518385 }, { "posteriors": "curve_19", "x": 0.22527472527472528, "y": 0.4632768636747493 }, { "posteriors": "curve_19", "x": 0.23076923076923078, "y": 0.4720708030675369 }, { "posteriors": "curve_19", "x": 0.23626373626373626, "y": 0.4808188640736706 }, { "posteriors": "curve_19", "x": 0.24175824175824176, "y": 0.4895223449211358 }, { "posteriors": "curve_19", "x": 0.24725274725274726, "y": 0.49818247849286423 }, { "posteriors": "curve_19", "x": 0.25274725274725274, "y": 0.5068004369921573 }, { "posteriors": "curve_19", "x": 0.25824175824175827, "y": 0.5153773361809981 }, { "posteriors": "curve_19", "x": 0.26373626373626374, "y": 0.5239142392385951 }, { "posteriors": "curve_19", "x": 0.2692307692307692, "y": 0.5324121602813778 }, { "posteriors": "curve_19", "x": 0.27472527472527475, "y": 0.540872067580443 }, { "posteriors": "curve_19", "x": 0.2802197802197802, "y": 0.5492948865079765 }, { "posteriors": "curve_19", "x": 0.2857142857142857, "y": 0.5576815022403421 }, { "posteriors": "curve_19", "x": 0.29120879120879123, "y": 0.5660327622422182 }, { "posteriors": "curve_19", "x": 0.2967032967032967, "y": 0.574349478553309 }, { "posteriors": "curve_19", "x": 0.3021978021978022, "y": 0.5826324298966818 }, { "posteriors": "curve_19", "x": 0.3076923076923077, "y": 0.5908823636256292 }, { "posteriors": "curve_19", "x": 0.3131868131868132, "y": 0.5990999975240816 }, { "posteriors": "curve_19", "x": 0.31868131868131866, "y": 0.6072860214739629 }, { "posteriors": "curve_19", "x": 0.3241758241758242, "y": 0.6154410990014384 }, { "posteriors": "curve_19", "x": 0.32967032967032966, "y": 0.6235658687127577 }, { "posteriors": "curve_19", "x": 0.33516483516483514, "y": 0.631660945629279 }, { "posteriors": "curve_19", "x": 0.34065934065934067, "y": 0.6397269224302905 }, { "posteriors": "curve_19", "x": 0.34615384615384615, "y": 0.6477643706113767 }, { "posteriors": "curve_19", "x": 0.3516483516483517, "y": 0.6557738415653203 }, { "posteriors": "curve_19", "x": 0.35714285714285715, "y": 0.6637558675918439 }, { "posteriors": "curve_19", "x": 0.3626373626373626, "y": 0.6717109628419013 }, { "posteriors": "curve_19", "x": 0.36813186813186816, "y": 0.6796396242016844 }, { "posteriors": "curve_19", "x": 0.37362637362637363, "y": 0.6875423321210364 }, { "posteriors": "curve_19", "x": 0.3791208791208791, "y": 0.6954195513905337 }, { "posteriors": "curve_19", "x": 0.38461538461538464, "y": 0.7032717318711121 }, { "posteriors": "curve_19", "x": 0.3901098901098901, "y": 0.7110993091797734 }, { "posteriors": "curve_19", "x": 0.3956043956043956, "y": 0.7189027053345944 }, { "posteriors": "curve_19", "x": 0.4010989010989011, "y": 0.7266823293619875 }, { "posteriors": "curve_19", "x": 0.4065934065934066, "y": 0.7344385778689048 }, { "posteriors": "curve_19", "x": 0.41208791208791207, "y": 0.7421718355824597 }, { "posteriors": "curve_19", "x": 0.4175824175824176, "y": 0.7498824758592266 }, { "posteriors": "curve_19", "x": 0.4230769230769231, "y": 0.7575708611663008 }, { "posteriors": "curve_19", "x": 0.42857142857142855, "y": 0.76523734353603 }, { "posteriors": "curve_19", "x": 0.4340659340659341, "y": 0.772882264996177 }, { "posteriors": "curve_19", "x": 0.43956043956043955, "y": 0.7805059579771342 }, { "posteriors": "curve_19", "x": 0.44505494505494503, "y": 0.7881087456976876 }, { "posteriors": "curve_19", "x": 0.45054945054945056, "y": 0.7956909425307076 }, { "posteriors": "curve_19", "x": 0.45604395604395603, "y": 0.8032528543500452 }, { "posteriors": "curve_19", "x": 0.46153846153846156, "y": 0.8107947788598139 }, { "posteriors": "curve_19", "x": 0.46703296703296704, "y": 0.8183170059071498 }, { "posteriors": "curve_19", "x": 0.4725274725274725, "y": 0.8258198177794642 }, { "posteriors": "curve_19", "x": 0.47802197802197804, "y": 0.8333034894871266 }, { "posteriors": "curve_19", "x": 0.4835164835164835, "y": 0.8407682890324547 }, { "posteriors": "curve_19", "x": 0.489010989010989, "y": 0.8482144776658207 }, { "posteriors": "curve_19", "x": 0.4945054945054945, "y": 0.8556423101296278 }, { "posteriors": "curve_19", "x": 0.5, "y": 0.8630520348908611 }, { "posteriors": "curve_19", "x": 0.5054945054945055, "y": 0.8704438943628677 }, { "posteriors": "curve_19", "x": 0.510989010989011, "y": 0.8778181251169753 }, { "posteriors": "curve_19", "x": 0.5164835164835165, "y": 0.8851749580845195 }, { "posteriors": "curve_19", "x": 0.521978021978022, "y": 0.8925146187498113 }, { "posteriors": "curve_19", "x": 0.5274725274725275, "y": 0.8998373273345442 }, { "posteriors": "curve_19", "x": 0.532967032967033, "y": 0.9071432989741035 }, { "posteriors": "curve_19", "x": 0.5384615384615384, "y": 0.9144327438862123 }, { "posteriors": "curve_19", "x": 0.5439560439560439, "y": 0.9217058675323264 }, { "posteriors": "curve_19", "x": 0.5494505494505495, "y": 0.9289628707721548 }, { "posteriors": "curve_19", "x": 0.554945054945055, "y": 0.9362039500116675 }, { "posteriors": "curve_19", "x": 0.5604395604395604, "y": 0.9434292973449263 }, { "posteriors": "curve_19", "x": 0.5659340659340659, "y": 0.9506391006900531 }, { "posteriors": "curve_19", "x": 0.5714285714285714, "y": 0.9578335439196349 }, { "posteriors": "curve_19", "x": 0.5769230769230769, "y": 0.9650128069858408 }, { "posteriors": "curve_19", "x": 0.5824175824175825, "y": 0.9721770660405175 }, { "posteriors": "curve_19", "x": 0.5879120879120879, "y": 0.979326493550508 }, { "posteriors": "curve_19", "x": 0.5934065934065934, "y": 0.986461258408428 }, { "posteriors": "curve_19", "x": 0.5989010989010989, "y": 0.9935815260391156 }, { "posteriors": "curve_19", "x": 0.6043956043956044, "y": 1.0006874585019674 }, { "posteriors": "curve_19", "x": 0.6098901098901099, "y": 1.0077792145893494 }, { "posteriors": "curve_19", "x": 0.6153846153846154, "y": 1.0148569499212725 }, { "posteriors": "curve_19", "x": 0.6208791208791209, "y": 1.0219208170365033 }, { "posteriors": "curve_19", "x": 0.6263736263736264, "y": 1.0289709654802763 }, { "posteriors": "curve_19", "x": 0.6318681318681318, "y": 1.0360075418887613 }, { "posteriors": "curve_19", "x": 0.6373626373626373, "y": 1.043030690070436 }, { "posteriors": "curve_19", "x": 0.6428571428571429, "y": 1.050040551084499 }, { "posteriors": "curve_19", "x": 0.6483516483516484, "y": 1.0570372633164586 }, { "posteriors": "curve_19", "x": 0.6538461538461539, "y": 1.064020962551022 }, { "posteriors": "curve_19", "x": 0.6593406593406593, "y": 1.0709917820423995 }, { "posteriors": "curve_19", "x": 0.6648351648351648, "y": 1.0779498525821412 }, { "posteriors": "curve_19", "x": 0.6703296703296703, "y": 1.0848953025646064 }, { "posteriors": "curve_19", "x": 0.6758241758241759, "y": 1.0918282580501772 }, { "posteriors": "curve_19", "x": 0.6813186813186813, "y": 1.0987488428262966 }, { "posteriors": "curve_19", "x": 0.6868131868131868, "y": 1.1056571784664389 }, { "posteriors": "curve_19", "x": 0.6923076923076923, "y": 1.1125533843870858 }, { "posteriors": "curve_19", "x": 0.6978021978021978, "y": 1.1194375779028 }, { "posteriors": "curve_19", "x": 0.7032967032967034, "y": 1.126309874279467 }, { "posteriors": "curve_19", "x": 0.7087912087912088, "y": 1.133170386785784 }, { "posteriors": "curve_19", "x": 0.7142857142857143, "y": 1.140019226743069 }, { "posteriors": "curve_19", "x": 0.7197802197802198, "y": 1.1468565035734495 }, { "posteriors": "curve_19", "x": 0.7252747252747253, "y": 1.153682324846504 }, { "posteriors": "curve_19", "x": 0.7307692307692307, "y": 1.1604967963244122 }, { "posteriors": "curve_19", "x": 0.7362637362637363, "y": 1.1673000220056737 }, { "posteriors": "curve_19", "x": 0.7417582417582418, "y": 1.174092104167451 }, { "posteriors": "curve_19", "x": 0.7472527472527473, "y": 1.1808731434065918 }, { "posteriors": "curve_19", "x": 0.7527472527472527, "y": 1.1876432386793767 }, { "posteriors": "curve_19", "x": 0.7582417582417582, "y": 1.1944024873400452 }, { "posteriors": "curve_19", "x": 0.7637362637362637, "y": 1.2011509851781448 }, { "posteriors": "curve_19", "x": 0.7692307692307693, "y": 1.207888826454746 }, { "posteriors": "curve_19", "x": 0.7747252747252747, "y": 1.2146161039375678 }, { "posteriors": "curve_19", "x": 0.7802197802197802, "y": 1.2213329089350518 }, { "posteriors": "curve_19", "x": 0.7857142857142857, "y": 1.2280393313294249 }, { "posteriors": "curve_19", "x": 0.7912087912087912, "y": 1.2347354596087874 }, { "posteriors": "curve_19", "x": 0.7967032967032966, "y": 1.2414213808982608 }, { "posteriors": "curve_19", "x": 0.8021978021978022, "y": 1.2480971809902306 }, { "posteriors": "curve_19", "x": 0.8076923076923077, "y": 1.2547629443737147 }, { "posteriors": "curve_19", "x": 0.8131868131868132, "y": 1.2614187542628907 }, { "posteriors": "curve_19", "x": 0.8186813186813187, "y": 1.2680646926248091 }, { "posteriors": "curve_19", "x": 0.8241758241758241, "y": 1.2747008402063222 }, { "posteriors": "curve_19", "x": 0.8296703296703297, "y": 1.2813272765602584 }, { "posteriors": "curve_19", "x": 0.8351648351648352, "y": 1.287944080070861 }, { "posteriors": "curve_19", "x": 0.8406593406593407, "y": 1.294551327978527 }, { "posteriors": "curve_19", "x": 0.8461538461538461, "y": 1.3011490964038588 }, { "posteriors": "curve_19", "x": 0.8516483516483516, "y": 1.3077374603710608 }, { "posteriors": "curve_19", "x": 0.8571428571428571, "y": 1.3143164938306977 }, { "posteriors": "curve_19", "x": 0.8626373626373627, "y": 1.3208862696818386 }, { "posteriors": "curve_19", "x": 0.8681318681318682, "y": 1.3274468597936053 }, { "posteriors": "curve_19", "x": 0.8736263736263736, "y": 1.3339983350261477 }, { "posteriors": "curve_19", "x": 0.8791208791208791, "y": 1.3405407652510588 }, { "posteriors": "curve_19", "x": 0.8846153846153846, "y": 1.347074219371257 }, { "posteriors": "curve_19", "x": 0.8901098901098901, "y": 1.3535987653403427 }, { "posteriors": "curve_19", "x": 0.8956043956043956, "y": 1.3601144701814547 }, { "posteriors": "curve_19", "x": 0.9010989010989011, "y": 1.3666214000056358 }, { "posteriors": "curve_19", "x": 0.9065934065934066, "y": 1.3731196200297286 }, { "posteriors": "curve_19", "x": 0.9120879120879121, "y": 1.3796091945938131 }, { "posteriors": "curve_19", "x": 0.9175824175824175, "y": 1.3860901871782005 }, { "posteriors": "curve_19", "x": 0.9230769230769231, "y": 1.392562660419999 }, { "posteriors": "curve_19", "x": 0.9285714285714286, "y": 1.3990266761292622 }, { "posteriors": "curve_19", "x": 0.9340659340659341, "y": 1.405482295304738 }, { "posteriors": "curve_19", "x": 0.9395604395604396, "y": 1.411929578149222 }, { "posteriors": "curve_19", "x": 0.945054945054945, "y": 1.4183685840845368 }, { "posteriors": "curve_19", "x": 0.9505494505494505, "y": 1.4247993717661402 }, { "posteriors": "curve_19", "x": 0.9560439560439561, "y": 1.4312219990973807 }, { "posteriors": "curve_19", "x": 0.9615384615384616, "y": 1.4376365232434043 }, { "posteriors": "curve_19", "x": 0.967032967032967, "y": 1.4440430006447298 }, { "posteriors": "curve_19", "x": 0.9725274725274725, "y": 1.4504414870304945 }, { "posteriors": "curve_19", "x": 0.978021978021978, "y": 1.4568320374313888 }, { "posteriors": "curve_19", "x": 0.9835164835164835, "y": 1.4632147061922807 }, { "posteriors": "curve_19", "x": 0.989010989010989, "y": 1.4695895469845448 }, { "posteriors": "curve_19", "x": 0.9945054945054945, "y": 1.4759566128181023 }, { "posteriors": "curve_20", "x": 0, "y": 0 }, { "posteriors": "curve_20", "x": 0.005494505494505495, "y": 0.025918134735478274 }, { "posteriors": "curve_20", "x": 0.01098901098901099, "y": 0.04436580054100194 }, { "posteriors": "curve_20", "x": 0.016483516483516484, "y": 0.06075816475244077 }, { "posteriors": "curve_20", "x": 0.02197802197802198, "y": 0.07594390096867619 }, { "posteriors": "curve_20", "x": 0.027472527472527472, "y": 0.09029116781568608 }, { "posteriors": "curve_20", "x": 0.03296703296703297, "y": 0.10400380452356577 }, { "posteriors": "curve_20", "x": 0.038461538461538464, "y": 0.11721023361734505 }, { "posteriors": "curve_20", "x": 0.04395604395604396, "y": 0.12999824243022318 }, { "posteriors": "curve_20", "x": 0.04945054945054945, "y": 0.14243133704492705 }, { "posteriors": "curve_20", "x": 0.054945054945054944, "y": 0.15455741637307846 }, { "posteriors": "curve_20", "x": 0.06043956043956044, "y": 0.16641378616792793 }, { "posteriors": "curve_20", "x": 0.06593406593406594, "y": 0.1780302515628823 }, { "posteriors": "curve_20", "x": 0.07142857142857142, "y": 0.1894311238932952 }, { "posteriors": "curve_20", "x": 0.07692307692307693, "y": 0.2006365774043582 }, { "posteriors": "curve_20", "x": 0.08241758241758242, "y": 0.21166359793346837 }, { "posteriors": "curve_20", "x": 0.08791208791208792, "y": 0.222526665333105 }, { "posteriors": "curve_20", "x": 0.09340659340659341, "y": 0.23323825634461373 }, { "posteriors": "curve_20", "x": 0.0989010989010989, "y": 0.24380922294819019 }, { "posteriors": "curve_20", "x": 0.1043956043956044, "y": 0.2542490822280369 }, { "posteriors": "curve_20", "x": 0.10989010989010989, "y": 0.2645662420125563 }, { "posteriors": "curve_20", "x": 0.11538461538461539, "y": 0.2747681790173898 }, { "posteriors": "curve_20", "x": 0.12087912087912088, "y": 0.28486158127316324 }, { "posteriors": "curve_20", "x": 0.12637362637362637, "y": 0.2948524632946932 }, { "posteriors": "curve_20", "x": 0.13186813186813187, "y": 0.3047462601655267 }, { "posteriors": "curve_20", "x": 0.13736263736263737, "y": 0.31454790511451314 }, { "posteriors": "curve_20", "x": 0.14285714285714285, "y": 0.32426189402447664 }, { "posteriors": "curve_20", "x": 0.14835164835164835, "y": 0.33389233949155206 }, { "posteriors": "curve_20", "x": 0.15384615384615385, "y": 0.343443016451577 }, { "posteriors": "curve_20", "x": 0.15934065934065933, "y": 0.352917400942783 }, { "posteriors": "curve_20", "x": 0.16483516483516483, "y": 0.3623187032380323 }, { "posteriors": "curve_20", "x": 0.17032967032967034, "y": 0.3716498963245823 }, { "posteriors": "curve_20", "x": 0.17582417582417584, "y": 0.3809137405134586 }, { "posteriors": "curve_20", "x": 0.1813186813186813, "y": 0.390112804808746 }, { "posteriors": "curve_20", "x": 0.18681318681318682, "y": 0.3992494855484925 }, { "posteriors": "curve_20", "x": 0.19230769230769232, "y": 0.4083260227354545 }, { "posteriors": "curve_20", "x": 0.1978021978021978, "y": 0.4173445144017026 }, { "posteriors": "curve_20", "x": 0.2032967032967033, "y": 0.4263069292917551 }, { "posteriors": "curve_20", "x": 0.2087912087912088, "y": 0.4352151181011188 }, { "posteriors": "curve_20", "x": 0.21428571428571427, "y": 0.4440708234684028 }, { "posteriors": "curve_20", "x": 0.21978021978021978, "y": 0.45287568888760643 }, { "posteriors": "curve_20", "x": 0.22527472527472528, "y": 0.4616312666813118 }, { "posteriors": "curve_20", "x": 0.23076923076923078, "y": 0.4703390251541912 }, { "posteriors": "curve_20", "x": 0.23626373626373626, "y": 0.4790003550285758 }, { "posteriors": "curve_20", "x": 0.24175824175824176, "y": 0.4876165752491356 }, { "posteriors": "curve_20", "x": 0.24725274725274726, "y": 0.4961889382314279 }, { "posteriors": "curve_20", "x": 0.25274725274725274, "y": 0.5047186346187525 }, { "posteriors": "curve_20", "x": 0.25824175824175827, "y": 0.5132067976030472 }, { "posteriors": "curve_20", "x": 0.26373626373626374, "y": 0.52165450685819 }, { "posteriors": "curve_20", "x": 0.2692307692307692, "y": 0.5300627921278181 }, { "posteriors": "curve_20", "x": 0.27472527472527475, "y": 0.5384326365044255 }, { "posteriors": "curve_20", "x": 0.2802197802197802, "y": 0.5467649794319412 }, { "posteriors": "curve_20", "x": 0.2857142857142857, "y": 0.5550607194600637 }, { "posteriors": "curve_20", "x": 0.29120879120879123, "y": 0.5633207167752462 }, { "posteriors": "curve_20", "x": 0.2967032967032967, "y": 0.5715457955303106 }, { "posteriors": "curve_20", "x": 0.3021978021978022, "y": 0.5797367459921421 }, { "posteriors": "curve_20", "x": 0.3076923076923077, "y": 0.5878943265247109 }, { "posteriors": "curve_20", "x": 0.3131868131868132, "y": 0.5960192654227617 }, { "posteriors": "curve_20", "x": 0.31868131868131866, "y": 0.6041122626098344 }, { "posteriors": "curve_20", "x": 0.3241758241758242, "y": 0.6121739912128151 }, { "posteriors": "curve_20", "x": 0.32967032967032966, "y": 0.620205099023936 }, { "posteriors": "curve_20", "x": 0.33516483516483514, "y": 0.6282062098600072 }, { "posteriors": "curve_20", "x": 0.34065934065934067, "y": 0.636177924827668 }, { "posteriors": "curve_20", "x": 0.34615384615384615, "y": 0.6441208235025655 }, { "posteriors": "curve_20", "x": 0.3516483516483517, "y": 0.6520354650295873 }, { "posteriors": "curve_20", "x": 0.35714285714285715, "y": 0.6599223891505832 }, { "posteriors": "curve_20", "x": 0.3626373626373626, "y": 0.6677821171653952 }, { "posteriors": "curve_20", "x": 0.36813186813186816, "y": 0.6756151528314673 }, { "posteriors": "curve_20", "x": 0.37362637362637363, "y": 0.6834219832068172 }, { "posteriors": "curve_20", "x": 0.3791208791208791, "y": 0.691203079440716 }, { "posteriors": "curve_20", "x": 0.38461538461538464, "y": 0.6989588975160292 }, { "posteriors": "curve_20", "x": 0.3901098901098901, "y": 0.7066898789468214 }, { "posteriors": "curve_20", "x": 0.3956043956043956, "y": 0.7143964514345124 }, { "posteriors": "curve_20", "x": 0.4010989010989011, "y": 0.7220790294855887 }, { "posteriors": "curve_20", "x": 0.4065934065934066, "y": 0.729738014993617 }, { "posteriors": "curve_20", "x": 0.41208791208791207, "y": 0.7373737977880774 }, { "posteriors": "curve_20", "x": 0.4175824175824176, "y": 0.7449867561523245 }, { "posteriors": "curve_20", "x": 0.4230769230769231, "y": 0.7525772573127957 }, { "posteriors": "curve_20", "x": 0.42857142857142855, "y": 0.7601456579014149 }, { "posteriors": "curve_20", "x": 0.4340659340659341, "y": 0.7676923043929856 }, { "posteriors": "curve_20", "x": 0.43956043956043955, "y": 0.7752175335192242 }, { "posteriors": "curve_20", "x": 0.44505494505494503, "y": 0.7827216726609573 }, { "posteriors": "curve_20", "x": 0.45054945054945056, "y": 0.7902050402198908 }, { "posteriors": "curve_20", "x": 0.45604395604395603, "y": 0.7976679459712496 }, { "posteriors": "curve_20", "x": 0.46153846153846156, "y": 0.8051106913984906 }, { "posteriors": "curve_20", "x": 0.46703296703296704, "y": 0.8125335700112031 }, { "posteriors": "curve_20", "x": 0.4725274725274725, "y": 0.8199368676472295 }, { "posteriors": "curve_20", "x": 0.47802197802197804, "y": 0.8273208627599615 }, { "posteriors": "curve_20", "x": 0.4835164835164835, "y": 0.8346858266917025 }, { "posteriors": "curve_20", "x": 0.489010989010989, "y": 0.8420320239339246 }, { "posteriors": "curve_20", "x": 0.4945054945054945, "y": 0.849359712375183 }, { "posteriors": "curve_20", "x": 0.5, "y": 0.8566691435374097 }, { "posteriors": "curve_20", "x": 0.5054945054945055, "y": 0.8639605628012493 }, { "posteriors": "curve_20", "x": 0.510989010989011, "y": 0.8712342096210581 }, { "posteriors": "curve_20", "x": 0.5164835164835165, "y": 0.8784903177301501 }, { "posteriors": "curve_20", "x": 0.521978021978022, "y": 0.8857291153368267 }, { "posteriors": "curve_20", "x": 0.5274725274725275, "y": 0.8929508253117011 }, { "posteriors": "curve_20", "x": 0.532967032967033, "y": 0.900155665366786 }, { "posteriors": "curve_20", "x": 0.5384615384615384, "y": 0.9073438482267925 }, { "posteriors": "curve_20", "x": 0.5439560439560439, "y": 0.9145155817930498 }, { "posteriors": "curve_20", "x": 0.5494505494505495, "y": 0.9216710693004403 }, { "posteriors": "curve_20", "x": 0.554945054945055, "y": 0.92881050946771 }, { "posteriors": "curve_20", "x": 0.5604395604395604, "y": 0.9359340966414998 }, { "posteriors": "curve_20", "x": 0.5659340659340659, "y": 0.9430420209344155 }, { "posteriors": "curve_20", "x": 0.5714285714285714, "y": 0.950134468357443 }, { "posteriors": "curve_20", "x": 0.5769230769230769, "y": 0.9572116209469892 }, { "posteriors": "curve_20", "x": 0.5824175824175825, "y": 0.9642736568868153 }, { "posteriors": "curve_20", "x": 0.5879120879120879, "y": 0.9713207506251179 }, { "posteriors": "curve_20", "x": 0.5934065934065934, "y": 0.978353072986991 }, { "posteriors": "curve_20", "x": 0.5989010989010989, "y": 0.9853707912824922 }, { "posteriors": "curve_20", "x": 0.6043956043956044, "y": 0.992374069410526 }, { "posteriors": "curve_20", "x": 0.6098901098901099, "y": 0.9993630679587412 }, { "posteriors": "curve_20", "x": 0.6153846153846154, "y": 1.0063379442996283 }, { "posteriors": "curve_20", "x": 0.6208791208791209, "y": 1.0132988526829982 }, { "posteriors": "curve_20", "x": 0.6263736263736264, "y": 1.0202459443250051 }, { "posteriors": "curve_20", "x": 0.6318681318681318, "y": 1.0271793674938738 }, { "posteriors": "curve_20", "x": 0.6373626373626373, "y": 1.03409926759248 }, { "posteriors": "curve_20", "x": 0.6428571428571429, "y": 1.0410057872379288 }, { "posteriors": "curve_20", "x": 0.6483516483516484, "y": 1.047899066338257 }, { "posteriors": "curve_20", "x": 0.6538461538461539, "y": 1.0547792421663988 }, { "posteriors": "curve_20", "x": 0.6593406593406593, "y": 1.0616464494315219 }, { "posteriors": "curve_20", "x": 0.6648351648351648, "y": 1.0685008203478579 }, { "posteriors": "curve_20", "x": 0.6703296703296703, "y": 1.0753424847011308 }, { "posteriors": "curve_20", "x": 0.6758241758241759, "y": 1.0821715699126873 }, { "posteriors": "curve_20", "x": 0.6813186813186813, "y": 1.0889882011014254 }, { "posteriors": "curve_20", "x": 0.6868131868131868, "y": 1.0957925011436176 }, { "posteriors": "curve_20", "x": 0.6923076923076923, "y": 1.102584590730711 }, { "posteriors": "curve_20", "x": 0.6978021978021978, "y": 1.1093645884251933 }, { "posteriors": "curve_20", "x": 0.7032967032967034, "y": 1.1161326107145997 }, { "posteriors": "curve_20", "x": 0.7087912087912088, "y": 1.1228887720637428 }, { "posteriors": "curve_20", "x": 0.7142857142857143, "y": 1.1296331849652284 }, { "posteriors": "curve_20", "x": 0.7197802197802198, "y": 1.1363659599883356 }, { "posteriors": "curve_20", "x": 0.7252747252747253, "y": 1.1430872058263188 }, { "posteriors": "curve_20", "x": 0.7307692307692307, "y": 1.1497970293421989 }, { "posteriors": "curve_20", "x": 0.7362637362637363, "y": 1.1564955356130995 }, { "posteriors": "curve_20", "x": 0.7417582417582418, "y": 1.1631828279731893 }, { "posteriors": "curve_20", "x": 0.7472527472527473, "y": 1.169859008055277 }, { "posteriors": "curve_20", "x": 0.7527472527472527, "y": 1.1765241758311218 }, { "posteriors": "curve_20", "x": 0.7582417582417582, "y": 1.183178429650495 }, { "posteriors": "curve_20", "x": 0.7637362637362637, "y": 1.1898218662790512 }, { "posteriors": "curve_20", "x": 0.7692307692307693, "y": 1.1964545809350484 }, { "posteriors": "curve_20", "x": 0.7747252747252747, "y": 1.2030766673249595 }, { "posteriors": "curve_20", "x": 0.7802197802197802, "y": 1.20968821767802 }, { "posteriors": "curve_20", "x": 0.7857142857142857, "y": 1.2162893227797464 }, { "posteriors": "curve_20", "x": 0.7912087912087912, "y": 1.2228800720044675 }, { "posteriors": "curve_20", "x": 0.7967032967032966, "y": 1.2294605533468985 }, { "posteriors": "curve_20", "x": 0.8021978021978022, "y": 1.2360308534528006 }, { "posteriors": "curve_20", "x": 0.8076923076923077, "y": 1.2425910576487498 }, { "posteriors": "curve_20", "x": 0.8131868131868132, "y": 1.249141249971053 }, { "posteriors": "curve_20", "x": 0.8186813186813187, "y": 1.2556815131938395 }, { "posteriors": "curve_20", "x": 0.8241758241758241, "y": 1.2622119288563556 }, { "posteriors": "curve_20", "x": 0.8296703296703297, "y": 1.2687325772894915 }, { "posteriors": "curve_20", "x": 0.8351648351648352, "y": 1.2752435376415665 }, { "posteriors": "curve_20", "x": 0.8406593406593407, "y": 1.2817448879033986 }, { "posteriors": "curve_20", "x": 0.8461538461538461, "y": 1.2882367049326806 }, { "posteriors": "curve_20", "x": 0.8516483516483516, "y": 1.2947190644776916 }, { "posteriors": "curve_20", "x": 0.8571428571428571, "y": 1.3011920412003577 }, { "posteriors": "curve_20", "x": 0.8626373626373627, "y": 1.3076557086986937 }, { "posteriors": "curve_20", "x": 0.8681318681318682, "y": 1.3141101395286365 }, { "posteriors": "curve_20", "x": 0.8736263736263736, "y": 1.3205554052253001 }, { "posteriors": "curve_20", "x": 0.8791208791208791, "y": 1.3269915763236626 }, { "posteriors": "curve_20", "x": 0.8846153846153846, "y": 1.3334187223787082 }, { "posteriors": "curve_20", "x": 0.8901098901098901, "y": 1.3398369119850413 }, { "posteriors": "curve_20", "x": 0.8956043956043956, "y": 1.3462462127959909 }, { "posteriors": "curve_20", "x": 0.9010989010989011, "y": 1.3526466915422168 }, { "posteriors": "curve_20", "x": 0.9065934065934066, "y": 1.3590384140498406 }, { "posteriors": "curve_20", "x": 0.9120879120879121, "y": 1.3654214452581104 }, { "posteriors": "curve_20", "x": 0.9175824175824175, "y": 1.3717958492366156 }, { "posteriors": "curve_20", "x": 0.9230769230769231, "y": 1.3781616892020707 }, { "posteriors": "curve_20", "x": 0.9285714285714286, "y": 1.384519027534671 }, { "posteriors": "curve_20", "x": 0.9340659340659341, "y": 1.390867925794046 }, { "posteriors": "curve_20", "x": 0.9395604395604396, "y": 1.3972084447348116 }, { "posteriors": "curve_20", "x": 0.945054945054945, "y": 1.403540644321742 }, { "posteriors": "curve_20", "x": 0.9505494505494505, "y": 1.409864583744567 }, { "posteriors": "curve_20", "x": 0.9560439560439561, "y": 1.4161803214324087 }, { "posteriors": "curve_20", "x": 0.9615384615384616, "y": 1.4224879150678678 }, { "posteriors": "curve_20", "x": 0.967032967032967, "y": 1.4287874216007714 }, { "posteriors": "curve_20", "x": 0.9725274725274725, "y": 1.4350788972615893 }, { "posteriors": "curve_20", "x": 0.978021978021978, "y": 1.4413623975745302 }, { "posteriors": "curve_20", "x": 0.9835164835164835, "y": 1.4476379773703294 }, { "posteriors": "curve_20", "x": 0.989010989010989, "y": 1.4539056907987322 }, { "posteriors": "curve_20", "x": 0.9945054945054945, "y": 1.4601655913406866 }, { "posteriors": "curve_21", "x": 0, "y": 0 }, { "posteriors": "curve_21", "x": 0.005494505494505495, "y": 0.02609788072164504 }, { "posteriors": "curve_21", "x": 0.01098901098901099, "y": 0.044506609052578465 }, { "posteriors": "curve_21", "x": 0.016483516483516484, "y": 0.0608177128344995 }, { "posteriors": "curve_21", "x": 0.02197802197802198, "y": 0.07590034878641289 }, { "posteriors": "curve_21", "x": 0.027472527472527472, "y": 0.0901307335980327 }, { "posteriors": "curve_21", "x": 0.03296703296703297, "y": 0.10371685722174742 }, { "posteriors": "curve_21", "x": 0.038461538461538464, "y": 0.11678960676132766 }, { "posteriors": "curve_21", "x": 0.04395604395604396, "y": 0.129438370357388 }, { "posteriors": "curve_21", "x": 0.04945054945054945, "y": 0.14172776072778748 }, { "posteriors": "curve_21", "x": 0.054945054945054944, "y": 0.15370647780387614 }, { "posteriors": "curve_21", "x": 0.06043956043956044, "y": 0.16541242804215062 }, { "posteriors": "curve_21", "x": 0.06593406593406594, "y": 0.1768758799139551 }, { "posteriors": "curve_21", "x": 0.07142857142857142, "y": 0.18812151042528863 }, { "posteriors": "curve_21", "x": 0.07692307692307693, "y": 0.19916978795982257 }, { "posteriors": "curve_21", "x": 0.08241758241758242, "y": 0.21003793878870977 }, { "posteriors": "curve_21", "x": 0.08791208791208792, "y": 0.22074064202160248 }, { "posteriors": "curve_21", "x": 0.09340659340659341, "y": 0.23129054151072262 }, { "posteriors": "curve_21", "x": 0.0989010989010989, "y": 0.24169863085386253 }, { "posteriors": "curve_21", "x": 0.1043956043956044, "y": 0.2519745482554988 }, { "posteriors": "curve_21", "x": 0.10989010989010989, "y": 0.26212680598207344 }, { "posteriors": "curve_21", "x": 0.11538461538461539, "y": 0.2721629714620302 }, { "posteriors": "curve_21", "x": 0.12087912087912088, "y": 0.2820898120361137 }, { "posteriors": "curve_21", "x": 0.12637362637362637, "y": 0.2919134119727116 }, { "posteriors": "curve_21", "x": 0.13186813186813187, "y": 0.301639268035746 }, { "posteriors": "curve_21", "x": 0.13736263736263737, "y": 0.3112723682648315 }, { "posteriors": "curve_21", "x": 0.14285714285714285, "y": 0.3208172574692926 }, { "posteriors": "curve_21", "x": 0.14835164835164835, "y": 0.3302780921008024 }, { "posteriors": "curve_21", "x": 0.15384615384615385, "y": 0.33965868655614045 }, { "posteriors": "curve_21", "x": 0.15934065934065933, "y": 0.34896255250628627 }, { "posteriors": "curve_21", "x": 0.16483516483516483, "y": 0.35819293250602574 }, { "posteriors": "curve_21", "x": 0.17032967032967034, "y": 0.3673528288784541 }, { "posteriors": "curve_21", "x": 0.17582417582417584, "y": 0.3764450286694148 }, { "posteriors": "curve_21", "x": 0.1813186813186813, "y": 0.3854721253125074 }, { "posteriors": "curve_21", "x": 0.18681318681318682, "y": 0.3944365375246469 }, { "posteriors": "curve_21", "x": 0.19230769230769232, "y": 0.4033405258571015 }, { "posteriors": "curve_21", "x": 0.1978021978021978, "y": 0.4121862072514782 }, { "posteriors": "curve_21", "x": 0.2032967032967033, "y": 0.4209755678897852 }, { "posteriors": "curve_21", "x": 0.2087912087912088, "y": 0.4297104745791275 }, { "posteriors": "curve_21", "x": 0.21428571428571427, "y": 0.4383926848722426 }, { "posteriors": "curve_21", "x": 0.21978021978021978, "y": 0.4470238560930115 }, { "posteriors": "curve_21", "x": 0.22527472527472528, "y": 0.45560555340979286 }, { "posteriors": "curve_21", "x": 0.23076923076923078, "y": 0.46413925707777237 }, { "posteriors": "curve_21", "x": 0.23626373626373626, "y": 0.4726263689535749 }, { "posteriors": "curve_21", "x": 0.24175824175824176, "y": 0.4810682183704638 }, { "posteriors": "curve_21", "x": 0.24725274725274726, "y": 0.4894660674499681 }, { "posteriors": "curve_21", "x": 0.25274725274725274, "y": 0.4978211159153009 }, { "posteriors": "curve_21", "x": 0.25824175824175827, "y": 0.5061345054630968 }, { "posteriors": "curve_21", "x": 0.26373626373626374, "y": 0.5144073237425179 }, { "posteriors": "curve_21", "x": 0.2692307692307692, "y": 0.5226406079844242 }, { "posteriors": "curve_21", "x": 0.27472527472527475, "y": 0.530835348317886 }, { "posteriors": "curve_21", "x": 0.2802197802197802, "y": 0.538992490806677 }, { "posteriors": "curve_21", "x": 0.2857142857142857, "y": 0.5471129402344128 }, { "posteriors": "curve_21", "x": 0.29120879120879123, "y": 0.5551975626635662 }, { "posteriors": "curve_21", "x": 0.2967032967032967, "y": 0.5632471877906319 }, { "posteriors": "curve_21", "x": 0.3021978021978022, "y": 0.5712626111171483 }, { "posteriors": "curve_21", "x": 0.3076923076923077, "y": 0.5792445959540562 }, { "posteriors": "curve_21", "x": 0.3131868131868132, "y": 0.587193875274931 }, { "posteriors": "curve_21", "x": 0.31868131868131866, "y": 0.5951111534319322 }, { "posteriors": "curve_21", "x": 0.3241758241758242, "y": 0.6029971077468266 }, { "posteriors": "curve_21", "x": 0.32967032967032966, "y": 0.6108523899881413 }, { "posteriors": "curve_21", "x": 0.33516483516483514, "y": 0.618677627744357 }, { "posteriors": "curve_21", "x": 0.34065934065934067, "y": 0.6264734257020368 }, { "posteriors": "curve_21", "x": 0.34615384615384615, "y": 0.6342403668369009 }, { "posteriors": "curve_21", "x": 0.3516483516483517, "y": 0.6419790135250589 }, { "posteriors": "curve_21", "x": 0.35714285714285715, "y": 0.6496899085809162 }, { "posteriors": "curve_21", "x": 0.3626373626373626, "y": 0.6573735762276447 }, { "posteriors": "curve_21", "x": 0.36813186813186816, "y": 0.6650305230055525 }, { "posteriors": "curve_21", "x": 0.37362637362637363, "y": 0.672661238623195 }, { "posteriors": "curve_21", "x": 0.3791208791208791, "y": 0.6802661967556214 }, { "posteriors": "curve_21", "x": 0.38461538461538464, "y": 0.6878458557937611 }, { "posteriors": "curve_21", "x": 0.3901098901098901, "y": 0.6954006595485923 }, { "posteriors": "curve_21", "x": 0.3956043956043956, "y": 0.7029310379134216 }, { "posteriors": "curve_21", "x": 0.4010989010989011, "y": 0.7104374074873097 }, { "posteriors": "curve_21", "x": 0.4065934065934066, "y": 0.7179201721624262 }, { "posteriors": "curve_21", "x": 0.41208791208791207, "y": 0.7253797236778781 }, { "posteriors": "curve_21", "x": 0.4175824175824176, "y": 0.7328164421423438 }, { "posteriors": "curve_21", "x": 0.4230769230769231, "y": 0.7402306965276629 }, { "posteriors": "curve_21", "x": 0.42857142857142855, "y": 0.7476228451353448 }, { "posteriors": "curve_21", "x": 0.4340659340659341, "y": 0.7549932360378139 }, { "posteriors": "curve_21", "x": 0.43956043956043955, "y": 0.7623422074960603 }, { "posteriors": "curve_21", "x": 0.44505494505494503, "y": 0.7696700883552371 }, { "posteriors": "curve_21", "x": 0.45054945054945056, "y": 0.7769771984196251 }, { "posteriors": "curve_21", "x": 0.45604395604395603, "y": 0.7842638488082803 }, { "posteriors": "curve_21", "x": 0.46153846153846156, "y": 0.7915303422925802 }, { "posteriors": "curve_21", "x": 0.46703296703296704, "y": 0.7987769736167928 }, { "posteriors": "curve_21", "x": 0.4725274725274725, "y": 0.806004029802714 }, { "posteriors": "curve_21", "x": 0.47802197802197804, "y": 0.8132117904393391 }, { "posteriors": "curve_21", "x": 0.4835164835164835, "y": 0.8204005279584666 }, { "posteriors": "curve_21", "x": 0.489010989010989, "y": 0.8275705078970735 }, { "posteriors": "curve_21", "x": 0.4945054945054945, "y": 0.8347219891472316 }, { "posteriors": "curve_21", "x": 0.5, "y": 0.8418552241942953 }, { "posteriors": "curve_21", "x": 0.5054945054945055, "y": 0.8489704593440281 }, { "posteriors": "curve_21", "x": 0.510989010989011, "y": 0.8560679349393008 }, { "posteriors": "curve_21", "x": 0.5164835164835165, "y": 0.8631478855669424 }, { "posteriors": "curve_21", "x": 0.521978021978022, "y": 0.8702105402552958 }, { "posteriors": "curve_21", "x": 0.5274725274725275, "y": 0.8772561226629855 }, { "posteriors": "curve_21", "x": 0.532967032967033, "y": 0.8842848512593777 }, { "posteriors": "curve_21", "x": 0.5384615384615384, "y": 0.8912969394971803 }, { "posteriors": "curve_21", "x": 0.5439560439560439, "y": 0.8982925959775999 }, { "posteriors": "curve_21", "x": 0.5494505494505495, "y": 0.9052720246084511 }, { "posteriors": "curve_21", "x": 0.554945054945055, "y": 0.9122354247555834 }, { "posteriors": "curve_21", "x": 0.5604395604395604, "y": 0.9191829913879754 }, { "posteriors": "curve_21", "x": 0.5659340659340659, "y": 0.9261149152168168 }, { "posteriors": "curve_21", "x": 0.5714285714285714, "y": 0.9330313828288835 }, { "posteriors": "curve_21", "x": 0.5769230769230769, "y": 0.9399325768144975 }, { "posteriors": "curve_21", "x": 0.5824175824175825, "y": 0.946818675890332 }, { "posteriors": "curve_21", "x": 0.5879120879120879, "y": 0.9536898550173252 }, { "posteriors": "curve_21", "x": 0.5934065934065934, "y": 0.960546285513936 }, { "posteriors": "curve_21", "x": 0.5989010989010989, "y": 0.9673881351649672 }, { "posteriors": "curve_21", "x": 0.6043956043956044, "y": 0.9742155683261724 }, { "posteriors": "curve_21", "x": 0.6098901098901099, "y": 0.981028746024841 }, { "posteriors": "curve_21", "x": 0.6153846153846154, "y": 0.9878278260565571 }, { "posteriors": "curve_21", "x": 0.6208791208791209, "y": 0.994612963078305 }, { "posteriors": "curve_21", "x": 0.6263736263736264, "y": 1.0013843086980956 }, { "posteriors": "curve_21", "x": 0.6318681318681318, "y": 1.008142011561267 }, { "posteriors": "curve_21", "x": 0.6373626373626373, "y": 1.0148862174336168 }, { "posteriors": "curve_21", "x": 0.6428571428571429, "y": 1.0216170692815048 }, { "posteriors": "curve_21", "x": 0.6483516483516484, "y": 1.0283347073490607 }, { "posteriors": "curve_21", "x": 0.6538461538461539, "y": 1.03503926923263 }, { "posteriors": "curve_21", "x": 0.6593406593406593, "y": 1.0417308899525735 }, { "posteriors": "curve_21", "x": 0.6648351648351648, "y": 1.0484097020225394 }, { "posteriors": "curve_21", "x": 0.6703296703296703, "y": 1.0550758355163148 }, { "posteriors": "curve_21", "x": 0.6758241758241759, "y": 1.0617294181323633 }, { "posteriors": "curve_21", "x": 0.6813186813186813, "y": 1.068370575256143 }, { "posteriors": "curve_21", "x": 0.6868131868131868, "y": 1.0749994300203025 }, { "posteriors": "curve_21", "x": 0.6923076923076923, "y": 1.0816161033628404 }, { "posteriors": "curve_21", "x": 0.6978021978021978, "y": 1.0882207140833144 }, { "posteriors": "curve_21", "x": 0.7032967032967034, "y": 1.0948133788971801 }, { "posteriors": "curve_21", "x": 0.7087912087912088, "y": 1.101394212488335 }, { "posteriors": "curve_21", "x": 0.7142857142857143, "y": 1.1079633275599414 }, { "posteriors": "curve_21", "x": 0.7197802197802198, "y": 1.1145208348835984 }, { "posteriors": "curve_21", "x": 0.7252747252747253, "y": 1.1210668433469249 }, { "posteriors": "curve_21", "x": 0.7307692307692307, "y": 1.1276014599996198 }, { "posteriors": "curve_21", "x": 0.7362637362637363, "y": 1.134124790098061 }, { "posteriors": "curve_21", "x": 0.7417582417582418, "y": 1.1406369371484941 }, { "posteriors": "curve_21", "x": 0.7472527472527473, "y": 1.1471380029488711 }, { "posteriors": "curve_21", "x": 0.7527472527472527, "y": 1.1536280876293887 }, { "posteriors": "curve_21", "x": 0.7582417582417582, "y": 1.1601072896917755 }, { "posteriors": "curve_21", "x": 0.7637362637362637, "y": 1.1665757060473756 }, { "posteriors": "curve_21", "x": 0.7692307692307693, "y": 1.173033432054076 }, { "posteriors": "curve_21", "x": 0.7747252747252747, "y": 1.1794805615521162 }, { "posteriors": "curve_21", "x": 0.7802197802197802, "y": 1.185917186898827 }, { "posteriors": "curve_21", "x": 0.7857142857142857, "y": 1.1923433990023344 }, { "posteriors": "curve_21", "x": 0.7912087912087912, "y": 1.1987592873542667 }, { "posteriors": "curve_21", "x": 0.7967032967032966, "y": 1.2051649400615025 }, { "posteriors": "curve_21", "x": 0.8021978021978022, "y": 1.2115604438769927 }, { "posteriors": "curve_21", "x": 0.8076923076923077, "y": 1.2179458842296897 }, { "posteriors": "curve_21", "x": 0.8131868131868132, "y": 1.2243213452536186 }, { "posteriors": "curve_21", "x": 0.8186813186813187, "y": 1.2306869098161137 }, { "posteriors": "curve_21", "x": 0.8241758241758241, "y": 1.2370426595452586 }, { "posteriors": "curve_21", "x": 0.8296703296703297, "y": 1.2433886748565497 }, { "posteriors": "curve_21", "x": 0.8351648351648352, "y": 1.249725034978815 }, { "posteriors": "curve_21", "x": 0.8406593406593407, "y": 1.2560518179794118 }, { "posteriors": "curve_21", "x": 0.8461538461538461, "y": 1.2623691007887285 }, { "posteriors": "curve_21", "x": 0.8516483516483516, "y": 1.2686769592240137 }, { "posteriors": "curve_21", "x": 0.8571428571428571, "y": 1.2749754680125545 }, { "posteriors": "curve_21", "x": 0.8626373626373627, "y": 1.2812647008142277 }, { "posteriors": "curve_21", "x": 0.8681318681318682, "y": 1.2875447302434453 }, { "posteriors": "curve_21", "x": 0.8736263736263736, "y": 1.29381562789051 }, { "posteriors": "curve_21", "x": 0.8791208791208791, "y": 1.3000774643424047 }, { "posteriors": "curve_21", "x": 0.8846153846153846, "y": 1.3063303092030323 }, { "posteriors": "curve_21", "x": 0.8901098901098901, "y": 1.312574231112925 }, { "posteriors": "curve_21", "x": 0.8956043956043956, "y": 1.3188092977684374 }, { "posteriors": "curve_21", "x": 0.9010989010989011, "y": 1.3250355759404437 }, { "posteriors": "curve_21", "x": 0.9065934065934066, "y": 1.3312531314925529 }, { "posteriors": "curve_21", "x": 0.9120879120879121, "y": 1.3374620293988553 }, { "posteriors": "curve_21", "x": 0.9175824175824175, "y": 1.3436623337612197 }, { "posteriors": "curve_21", "x": 0.9230769230769231, "y": 1.3498541078261515 }, { "posteriors": "curve_21", "x": 0.9285714285714286, "y": 1.3560374140012257 }, { "posteriors": "curve_21", "x": 0.9340659340659341, "y": 1.3622123138711122 }, { "posteriors": "curve_21", "x": 0.9395604395604396, "y": 1.3683788682131977 }, { "posteriors": "curve_21", "x": 0.945054945054945, "y": 1.374537137012826 }, { "posteriors": "curve_21", "x": 0.9505494505494505, "y": 1.3806871794781606 }, { "posteriors": "curve_21", "x": 0.9560439560439561, "y": 1.3868290540546866 }, { "posteriors": "curve_21", "x": 0.9615384615384616, "y": 1.392962818439357 }, { "posteriors": "curve_21", "x": 0.967032967032967, "y": 1.3990885295944018 }, { "posteriors": "curve_21", "x": 0.9725274725274725, "y": 1.405206243760801 }, { "posteriors": "curve_21", "x": 0.978021978021978, "y": 1.4113160164714391 }, { "posteriors": "curve_21", "x": 0.9835164835164835, "y": 1.4174179025639446 }, { "posteriors": "curve_21", "x": 0.989010989010989, "y": 1.4235119561932288 }, { "posteriors": "curve_21", "x": 0.9945054945054945, "y": 1.4295982308437272 }, { "posteriors": "curve_22", "x": 0, "y": 0 }, { "posteriors": "curve_22", "x": 0.005494505494505495, "y": 0.025371882998551015 }, { "posteriors": "curve_22", "x": 0.01098901098901099, "y": 0.04341263008875853 }, { "posteriors": "curve_22", "x": 0.016483516483516484, "y": 0.059438308010546476 }, { "posteriors": "curve_22", "x": 0.02197802197802198, "y": 0.07428129994652014 }, { "posteriors": "curve_22", "x": 0.027472527472527472, "y": 0.08830260923854612 }, { "posteriors": "curve_22", "x": 0.03296703296703297, "y": 0.1017020801692532 }, { "posteriors": "curve_22", "x": 0.038461538461538464, "y": 0.11460560224976542 }, { "posteriors": "curve_22", "x": 0.04395604395604396, "y": 0.12709922228770182 }, { "posteriors": "curve_22", "x": 0.04945054945054945, "y": 0.1392451817375304 }, { "posteriors": "curve_22", "x": 0.054945054945054944, "y": 0.15109042206146556 }, { "posteriors": "curve_22", "x": 0.06043956043956044, "y": 0.16267150081978093 }, { "posteriors": "curve_22", "x": 0.06593406593406594, "y": 0.1740176235992103 }, { "posteriors": "curve_22", "x": 0.07142857142857142, "y": 0.185152611379914 }, { "posteriors": "curve_22", "x": 0.07692307692307693, "y": 0.19609623049470154 }, { "posteriors": "curve_22", "x": 0.08241758241758242, "y": 0.2068651225593062 }, { "posteriors": "curve_22", "x": 0.08791208791208792, "y": 0.217473473374444 }, { "posteriors": "curve_22", "x": 0.09340659340659341, "y": 0.2279335058145413 }, { "posteriors": "curve_22", "x": 0.0989010989010989, "y": 0.23825585065005192 }, { "posteriors": "curve_22", "x": 0.1043956043956044, "y": 0.2484498306345877 }, { "posteriors": "curve_22", "x": 0.10989010989010989, "y": 0.25852368163937234 }, { "posteriors": "curve_22", "x": 0.11538461538461539, "y": 0.2684847272330858 }, { "posteriors": "curve_22", "x": 0.12087912087912088, "y": 0.27833951825631703 }, { "posteriors": "curve_22", "x": 0.12637362637362637, "y": 0.28809394568012353 }, { "posteriors": "curve_22", "x": 0.13186813186813187, "y": 0.2977533328002803 }, { "posteriors": "curve_22", "x": 0.13736263736263737, "y": 0.3073225112531332 }, { "posteriors": "curve_22", "x": 0.14285714285714285, "y": 0.31680588422479 }, { "posteriors": "curve_22", "x": 0.14835164835164835, "y": 0.32620747942013306 }, { "posteriors": "curve_22", "x": 0.15384615384615385, "y": 0.3355309937678882 }, { "posteriors": "curve_22", "x": 0.15934065934065933, "y": 0.3447798313997056 }, { "posteriors": "curve_22", "x": 0.16483516483516483, "y": 0.3539571361118816 }, { "posteriors": "curve_22", "x": 0.17032967032967034, "y": 0.36306581926815984 }, { "posteriors": "curve_22", "x": 0.17582417582417584, "y": 0.3721085839100471 }, { "posteriors": "curve_22", "x": 0.1813186813186813, "y": 0.3810879456923317 }, { "posteriors": "curve_22", "x": 0.18681318681318682, "y": 0.39000625114524173 }, { "posteriors": "curve_22", "x": 0.19230769230769232, "y": 0.39886569367308017 }, { "posteriors": "curve_22", "x": 0.1978021978021978, "y": 0.4076683276264481 }, { "posteriors": "curve_22", "x": 0.2032967032967033, "y": 0.41641608072699865 }, { "posteriors": "curve_22", "x": 0.2087912087912088, "y": 0.4251107650768389 }, { "posteriors": "curve_22", "x": 0.21428571428571427, "y": 0.43375408694675305 }, { "posteriors": "curve_22", "x": 0.21978021978021978, "y": 0.4423476555064913 }, { "posteriors": "curve_22", "x": 0.22527472527472528, "y": 0.4508929906350165 }, { "posteriors": "curve_22", "x": 0.23076923076923078, "y": 0.4593915299277094 }, { "posteriors": "curve_22", "x": 0.23626373626373626, "y": 0.46784463500022244 }, { "posteriors": "curve_22", "x": 0.24175824175824176, "y": 0.4762535971742747 }, { "posteriors": "curve_22", "x": 0.24725274725274726, "y": 0.48461964261863005 }, { "posteriors": "curve_22", "x": 0.25274725274725274, "y": 0.49294393700839495 }, { "posteriors": "curve_22", "x": 0.25824175824175827, "y": 0.501227589757239 }, { "posteriors": "curve_22", "x": 0.26373626373626374, "y": 0.5094716578699263 }, { "posteriors": "curve_22", "x": 0.2692307692307692, "y": 0.5176771494564099 }, { "posteriors": "curve_22", "x": 0.27472527472527475, "y": 0.5258450269435085 }, { "posteriors": "curve_22", "x": 0.2802197802197802, "y": 0.5339762100157138 }, { "posteriors": "curve_22", "x": 0.2857142857142857, "y": 0.5420715783128247 }, { "posteriors": "curve_22", "x": 0.29120879120879123, "y": 0.5501319739088025 }, { "posteriors": "curve_22", "x": 0.2967032967032967, "y": 0.5581582035933759 }, { "posteriors": "curve_22", "x": 0.3021978021978022, "y": 0.566151040975449 }, { "posteriors": "curve_22", "x": 0.3076923076923077, "y": 0.574111228425212 }, { "posteriors": "curve_22", "x": 0.3131868131868132, "y": 0.5820394788699798 }, { "posteriors": "curve_22", "x": 0.31868131868131866, "y": 0.5899364774571427 }, { "posteriors": "curve_22", "x": 0.3241758241758242, "y": 0.5978028830961845 }, { "posteriors": "curve_22", "x": 0.32967032967032966, "y": 0.6056393298904553 }, { "posteriors": "curve_22", "x": 0.33516483516483514, "y": 0.6134464284682907 }, { "posteriors": "curve_22", "x": 0.34065934065934067, "y": 0.6212247672220792 }, { "posteriors": "curve_22", "x": 0.34615384615384615, "y": 0.6289749134630286 }, { "posteriors": "curve_22", "x": 0.3516483516483517, "y": 0.6366974144986087 }, { "posteriors": "curve_22", "x": 0.35714285714285715, "y": 0.6443927986389758 }, { "posteriors": "curve_22", "x": 0.3626373626373626, "y": 0.6520615761380787 }, { "posteriors": "curve_22", "x": 0.36813186813186816, "y": 0.6597042400746088 }, { "posteriors": "curve_22", "x": 0.37362637362637363, "y": 0.6673212671774805 }, { "posteriors": "curve_22", "x": 0.3791208791208791, "y": 0.6749131186000964 }, { "posteriors": "curve_22", "x": 0.38461538461538464, "y": 0.6824802406472712 }, { "posteriors": "curve_22", "x": 0.3901098901098901, "y": 0.6900230654583426 }, { "posteriors": "curve_22", "x": 0.3956043956043956, "y": 0.6975420116496889 }, { "posteriors": "curve_22", "x": 0.4010989010989011, "y": 0.7050374849195958 }, { "posteriors": "curve_22", "x": 0.4065934065934066, "y": 0.7125098786181626 }, { "posteriors": "curve_22", "x": 0.41208791208791207, "y": 0.7199595742847144 }, { "posteriors": "curve_22", "x": 0.4175824175824176, "y": 0.7273869421549796 }, { "posteriors": "curve_22", "x": 0.4230769230769231, "y": 0.7347923416401103 }, { "posteriors": "curve_22", "x": 0.42857142857142855, "y": 0.7421761217794517 }, { "posteriors": "curve_22", "x": 0.4340659340659341, "y": 0.7495386216688192 }, { "posteriors": "curve_22", "x": 0.43956043956043955, "y": 0.7568801708658993 }, { "posteriors": "curve_22", "x": 0.44505494505494503, "y": 0.7642010897742666 }, { "posteriors": "curve_22", "x": 0.45054945054945056, "y": 0.7715016900073965 }, { "posteriors": "curve_22", "x": 0.45604395604395603, "y": 0.7787822747339436 }, { "posteriors": "curve_22", "x": 0.46153846153846156, "y": 0.7860431390054675 }, { "posteriors": "curve_22", "x": 0.46703296703296704, "y": 0.793284570067692 }, { "posteriors": "curve_22", "x": 0.4725274725274725, "y": 0.8005068476563143 }, { "posteriors": "curve_22", "x": 0.47802197802197804, "y": 0.8077102442782962 }, { "posteriors": "curve_22", "x": 0.4835164835164835, "y": 0.8148950254795111 }, { "posteriors": "curve_22", "x": 0.489010989010989, "y": 0.8220614500995579 }, { "posteriors": "curve_22", "x": 0.4945054945054945, "y": 0.8292097705144887 }, { "posteriors": "curve_22", "x": 0.5, "y": 0.8363402328681582 }, { "posteriors": "curve_22", "x": 0.5054945054945055, "y": 0.8434530772928398 }, { "posteriors": "curve_22", "x": 0.510989010989011, "y": 0.8505485381197256 }, { "posteriors": "curve_22", "x": 0.5164835164835165, "y": 0.8576268440798706 }, { "posteriors": "curve_22", "x": 0.521978021978022, "y": 0.864688218496116 }, { "posteriors": "curve_22", "x": 0.5274725274725275, "y": 0.871732879466486 }, { "posteriors": "curve_22", "x": 0.532967032967033, "y": 0.8787610400395227 }, { "posteriors": "curve_22", "x": 0.5384615384615384, "y": 0.8857729083819894 }, { "posteriors": "curve_22", "x": 0.5439560439560439, "y": 0.8927686879393553 }, { "posteriors": "curve_22", "x": 0.5494505494505495, "y": 0.8997485775894333 }, { "posteriors": "curve_22", "x": 0.554945054945055, "y": 0.9067127717895382 }, { "posteriors": "curve_22", "x": 0.5604395604395604, "y": 0.913661460717492 }, { "posteriors": "curve_22", "x": 0.5659340659340659, "y": 0.9205948304067955 }, { "posteriors": "curve_22", "x": 0.5714285714285714, "y": 0.9275130628762601 }, { "posteriors": "curve_22", "x": 0.5769230769230769, "y": 0.9344163362543795 }, { "posteriors": "curve_22", "x": 0.5824175824175825, "y": 0.9413048248987015 }, { "posteriors": "curve_22", "x": 0.5879120879120879, "y": 0.9481786995104449 }, { "posteriors": "curve_22", "x": 0.5934065934065934, "y": 0.9550381272445975 }, { "posteriors": "curve_22", "x": 0.5989010989010989, "y": 0.9618832718157089 }, { "posteriors": "curve_22", "x": 0.6043956043956044, "y": 0.9687142935995878 }, { "posteriors": "curve_22", "x": 0.6098901098901099, "y": 0.9755313497310968 }, { "posteriors": "curve_22", "x": 0.6153846153846154, "y": 0.9823345941982261 }, { "posteriors": "curve_22", "x": 0.6208791208791209, "y": 0.9891241779326257 }, { "posteriors": "curve_22", "x": 0.6263736263736264, "y": 0.9959002488967518 }, { "posteriors": "curve_22", "x": 0.6318681318681318, "y": 1.0026629521677886 }, { "posteriors": "curve_22", "x": 0.6373626373626373, "y": 1.0094124300184895 }, { "posteriors": "curve_22", "x": 0.6428571428571429, "y": 1.0161488219950745 }, { "posteriors": "curve_22", "x": 0.6483516483516484, "y": 1.0228722649923203 }, { "posteriors": "curve_22", "x": 0.6538461538461539, "y": 1.0295828933259612 }, { "posteriors": "curve_22", "x": 0.6593406593406593, "y": 1.0362808388025238 }, { "posteriors": "curve_22", "x": 0.6648351648351648, "y": 1.042966230786703 }, { "posteriors": "curve_22", "x": 0.6703296703296703, "y": 1.0496391962663902 }, { "posteriors": "curve_22", "x": 0.6758241758241759, "y": 1.0562998599154476 }, { "posteriors": "curve_22", "x": 0.6813186813186813, "y": 1.0629483441543321 }, { "posteriors": "curve_22", "x": 0.6868131868131868, "y": 1.0695847692086526 }, { "posteriors": "curve_22", "x": 0.6923076923076923, "y": 1.0762092531657497 }, { "posteriors": "curve_22", "x": 0.6978021978021978, "y": 1.0828219120293823 }, { "posteriors": "curve_22", "x": 0.7032967032967034, "y": 1.0894228597725926 }, { "posteriors": "curve_22", "x": 0.7087912087912088, "y": 1.0960122083888304 }, { "posteriors": "curve_22", "x": 0.7142857142857143, "y": 1.1025900679414042 }, { "posteriors": "curve_22", "x": 0.7197802197802198, "y": 1.1091565466113242 }, { "posteriors": "curve_22", "x": 0.7252747252747253, "y": 1.1157117507436054 }, { "posteriors": "curve_22", "x": 0.7307692307692307, "y": 1.12225578489209 }, { "posteriors": "curve_22", "x": 0.7362637362637363, "y": 1.1287887518628454 }, { "posteriors": "curve_22", "x": 0.7417582417582418, "y": 1.1353107527561965 }, { "posteriors": "curve_22", "x": 0.7472527472527473, "y": 1.1418218870074424 }, { "posteriors": "curve_22", "x": 0.7527472527472527, "y": 1.1483222524263101 }, { "posteriors": "curve_22", "x": 0.7582417582417582, "y": 1.1548119452351921 }, { "posteriors": "curve_22", "x": 0.7637362637362637, "y": 1.1612910601062139 }, { "posteriors": "curve_22", "x": 0.7692307692307693, "y": 1.1677596901971745 }, { "posteriors": "curve_22", "x": 0.7747252747252747, "y": 1.1742179271864066 }, { "posteriors": "curve_22", "x": 0.7802197802197802, "y": 1.1806658613065892 }, { "posteriors": "curve_22", "x": 0.7857142857142857, "y": 1.1871035813775572 }, { "posteriors": "curve_22", "x": 0.7912087912087912, "y": 1.1935311748381405 }, { "posteriors": "curve_22", "x": 0.7967032967032966, "y": 1.1999487277770724 }, { "posteriors": "curve_22", "x": 0.8021978021978022, "y": 1.2063563249629945 }, { "posteriors": "curve_22", "x": 0.8076923076923077, "y": 1.2127540498735967 }, { "posteriors": "curve_22", "x": 0.8131868131868132, "y": 1.2191419847239187 }, { "posteriors": "curve_22", "x": 0.8186813186813187, "y": 1.2255202104938459 }, { "posteriors": "curve_22", "x": 0.8241758241758241, "y": 1.2318888069548233 }, { "posteriors": "curve_22", "x": 0.8296703296703297, "y": 1.2382478526958205 }, { "posteriors": "curve_22", "x": 0.8351648351648352, "y": 1.2445974251485683 }, { "posteriors": "curve_22", "x": 0.8406593406593407, "y": 1.2509376006120967 }, { "posteriors": "curve_22", "x": 0.8461538461538461, "y": 1.2572684542765924 }, { "posteriors": "curve_22", "x": 0.8516483516483516, "y": 1.2635900602466068 }, { "posteriors": "curve_22", "x": 0.8571428571428571, "y": 1.2699024915636263 }, { "posteriors": "curve_22", "x": 0.8626373626373627, "y": 1.2762058202280373 }, { "posteriors": "curve_22", "x": 0.8681318681318682, "y": 1.282500117220496 }, { "posteriors": "curve_22", "x": 0.8736263736263736, "y": 1.2887854525227298 }, { "posteriors": "curve_22", "x": 0.8791208791208791, "y": 1.2950618951377857 }, { "posteriors": "curve_22", "x": 0.8846153846153846, "y": 1.3013295131097433 }, { "posteriors": "curve_22", "x": 0.8901098901098901, "y": 1.3075883735429124 }, { "posteriors": "curve_22", "x": 0.8956043956043956, "y": 1.3138385426205292 }, { "posteriors": "curve_22", "x": 0.9010989010989011, "y": 1.3200800856229684 }, { "posteriors": "curve_22", "x": 0.9065934065934066, "y": 1.3263130669454872 }, { "posteriors": "curve_22", "x": 0.9120879120879121, "y": 1.3325375501155134 }, { "posteriors": "curve_22", "x": 0.9175824175824175, "y": 1.3387535978094962 }, { "posteriors": "curve_22", "x": 0.9230769230769231, "y": 1.3449612718693285 }, { "posteriors": "curve_22", "x": 0.9285714285714286, "y": 1.351160633318358 }, { "posteriors": "curve_22", "x": 0.9340659340659341, "y": 1.3573517423769985 }, { "posteriors": "curve_22", "x": 0.9395604395604396, "y": 1.3635346584779522 }, { "posteriors": "curve_22", "x": 0.945054945054945, "y": 1.3697094402810563 }, { "posteriors": "curve_22", "x": 0.9505494505494505, "y": 1.375876145687767 }, { "posteriors": "curve_22", "x": 0.9560439560439561, "y": 1.3820348318552869 }, { "posteriors": "curve_22", "x": 0.9615384615384616, "y": 1.3881855552103526 }, { "posteriors": "curve_22", "x": 0.967032967032967, "y": 1.3943283714626873 }, { "posteriors": "curve_22", "x": 0.9725274725274725, "y": 1.4004633356181317 }, { "posteriors": "curve_22", "x": 0.978021978021978, "y": 1.406590501991463 }, { "posteriors": "curve_22", "x": 0.9835164835164835, "y": 1.4127099242189056 }, { "posteriors": "curve_22", "x": 0.989010989010989, "y": 1.4188216552703523 }, { "posteriors": "curve_22", "x": 0.9945054945054945, "y": 1.4249257474612933 }, { "posteriors": "curve_23", "x": 0, "y": 0 }, { "posteriors": "curve_23", "x": 0.005494505494505495, "y": 0.025166884977882015 }, { "posteriors": "curve_23", "x": 0.01098901098901099, "y": 0.043088282551816674 }, { "posteriors": "curve_23", "x": 0.016483516483516484, "y": 0.05901539425800394 }, { "posteriors": "curve_23", "x": 0.02197802197802198, "y": 0.07377154919636925 }, { "posteriors": "curve_23", "x": 0.027472527472527472, "y": 0.08771395253554552 }, { "posteriors": "curve_23", "x": 0.03296703296703297, "y": 0.10104039434878584 }, { "posteriors": "curve_23", "x": 0.038461538461538464, "y": 0.11387549357818398 }, { "posteriors": "curve_23", "x": 0.04395604395604396, "y": 0.1263044416840623 }, { "posteriors": "curve_23", "x": 0.04945054945054945, "y": 0.13838886944047812 }, { "posteriors": "curve_23", "x": 0.054945054945054944, "y": 0.15017526300572345 }, { "posteriors": "curve_23", "x": 0.06043956043956044, "y": 0.16169982897808396 }, { "posteriors": "curve_23", "x": 0.06593406593406594, "y": 0.17299149516015544 }, { "posteriors": "curve_23", "x": 0.07142857142857142, "y": 0.1840738578835942 }, { "posteriors": "curve_23", "x": 0.07692307692307693, "y": 0.194966498529184 }, { "posteriors": "curve_23", "x": 0.08241758241758242, "y": 0.20568590413006702 }, { "posteriors": "curve_23", "x": 0.08791208791208792, "y": 0.216246129611005 }, { "posteriors": "curve_23", "x": 0.09340659340659341, "y": 0.22665928579903208 }, { "posteriors": "curve_23", "x": 0.0989010989010989, "y": 0.23693590659783023 }, { "posteriors": "curve_23", "x": 0.1043956043956044, "y": 0.24708523029597393 }, { "posteriors": "curve_23", "x": 0.10989010989010989, "y": 0.25711541854984715 }, { "posteriors": "curve_23", "x": 0.11538461538461539, "y": 0.2670337292735105 }, { "posteriors": "curve_23", "x": 0.12087912087912088, "y": 0.27684665486854676 }, { "posteriors": "curve_23", "x": 0.12637362637362637, "y": 0.28656003400037916 }, { "posteriors": "curve_23", "x": 0.13186813186813187, "y": 0.2961791429123187 }, { "posteriors": "curve_23", "x": 0.13736263736263737, "y": 0.3057087707187281 }, { "posteriors": "curve_23", "x": 0.14285714285714285, "y": 0.31515328201570475 }, { "posteriors": "curve_23", "x": 0.14835164835164835, "y": 0.3245166693504939 }, { "posteriors": "curve_23", "x": 0.15384615384615385, "y": 0.3338025975064801 }, { "posteriors": "curve_23", "x": 0.15934065934065933, "y": 0.3430144411266804 }, { "posteriors": "curve_23", "x": 0.16483516483516483, "y": 0.3521553168725955 }, { "posteriors": "curve_23", "x": 0.17032967032967034, "y": 0.3612281110675529 }, { "posteriors": "curve_23", "x": 0.17582417582417584, "y": 0.370235503583563 }, { "posteriors": "curve_23", "x": 0.1813186813186813, "y": 0.3791799885834156 }, { "posteriors": "curve_23", "x": 0.18681318681318682, "y": 0.3880638926146345 }, { "posteriors": "curve_23", "x": 0.19230769230769232, "y": 0.3968893904611971 }, { "posteriors": "curve_23", "x": 0.1978021978021978, "y": 0.40565851908690737 }, { "posteriors": "curve_23", "x": 0.2032967032967033, "y": 0.4143731899467059 }, { "posteriors": "curve_23", "x": 0.2087912087912088, "y": 0.4230351998958276 }, { "posteriors": "curve_23", "x": 0.21428571428571427, "y": 0.4316462408891384 }, { "posteriors": "curve_23", "x": 0.21978021978021978, "y": 0.4402079086323529 }, { "posteriors": "curve_23", "x": 0.22527472527472528, "y": 0.44872171032172325 }, { "posteriors": "curve_23", "x": 0.23076923076923078, "y": 0.4571890715880984 }, { "posteriors": "curve_23", "x": 0.23626373626373626, "y": 0.4656113427441106 }, { "posteriors": "curve_23", "x": 0.24175824175824176, "y": 0.4739898044189782 }, { "posteriors": "curve_23", "x": 0.24725274725274726, "y": 0.4823256726534881 }, { "posteriors": "curve_23", "x": 0.25274725274725274, "y": 0.49062010351770036 }, { "posteriors": "curve_23", "x": 0.25824175824175827, "y": 0.4988741973054744 }, { "posteriors": "curve_23", "x": 0.26373626373626374, "y": 0.5070890023527611 }, { "posteriors": "curve_23", "x": 0.2692307692307692, "y": 0.5152655185205343 }, { "posteriors": "curve_23", "x": 0.27472527472527475, "y": 0.5234047003780465 }, { "posteriors": "curve_23", "x": 0.2802197802197802, "y": 0.5315074601176645 }, { "posteriors": "curve_23", "x": 0.2857142857142857, "y": 0.5395746702287293 }, { "posteriors": "curve_23", "x": 0.29120879120879123, "y": 0.547607165954609 }, { "posteriors": "curve_23", "x": 0.2967032967032967, "y": 0.5556057475542733 }, { "posteriors": "curve_23", "x": 0.3021978021978022, "y": 0.5635711823872739 }, { "posteriors": "curve_23", "x": 0.3076923076923077, "y": 0.5715042068388708 }, { "posteriors": "curve_23", "x": 0.3131868131868132, "y": 0.5794055281001953 }, { "posteriors": "curve_23", "x": 0.31868131868131866, "y": 0.5872758258167132 }, { "posteriors": "curve_23", "x": 0.3241758241758242, "y": 0.59511575361683 }, { "posteriors": "curve_23", "x": 0.32967032967032966, "y": 0.6029259405312353 }, { "posteriors": "curve_23", "x": 0.33516483516483514, "y": 0.6107069923124846 }, { "posteriors": "curve_23", "x": 0.34065934065934067, "y": 0.6184594926633478 }, { "posteriors": "curve_23", "x": 0.34615384615384615, "y": 0.6261840043816006 }, { "posteriors": "curve_23", "x": 0.3516483516483517, "y": 0.6338810704281785 }, { "posteriors": "curve_23", "x": 0.35714285714285715, "y": 0.6415512149249363 }, { "posteriors": "curve_23", "x": 0.3626373626373626, "y": 0.649194944087666 }, { "posteriors": "curve_23", "x": 0.36813186813186816, "y": 0.656812747099488 }, { "posteriors": "curve_23", "x": 0.37362637362637363, "y": 0.6644050969292592 }, { "posteriors": "curve_23", "x": 0.3791208791208791, "y": 0.6719724510992151 }, { "posteriors": "curve_23", "x": 0.38461538461538464, "y": 0.6795152524056857 }, { "posteriors": "curve_23", "x": 0.3901098901098901, "y": 0.6870339295963795 }, { "posteriors": "curve_23", "x": 0.3956043956043956, "y": 0.6945288980074318 }, { "posteriors": "curve_23", "x": 0.4010989010989011, "y": 0.7020005601631266 }, { "posteriors": "curve_23", "x": 0.4065934065934066, "y": 0.7094493063409658 }, { "posteriors": "curve_23", "x": 0.41208791208791207, "y": 0.7168755151045236 }, { "posteriors": "curve_23", "x": 0.4175824175824176, "y": 0.7242795538063321 }, { "posteriors": "curve_23", "x": 0.4230769230769231, "y": 0.7316617790628492 }, { "posteriors": "curve_23", "x": 0.42857142857142855, "y": 0.7390225372034087 }, { "posteriors": "curve_23", "x": 0.4340659340659341, "y": 0.7463621646948839 }, { "posteriors": "curve_23", "x": 0.43956043956043955, "y": 0.7536809885436766 }, { "posteriors": "curve_23", "x": 0.44505494505494503, "y": 0.760979326676505 }, { "posteriors": "curve_23", "x": 0.45054945054945056, "y": 0.7682574883013592 }, { "posteriors": "curve_23", "x": 0.45604395604395603, "y": 0.7755157742498849 }, { "posteriors": "curve_23", "x": 0.46153846153846156, "y": 0.7827544773023629 }, { "posteriors": "curve_23", "x": 0.46703296703296704, "y": 0.789973882496367 }, { "posteriors": "curve_23", "x": 0.4725274725274725, "y": 0.7971742674200991 }, { "posteriors": "curve_23", "x": 0.47802197802197804, "y": 0.8043559024913358 }, { "posteriors": "curve_23", "x": 0.4835164835164835, "y": 0.8115190512228441 }, { "posteriors": "curve_23", "x": 0.489010989010989, "y": 0.8186639704750737 }, { "posteriors": "curve_23", "x": 0.4945054945054945, "y": 0.8257909106968687 }, { "posteriors": "curve_23", "x": 0.5, "y": 0.8329001161548938 }, { "posteriors": "curve_23", "x": 0.5054945054945055, "y": 0.8399918251524234 }, { "posteriors": "curve_23", "x": 0.510989010989011, "y": 0.8470662702380954 }, { "posteriors": "curve_23", "x": 0.5164835164835165, "y": 0.8541236784051947 }, { "posteriors": "curve_23", "x": 0.521978021978022, "y": 0.8611642712819887 }, { "posteriors": "curve_23", "x": 0.5274725274725275, "y": 0.8681882653136126 }, { "posteriors": "curve_23", "x": 0.532967032967033, "y": 0.8751958719359556 }, { "posteriors": "curve_23", "x": 0.5384615384615384, "y": 0.8821872977419858 }, { "posteriors": "curve_23", "x": 0.5439560439560439, "y": 0.8891627446409119 }, { "posteriors": "curve_23", "x": 0.5494505494505495, "y": 0.8961224100105611 }, { "posteriors": "curve_23", "x": 0.554945054945055, "y": 0.9030664868433271 }, { "posteriors": "curve_23", "x": 0.5604395604395604, "y": 0.90999516388602 }, { "posteriors": "curve_23", "x": 0.5659340659340659, "y": 0.9169086257739305 }, { "posteriors": "curve_23", "x": 0.5714285714285714, "y": 0.9238070531594016 }, { "posteriors": "curve_23", "x": 0.5769230769230769, "y": 0.9306906228351826 }, { "posteriors": "curve_23", "x": 0.5824175824175825, "y": 0.9375595078528267 }, { "posteriors": "curve_23", "x": 0.5879120879120879, "y": 0.944413877636373 }, { "posteriors": "curve_23", "x": 0.5934065934065934, "y": 0.9512538980915468 }, { "posteriors": "curve_23", "x": 0.5989010989010989, "y": 0.9580797317106925 }, { "posteriors": "curve_23", "x": 0.6043956043956044, "y": 0.9648915376736423 }, { "posteriors": "curve_23", "x": 0.6098901098901099, "y": 0.971689471944717 }, { "posteriors": "curve_23", "x": 0.6153846153846154, "y": 0.9784736873660371 }, { "posteriors": "curve_23", "x": 0.6208791208791209, "y": 0.9852443337473195 }, { "posteriors": "curve_23", "x": 0.6263736263736264, "y": 0.992001557952319 }, { "posteriors": "curve_23", "x": 0.6318681318681318, "y": 0.9987455039820706 }, { "posteriors": "curve_23", "x": 0.6373626373626373, "y": 1.005476313055077 }, { "posteriors": "curve_23", "x": 0.6428571428571429, "y": 1.0121941236845775 }, { "posteriors": "curve_23", "x": 0.6483516483516484, "y": 1.018899071753031 }, { "posteriors": "curve_23", "x": 0.6538461538461539, "y": 1.0255912905839346 }, { "posteriors": "curve_23", "x": 0.6593406593406593, "y": 1.032270911011094 }, { "posteriors": "curve_23", "x": 0.6648351648351648, "y": 1.03893806144546 }, { "posteriors": "curve_23", "x": 0.6703296703296703, "y": 1.045592867939631 }, { "posteriors": "curve_23", "x": 0.6758241758241759, "y": 1.0522354542501253 }, { "posteriors": "curve_23", "x": 0.6813186813186813, "y": 1.0588659418975173 }, { "posteriors": "curve_23", "x": 0.6868131868131868, "y": 1.0654844502245255 }, { "posteriors": "curve_23", "x": 0.6923076923076923, "y": 1.07209109645214 }, { "posteriors": "curve_23", "x": 0.6978021978021978, "y": 1.078685995733869 }, { "posteriors": "curve_23", "x": 0.7032967032967034, "y": 1.0852692612081842 }, { "posteriors": "curve_23", "x": 0.7087912087912088, "y": 1.0918410040492343 }, { "posteriors": "curve_23", "x": 0.7142857142857143, "y": 1.098401333515902 }, { "posteriors": "curve_23", "x": 0.7197802197802198, "y": 1.1049503569992654 }, { "posteriors": "curve_23", "x": 0.7252747252747253, "y": 1.1114881800685328 }, { "posteriors": "curve_23", "x": 0.7307692307692307, "y": 1.1180149065155074 }, { "posteriors": "curve_23", "x": 0.7362637362637363, "y": 1.1245306383976403 }, { "posteriors": "curve_23", "x": 0.7417582417582418, "y": 1.1310354760797285 }, { "posteriors": "curve_23", "x": 0.7472527472527473, "y": 1.1375295182743086 }, { "posteriors": "curve_23", "x": 0.7527472527472527, "y": 1.1440128620807977 }, { "posteriors": "curve_23", "x": 0.7582417582417582, "y": 1.150485603023426 }, { "posteriors": "curve_23", "x": 0.7637362637362637, "y": 1.1569478350880131 }, { "posteriors": "curve_23", "x": 0.7692307692307693, "y": 1.1633996507576232 }, { "posteriors": "curve_23", "x": 0.7747252747252747, "y": 1.1698411410471479 }, { "posteriors": "curve_23", "x": 0.7802197802197802, "y": 1.1762723955368533 }, { "posteriors": "curve_23", "x": 0.7857142857142857, "y": 1.1826935024049308 }, { "posteriors": "curve_23", "x": 0.7912087912087912, "y": 1.1891045484590834 }, { "posteriors": "curve_23", "x": 0.7967032967032966, "y": 1.1955056191671913 }, { "posteriors": "curve_23", "x": 0.8021978021978022, "y": 1.201896798687081 }, { "posteriors": "curve_23", "x": 0.8076923076923077, "y": 1.208278169895434 }, { "posteriors": "curve_23", "x": 0.8131868131868132, "y": 1.2146498144158677 }, { "posteriors": "curve_23", "x": 0.8186813186813187, "y": 1.221011812646214 }, { "posteriors": "curve_23", "x": 0.8241758241758241, "y": 1.227364243785024 }, { "posteriors": "curve_23", "x": 0.8296703296703297, "y": 1.2337071858573285 }, { "posteriors": "curve_23", "x": 0.8351648351648352, "y": 1.2400407157396771 }, { "posteriors": "curve_23", "x": 0.8406593406593407, "y": 1.246364909184484 }, { "posteriors": "curve_23", "x": 0.8461538461538461, "y": 1.2526798408436988 }, { "posteriors": "curve_23", "x": 0.8516483516483516, "y": 1.2589855842918316 }, { "posteriors": "curve_23", "x": 0.8571428571428571, "y": 1.2652822120483491 }, { "posteriors": "curve_23", "x": 0.8626373626373627, "y": 1.271569795599466 }, { "posteriors": "curve_23", "x": 0.8681318681318682, "y": 1.2778484054193486 }, { "posteriors": "curve_23", "x": 0.8736263736263736, "y": 1.2841181109907542 }, { "posteriors": "curve_23", "x": 0.8791208791208791, "y": 1.2903789808251211 }, { "posteriors": "curve_23", "x": 0.8846153846153846, "y": 1.296631082482128 }, { "posteriors": "curve_23", "x": 0.8901098901098901, "y": 1.3028744825887435 }, { "posteriors": "curve_23", "x": 0.8956043956043956, "y": 1.3091092468577743 }, { "posteriors": "curve_23", "x": 0.9010989010989011, "y": 1.315335440105938 }, { "posteriors": "curve_23", "x": 0.9065934065934066, "y": 1.321553126271468 }, { "posteriors": "curve_23", "x": 0.9120879120879121, "y": 1.3277623684312676 }, { "posteriors": "curve_23", "x": 0.9175824175824175, "y": 1.3339632288176306 }, { "posteriors": "curve_23", "x": 0.9230769230769231, "y": 1.3401557688345354 }, { "posteriors": "curve_23", "x": 0.9285714285714286, "y": 1.346340049073533 }, { "posteriors": "curve_23", "x": 0.9340659340659341, "y": 1.3525161293292365 }, { "posteriors": "curve_23", "x": 0.9395604395604396, "y": 1.3586840686144257 }, { "posteriors": "curve_23", "x": 0.945054945054945, "y": 1.3648439251747804 }, { "posteriors": "curve_23", "x": 0.9505494505494505, "y": 1.3709957565032496 }, { "posteriors": "curve_23", "x": 0.9560439560439561, "y": 1.3771396193540733 }, { "posteriors": "curve_23", "x": 0.9615384615384616, "y": 1.3832755697564603 }, { "posteriors": "curve_23", "x": 0.967032967032967, "y": 1.3894036630279394 }, { "posteriors": "curve_23", "x": 0.9725274725274725, "y": 1.395523953787389 }, { "posteriors": "curve_23", "x": 0.978021978021978, "y": 1.401636495967755 }, { "posteriors": "curve_23", "x": 0.9835164835164835, "y": 1.4077413428284686 }, { "posteriors": "curve_23", "x": 0.989010989010989, "y": 1.4138385469675707 }, { "posteriors": "curve_23", "x": 0.9945054945054945, "y": 1.4199281603335512 }, { "posteriors": "curve_24", "x": 0, "y": 0 }, { "posteriors": "curve_24", "x": 0.005494505494505495, "y": 0.025247994607256734 }, { "posteriors": "curve_24", "x": 0.01098901098901099, "y": 0.044161904002334676 }, { "posteriors": "curve_24", "x": 0.016483516483516484, "y": 0.061247576750382095 }, { "posteriors": "curve_24", "x": 0.02197802197802198, "y": 0.07724469984443355 }, { "posteriors": "curve_24", "x": 0.027472527472527472, "y": 0.0924782408499689 }, { "posteriors": "curve_24", "x": 0.03296703296703297, "y": 0.10712968086774652 }, { "posteriors": "curve_24", "x": 0.038461538461538464, "y": 0.12131411636190949 }, { "posteriors": "curve_24", "x": 0.04395604395604396, "y": 0.13511065224319116 }, { "posteriors": "curve_24", "x": 0.04945054945054945, "y": 0.14857677673599326 }, { "posteriors": "curve_24", "x": 0.054945054945054944, "y": 0.16175602293369037 }, { "posteriors": "curve_24", "x": 0.06043956043956044, "y": 0.17468241599665144 }, { "posteriors": "curve_24", "x": 0.06593406593406594, "y": 0.18738322610867403 }, { "posteriors": "curve_24", "x": 0.07142857142857142, "y": 0.19988076074652955 }, { "posteriors": "curve_24", "x": 0.07692307692307693, "y": 0.21219357989576218 }, { "posteriors": "curve_24", "x": 0.08241758241758242, "y": 0.22433734806687713 }, { "posteriors": "curve_24", "x": 0.08791208791208792, "y": 0.23632544868896957 }, { "posteriors": "curve_24", "x": 0.09340659340659341, "y": 0.24816943788278578 }, { "posteriors": "curve_24", "x": 0.0989010989010989, "y": 0.2598793865911778 }, { "posteriors": "curve_24", "x": 0.1043956043956044, "y": 0.271464143214357 }, { "posteriors": "curve_24", "x": 0.10989010989010989, "y": 0.2829315384337067 }, { "posteriors": "curve_24", "x": 0.11538461538461539, "y": 0.29428854720387426 }, { "posteriors": "curve_24", "x": 0.12087912087912088, "y": 0.30554141848251104 }, { "posteriors": "curve_24", "x": 0.12637362637362637, "y": 0.31669578029684325 }, { "posteriors": "curve_24", "x": 0.13186813186813187, "y": 0.32775672570369574 }, { "posteriors": "curve_24", "x": 0.13736263736263737, "y": 0.3387288837683287 }, { "posteriors": "curve_24", "x": 0.14285714285714285, "y": 0.3496164786673706 }, { "posteriors": "curve_24", "x": 0.14835164835164835, "y": 0.36042337928282964 }, { "posteriors": "curve_24", "x": 0.15384615384615385, "y": 0.3711531411122459 }, { "posteriors": "curve_24", "x": 0.15934065934065933, "y": 0.38180904191712295 }, { "posteriors": "curve_24", "x": 0.16483516483516483, "y": 0.39239411222863096 }, { "posteriors": "curve_24", "x": 0.17032967032967034, "y": 0.40291116159899526 }, { "posteriors": "curve_24", "x": 0.17582417582417584, "y": 0.4133628013098227 }, { "posteriors": "curve_24", "x": 0.1813186813186813, "y": 0.4237514641112142 }, { "posteriors": "curve_24", "x": 0.18681318681318682, "y": 0.4340794214580093 }, { "posteriors": "curve_24", "x": 0.19230769230769232, "y": 0.4443487986247152 }, { "posteriors": "curve_24", "x": 0.1978021978021978, "y": 0.4545615880132746 }, { "posteriors": "curve_24", "x": 0.2032967032967033, "y": 0.46471966091387795 }, { "posteriors": "curve_24", "x": 0.2087912087912088, "y": 0.4748247779355431 }, { "posteriors": "curve_24", "x": 0.21428571428571427, "y": 0.4848785982879288 }, { "posteriors": "curve_24", "x": 0.21978021978021978, "y": 0.4948826880670748 }, { "posteriors": "curve_24", "x": 0.22527472527472528, "y": 0.5048385276741622 }, { "posteriors": "curve_24", "x": 0.23076923076923078, "y": 0.5147475184769187 }, { "posteriors": "curve_24", "x": 0.23626373626373626, "y": 0.524610988807155 }, { "posteriors": "curve_24", "x": 0.24175824175824176, "y": 0.5344301993744722 }, { "posteriors": "curve_24", "x": 0.24725274725274726, "y": 0.5442063481649382 }, { "posteriors": "curve_24", "x": 0.25274725274725274, "y": 0.5539405748840688 }, { "posteriors": "curve_24", "x": 0.25824175824175827, "y": 0.5636339649954815 }, { "posteriors": "curve_24", "x": 0.26373626373626374, "y": 0.5732875533998234 }, { "posteriors": "curve_24", "x": 0.2692307692307692, "y": 0.5829023277928358 }, { "posteriors": "curve_24", "x": 0.27472527472527475, "y": 0.5924792317365057 }, { "posteriors": "curve_24", "x": 0.2802197802197802, "y": 0.6020191674730638 }, { "posteriors": "curve_24", "x": 0.2857142857142857, "y": 0.6115229985079705 }, { "posteriors": "curve_24", "x": 0.29120879120879123, "y": 0.6209915519849326 }, { "posteriors": "curve_24", "x": 0.2967032967032967, "y": 0.6304256208732931 }, { "posteriors": "curve_24", "x": 0.3021978021978022, "y": 0.6398259659858191 }, { "posteriors": "curve_24", "x": 0.3076923076923077, "y": 0.6491933178428736 }, { "posteriors": "curve_24", "x": 0.3131868131868132, "y": 0.6585283783972009 }, { "posteriors": "curve_24", "x": 0.31868131868131866, "y": 0.6678318226320072 }, { "posteriors": "curve_24", "x": 0.3241758241758242, "y": 0.6771043000436646 }, { "posteriors": "curve_24", "x": 0.32967032967032966, "y": 0.6863464360191801 }, { "posteriors": "curve_24", "x": 0.33516483516483514, "y": 0.6955588331175308 }, { "posteriors": "curve_24", "x": 0.34065934065934067, "y": 0.7047420722630325 }, { "posteriors": "curve_24", "x": 0.34615384615384615, "y": 0.7138967138581047 }, { "posteriors": "curve_24", "x": 0.3516483516483517, "y": 0.7230232988220675 }, { "posteriors": "curve_24", "x": 0.35714285714285715, "y": 0.732122349561963 }, { "posteriors": "curve_24", "x": 0.3626373626373626, "y": 0.7411943708808286 }, { "posteriors": "curve_24", "x": 0.36813186813186816, "y": 0.7502398508283349 }, { "posteriors": "curve_24", "x": 0.37362637362637363, "y": 0.7592592614982514 }, { "posteriors": "curve_24", "x": 0.3791208791208791, "y": 0.7682530597767969 }, { "posteriors": "curve_24", "x": 0.38461538461538464, "y": 0.7772216880455655 }, { "posteriors": "curve_24", "x": 0.3901098901098901, "y": 0.7861655748423945 }, { "posteriors": "curve_24", "x": 0.3956043956043956, "y": 0.7950851354832481 }, { "posteriors": "curve_24", "x": 0.4010989010989011, "y": 0.8039807726479242 }, { "posteriors": "curve_24", "x": 0.4065934065934066, "y": 0.8128528769321559 }, { "posteriors": "curve_24", "x": 0.41208791208791207, "y": 0.8217018273684634 }, { "posteriors": "curve_24", "x": 0.4175824175824176, "y": 0.8305279919179169 }, { "posteriors": "curve_24", "x": 0.4230769230769231, "y": 0.8393317279347978 }, { "posteriors": "curve_24", "x": 0.42857142857142855, "y": 0.8481133826059823 }, { "posteriors": "curve_24", "x": 0.4340659340659341, "y": 0.8568732933667297 }, { "posteriors": "curve_24", "x": 0.43956043956043955, "y": 0.8656117882944246 }, { "posteriors": "curve_24", "x": 0.44505494505494503, "y": 0.8743291864817023 }, { "posteriors": "curve_24", "x": 0.45054945054945056, "y": 0.8830257983902785 }, { "posteriors": "curve_24", "x": 0.45604395604395603, "y": 0.8917019261867037 }, { "posteriors": "curve_24", "x": 0.46153846153846156, "y": 0.9003578640611727 }, { "posteriors": "curve_24", "x": 0.46703296703296704, "y": 0.9089938985304333 }, { "posteriors": "curve_24", "x": 0.4725274725274725, "y": 0.9176103087257705 }, { "posteriors": "curve_24", "x": 0.47802197802197804, "y": 0.9262073666669591 }, { "posteriors": "curve_24", "x": 0.4835164835164835, "y": 0.9347853375230258 }, { "posteriors": "curve_24", "x": 0.489010989010989, "y": 0.943344479860601 }, { "posteriors": "curve_24", "x": 0.4945054945054945, "y": 0.9518850458805763 }, { "posteriors": "curve_24", "x": 0.5, "y": 0.960407281643749 }, { "posteriors": "curve_24", "x": 0.5054945054945055, "y": 0.9689114272860782 }, { "posteriors": "curve_24", "x": 0.510989010989011, "y": 0.9773977172241374 }, { "posteriors": "curve_24", "x": 0.5164835164835165, "y": 0.9858663803513149 }, { "posteriors": "curve_24", "x": 0.521978021978022, "y": 0.9943176402252661 }, { "posteriors": "curve_24", "x": 0.5274725274725275, "y": 1.0027517152471037 }, { "posteriors": "curve_24", "x": 0.532967032967033, "y": 1.0111688188327632 }, { "posteriors": "curve_24", "x": 0.5384615384615384, "y": 1.0195691595769705 }, { "posteriors": "curve_24", "x": 0.5439560439560439, "y": 1.027952941410198 }, { "posteriors": "curve_24", "x": 0.5494505494505495, "y": 1.0363203637489793 }, { "posteriors": "curve_24", "x": 0.554945054945055, "y": 1.044671621639925 }, { "posteriors": "curve_24", "x": 0.5604395604395604, "y": 1.0530069058977656 }, { "posteriors": "curve_24", "x": 0.5659340659340659, "y": 1.0613264032377243 }, { "posteriors": "curve_24", "x": 0.5714285714285714, "y": 1.0696302964025042 }, { "posteriors": "curve_24", "x": 0.5769230769230769, "y": 1.0779187642841603 }, { "posteriors": "curve_24", "x": 0.5824175824175825, "y": 1.0861919820411086 }, { "posteriors": "curve_24", "x": 0.5879120879120879, "y": 1.0944501212105098 }, { "posteriors": "curve_24", "x": 0.5934065934065934, "y": 1.1026933498162526 }, { "posteriors": "curve_24", "x": 0.5989010989010989, "y": 1.110921832472747 }, { "posteriors": "curve_24", "x": 0.6043956043956044, "y": 1.1191357304847303 }, { "posteriors": "curve_24", "x": 0.6098901098901099, "y": 1.1273352019432668 }, { "posteriors": "curve_24", "x": 0.6153846153846154, "y": 1.135520401818129 }, { "posteriors": "curve_24", "x": 0.6208791208791209, "y": 1.143691482046719 }, { "posteriors": "curve_24", "x": 0.6263736263736264, "y": 1.1518485916196946 }, { "posteriors": "curve_24", "x": 0.6318681318681318, "y": 1.159991876663446 }, { "posteriors": "curve_24", "x": 0.6373626373626373, "y": 1.1681214805195719 }, { "posteriors": "curve_24", "x": 0.6428571428571429, "y": 1.1762375438214792 }, { "posteriors": "curve_24", "x": 0.6483516483516484, "y": 1.1843402045682425 }, { "posteriors": "curve_24", "x": 0.6538461538461539, "y": 1.1924295981958424 }, { "posteriors": "curve_24", "x": 0.6593406593406593, "y": 1.2005058576458907 }, { "posteriors": "curve_24", "x": 0.6648351648351648, "y": 1.2085691134319603 }, { "posteriors": "curve_24", "x": 0.6703296703296703, "y": 1.216619493703616 }, { "posteriors": "curve_24", "x": 0.6758241758241759, "y": 1.2246571243082462 }, { "posteriors": "curve_24", "x": 0.6813186813186813, "y": 1.2326821288507879 }, { "posteriors": "curve_24", "x": 0.6868131868131868, "y": 1.2406946287514347 }, { "posteriors": "curve_24", "x": 0.6923076923076923, "y": 1.248694743301409 }, { "posteriors": "curve_24", "x": 0.6978021978021978, "y": 1.2566825897168794 }, { "posteriors": "curve_24", "x": 0.7032967032967034, "y": 1.264658283191101 }, { "posteriors": "curve_24", "x": 0.7087912087912088, "y": 1.272621936944845 }, { "posteriors": "curve_24", "x": 0.7142857142857143, "y": 1.2805736622751944 }, { "posteriors": "curve_24", "x": 0.7197802197802198, "y": 1.2885135686027642 }, { "posteriors": "curve_24", "x": 0.7252747252747253, "y": 1.2964417635174106 }, { "posteriors": "curve_24", "x": 0.7307692307692307, "y": 1.3043583528224927 }, { "posteriors": "curve_24", "x": 0.7362637362637363, "y": 1.3122634405777345 }, { "posteriors": "curve_24", "x": 0.7417582417582418, "y": 1.320157129140751 }, { "posteriors": "curve_24", "x": 0.7472527472527473, "y": 1.3280395192072825 }, { "posteriors": "curve_24", "x": 0.7527472527472527, "y": 1.3359107098501906 }, { "posteriors": "curve_24", "x": 0.7582417582417582, "y": 1.3437707985572604 }, { "posteriors": "curve_24", "x": 0.7637362637362637, "y": 1.351619881267856 }, { "posteriors": "curve_24", "x": 0.7692307692307693, "y": 1.359458052408469 }, { "posteriors": "curve_24", "x": 0.7747252747252747, "y": 1.3672854049272054 }, { "posteriors": "curve_24", "x": 0.7802197802197802, "y": 1.3751020303272454 }, { "posteriors": "curve_24", "x": 0.7857142857142857, "y": 1.3829080186993166 }, { "posteriors": "curve_24", "x": 0.7912087912087912, "y": 1.3907034587532148 }, { "posteriors": "curve_24", "x": 0.7967032967032966, "y": 1.3984884378484106 }, { "posteriors": "curve_24", "x": 0.8021978021978022, "y": 1.4062630420237658 }, { "posteriors": "curve_24", "x": 0.8076923076923077, "y": 1.4140273560264018 }, { "posteriors": "curve_24", "x": 0.8131868131868132, "y": 1.4217814633397434 }, { "posteriors": "curve_24", "x": 0.8186813186813187, "y": 1.4295254462107676 }, { "posteriors": "curve_24", "x": 0.8241758241758241, "y": 1.4372593856764864 }, { "posteriors": "curve_24", "x": 0.8296703296703297, "y": 1.4449833615896914 }, { "posteriors": "curve_24", "x": 0.8351648351648352, "y": 1.452697452643981 }, { "posteriors": "curve_24", "x": 0.8406593406593407, "y": 1.4604017363981003 }, { "posteriors": "curve_24", "x": 0.8461538461538461, "y": 1.468096289299612 }, { "posteriors": "curve_24", "x": 0.8516483516483516, "y": 1.4757811867079245 }, { "posteriors": "curve_24", "x": 0.8571428571428571, "y": 1.4834565029166982 }, { "posteriors": "curve_24", "x": 0.8626373626373627, "y": 1.4911223111756469 }, { "posteriors": "curve_24", "x": 0.8681318681318682, "y": 1.4987786837117605 }, { "posteriors": "curve_24", "x": 0.8736263736263736, "y": 1.5064256917499628 }, { "posteriors": "curve_24", "x": 0.8791208791208791, "y": 1.514063405533225 }, { "posteriors": "curve_24", "x": 0.8846153846153846, "y": 1.5216918943421531 }, { "posteriors": "curve_24", "x": 0.8901098901098901, "y": 1.5293112265140656 }, { "posteriors": "curve_24", "x": 0.8956043956043956, "y": 1.5369214694615756 }, { "posteriors": "curve_24", "x": 0.9010989010989011, "y": 1.5445226896906978 }, { "posteriors": "curve_24", "x": 0.9065934065934066, "y": 1.5521149528184917 }, { "posteriors": "curve_24", "x": 0.9120879120879121, "y": 1.5596983235902553 }, { "posteriors": "curve_24", "x": 0.9175824175824175, "y": 1.5672728658962862 }, { "posteriors": "curve_24", "x": 0.9230769230769231, "y": 1.5748386427882242 }, { "posteriors": "curve_24", "x": 0.9285714285714286, "y": 1.5823957164949796 }, { "posteriors": "curve_24", "x": 0.9340659340659341, "y": 1.5899441484382741 }, { "posteriors": "curve_24", "x": 0.9395604395604396, "y": 1.597483999247794 }, { "posteriors": "curve_24", "x": 0.945054945054945, "y": 1.6050153287759732 }, { "posteriors": "curve_24", "x": 0.9505494505494505, "y": 1.6125381961124154 }, { "posteriors": "curve_24", "x": 0.9560439560439561, "y": 1.6200526595979685 }, { "posteriors": "curve_24", "x": 0.9615384615384616, "y": 1.6275587768384576 }, { "posteriors": "curve_24", "x": 0.967032967032967, "y": 1.6350566047180917 }, { "posteriors": "curve_24", "x": 0.9725274725274725, "y": 1.6425461994125494 }, { "posteriors": "curve_24", "x": 0.978021978021978, "y": 1.650027616401755 }, { "posteriors": "curve_24", "x": 0.9835164835164835, "y": 1.6575009104823544 }, { "posteriors": "curve_24", "x": 0.989010989010989, "y": 1.664966135779898 }, { "posteriors": "curve_24", "x": 0.9945054945054945, "y": 1.6724233457607405 }, { "posteriors": "curve_25", "x": 0, "y": 0 }, { "posteriors": "curve_25", "x": 0.005494505494505495, "y": 0.025545668906537543 }, { "posteriors": "curve_25", "x": 0.01098901098901099, "y": 0.044116716403163475 }, { "posteriors": "curve_25", "x": 0.016483516483516484, "y": 0.06073045499015312 }, { "posteriors": "curve_25", "x": 0.02197802197802198, "y": 0.076188440135113 }, { "posteriors": "curve_25", "x": 0.027472527472527472, "y": 0.09084019968701901 }, { "posteriors": "curve_25", "x": 0.03296703296703297, "y": 0.10487994147414996 }, { "posteriors": "curve_25", "x": 0.038461538461538464, "y": 0.11843035265911665 }, { "posteriors": "curve_25", "x": 0.04395604395604396, "y": 0.13157548619836681 }, { "posteriors": "curve_25", "x": 0.04945054945054945, "y": 0.14437626107207352 }, { "posteriors": "curve_25", "x": 0.054945054945054944, "y": 0.15687869995736756 }, { "posteriors": "curve_25", "x": 0.06043956043956044, "y": 0.16911869910551366 }, { "posteriors": "curve_25", "x": 0.06593406593406594, "y": 0.18112497470016706 }, { "posteriors": "curve_25", "x": 0.07142857142857142, "y": 0.19292097736483999 }, { "posteriors": "curve_25", "x": 0.07692307692307693, "y": 0.20452618801662253 }, { "posteriors": "curve_25", "x": 0.08241758241758242, "y": 0.21595702498818503 }, { "posteriors": "curve_25", "x": 0.08791208791208792, "y": 0.2272274972113253 }, { "posteriors": "curve_25", "x": 0.09340659340659341, "y": 0.23834968599263417 }, { "posteriors": "curve_25", "x": 0.0989010989010989, "y": 0.24933410780391527 }, { "posteriors": "curve_25", "x": 0.1043956043956044, "y": 0.2601899924520176 }, { "posteriors": "curve_25", "x": 0.10989010989010989, "y": 0.2709254997799244 }, { "posteriors": "curve_25", "x": 0.11538461538461539, "y": 0.2815478908752244 }, { "posteriors": "curve_25", "x": 0.12087912087912088, "y": 0.29206366504658265 }, { "posteriors": "curve_25", "x": 0.12637362637362637, "y": 0.30247867065637535 }, { "posteriors": "curve_25", "x": 0.13186813186813187, "y": 0.3127981957181203 }, { "posteriors": "curve_25", "x": 0.13736263736263737, "y": 0.32302704264149007 }, { "posteriors": "curve_25", "x": 0.14285714285714285, "y": 0.33316959042116356 }, { "posteriors": "curve_25", "x": 0.14835164835164835, "y": 0.3432298467800261 }, { "posteriors": "curve_25", "x": 0.15384615384615385, "y": 0.35321149220094583 }, { "posteriors": "curve_25", "x": 0.15934065934065933, "y": 0.3631179173532065 }, { "posteriors": "curve_25", "x": 0.16483516483516483, "y": 0.37295225509778906 }, { "posteriors": "curve_25", "x": 0.17032967032967034, "y": 0.3827174080110357 }, { "posteriors": "curve_25", "x": 0.17582417582417584, "y": 0.3924160721783731 }, { "posteriors": "curve_25", "x": 0.1813186813186813, "y": 0.4020507578641726 }, { "posteriors": "curve_25", "x": 0.18681318681318682, "y": 0.4116238075499797 }, { "posteriors": "curve_25", "x": 0.19230769230769232, "y": 0.42113741174360225 }, { "posteriors": "curve_25", "x": 0.1978021978021978, "y": 0.430593622890262 }, { "posteriors": "curve_25", "x": 0.2032967032967033, "y": 0.4399943676599797 }, { "posteriors": "curve_25", "x": 0.2087912087912088, "y": 0.44934145783942736 }, { "posteriors": "curve_25", "x": 0.21428571428571427, "y": 0.4586366000192467 }, { "posteriors": "curve_25", "x": 0.21978021978021978, "y": 0.46788140423746977 }, { "posteriors": "curve_25", "x": 0.22527472527472528, "y": 0.477077391714779 }, { "posteriors": "curve_25", "x": 0.23076923076923078, "y": 0.4862260017968201 }, { "posteriors": "curve_25", "x": 0.23626373626373626, "y": 0.4953285982017698 }, { "posteriors": "curve_25", "x": 0.24175824175824176, "y": 0.5043864746572038 }, { "posteriors": "curve_25", "x": 0.24725274725274726, "y": 0.5134008599984621 }, { "posteriors": "curve_25", "x": 0.25274725274725274, "y": 0.5223729227907656 }, { "posteriors": "curve_25", "x": 0.25824175824175827, "y": 0.5313037755289417 }, { "posteriors": "curve_25", "x": 0.26373626373626374, "y": 0.5401944784615129 }, { "posteriors": "curve_25", "x": 0.2692307692307692, "y": 0.5490460430798633 }, { "posteriors": "curve_25", "x": 0.27472527472527475, "y": 0.5578594353080408 }, { "posteriors": "curve_25", "x": 0.2802197802197802, "y": 0.5666355784243489 }, { "posteriors": "curve_25", "x": 0.2857142857142857, "y": 0.5753753557420868 }, { "posteriors": "curve_25", "x": 0.29120879120879123, "y": 0.584079613073541 }, { "posteriors": "curve_25", "x": 0.2967032967032967, "y": 0.5927491609985026 }, { "posteriors": "curve_25", "x": 0.3021978021978022, "y": 0.6013847769561503 }, { "posteriors": "curve_25", "x": 0.3076923076923077, "y": 0.6099872071770059 }, { "posteriors": "curve_25", "x": 0.3131868131868132, "y": 0.6185571684698261 }, { "posteriors": "curve_25", "x": 0.31868131868131866, "y": 0.6270953498766713 }, { "posteriors": "curve_25", "x": 0.3241758241758242, "y": 0.6356024142079802 }, { "posteriors": "curve_25", "x": 0.32967032967032966, "y": 0.6440789994682327 }, { "posteriors": "curve_25", "x": 0.33516483516483514, "y": 0.6525257201816914 }, { "posteriors": "curve_25", "x": 0.34065934065934067, "y": 0.6609431686267461 }, { "posteriors": "curve_25", "x": 0.34615384615384615, "y": 0.6693319159865324 }, { "posteriors": "curve_25", "x": 0.3516483516483517, "y": 0.677692513422742 }, { "posteriors": "curve_25", "x": 0.35714285714285715, "y": 0.6860254930788686 }, { "posteriors": "curve_25", "x": 0.3626373626373626, "y": 0.6943313690185433 }, { "posteriors": "curve_25", "x": 0.36813186813186816, "y": 0.7026106381040725 }, { "posteriors": "curve_25", "x": 0.37362637362637363, "y": 0.7108637808198278 }, { "posteriors": "curve_25", "x": 0.3791208791208791, "y": 0.7190912620447086 }, { "posteriors": "curve_25", "x": 0.38461538461538464, "y": 0.727293531777517 }, { "posteriors": "curve_25", "x": 0.3901098901098901, "y": 0.7354710258187457 }, { "posteriors": "curve_25", "x": 0.3956043956043956, "y": 0.7436241664119797 }, { "posteriors": "curve_25", "x": 0.4010989010989011, "y": 0.7517533628478237 }, { "posteriors": "curve_25", "x": 0.4065934065934066, "y": 0.7598590120330323 }, { "posteriors": "curve_25", "x": 0.41208791208791207, "y": 0.7679414990272905 }, { "posteriors": "curve_25", "x": 0.4175824175824176, "y": 0.7760011975498873 }, { "posteriors": "curve_25", "x": 0.4230769230769231, "y": 0.7840384704583457 }, { "posteriors": "curve_25", "x": 0.42857142857142855, "y": 0.7920536702009061 }, { "posteriors": "curve_25", "x": 0.4340659340659341, "y": 0.8000471392446055 }, { "posteriors": "curve_25", "x": 0.43956043956043955, "y": 0.8080192104805635 }, { "posteriors": "curve_25", "x": 0.44505494505494503, "y": 0.8159702076079554 }, { "posteriors": "curve_25", "x": 0.45054945054945056, "y": 0.823900445498045 }, { "posteriors": "curve_25", "x": 0.45604395604395603, "y": 0.8318102305395397 }, { "posteriors": "curve_25", "x": 0.46153846153846156, "y": 0.8396998609664431 }, { "posteriors": "curve_25", "x": 0.46703296703296704, "y": 0.8475696271694865 }, { "posteriors": "curve_25", "x": 0.4725274725274725, "y": 0.8554198119921472 }, { "posteriors": "curve_25", "x": 0.47802197802197804, "y": 0.8632506910121861 }, { "posteriors": "curve_25", "x": 0.4835164835164835, "y": 0.8710625328095697 }, { "posteriors": "curve_25", "x": 0.489010989010989, "y": 0.8788555992215847 }, { "posteriors": "curve_25", "x": 0.4945054945054945, "y": 0.8866301455858925 }, { "posteriors": "curve_25", "x": 0.5, "y": 0.8943864209722209 }, { "posteriors": "curve_25", "x": 0.5054945054945055, "y": 0.9021246684033449 }, { "posteriors": "curve_25", "x": 0.510989010989011, "y": 0.9098451250659607 }, { "posteriors": "curve_25", "x": 0.5164835164835165, "y": 0.917548022512021 }, { "posteriors": "curve_25", "x": 0.521978021978022, "y": 0.9252335868510572 }, { "posteriors": "curve_25", "x": 0.5274725274725275, "y": 0.9329020389339845 }, { "posteriors": "curve_25", "x": 0.532967032967033, "y": 0.940553594528852 }, { "posteriors": "curve_25", "x": 0.5384615384615384, "y": 0.948188464488968 }, { "posteriors": "curve_25", "x": 0.5439560439560439, "y": 0.9558068549138072 }, { "posteriors": "curve_25", "x": 0.5494505494505495, "y": 0.963408967303081 }, { "posteriors": "curve_25", "x": 0.554945054945055, "y": 0.9709949987043223 }, { "posteriors": "curve_25", "x": 0.5604395604395604, "y": 0.9785651418543236 }, { "posteriors": "curve_25", "x": 0.5659340659340659, "y": 0.9861195853147411 }, { "posteriors": "curve_25", "x": 0.5714285714285714, "y": 0.9936585136021573 }, { "posteriors": "curve_25", "x": 0.5769230769230769, "y": 1.001182107312882 }, { "posteriors": "curve_25", "x": 0.5824175824175825, "y": 1.008690543242753 }, { "posteriors": "curve_25", "x": 0.5879120879120879, "y": 1.0161839945021802 }, { "posteriors": "curve_25", "x": 0.5934065934065934, "y": 1.0236626306266652 }, { "posteriors": "curve_25", "x": 0.5989010989010989, "y": 1.0311266176830154 }, { "posteriors": "curve_25", "x": 0.6043956043956044, "y": 1.0385761183714577 }, { "posteriors": "curve_25", "x": 0.6098901098901099, "y": 1.0460112921238458 }, { "posteriors": "curve_25", "x": 0.6153846153846154, "y": 1.0534322951981436 }, { "posteriors": "curve_25", "x": 0.6208791208791209, "y": 1.060839280769361 }, { "posteriors": "curve_25", "x": 0.6263736263736264, "y": 1.0682323990170997 }, { "posteriors": "curve_25", "x": 0.6318681318681318, "y": 1.075611797209872 }, { "posteriors": "curve_25", "x": 0.6373626373626373, "y": 1.0829776197863297 }, { "posteriors": "curve_25", "x": 0.6428571428571429, "y": 1.090330008433549 }, { "posteriors": "curve_25", "x": 0.6483516483516484, "y": 1.097669102162498 }, { "posteriors": "curve_25", "x": 0.6538461538461539, "y": 1.1049950373808153 }, { "posteriors": "curve_25", "x": 0.6593406593406593, "y": 1.112307947963012 }, { "posteriors": "curve_25", "x": 0.6648351648351648, "y": 1.119607965318214 }, { "posteriors": "curve_25", "x": 0.6703296703296703, "y": 1.1268952184555463 }, { "posteriors": "curve_25", "x": 0.6758241758241759, "y": 1.1341698340472641 }, { "posteriors": "curve_25", "x": 0.6813186813186813, "y": 1.1414319364897216 }, { "posteriors": "curve_25", "x": 0.6868131868131868, "y": 1.1486816479622737 }, { "posteriors": "curve_25", "x": 0.6923076923076923, "y": 1.1559190884841941 }, { "posteriors": "curve_25", "x": 0.6978021978021978, "y": 1.1631443759696902 }, { "posteriors": "curve_25", "x": 0.7032967032967034, "y": 1.170357626281099 }, { "posteriors": "curve_25", "x": 0.7087912087912088, "y": 1.1775589532803301 }, { "posteriors": "curve_25", "x": 0.7142857142857143, "y": 1.1847484688786323 }, { "posteriors": "curve_25", "x": 0.7197802197802198, "y": 1.1919262830847488 }, { "posteriors": "curve_25", "x": 0.7252747252747253, "y": 1.1990925040515266 }, { "posteriors": "curve_25", "x": 0.7307692307692307, "y": 1.2062472381210365 }, { "posteriors": "curve_25", "x": 0.7362637362637363, "y": 1.213390589868269 }, { "posteriors": "curve_25", "x": 0.7417582417582418, "y": 1.220522662143456 }, { "posteriors": "curve_25", "x": 0.7472527472527473, "y": 1.227643556113073 }, { "posteriors": "curve_25", "x": 0.7527472527472527, "y": 1.2347533712995726 }, { "posteriors": "curve_25", "x": 0.7582417582417582, "y": 1.2418522056198993 }, { "posteriors": "curve_25", "x": 0.7637362637362637, "y": 1.2489401554228254 }, { "posteriors": "curve_25", "x": 0.7692307692307693, "y": 1.2560173155251617 }, { "posteriors": "curve_25", "x": 0.7747252747252747, "y": 1.2630837792468745 }, { "posteriors": "curve_25", "x": 0.7802197802197802, "y": 1.2701396384451586 }, { "posteriors": "curve_25", "x": 0.7857142857142857, "y": 1.2771849835474982 }, { "posteriors": "curve_25", "x": 0.7912087912087912, "y": 1.2842199035837543 }, { "posteriors": "curve_25", "x": 0.7967032967032966, "y": 1.2912444862173162 }, { "posteriors": "curve_25", "x": 0.8021978021978022, "y": 1.2982588177753476 }, { "posteriors": "curve_25", "x": 0.8076923076923077, "y": 1.3052629832781597 }, { "posteriors": "curve_25", "x": 0.8131868131868132, "y": 1.312257066467746 }, { "posteriors": "curve_25", "x": 0.8186813186813187, "y": 1.319241149835503 }, { "posteriors": "curve_25", "x": 0.8241758241758241, "y": 1.3262153146491704 }, { "posteriors": "curve_25", "x": 0.8296703296703297, "y": 1.3331796409790115 }, { "posteriors": "curve_25", "x": 0.8351648351648352, "y": 1.340134207723268 }, { "posteriors": "curve_25", "x": 0.8406593406593407, "y": 1.3470790926329086 }, { "posteriors": "curve_25", "x": 0.8461538461538461, "y": 1.3540143723356948 }, { "posteriors": "curve_25", "x": 0.8516483516483516, "y": 1.3609401223595914 }, { "posteriors": "curve_25", "x": 0.8571428571428571, "y": 1.3678564171555407 }, { "posteriors": "curve_25", "x": 0.8626373626373627, "y": 1.3747633301196218 }, { "posteriors": "curve_25", "x": 0.8681318681318682, "y": 1.3816609336146148 }, { "posteriors": "curve_25", "x": 0.8736263736263736, "y": 1.388549298990994 }, { "posteriors": "curve_25", "x": 0.8791208791208791, "y": 1.3954284966073605 }, { "posteriors": "curve_25", "x": 0.8846153846153846, "y": 1.4022985958503418 }, { "posteriors": "curve_25", "x": 0.8901098901098901, "y": 1.4091596651539688 }, { "posteriors": "curve_25", "x": 0.8956043956043956, "y": 1.416011772018549 }, { "posteriors": "curve_25", "x": 0.9010989010989011, "y": 1.4228549830290536 }, { "posteriors": "curve_25", "x": 0.9065934065934066, "y": 1.4296893638730326 }, { "posteriors": "curve_25", "x": 0.9120879120879121, "y": 1.4365149793580714 }, { "posteriors": "curve_25", "x": 0.9175824175824175, "y": 1.443331893428807 }, { "posteriors": "curve_25", "x": 0.9230769230769231, "y": 1.4501401691835136 }, { "posteriors": "curve_25", "x": 0.9285714285714286, "y": 1.4569398688902722 }, { "posteriors": "curve_25", "x": 0.9340659340659341, "y": 1.4637310540027406 }, { "posteriors": "curve_25", "x": 0.9395604395604396, "y": 1.470513785175529 }, { "posteriors": "curve_25", "x": 0.945054945054945, "y": 1.4772881222791996 }, { "posteriors": "curve_25", "x": 0.9505494505494505, "y": 1.4840541244148981 }, { "posteriors": "curve_25", "x": 0.9560439560439561, "y": 1.49081184992863 }, { "posteriors": "curve_25", "x": 0.9615384615384616, "y": 1.4975613564251904 }, { "posteriors": "curve_25", "x": 0.967032967032967, "y": 1.5043027007817602 }, { "posteriors": "curve_25", "x": 0.9725274725274725, "y": 1.5110359391611758 }, { "posteriors": "curve_25", "x": 0.978021978021978, "y": 1.5177611270248839 }, { "posteriors": "curve_25", "x": 0.9835164835164835, "y": 1.524478319145589 }, { "posteriors": "curve_25", "x": 0.989010989010989, "y": 1.5311875696196062 }, { "posteriors": "curve_25", "x": 0.9945054945054945, "y": 1.5378889318789215 }, { "posteriors": "curve_26", "x": 0, "y": 0 }, { "posteriors": "curve_26", "x": 0.005494505494505495, "y": 0.026553837347960393 }, { "posteriors": "curve_26", "x": 0.01098901098901099, "y": 0.04544708558707364 }, { "posteriors": "curve_26", "x": 0.016483516483516484, "y": 0.062233446637414376 }, { "posteriors": "curve_26", "x": 0.02197802197802198, "y": 0.07778301724505526 }, { "posteriors": "curve_26", "x": 0.027472527472527472, "y": 0.09247321591214357 }, { "posteriors": "curve_26", "x": 0.03296703296703297, "y": 0.10651299616875884 }, { "posteriors": "curve_26", "x": 0.038461538461538464, "y": 0.12003399651927724 }, { "posteriors": "curve_26", "x": 0.04395604395604396, "y": 0.13312619926205793 }, { "posteriors": "curve_26", "x": 0.04945054945054945, "y": 0.14585469623920058 }, { "posteriors": "curve_26", "x": 0.054945054945054944, "y": 0.15826858103406788 }, { "posteriors": "curve_26", "x": 0.06043956043956044, "y": 0.17040608891601264 }, { "posteriors": "curve_26", "x": 0.06593406593406594, "y": 0.18229776696997974 }, { "posteriors": "curve_26", "x": 0.07142857142857142, "y": 0.19396853122208105 }, { "posteriors": "curve_26", "x": 0.07692307692307693, "y": 0.20543905732664683 }, { "posteriors": "curve_26", "x": 0.08241758241758242, "y": 0.216726752990393 }, { "posteriors": "curve_26", "x": 0.08791208791208792, "y": 0.22784645746160984 }, { "posteriors": "curve_26", "x": 0.09340659340659341, "y": 0.23881095697179852 }, { "posteriors": "curve_26", "x": 0.0989010989010989, "y": 0.2496313725356431 }, { "posteriors": "curve_26", "x": 0.1043956043956044, "y": 0.26031745705195847 }, { "posteriors": "curve_26", "x": 0.10989010989010989, "y": 0.2708778265734337 }, { "posteriors": "curve_26", "x": 0.11538461538461539, "y": 0.2813201428919578 }, { "posteriors": "curve_26", "x": 0.12087912087912088, "y": 0.2916512595163335 }, { "posteriors": "curve_26", "x": 0.12637362637362637, "y": 0.30187733971073777 }, { "posteriors": "curve_26", "x": 0.13186813186813187, "y": 0.3120039529222106 }, { "posteriors": "curve_26", "x": 0.13736263736263737, "y": 0.3220361542882897 }, { "posteriors": "curve_26", "x": 0.14285714285714285, "y": 0.33197855075081967 }, { "posteriors": "curve_26", "x": 0.14835164835164835, "y": 0.34183535645991225 }, { "posteriors": "curve_26", "x": 0.15384615384615385, "y": 0.3516104395347963 }, { "posteriors": "curve_26", "x": 0.15934065934065933, "y": 0.361307361789972 }, { "posteriors": "curve_26", "x": 0.16483516483516483, "y": 0.3709294126906862 }, { "posteriors": "curve_26", "x": 0.17032967032967034, "y": 0.38047963854010614 }, { "posteriors": "curve_26", "x": 0.17582417582417584, "y": 0.38996086769977445 }, { "posteriors": "curve_26", "x": 0.1813186813186813, "y": 0.3993757324893659 }, { "posteriors": "curve_26", "x": 0.18681318681318682, "y": 0.40872668829019265 }, { "posteriors": "curve_26", "x": 0.19230769230769232, "y": 0.41801603028110745 }, { "posteriors": "curve_26", "x": 0.1978021978021978, "y": 0.4272459081593888 }, { "posteriors": "curve_26", "x": 0.2032967032967033, "y": 0.4364183391383658 }, { "posteriors": "curve_26", "x": 0.2087912087912088, "y": 0.4455352194645583 }, { "posteriors": "curve_26", "x": 0.21428571428571427, "y": 0.45459833465742855 }, { "posteriors": "curve_26", "x": 0.21978021978021978, "y": 0.46360936864249147 }, { "posteriors": "curve_26", "x": 0.22527472527472528, "y": 0.47256991192201425 }, { "posteriors": "curve_26", "x": 0.23076923076923078, "y": 0.48148146890568416 }, { "posteriors": "curve_26", "x": 0.23626373626373626, "y": 0.4903454645055227 }, { "posteriors": "curve_26", "x": 0.24175824175824176, "y": 0.4991632500842568 }, { "posteriors": "curve_26", "x": 0.24725274725274726, "y": 0.5079361088337652 }, { "posteriors": "curve_26", "x": 0.25274725274725274, "y": 0.5166652606496362 }, { "posteriors": "curve_26", "x": 0.25824175824175827, "y": 0.5253518665589575 }, { "posteriors": "curve_26", "x": 0.26373626373626374, "y": 0.5339970327509046 }, { "posteriors": "curve_26", "x": 0.2692307692307692, "y": 0.5426018142532816 }, { "posteriors": "curve_26", "x": 0.27472527472527475, "y": 0.551167218292693 }, { "posteriors": "curve_26", "x": 0.2802197802197802, "y": 0.559694207371344 }, { "posteriors": "curve_26", "x": 0.2857142857142857, "y": 0.5681837020894474 }, { "posteriors": "curve_26", "x": 0.29120879120879123, "y": 0.5766365837387509 }, { "posteriors": "curve_26", "x": 0.2967032967032967, "y": 0.5850536966897079 }, { "posteriors": "curve_26", "x": 0.3021978021978022, "y": 0.5934358505922215 }, { "posteriors": "curve_26", "x": 0.3076923076923077, "y": 0.601783822407644 }, { "posteriors": "curve_26", "x": 0.3131868131868132, "y": 0.6100983582877457 }, { "posteriors": "curve_26", "x": 0.31868131868131866, "y": 0.6183801753146569 }, { "posteriors": "curve_26", "x": 0.3241758241758242, "y": 0.62662996311429 }, { "posteriors": "curve_26", "x": 0.32967032967032966, "y": 0.6348483853544208 }, { "posteriors": "curve_26", "x": 0.33516483516483514, "y": 0.6430360811374644 }, { "posteriors": "curve_26", "x": 0.34065934065934067, "y": 0.6511936662969438 }, { "posteriors": "curve_26", "x": 0.34615384615384615, "y": 0.6593217346057592 }, { "posteriors": "curve_26", "x": 0.3516483516483517, "y": 0.6674208589035597 }, { "posteriors": "curve_26", "x": 0.35714285714285715, "y": 0.6754915921498104 }, { "posteriors": "curve_26", "x": 0.3626373626373626, "y": 0.6835344684085208 }, { "posteriors": "curve_26", "x": 0.36813186813186816, "y": 0.6915500037700356 }, { "posteriors": "curve_26", "x": 0.37362637362637363, "y": 0.6995386972147865 }, { "posteriors": "curve_26", "x": 0.3791208791208791, "y": 0.7075010314234614 }, { "posteriors": "curve_26", "x": 0.38461538461538464, "y": 0.7154374735376415 }, { "posteriors": "curve_26", "x": 0.3901098901098901, "y": 0.7233484758745947 }, { "posteriors": "curve_26", "x": 0.3956043956043956, "y": 0.7312344765996005 }, { "posteriors": "curve_26", "x": 0.4010989010989011, "y": 0.7390959003588777 }, { "posteriors": "curve_26", "x": 0.4065934065934066, "y": 0.746933158875935 }, { "posteriors": "curve_26", "x": 0.41208791208791207, "y": 0.7547466515139215 }, { "posteriors": "curve_26", "x": 0.4175824175824176, "y": 0.7625367658063436 }, { "posteriors": "curve_26", "x": 0.4230769230769231, "y": 0.770303877958318 }, { "posteriors": "curve_26", "x": 0.42857142857142855, "y": 0.7780483533203613 }, { "posteriors": "curve_26", "x": 0.4340659340659341, "y": 0.7857705468365499 }, { "posteriors": "curve_26", "x": 0.43956043956043955, "y": 0.7934708034687442 }, { "posteriors": "curve_26", "x": 0.44505494505494503, "y": 0.8011494585984387 }, { "posteriors": "curve_26", "x": 0.45054945054945056, "y": 0.8088068384076803 }, { "posteriors": "curve_26", "x": 0.45604395604395603, "y": 0.816443260240384 }, { "posteriors": "curve_26", "x": 0.46153846153846156, "y": 0.8240590329452823 }, { "posteriors": "curve_26", "x": 0.46703296703296704, "y": 0.8316544572016443 }, { "posteriors": "curve_26", "x": 0.4725274725274725, "y": 0.8392298258288293 }, { "posteriors": "curve_26", "x": 0.47802197802197804, "y": 0.846785424080648 }, { "posteriors": "curve_26", "x": 0.4835164835164835, "y": 0.8543215299254493 }, { "posteriors": "curve_26", "x": 0.489010989010989, "y": 0.8618384143127739 }, { "posteriors": "curve_26", "x": 0.4945054945054945, "y": 0.8693363414273673 }, { "posteriors": "curve_26", "x": 0.5, "y": 0.876815568931281 }, { "posteriors": "curve_26", "x": 0.5054945054945055, "y": 0.8842763481947478 }, { "posteriors": "curve_26", "x": 0.510989010989011, "y": 0.8917189245164657 }, { "posteriors": "curve_26", "x": 0.5164835164835165, "y": 0.8991435373338884 }, { "posteriors": "curve_26", "x": 0.521978021978022, "y": 0.9065504204240719 }, { "posteriors": "curve_26", "x": 0.5274725274725275, "y": 0.9139398020956017 }, { "posteriors": "curve_26", "x": 0.532967032967033, "y": 0.9213119053720822 }, { "posteriors": "curve_26", "x": 0.5384615384615384, "y": 0.9286669481676414 }, { "posteriors": "curve_26", "x": 0.5439560439560439, "y": 0.9360051434548803 }, { "posteriors": "curve_26", "x": 0.5494505494505495, "y": 0.9433266994256607 }, { "posteriors": "curve_26", "x": 0.554945054945055, "y": 0.9506318196451073 }, { "posteriors": "curve_26", "x": 0.5604395604395604, "y": 0.9579207031991777 }, { "posteriors": "curve_26", "x": 0.5659340659340659, "y": 0.9651935448361212 }, { "posteriors": "curve_26", "x": 0.5714285714285714, "y": 0.9724505351021469 }, { "posteriors": "curve_26", "x": 0.5769230769230769, "y": 0.9796918604715816 }, { "posteriors": "curve_26", "x": 0.5824175824175825, "y": 0.9869177034717992 }, { "posteriors": "curve_26", "x": 0.5879120879120879, "y": 0.9941282428031734 }, { "posteriors": "curve_26", "x": 0.5934065934065934, "y": 1.0013236534543009 }, { "posteriors": "curve_26", "x": 0.5989010989010989, "y": 1.0085041068127205 }, { "posteriors": "curve_26", "x": 0.6043956043956044, "y": 1.0156697707713456 }, { "posteriors": "curve_26", "x": 0.6098901098901099, "y": 1.0228208098308116 }, { "posteriors": "curve_26", "x": 0.6153846153846154, "y": 1.0299573851979336 }, { "posteriors": "curve_26", "x": 0.6208791208791209, "y": 1.0370796548804526 }, { "posteriors": "curve_26", "x": 0.6263736263736264, "y": 1.0441877737782417 }, { "posteriors": "curve_26", "x": 0.6318681318681318, "y": 1.0512818937711377 }, { "posteriors": "curve_26", "x": 0.6373626373626373, "y": 1.0583621638035474 }, { "posteriors": "curve_26", "x": 0.6428571428571429, "y": 1.0654287299659753 }, { "posteriors": "curve_26", "x": 0.6483516483516484, "y": 1.0724817355736107 }, { "posteriors": "curve_26", "x": 0.6538461538461539, "y": 1.0795213212421038 }, { "posteriors": "curve_26", "x": 0.6593406593406593, "y": 1.0865476249606534 }, { "posteriors": "curve_26", "x": 0.6648351648351648, "y": 1.0935607821625242 }, { "posteriors": "curve_26", "x": 0.6703296703296703, "y": 1.1005609257931028 }, { "posteriors": "curve_26", "x": 0.6758241758241759, "y": 1.107548186375603 }, { "posteriors": "curve_26", "x": 0.6813186813186813, "y": 1.1145226920745093 }, { "posteriors": "curve_26", "x": 0.6868131868131868, "y": 1.1214845687568686 }, { "posteriors": "curve_26", "x": 0.6923076923076923, "y": 1.128433940051506 }, { "posteriors": "curve_26", "x": 0.6978021978021978, "y": 1.1353709274062604 }, { "posteriors": "curve_26", "x": 0.7032967032967034, "y": 1.1422956501433155 }, { "posteriors": "curve_26", "x": 0.7087912087912088, "y": 1.1492082255127072 }, { "posteriors": "curve_26", "x": 0.7142857142857143, "y": 1.15610876874408 }, { "posteriors": "curve_26", "x": 0.7197802197802198, "y": 1.162997393096764 }, { "posteriors": "curve_26", "x": 0.7252747252747253, "y": 1.169874209908234 }, { "posteriors": "curve_26", "x": 0.7307692307692307, "y": 1.1767393286410246 }, { "posteriors": "curve_26", "x": 0.7362637362637363, "y": 1.1835928569281517 }, { "posteriors": "curve_26", "x": 0.7417582417582418, "y": 1.190434900617106 }, { "posteriors": "curve_26", "x": 0.7472527472527473, "y": 1.1972655638124685 }, { "posteriors": "curve_26", "x": 0.7527472527472527, "y": 1.2040849489172056 }, { "posteriors": "curve_26", "x": 0.7582417582417582, "y": 1.2108931566726897 }, { "posteriors": "curve_26", "x": 0.7637362637362637, "y": 1.2176902861974968 }, { "posteriors": "curve_26", "x": 0.7692307692307693, "y": 1.2244764350250255 }, { "posteriors": "curve_26", "x": 0.7747252747252747, "y": 1.2312516991399807 }, { "posteriors": "curve_26", "x": 0.7802197802197802, "y": 1.2380161730137673 }, { "posteriors": "curve_26", "x": 0.7857142857142857, "y": 1.2447699496388291 }, { "posteriors": "curve_26", "x": 0.7912087912087912, "y": 1.2515131205619752 }, { "posteriors": "curve_26", "x": 0.7967032967032966, "y": 1.2582457759167294 }, { "posteriors": "curve_26", "x": 0.8021978021978022, "y": 1.2649680044547382 }, { "posteriors": "curve_26", "x": 0.8076923076923077, "y": 1.271679893576269 }, { "posteriors": "curve_26", "x": 0.8131868131868132, "y": 1.278381529359834 }, { "posteriors": "curve_26", "x": 0.8186813186813187, "y": 1.2850729965909684 }, { "posteriors": "curve_26", "x": 0.8241758241758241, "y": 1.291754378790194 }, { "posteriors": "curve_26", "x": 0.8296703296703297, "y": 1.2984257582401943 }, { "posteriors": "curve_26", "x": 0.8351648351648352, "y": 1.3050872160122307 }, { "posteriors": "curve_26", "x": 0.8406593406593407, "y": 1.311738831991825 }, { "posteriors": "curve_26", "x": 0.8461538461538461, "y": 1.3183806849037347 }, { "posteriors": "curve_26", "x": 0.8516483516483516, "y": 1.3250128523362399 }, { "posteriors": "curve_26", "x": 0.8571428571428571, "y": 1.3316354107647714 }, { "posteriors": "curve_26", "x": 0.8626373626373627, "y": 1.3382484355749003 }, { "posteriors": "curve_26", "x": 0.8681318681318682, "y": 1.3448520010847058 }, { "posteriors": "curve_26", "x": 0.8736263736263736, "y": 1.35144618056655 }, { "posteriors": "curve_26", "x": 0.8791208791208791, "y": 1.3580310462682692 }, { "posteriors": "curve_26", "x": 0.8846153846153846, "y": 1.3646066694338108 }, { "posteriors": "curve_26", "x": 0.8901098901098901, "y": 1.3711731203233266 }, { "posteriors": "curve_26", "x": 0.8956043956043956, "y": 1.3777304682327427 }, { "posteriors": "curve_26", "x": 0.9010989010989011, "y": 1.384278781512822 }, { "posteriors": "curve_26", "x": 0.9065934065934066, "y": 1.390818127587738 }, { "posteriors": "curve_26", "x": 0.9120879120879121, "y": 1.3973485729731716 }, { "posteriors": "curve_26", "x": 0.9175824175824175, "y": 1.4038701832939475 }, { "posteriors": "curve_26", "x": 0.9230769230769231, "y": 1.4103830233012251 }, { "posteriors": "curve_26", "x": 0.9285714285714286, "y": 1.4168871568892591 }, { "posteriors": "curve_26", "x": 0.9340659340659341, "y": 1.423382647111738 }, { "posteriors": "curve_26", "x": 0.9395604395604396, "y": 1.4298695561977188 }, { "posteriors": "curve_26", "x": 0.945054945054945, "y": 1.43634794556717 }, { "posteriors": "curve_26", "x": 0.9505494505494505, "y": 1.4428178758461288 }, { "posteriors": "curve_26", "x": 0.9560439560439561, "y": 1.4492794068814923 }, { "posteriors": "curve_26", "x": 0.9615384615384616, "y": 1.455732597755447 }, { "posteriors": "curve_26", "x": 0.967032967032967, "y": 1.4621775067995528 }, { "posteriors": "curve_26", "x": 0.9725274725274725, "y": 1.4686141916084867 }, { "posteriors": "curve_26", "x": 0.978021978021978, "y": 1.4750427090534604 }, { "posteriors": "curve_26", "x": 0.9835164835164835, "y": 1.4814631152953182 }, { "posteriors": "curve_26", "x": 0.989010989010989, "y": 1.4878754657973268 }, { "posteriors": "curve_26", "x": 0.9945054945054945, "y": 1.4942798153376657 }, { "posteriors": "curve_27", "x": 0, "y": 0 }, { "posteriors": "curve_27", "x": 0.005494505494505495, "y": 0.02511112510598914 }, { "posteriors": "curve_27", "x": 0.01098901098901099, "y": 0.043834058298159534 }, { "posteriors": "curve_27", "x": 0.016483516483516484, "y": 0.060721253866510276 }, { "posteriors": "curve_27", "x": 0.02197802197802198, "y": 0.07651686886893723 }, { "posteriors": "curve_27", "x": 0.027472527472527472, "y": 0.09154744896278069 }, { "posteriors": "curve_27", "x": 0.03296703296703297, "y": 0.10599521011852775 }, { "posteriors": "curve_27", "x": 0.038461538461538464, "y": 0.11997564342710253 }, { "posteriors": "curve_27", "x": 0.04395604395604396, "y": 0.13356808492796945 }, { "posteriors": "curve_27", "x": 0.04945054945054945, "y": 0.1468301661338863 }, { "posteriors": "curve_27", "x": 0.054945054945054944, "y": 0.15980551241510146 }, { "posteriors": "curve_27", "x": 0.06043956043956044, "y": 0.1725282098393081 }, { "posteriors": "curve_27", "x": 0.06593406593406594, "y": 0.18502556934627637 }, { "posteriors": "curve_27", "x": 0.07142857142857142, "y": 0.19731992577539376 }, { "posteriors": "curve_27", "x": 0.07692307692307693, "y": 0.20942985732998912 }, { "posteriors": "curve_27", "x": 0.08241758241758242, "y": 0.2213710403591027 }, { "posteriors": "curve_27", "x": 0.08791208791208792, "y": 0.23315686560415122 }, { "posteriors": "curve_27", "x": 0.09340659340659341, "y": 0.24479889324407145 }, { "posteriors": "curve_27", "x": 0.0989010989010989, "y": 0.25630719591716594 }, { "posteriors": "curve_27", "x": 0.1043956043956044, "y": 0.26769062199201143 }, { "posteriors": "curve_27", "x": 0.10989010989010989, "y": 0.2789570008513917 }, { "posteriors": "curve_27", "x": 0.11538461538461539, "y": 0.29011330522173534 }, { "posteriors": "curve_27", "x": 0.12087912087912088, "y": 0.30116578115289666 }, { "posteriors": "curve_27", "x": 0.12637362637362637, "y": 0.3121200532717712 }, { "posteriors": "curve_27", "x": 0.13186813186813187, "y": 0.32298121088331716 }, { "posteriors": "curve_27", "x": 0.13736263736263737, "y": 0.33375387905634063 }, { "posteriors": "curve_27", "x": 0.14285714285714285, "y": 0.34444227780794295 }, { "posteriors": "curve_27", "x": 0.14835164835164835, "y": 0.3550502717598721 }, { "posteriors": "curve_27", "x": 0.15384615384615385, "y": 0.365581412096444 }, { "posteriors": "curve_27", "x": 0.15934065934065933, "y": 0.37603897224959143 }, { "posteriors": "curve_27", "x": 0.16483516483516483, "y": 0.3864259784325943 }, { "posteriors": "curve_27", "x": 0.17032967032967034, "y": 0.39674523591284405 }, { "posteriors": "curve_27", "x": 0.17582417582417584, "y": 0.40699935173637186 }, { "posteriors": "curve_27", "x": 0.1813186813186813, "y": 0.41719075447912013 }, { "posteriors": "curve_27", "x": 0.18681318681318682, "y": 0.42732171149218123 }, { "posteriors": "curve_27", "x": 0.19230769230769232, "y": 0.43739434402323263 }, { "posteriors": "curve_27", "x": 0.1978021978021978, "y": 0.4474106405288564 }, { "posteriors": "curve_27", "x": 0.2032967032967033, "y": 0.45737246843836443 }, { "posteriors": "curve_27", "x": 0.2087912087912088, "y": 0.4672815845861801 }, { "posteriors": "curve_27", "x": 0.21428571428571427, "y": 0.4771396444945031 }, { "posteriors": "curve_27", "x": 0.21978021978021978, "y": 0.4869482106591569 }, { "posteriors": "curve_27", "x": 0.22527472527472528, "y": 0.4967087599678755 }, { "posteriors": "curve_27", "x": 0.23076923076923078, "y": 0.5064226903607859 }, { "posteriors": "curve_27", "x": 0.23626373626373626, "y": 0.5160913268266759 }, { "posteriors": "curve_27", "x": 0.24175824175824176, "y": 0.5257159268151725 }, { "posteriors": "curve_27", "x": 0.24725274725274726, "y": 0.5352976851336938 }, { "posteriors": "curve_27", "x": 0.25274725274725274, "y": 0.5448377383885666 }, { "posteriors": "curve_27", "x": 0.25824175824175827, "y": 0.5543371690217175 }, { "posteriors": "curve_27", "x": 0.26373626373626374, "y": 0.5637970089875751 }, { "posteriors": "curve_27", "x": 0.2692307692307692, "y": 0.5732182431090739 }, { "posteriors": "curve_27", "x": 0.27472527472527475, "y": 0.58260181214673 }, { "posteriors": "curve_27", "x": 0.2802197802197802, "y": 0.5919486156105664 }, { "posteriors": "curve_27", "x": 0.2857142857142857, "y": 0.6012595143410443 }, { "posteriors": "curve_27", "x": 0.29120879120879123, "y": 0.6105353328820501 }, { "posteriors": "curve_27", "x": 0.2967032967032967, "y": 0.6197768616662934 }, { "posteriors": "curve_27", "x": 0.3021978021978022, "y": 0.6289848590311433 }, { "posteriors": "curve_27", "x": 0.3076923076923077, "y": 0.6381600530808945 }, { "posteriors": "curve_27", "x": 0.3131868131868132, "y": 0.6473031434096982 }, { "posteriors": "curve_27", "x": 0.31868131868131866, "y": 0.656414802697838 }, { "posteriors": "curve_27", "x": 0.3241758241758242, "y": 0.6654956781926832 }, { "posteriors": "curve_27", "x": 0.32967032967032966, "y": 0.6745463930844631 }, { "posteriors": "curve_27", "x": 0.33516483516483514, "y": 0.683567547785957 }, { "posteriors": "curve_27", "x": 0.34065934065934067, "y": 0.6925597211242769 }, { "posteriors": "curve_27", "x": 0.34615384615384615, "y": 0.7015234714520956 }, { "posteriors": "curve_27", "x": 0.3516483516483517, "y": 0.710459337684962 }, { "posteriors": "curve_27", "x": 0.35714285714285715, "y": 0.7193678402706911 }, { "posteriors": "curve_27", "x": 0.3626373626373626, "y": 0.7282494820962572 }, { "posteriors": "curve_27", "x": 0.36813186813186816, "y": 0.7371047493370988 }, { "posteriors": "curve_27", "x": 0.37362637362637363, "y": 0.7459341122533008 }, { "posteriors": "curve_27", "x": 0.3791208791208791, "y": 0.7547380259367074 }, { "posteriors": "curve_27", "x": 0.38461538461538464, "y": 0.7635169310126536 }, { "posteriors": "curve_27", "x": 0.3901098901098901, "y": 0.7722712542996839 }, { "posteriors": "curve_27", "x": 0.3956043956043956, "y": 0.7810014094303271 }, { "posteriors": "curve_27", "x": 0.4010989010989011, "y": 0.7897077974357345 }, { "posteriors": "curve_27", "x": 0.4065934065934066, "y": 0.7983908072967517 }, { "posteriors": "curve_27", "x": 0.41208791208791207, "y": 0.8070508164637786 }, { "posteriors": "curve_27", "x": 0.4175824175824176, "y": 0.8156881913475758 }, { "posteriors": "curve_27", "x": 0.4230769230769231, "y": 0.824303287783003 }, { "posteriors": "curve_27", "x": 0.42857142857142855, "y": 0.8328964514675142 }, { "posteriors": "curve_27", "x": 0.4340659340659341, "y": 0.8414680183760895 }, { "posteriors": "curve_27", "x": 0.43956043956043955, "y": 0.8500183151541495 }, { "posteriors": "curve_27", "x": 0.44505494505494503, "y": 0.8585476594898845 }, { "posteriors": "curve_27", "x": 0.45054945054945056, "y": 0.8670563604673158 }, { "posteriors": "curve_27", "x": 0.45604395604395603, "y": 0.8755447189013071 }, { "posteriors": "curve_27", "x": 0.46153846153846156, "y": 0.8840130276556588 }, { "posteriors": "curve_27", "x": 0.46703296703296704, "y": 0.892461571945327 }, { "posteriors": "curve_27", "x": 0.4725274725274725, "y": 0.9008906296237384 }, { "posteriors": "curve_27", "x": 0.47802197802197804, "y": 0.9093004714561009 }, { "posteriors": "curve_27", "x": 0.4835164835164835, "y": 0.9176913613795451 }, { "posteriors": "curve_27", "x": 0.489010989010989, "y": 0.926063556750872 }, { "posteriors": "curve_27", "x": 0.4945054945054945, "y": 0.934417308582634 }, { "posteriors": "curve_27", "x": 0.5, "y": 0.9427528617682169 }, { "posteriors": "curve_27", "x": 0.5054945054945055, "y": 0.9510704552965543 }, { "posteriors": "curve_27", "x": 0.510989010989011, "y": 0.9593703224570576 }, { "posteriors": "curve_27", "x": 0.5164835164835165, "y": 0.9676526910353082 }, { "posteriors": "curve_27", "x": 0.521978021978022, "y": 0.9759177835000225 }, { "posteriors": "curve_27", "x": 0.5274725274725275, "y": 0.9841658171817653 }, { "posteriors": "curve_27", "x": 0.532967032967033, "y": 0.99239700444386 }, { "posteriors": "curve_27", "x": 0.5384615384615384, "y": 1.0006115528459107 }, { "posteriors": "curve_27", "x": 0.5439560439560439, "y": 1.0088096653003298 }, { "posteriors": "curve_27", "x": 0.5494505494505495, "y": 1.016991540222236 }, { "posteriors": "curve_27", "x": 0.554945054945055, "y": 1.025157371673069 }, { "posteriors": "curve_27", "x": 0.5604395604395604, "y": 1.0333073494982419 }, { "posteriors": "curve_27", "x": 0.5659340659340659, "y": 1.041441659459136 }, { "posteriors": "curve_27", "x": 0.5714285714285714, "y": 1.0495604833597225 }, { "posteriors": "curve_27", "x": 0.5769230769230769, "y": 1.0576639991680794 }, { "posteriors": "curve_27", "x": 0.5824175824175825, "y": 1.0657523811330571 }, { "posteriors": "curve_27", "x": 0.5879120879120879, "y": 1.0738257998963285 }, { "posteriors": "curve_27", "x": 0.5934065934065934, "y": 1.0818844226000492 }, { "posteriors": "curve_27", "x": 0.5989010989010989, "y": 1.0899284129903377 }, { "posteriors": "curve_27", "x": 0.6043956043956044, "y": 1.097957931516775 }, { "posteriors": "curve_27", "x": 0.6098901098901099, "y": 1.105973135428112 }, { "posteriors": "curve_27", "x": 0.6153846153846154, "y": 1.113974178864362 }, { "posteriors": "curve_27", "x": 0.6208791208791209, "y": 1.1219612129454448 }, { "posteriors": "curve_27", "x": 0.6263736263736264, "y": 1.1299343858565423 }, { "posteriors": "curve_27", "x": 0.6318681318681318, "y": 1.137893842930314 }, { "posteriors": "curve_27", "x": 0.6373626373626373, "y": 1.1458397267261164 }, { "posteriors": "curve_27", "x": 0.6428571428571429, "y": 1.153772177106357 }, { "posteriors": "curve_27", "x": 0.6483516483516484, "y": 1.1616913313101116 }, { "posteriors": "curve_27", "x": 0.6538461538461539, "y": 1.1695973240241304 }, { "posteriors": "curve_27", "x": 0.6593406593406593, "y": 1.177490287451335 }, { "posteriors": "curve_27", "x": 0.6648351648351648, "y": 1.1853703513769278 }, { "posteriors": "curve_27", "x": 0.6703296703296703, "y": 1.1932376432322072 }, { "posteriors": "curve_27", "x": 0.6758241758241759, "y": 1.2010922881561914 }, { "posteriors": "curve_27", "x": 0.6813186813186813, "y": 1.2089344090551397 }, { "posteriors": "curve_27", "x": 0.6868131868131868, "y": 1.2167641266600617 }, { "posteriors": "curve_27", "x": 0.6923076923076923, "y": 1.2245815595822993 }, { "posteriors": "curve_27", "x": 0.6978021978021978, "y": 1.2323868243672547 }, { "posteriors": "curve_27", "x": 0.7032967032967034, "y": 1.240180035546349 }, { "posteriors": "curve_27", "x": 0.7087912087912088, "y": 1.247961305687275 }, { "posteriors": "curve_27", "x": 0.7142857142857143, "y": 1.2557307454426185 }, { "posteriors": "curve_27", "x": 0.7197802197802198, "y": 1.2634884635969112 }, { "posteriors": "curve_27", "x": 0.7252747252747253, "y": 1.2712345671121772 }, { "posteriors": "curve_27", "x": 0.7307692307692307, "y": 1.2789691611720306 }, { "posteriors": "curve_27", "x": 0.7362637362637363, "y": 1.2866923492243871 }, { "posteriors": "curve_27", "x": 0.7417582417582418, "y": 1.2944042330228342 }, { "posteriors": "curve_27", "x": 0.7472527472527473, "y": 1.3021049126667197 }, { "posteriors": "curve_27", "x": 0.7527472527472527, "y": 1.309794486640003 }, { "posteriors": "curve_27", "x": 0.7582417582417582, "y": 1.3174730518489168 }, { "posteriors": "curve_27", "x": 0.7637362637362637, "y": 1.325140703658485 }, { "posteriors": "curve_27", "x": 0.7692307692307693, "y": 1.332797535927938 }, { "posteriors": "curve_27", "x": 0.7747252747252747, "y": 1.3404436410450689 }, { "posteriors": "curve_27", "x": 0.7802197802197802, "y": 1.3480791099595655 }, { "posteriors": "curve_27", "x": 0.7857142857142857, "y": 1.3557040322153604 }, { "posteriors": "curve_27", "x": 0.7912087912087912, "y": 1.3633184959820306 }, { "posteriors": "curve_27", "x": 0.7967032967032966, "y": 1.3709225880852842 }, { "posteriors": "curve_27", "x": 0.8021978021978022, "y": 1.3785163940365628 }, { "posteriors": "curve_27", "x": 0.8076923076923077, "y": 1.3860999980617967 }, { "posteriors": "curve_27", "x": 0.8131868131868132, "y": 1.3936734831293387 }, { "posteriors": "curve_27", "x": 0.8186813186813187, "y": 1.4012369309771049 }, { "posteriors": "curve_27", "x": 0.8241758241758241, "y": 1.4087904221389538 }, { "posteriors": "curve_27", "x": 0.8296703296703297, "y": 1.4163340359703265 }, { "posteriors": "curve_27", "x": 0.8351648351648352, "y": 1.4238678506731746 }, { "posteriors": "curve_27", "x": 0.8406593406593407, "y": 1.431391943320202 }, { "posteriors": "curve_27", "x": 0.8461538461538461, "y": 1.4389063898784413 }, { "posteriors": "curve_27", "x": 0.8516483516483516, "y": 1.4464112652321868 }, { "posteriors": "curve_27", "x": 0.8571428571428571, "y": 1.453906643205309 }, { "posteriors": "curve_27", "x": 0.8626373626373627, "y": 1.4613925965829682 }, { "posteriors": "curve_27", "x": 0.8681318681318682, "y": 1.4688691971327492 }, { "posteriors": "curve_27", "x": 0.8736263736263736, "y": 1.476336515625233 }, { "posteriors": "curve_27", "x": 0.8791208791208791, "y": 1.4837946218540277 }, { "posteriors": "curve_27", "x": 0.8846153846153846, "y": 1.4912435846552734 }, { "posteriors": "curve_27", "x": 0.8901098901098901, "y": 1.4986834719266402 }, { "posteriors": "curve_27", "x": 0.8956043956043956, "y": 1.506114350645832 }, { "posteriors": "curve_27", "x": 0.9010989010989011, "y": 1.513536286888618 }, { "posteriors": "curve_27", "x": 0.9065934065934066, "y": 1.5209493458463974 }, { "posteriors": "curve_27", "x": 0.9120879120879121, "y": 1.528353591843325 }, { "posteriors": "curve_27", "x": 0.9175824175824175, "y": 1.535749088352998 }, { "posteriors": "curve_27", "x": 0.9230769230769231, "y": 1.5431358980147254 }, { "posteriors": "curve_27", "x": 0.9285714285714286, "y": 1.5505140826493937 }, { "posteriors": "curve_27", "x": 0.9340659340659341, "y": 1.5578837032749353 }, { "posteriors": "curve_27", "x": 0.9395604395604396, "y": 1.565244820121418 }, { "posteriors": "curve_27", "x": 0.945054945054945, "y": 1.5725974926457633 }, { "posteriors": "curve_27", "x": 0.9505494505494505, "y": 1.5799417795461046 }, { "posteriors": "curve_27", "x": 0.9560439560439561, "y": 1.5872777387758006 }, { "posteriors": "curve_27", "x": 0.9615384615384616, "y": 1.5946054275571075 }, { "posteriors": "curve_27", "x": 0.967032967032967, "y": 1.6019249023945252 }, { "posteriors": "curve_27", "x": 0.9725274725274725, "y": 1.6092362190878258 }, { "posteriors": "curve_27", "x": 0.978021978021978, "y": 1.6165394327447722 }, { "posteriors": "curve_27", "x": 0.9835164835164835, "y": 1.623834597793538 }, { "posteriors": "curve_27", "x": 0.989010989010989, "y": 1.6311217679948358 }, { "posteriors": "curve_27", "x": 0.9945054945054945, "y": 1.6384009964537627 }, { "posteriors": "curve_28", "x": 0, "y": 0 }, { "posteriors": "curve_28", "x": 0.005494505494505495, "y": 0.025547982867435103 }, { "posteriors": "curve_28", "x": 0.01098901098901099, "y": 0.044364102954801275 }, { "posteriors": "curve_28", "x": 0.016483516483516484, "y": 0.061267850428122425 }, { "posteriors": "curve_28", "x": 0.02197802197802198, "y": 0.07703831810115044 }, { "posteriors": "curve_28", "x": 0.027472527472527472, "y": 0.09201633624690743 }, { "posteriors": "curve_28", "x": 0.03296703296703297, "y": 0.1063916959047762 }, { "posteriors": "curve_28", "x": 0.038461538461538464, "y": 0.12028449657577107 }, { "posteriors": "curve_28", "x": 0.04395604395604396, "y": 0.1337771319731315 }, { "posteriors": "curve_28", "x": 0.04945054945054945, "y": 0.146929388341947 }, { "posteriors": "curve_28", "x": 0.054945054945054944, "y": 0.1597864784849548 }, { "posteriors": "curve_28", "x": 0.06043956043956044, "y": 0.17238369865722541 }, { "posteriors": "curve_28", "x": 0.06593406593406594, "y": 0.18474930780823964 }, { "posteriors": "curve_28", "x": 0.07142857142857142, "y": 0.1969064000267906 }, { "posteriors": "curve_28", "x": 0.07692307692307693, "y": 0.208874172870842 }, { "posteriors": "curve_28", "x": 0.08241758241758242, "y": 0.22066881582676343 }, { "posteriors": "curve_28", "x": 0.08791208791208792, "y": 0.23230415045482922 }, { "posteriors": "curve_28", "x": 0.09340659340659341, "y": 0.24379210282165867 }, { "posteriors": "curve_28", "x": 0.0989010989010989, "y": 0.2551430594466549 }, { "posteriors": "curve_28", "x": 0.1043956043956044, "y": 0.26636614036179534 }, { "posteriors": "curve_28", "x": 0.10989010989010989, "y": 0.2774694119326124 }, { "posteriors": "curve_28", "x": 0.11538461538461539, "y": 0.2884600550762079 }, { "posteriors": "curve_28", "x": 0.12087912087912088, "y": 0.2993444999020533 }, { "posteriors": "curve_28", "x": 0.12637362637362637, "y": 0.31012853469842916 }, { "posteriors": "curve_28", "x": 0.13186813186813187, "y": 0.32081739505471485 }, { "posteriors": "curve_28", "x": 0.13736263736263737, "y": 0.3314158374161294 }, { "posteriors": "curve_28", "x": 0.14285714285714285, "y": 0.3419282003035425 }, { "posteriors": "curve_28", "x": 0.14835164835164835, "y": 0.3523584556612663 }, { "posteriors": "curve_28", "x": 0.15384615384615385, "y": 0.36271025223101333 }, { "posteriors": "curve_28", "x": 0.15934065934065933, "y": 0.37298695243051566 }, { "posteriors": "curve_28", "x": 0.16483516483516483, "y": 0.38319166389966586 }, { "posteriors": "curve_28", "x": 0.17032967032967034, "y": 0.39332726663706225 }, { "posteriors": "curve_28", "x": 0.17582417582417584, "y": 0.40339643646552825 }, { "posteriors": "curve_28", "x": 0.1813186813186813, "y": 0.4134016654222748 }, { "posteriors": "curve_28", "x": 0.18681318681318682, "y": 0.4233452795576185 }, { "posteriors": "curve_28", "x": 0.19230769230769232, "y": 0.4332294545380414 }, { "posteriors": "curve_28", "x": 0.1978021978021978, "y": 0.4430562293793635 }, { "posteriors": "curve_28", "x": 0.2032967032967033, "y": 0.4528275185797648 }, { "posteriors": "curve_28", "x": 0.2087912087912088, "y": 0.4625451228772534 }, { "posteriors": "curve_28", "x": 0.21428571428571427, "y": 0.4722107388195778 }, { "posteriors": "curve_28", "x": 0.21978021978021978, "y": 0.4818259673047297 }, { "posteriors": "curve_28", "x": 0.22527472527472528, "y": 0.49139232122570076 }, { "posteriors": "curve_28", "x": 0.23076923076923078, "y": 0.5009112323329704 }, { "posteriors": "curve_28", "x": 0.23626373626373626, "y": 0.5103840574114651 }, { "posteriors": "curve_28", "x": 0.24175824175824176, "y": 0.5198120838548009 }, { "posteriors": "curve_28", "x": 0.24725274725274726, "y": 0.5291965347079619 }, { "posteriors": "curve_28", "x": 0.25274725274725274, "y": 0.538538573239777 }, { "posteriors": "curve_28", "x": 0.25824175824175827, "y": 0.5478393070982936 }, { "posteriors": "curve_28", "x": 0.26373626373626374, "y": 0.5570997920951489 }, { "posteriors": "curve_28", "x": 0.2692307692307692, "y": 0.5663210356590958 }, { "posteriors": "curve_28", "x": 0.27472527472527475, "y": 0.5755039999937558 }, { "posteriors": "curve_28", "x": 0.2802197802197802, "y": 0.5846496049703351 }, { "posteriors": "curve_28", "x": 0.2857142857142857, "y": 0.5937587307823023 }, { "posteriors": "curve_28", "x": 0.29120879120879123, "y": 0.6028322203858091 }, { "posteriors": "curve_28", "x": 0.2967032967032967, "y": 0.6118708817468603 }, { "posteriors": "curve_28", "x": 0.3021978021978022, "y": 0.6208754899138267 }, { "posteriors": "curve_28", "x": 0.3076923076923077, "y": 0.6298467889317989 }, { "posteriors": "curve_28", "x": 0.3131868131868132, "y": 0.6387854936134595 }, { "posteriors": "curve_28", "x": 0.31868131868131866, "y": 0.6476922911795512 }, { "posteriors": "curve_28", "x": 0.3241758241758242, "y": 0.6565678427806254 }, { "posteriors": "curve_28", "x": 0.32967032967032966, "y": 0.6654127849105254 }, { "posteriors": "curve_28", "x": 0.33516483516483514, "y": 0.6742277307209827 }, { "posteriors": "curve_28", "x": 0.34065934065934067, "y": 0.6830132712457491 }, { "posteriors": "curve_28", "x": 0.34615384615384615, "y": 0.6917699765418459 }, { "posteriors": "curve_28", "x": 0.3516483516483517, "y": 0.7004983967547709 }, { "posteriors": "curve_28", "x": 0.35714285714285715, "y": 0.7091990631138329 }, { "posteriors": "curve_28", "x": 0.3626373626373626, "y": 0.717872488863203 }, { "posteriors": "curve_28", "x": 0.36813186813186816, "y": 0.7265191701337452 }, { "posteriors": "curve_28", "x": 0.37362637362637363, "y": 0.7351395867602157 }, { "posteriors": "curve_28", "x": 0.3791208791208791, "y": 0.7437342030480129 }, { "posteriors": "curve_28", "x": 0.38461538461538464, "y": 0.7523034684932701 }, { "posteriors": "curve_28", "x": 0.3901098901098901, "y": 0.7608478184597632 }, { "posteriors": "curve_28", "x": 0.3956043956043956, "y": 0.7693676748157879 }, { "posteriors": "curve_28", "x": 0.4010989010989011, "y": 0.7778634465338997 }, { "posteriors": "curve_28", "x": 0.4065934065934066, "y": 0.78633553025616 }, { "posteriors": "curve_28", "x": 0.41208791208791207, "y": 0.7947843108273108 }, { "posteriors": "curve_28", "x": 0.4175824175824176, "y": 0.8032101617981016 }, { "posteriors": "curve_28", "x": 0.4230769230769231, "y": 0.811613445900807 }, { "posteriors": "curve_28", "x": 0.42857142857142855, "y": 0.8199945154988171 }, { "posteriors": "curve_28", "x": 0.4340659340659341, "y": 0.8283537130120227 }, { "posteriors": "curve_28", "x": 0.43956043956043955, "y": 0.8366913713195928 }, { "posteriors": "curve_28", "x": 0.44505494505494503, "y": 0.8450078141416112 }, { "posteriors": "curve_28", "x": 0.45054945054945056, "y": 0.8533033564009276 }, { "posteriors": "curve_28", "x": 0.45604395604395603, "y": 0.8615783045664803 }, { "posteriors": "curve_28", "x": 0.46153846153846156, "y": 0.8698329569792496 }, { "posteriors": "curve_28", "x": 0.46703296703296704, "y": 0.8780676041619143 }, { "posteriors": "curve_28", "x": 0.4725274725274725, "y": 0.886282529113214 }, { "posteriors": "curve_28", "x": 0.47802197802197804, "y": 0.8944780075879349 }, { "posteriors": "curve_28", "x": 0.4835164835164835, "y": 0.9026543083633825 }, { "posteriors": "curve_28", "x": 0.489010989010989, "y": 0.9108116934931377 }, { "posteriors": "curve_28", "x": 0.4945054945054945, "y": 0.9189504185488401 }, { "posteriors": "curve_28", "x": 0.5, "y": 0.9270707328506889 }, { "posteriors": "curve_28", "x": 0.5054945054945055, "y": 0.9351728796873066 }, { "posteriors": "curve_28", "x": 0.510989010989011, "y": 0.9432570965255667 }, { "posteriors": "curve_28", "x": 0.5164835164835165, "y": 0.9513236152109467 }, { "posteriors": "curve_28", "x": 0.521978021978022, "y": 0.9593726621589281 }, { "posteriors": "curve_28", "x": 0.5274725274725275, "y": 0.967404458537938 }, { "posteriors": "curve_28", "x": 0.532967032967033, "y": 0.9754192204442845 }, { "posteriors": "curve_28", "x": 0.5384615384615384, "y": 0.9834171590695204 }, { "posteriors": "curve_28", "x": 0.5439560439560439, "y": 0.9913984808606331 }, { "posteriors": "curve_28", "x": 0.5494505494505495, "y": 0.9993633876734394 }, { "posteriors": "curve_28", "x": 0.554945054945055, "y": 1.0073120769195376 }, { "posteriors": "curve_28", "x": 0.5604395604395604, "y": 1.01524474170715 }, { "posteriors": "curve_28", "x": 0.5659340659340659, "y": 1.023161570976164 }, { "posteriors": "curve_28", "x": 0.5714285714285714, "y": 1.031062749627668 }, { "posteriors": "curve_28", "x": 0.5769230769230769, "y": 1.0389484586482571 }, { "posteriors": "curve_28", "x": 0.5824175824175825, "y": 1.0468188752293643 }, { "posteriors": "curve_28", "x": 0.5879120879120879, "y": 1.0546741728818638 }, { "posteriors": "curve_28", "x": 0.5934065934065934, "y": 1.0625145215461773 }, { "posteriors": "curve_28", "x": 0.5989010989010989, "y": 1.070340087698098 }, { "posteriors": "curve_28", "x": 0.6043956043956044, "y": 1.0781510344505343 }, { "posteriors": "curve_28", "x": 0.6098901098901099, "y": 1.0859475216513719 }, { "posteriors": "curve_28", "x": 0.6153846153846154, "y": 1.0937297059776296 }, { "posteriors": "curve_28", "x": 0.6208791208791209, "y": 1.101497741026088 }, { "posteriors": "curve_28", "x": 0.6263736263736264, "y": 1.1092517774005453 }, { "posteriors": "curve_28", "x": 0.6318681318681318, "y": 1.1169919627958604 }, { "posteriors": "curve_28", "x": 0.6373626373626373, "y": 1.1247184420789271 }, { "posteriors": "curve_28", "x": 0.6428571428571429, "y": 1.1324313573667137 }, { "posteriors": "curve_28", "x": 0.6483516483516484, "y": 1.1401308481015024 }, { "posteriors": "curve_28", "x": 0.6538461538461539, "y": 1.1478170511234518 }, { "posteriors": "curve_28", "x": 0.6593406593406593, "y": 1.155490100740595 }, { "posteriors": "curve_28", "x": 0.6648351648351648, "y": 1.16315012879639 }, { "posteriors": "curve_28", "x": 0.6703296703296703, "y": 1.1707972647349236 }, { "posteriors": "curve_28", "x": 0.6758241758241759, "y": 1.1784316356638718 }, { "posteriors": "curve_28", "x": 0.6813186813186813, "y": 1.1860533664153081 }, { "posteriors": "curve_28", "x": 0.6868131868131868, "y": 1.1936625796044535 }, { "posteriors": "curve_28", "x": 0.6923076923076923, "y": 1.2012593956864517 }, { "posteriors": "curve_28", "x": 0.6978021978021978, "y": 1.208843933011251 }, { "posteriors": "curve_28", "x": 0.7032967032967034, "y": 1.2164163078766723 }, { "posteriors": "curve_28", "x": 0.7087912087912088, "y": 1.2239766345797332 }, { "posteriors": "curve_28", "x": 0.7142857142857143, "y": 1.231525025466303 }, { "posteriors": "curve_28", "x": 0.7197802197802198, "y": 1.239061590979153 }, { "posteriors": "curve_28", "x": 0.7252747252747253, "y": 1.2465864397044641 }, { "posteriors": "curve_28", "x": 0.7307692307692307, "y": 1.2540996784168568 }, { "posteriors": "curve_28", "x": 0.7362637362637363, "y": 1.2616014121229968 }, { "posteriors": "curve_28", "x": 0.7417582417582418, "y": 1.2690917441038347 }, { "posteriors": "curve_28", "x": 0.7472527472527473, "y": 1.2765707759555325 }, { "posteriors": "curve_28", "x": 0.7527472527472527, "y": 1.284038607629122 }, { "posteriors": "curve_28", "x": 0.7582417582417582, "y": 1.2914953374689524 }, { "posteriors": "curve_28", "x": 0.7637362637362637, "y": 1.2989410622499635 }, { "posteriors": "curve_28", "x": 0.7692307692307693, "y": 1.3063758772138339 }, { "posteriors": "curve_28", "x": 0.7747252747252747, "y": 1.313799876104044 }, { "posteriors": "curve_28", "x": 0.7802197802197802, "y": 1.321213151199896 }, { "posteriors": "curve_28", "x": 0.7857142857142857, "y": 1.3286157933495248 }, { "posteriors": "curve_28", "x": 0.7912087912087912, "y": 1.3360078920019414 }, { "posteriors": "curve_28", "x": 0.7967032967032966, "y": 1.3433895352381398 }, { "posteriors": "curve_28", "x": 0.8021978021978022, "y": 1.3507608098013042 }, { "posteriors": "curve_28", "x": 0.8076923076923077, "y": 1.3581218011261453 }, { "posteriors": "curve_28", "x": 0.8131868131868132, "y": 1.3654725933674006 }, { "posteriors": "curve_28", "x": 0.8186813186813187, "y": 1.3728132694275226 }, { "posteriors": "curve_28", "x": 0.8241758241758241, "y": 1.3801439109835885 }, { "posteriors": "curve_28", "x": 0.8296703296703297, "y": 1.3874645985134564 }, { "posteriors": "curve_28", "x": 0.8351648351648352, "y": 1.394775411321192 }, { "posteriors": "curve_28", "x": 0.8406593406593407, "y": 1.4020764275617952 }, { "posteriors": "curve_28", "x": 0.8461538461538461, "y": 1.4093677242652434 }, { "posteriors": "curve_28", "x": 0.8516483516483516, "y": 1.4166493773598847 }, { "posteriors": "curve_28", "x": 0.8571428571428571, "y": 1.4239214616951916 }, { "posteriors": "curve_28", "x": 0.8626373626373627, "y": 1.4311840510639064 }, { "posteriors": "curve_28", "x": 0.8681318681318682, "y": 1.4384372182235898 }, { "posteriors": "curve_28", "x": 0.8736263736263736, "y": 1.4456810349175997 }, { "posteriors": "curve_28", "x": 0.8791208791208791, "y": 1.4529155718955145 }, { "posteriors": "curve_28", "x": 0.8846153846153846, "y": 1.4601408989330205 }, { "posteriors": "curve_28", "x": 0.8901098901098901, "y": 1.46735708485128 }, { "posteriors": "curve_28", "x": 0.8956043956043956, "y": 1.4745641975357962 }, { "posteriors": "curve_28", "x": 0.9010989010989011, "y": 1.4817623039547936 }, { "posteriors": "curve_28", "x": 0.9065934065934066, "y": 1.4889514701771276 }, { "posteriors": "curve_28", "x": 0.9120879120879121, "y": 1.4961317613897354 }, { "posteriors": "curve_28", "x": 0.9175824175824175, "y": 1.5033032419146486 }, { "posteriors": "curve_28", "x": 0.9230769230769231, "y": 1.5104659752255754 }, { "posteriors": "curve_28", "x": 0.9285714285714286, "y": 1.5176200239640691 }, { "posteriors": "curve_28", "x": 0.9340659340659341, "y": 1.524765449955295 }, { "posteriors": "curve_28", "x": 0.9395604395604396, "y": 1.531902314223407 }, { "posteriors": "curve_28", "x": 0.945054945054945, "y": 1.5390306770065458 }, { "posteriors": "curve_28", "x": 0.9505494505494505, "y": 1.5461505977714725 }, { "posteriors": "curve_28", "x": 0.9560439560439561, "y": 1.5532621352278453 }, { "posteriors": "curve_28", "x": 0.9615384615384616, "y": 1.560365347342152 }, { "posteriors": "curve_28", "x": 0.967032967032967, "y": 1.5674602913513074 }, { "posteriors": "curve_28", "x": 0.9725274725274725, "y": 1.5745470237759285 }, { "posteriors": "curve_28", "x": 0.978021978021978, "y": 1.5816256004332905 }, { "posteriors": "curve_28", "x": 0.9835164835164835, "y": 1.5886960764499807 }, { "posteriors": "curve_28", "x": 0.989010989010989, "y": 1.5957585062742539 }, { "posteriors": "curve_28", "x": 0.9945054945054945, "y": 1.6028129436880978 }, { "posteriors": "curve_29", "x": 0, "y": 0 }, { "posteriors": "curve_29", "x": 0.005494505494505495, "y": 0.02539099105550467 }, { "posteriors": "curve_29", "x": 0.01098901098901099, "y": 0.04385629648689223 }, { "posteriors": "curve_29", "x": 0.016483516483516484, "y": 0.06037736425573835 }, { "posteriors": "curve_29", "x": 0.02197802197802198, "y": 0.07575028234784936 }, { "posteriors": "curve_29", "x": 0.027472527472527472, "y": 0.09032222557969141 }, { "posteriors": "curve_29", "x": 0.03296703296703297, "y": 0.10428610612749951 }, { "posteriors": "curve_29", "x": 0.038461538461538464, "y": 0.11776379836791957 }, { "posteriors": "curve_29", "x": 0.04395604395604396, "y": 0.13083880161868894 }, { "posteriors": "curve_29", "x": 0.04945054945054945, "y": 0.14357163556559152 }, { "posteriors": "curve_29", "x": 0.054945054945054944, "y": 0.15600802251947296 }, { "posteriors": "curve_29", "x": 0.06043956043956044, "y": 0.168183625345294 }, { "posteriors": "curve_29", "x": 0.06593406593406594, "y": 0.18012697416155357 }, { "posteriors": "curve_29", "x": 0.07142857142857142, "y": 0.19186136811742127 }, { "posteriors": "curve_29", "x": 0.07692307692307693, "y": 0.20340616265651407 }, { "posteriors": "curve_29", "x": 0.08241758241758242, "y": 0.21477767064282102 }, { "posteriors": "curve_29", "x": 0.08791208791208792, "y": 0.22598981123798628 }, { "posteriors": "curve_29", "x": 0.09340659340659341, "y": 0.23705458850845673 }, { "posteriors": "curve_29", "x": 0.0989010989010989, "y": 0.24798245183531595 }, { "posteriors": "curve_29", "x": 0.1043956043956044, "y": 0.2587825722626728 }, { "posteriors": "curve_29", "x": 0.10989010989010989, "y": 0.26946305778263274 }, { "posteriors": "curve_29", "x": 0.11538461538461539, "y": 0.2800311234270521 }, { "posteriors": "curve_29", "x": 0.12087912087912088, "y": 0.29049322735216937 }, { "posteriors": "curve_29", "x": 0.12637362637362637, "y": 0.30085518095084685 }, { "posteriors": "curve_29", "x": 0.13186813186813187, "y": 0.3111222388620883 }, { "posteriors": "curve_29", "x": 0.13736263736263737, "y": 0.32129917323176 }, { "posteriors": "curve_29", "x": 0.14285714285714285, "y": 0.3313903354991024 }, { "posteriors": "curve_29", "x": 0.14835164835164835, "y": 0.3413997082030615 }, { "posteriors": "curve_29", "x": 0.15384615384615385, "y": 0.35133094872998855 }, { "posteriors": "curve_29", "x": 0.15934065934065933, "y": 0.3611874264989286 }, { "posteriors": "curve_29", "x": 0.16483516483516483, "y": 0.37097225476094875 }, { "posteriors": "curve_29", "x": 0.17032967032967034, "y": 0.3806883179459035 }, { "posteriors": "curve_29", "x": 0.17582417582417584, "y": 0.3903382953034145 }, { "posteriors": "curve_29", "x": 0.1813186813186813, "y": 0.39992468144019094 }, { "posteriors": "curve_29", "x": 0.18681318681318682, "y": 0.4094498042427229 }, { "posteriors": "curve_29", "x": 0.19230769230769232, "y": 0.41891584058521947 }, { "posteriors": "curve_29", "x": 0.1978021978021978, "y": 0.42832483015184636 }, { "posteriors": "curve_29", "x": 0.2032967032967033, "y": 0.4376786876456555 }, { "posteriors": "curve_29", "x": 0.2087912087912088, "y": 0.44697921361096 }, { "posteriors": "curve_29", "x": 0.21428571428571427, "y": 0.4562281040589183 }, { "posteriors": "curve_29", "x": 0.21978021978021978, "y": 0.4654269590559245 }, { "posteriors": "curve_29", "x": 0.22527472527472528, "y": 0.47457729040966473 }, { "posteriors": "curve_29", "x": 0.23076923076923078, "y": 0.483680528567309 }, { "posteriors": "curve_29", "x": 0.23626373626373626, "y": 0.4927380288234084 }, { "posteriors": "curve_29", "x": 0.24175824175824176, "y": 0.5017510769209994 }, { "posteriors": "curve_29", "x": 0.24725274725274726, "y": 0.5107208941176503 }, { "posteriors": "curve_29", "x": 0.25274725274725274, "y": 0.5196486417782995 }, { "posteriors": "curve_29", "x": 0.25824175824175827, "y": 0.5285354255484016 }, { "posteriors": "curve_29", "x": 0.26373626373626374, "y": 0.5373822991538306 }, { "posteriors": "curve_29", "x": 0.2692307692307692, "y": 0.5461902678679972 }, { "posteriors": "curve_29", "x": 0.27472527472527475, "y": 0.5549602916815074 }, { "posteriors": "curve_29", "x": 0.2802197802197802, "y": 0.5636932882053185 }, { "posteriors": "curve_29", "x": 0.2857142857142857, "y": 0.5723901353345758 }, { "posteriors": "curve_29", "x": 0.29120879120879123, "y": 0.5810516736970768 }, { "posteriors": "curve_29", "x": 0.2967032967032967, "y": 0.5896787089075034 }, { "posteriors": "curve_29", "x": 0.3021978021978022, "y": 0.5982720136461416 }, { "posteriors": "curve_29", "x": 0.3076923076923077, "y": 0.6068323295786874 }, { "posteriors": "curve_29", "x": 0.3131868131868132, "y": 0.6153603691319081 }, { "posteriors": "curve_29", "x": 0.31868131868131866, "y": 0.6238568171383166 }, { "posteriors": "curve_29", "x": 0.3241758241758242, "y": 0.6323223323616113 }, { "posteriors": "curve_29", "x": 0.32967032967032966, "y": 0.6407575489133942 }, { "posteriors": "curve_29", "x": 0.33516483516483514, "y": 0.6491630775706035 }, { "posteriors": "curve_29", "x": 0.34065934065934067, "y": 0.6575395070021225 }, { "posteriors": "curve_29", "x": 0.34615384615384615, "y": 0.6658874049121947 }, { "posteriors": "curve_29", "x": 0.3516483516483517, "y": 0.6742073191075129 }, { "posteriors": "curve_29", "x": 0.35714285714285715, "y": 0.6824997784941916 }, { "posteriors": "curve_29", "x": 0.3626373626373626, "y": 0.6907652940102355 }, { "posteriors": "curve_29", "x": 0.36813186813186816, "y": 0.6990043594985889 }, { "posteriors": "curve_29", "x": 0.37362637362637363, "y": 0.7072174525253847 }, { "posteriors": "curve_29", "x": 0.3791208791208791, "y": 0.7154050351475857 }, { "posteriors": "curve_29", "x": 0.38461538461538464, "y": 0.7235675546338342 }, { "posteriors": "curve_29", "x": 0.3901098901098901, "y": 0.7317054441419905 }, { "posteriors": "curve_29", "x": 0.3956043956043956, "y": 0.739819123356537 }, { "posteriors": "curve_29", "x": 0.4010989010989011, "y": 0.7479089990887442 }, { "posteriors": "curve_29", "x": 0.4065934065934066, "y": 0.7559754658422587 }, { "posteriors": "curve_29", "x": 0.41208791208791207, "y": 0.7640189063465435 }, { "posteriors": "curve_29", "x": 0.4175824175824176, "y": 0.7720396920604 }, { "posteriors": "curve_29", "x": 0.4230769230769231, "y": 0.7800381836476239 }, { "posteriors": "curve_29", "x": 0.42857142857142855, "y": 0.7880147314266759 }, { "posteriors": "curve_29", "x": 0.4340659340659341, "y": 0.7959696757961042 }, { "posteriors": "curve_29", "x": 0.43956043956043955, "y": 0.8039033476373132 }, { "posteriors": "curve_29", "x": 0.44505494505494503, "y": 0.8118160686961546 }, { "posteriors": "curve_29", "x": 0.45054945054945056, "y": 0.819708151944703 }, { "posteriors": "curve_29", "x": 0.45604395604395603, "y": 0.8275799019244697 }, { "posteriors": "curve_29", "x": 0.46153846153846156, "y": 0.8354316150722237 }, { "posteriors": "curve_29", "x": 0.46703296703296704, "y": 0.843263580029495 }, { "posteriors": "curve_29", "x": 0.4725274725274725, "y": 0.8510760779367593 }, { "posteriors": "curve_29", "x": 0.47802197802197804, "y": 0.8588693827132339 }, { "posteriors": "curve_29", "x": 0.4835164835164835, "y": 0.866643761323142 }, { "posteriors": "curve_29", "x": 0.489010989010989, "y": 0.8743994740292511 }, { "posteriors": "curve_29", "x": 0.4945054945054945, "y": 0.8821367746344229 }, { "posteriors": "curve_29", "x": 0.5, "y": 0.8898559107118754 }, { "posteriors": "curve_29", "x": 0.5054945054945055, "y": 0.8975571238247987 }, { "posteriors": "curve_29", "x": 0.510989010989011, "y": 0.9052406497359267 }, { "posteriors": "curve_29", "x": 0.5164835164835165, "y": 0.9129067186076303 }, { "posteriors": "curve_29", "x": 0.521978021978022, "y": 0.9205555551930525 }, { "posteriors": "curve_29", "x": 0.5274725274725275, "y": 0.928187379018782 }, { "posteriors": "curve_29", "x": 0.532967032967033, "y": 0.9358024045595177 }, { "posteriors": "curve_29", "x": 0.5384615384615384, "y": 0.943400841405159 }, { "posteriors": "curve_29", "x": 0.5439560439560439, "y": 0.9509828944207233 }, { "posteriors": "curve_29", "x": 0.5494505494505495, "y": 0.9585487638994654 }, { "posteriors": "curve_29", "x": 0.554945054945055, "y": 0.9660986457095548 }, { "posteriors": "curve_29", "x": 0.5604395604395604, "y": 0.9736327314346447 }, { "posteriors": "curve_29", "x": 0.5659340659340659, "y": 0.9811512085086402 }, { "posteriors": "curve_29", "x": 0.5714285714285714, "y": 0.9886542603449626 }, { "posteriors": "curve_29", "x": 0.5769230769230769, "y": 0.9961420664605833 }, { "posteriors": "curve_29", "x": 0.5824175824175825, "y": 1.003614802595088 }, { "posteriors": "curve_29", "x": 0.5879120879120879, "y": 1.0110726408250132 }, { "posteriors": "curve_29", "x": 0.5934065934065934, "y": 1.0185157496736899 }, { "posteriors": "curve_29", "x": 0.5989010989010989, "y": 1.025944294216803 }, { "posteriors": "curve_29", "x": 0.6043956043956044, "y": 1.0333584361838812 }, { "posteriors": "curve_29", "x": 0.6098901098901099, "y": 1.040758334055899 }, { "posteriors": "curve_29", "x": 0.6153846153846154, "y": 1.048144143159183 }, { "posteriors": "curve_29", "x": 0.6208791208791209, "y": 1.0555160157557888 }, { "posteriors": "curve_29", "x": 0.6263736263736264, "y": 1.0628741011305125 }, { "posteriors": "curve_29", "x": 0.6318681318681318, "y": 1.07021854567469 }, { "posteriors": "curve_29", "x": 0.6373626373626373, "y": 1.0775494929669307 }, { "posteriors": "curve_29", "x": 0.6428571428571429, "y": 1.0848670838509227 }, { "posteriors": "curve_29", "x": 0.6483516483516484, "y": 1.092171456510438 }, { "posteriors": "curve_29", "x": 0.6538461538461539, "y": 1.099462746541666 }, { "posteriors": "curve_29", "x": 0.6593406593406593, "y": 1.1067410870229868 }, { "posteriors": "curve_29", "x": 0.6648351648351648, "y": 1.1140066085822975 }, { "posteriors": "curve_29", "x": 0.6703296703296703, "y": 1.1212594394619995 }, { "posteriors": "curve_29", "x": 0.6758241758241759, "y": 1.1284997055817414 }, { "posteriors": "curve_29", "x": 0.6813186813186813, "y": 1.1357275305990169 }, { "posteriors": "curve_29", "x": 0.6868131868131868, "y": 1.142943035967706 }, { "posteriors": "curve_29", "x": 0.6923076923076923, "y": 1.1501463409946457 }, { "posteriors": "curve_29", "x": 0.6978021978021978, "y": 1.15733756289431 }, { "posteriors": "curve_29", "x": 0.7032967032967034, "y": 1.1645168168416793 }, { "posteriors": "curve_29", "x": 0.7087912087912088, "y": 1.1716842160233716 }, { "posteriors": "curve_29", "x": 0.7142857142857143, "y": 1.1788398716871047 }, { "posteriors": "curve_29", "x": 0.7197802197802198, "y": 1.185983893189558 }, { "posteriors": "curve_29", "x": 0.7252747252747253, "y": 1.1931163880426976 }, { "posteriors": "curve_29", "x": 0.7307692307692307, "y": 1.2002374619586211 }, { "posteriors": "curve_29", "x": 0.7362637362637363, "y": 1.207347218892989 }, { "posteriors": "curve_29", "x": 0.7417582417582418, "y": 1.2144457610870854 }, { "posteriors": "curve_29", "x": 0.7472527472527473, "y": 1.2215331891085746 }, { "posteriors": "curve_29", "x": 0.7527472527472527, "y": 1.2286096018909898 }, { "posteriors": "curve_29", "x": 0.7582417582417582, "y": 1.2356750967720145 }, { "posteriors": "curve_29", "x": 0.7637362637362637, "y": 1.2427297695305914 }, { "posteriors": "curve_29", "x": 0.7692307692307693, "y": 1.2497737144229129 }, { "posteriors": "curve_29", "x": 0.7747252747252747, "y": 1.2568070242173242 }, { "posteriors": "curve_29", "x": 0.7802197802197802, "y": 1.2638297902281894 }, { "posteriors": "curve_29", "x": 0.7857142857142857, "y": 1.270842102348752 }, { "posteriors": "curve_29", "x": 0.7912087912087912, "y": 1.277844049083026 }, { "posteriors": "curve_29", "x": 0.7967032967032966, "y": 1.2848357175767604 }, { "posteriors": "curve_29", "x": 0.8021978021978022, "y": 1.2918171936474985 }, { "posteriors": "curve_29", "x": 0.8076923076923077, "y": 1.2987885618137762 }, { "posteriors": "curve_29", "x": 0.8131868131868132, "y": 1.305749905323481 }, { "posteriors": "curve_29", "x": 0.8186813186813187, "y": 1.312701306181406 }, { "posteriors": "curve_29", "x": 0.8241758241758241, "y": 1.3196428451760245 }, { "posteriors": "curve_29", "x": 0.8296703296703297, "y": 1.3265746019055151 }, { "posteriors": "curve_29", "x": 0.8351648351648352, "y": 1.3334966548030598 }, { "posteriors": "curve_29", "x": 0.8406593406593407, "y": 1.3404090811614422 }, { "posteriors": "curve_29", "x": 0.8461538461538461, "y": 1.347311957156969 }, { "posteriors": "curve_29", "x": 0.8516483516483516, "y": 1.354205357872738 }, { "posteriors": "curve_29", "x": 0.8571428571428571, "y": 1.3610893573212737 }, { "posteriors": "curve_29", "x": 0.8626373626373627, "y": 1.3679640284665533 }, { "posteriors": "curve_29", "x": 0.8681318681318682, "y": 1.3748294432454404 }, { "posteriors": "curve_29", "x": 0.8736263736263736, "y": 1.38168567258855 }, { "posteriors": "curve_29", "x": 0.8791208791208791, "y": 1.3885327864405588 }, { "posteriors": "curve_29", "x": 0.8846153846153846, "y": 1.395370853779984 }, { "posteriors": "curve_29", "x": 0.8901098901098901, "y": 1.4021999426384415 }, { "posteriors": "curve_29", "x": 0.8956043956043956, "y": 1.4090201201194084 }, { "posteriors": "curve_29", "x": 0.9010989010989011, "y": 1.4158314524164948 }, { "posteriors": "curve_29", "x": 0.9065934065934066, "y": 1.422634004831254 }, { "posteriors": "curve_29", "x": 0.9120879120879121, "y": 1.4294278417905317 }, { "posteriors": "curve_29", "x": 0.9175824175824175, "y": 1.4362130268633806 }, { "posteriors": "curve_29", "x": 0.9230769230769231, "y": 1.442989622777544 }, { "posteriors": "curve_29", "x": 0.9285714285714286, "y": 1.44975769143553 }, { "posteriors": "curve_29", "x": 0.9340659340659341, "y": 1.4565172939302842 }, { "posteriors": "curve_29", "x": 0.9395604395604396, "y": 1.4632684905604743 }, { "posteriors": "curve_29", "x": 0.945054945054945, "y": 1.4700113408453976 }, { "posteriors": "curve_29", "x": 0.9505494505494505, "y": 1.4767459035395258 }, { "posteriors": "curve_29", "x": 0.9560439560439561, "y": 1.4834722366466935 }, { "posteriors": "curve_29", "x": 0.9615384615384616, "y": 1.4901903974339448 }, { "posteriors": "curve_29", "x": 0.967032967032967, "y": 1.4969004424450478 }, { "posteriors": "curve_29", "x": 0.9725274725274725, "y": 1.5036024275136834 }, { "posteriors": "curve_29", "x": 0.978021978021978, "y": 1.5102964077763235 }, { "posteriors": "curve_29", "x": 0.9835164835164835, "y": 1.5169824376848007 }, { "posteriors": "curve_29", "x": 0.989010989010989, "y": 1.5236605710185873 }, { "posteriors": "curve_29", "x": 0.9945054945054945, "y": 1.5303308608967825 }, { "posteriors": "curve_30", "x": 0, "y": 0 }, { "posteriors": "curve_30", "x": 0.005494505494505495, "y": 0.02529214629933975 }, { "posteriors": "curve_30", "x": 0.01098901098901099, "y": 0.04366425701081469 }, { "posteriors": "curve_30", "x": 0.016483516483516484, "y": 0.06009582613694827 }, { "posteriors": "curve_30", "x": 0.02197802197802198, "y": 0.07538179313616618 }, { "posteriors": "curve_30", "x": 0.027472527472527472, "y": 0.08986873275799225 }, { "posteriors": "curve_30", "x": 0.03296703296703297, "y": 0.10374918627564023 }, { "posteriors": "curve_30", "x": 0.038461538461538464, "y": 0.117144775531063 }, { "posteriors": "curve_30", "x": 0.04395604395604396, "y": 0.13013881663018653 }, { "posteriors": "curve_30", "x": 0.04945054945054945, "y": 0.14279169020845786 }, { "posteriors": "curve_30", "x": 0.054945054945054944, "y": 0.15514900941734752 }, { "posteriors": "curve_30", "x": 0.06043956043956044, "y": 0.16724634914519435 }, { "posteriors": "curve_30", "x": 0.06593406593406594, "y": 0.17911216709673636 }, { "posteriors": "curve_30", "x": 0.07142857142857142, "y": 0.19076970177911595 }, { "posteriors": "curve_30", "x": 0.07692307692307693, "y": 0.20223825711446478 }, { "posteriors": "curve_30", "x": 0.08241758241758242, "y": 0.21353410165562564 }, { "posteriors": "curve_30", "x": 0.08791208791208792, "y": 0.22467111605202478 }, { "posteriors": "curve_30", "x": 0.09340659340659341, "y": 0.23566127059125444 }, { "posteriors": "curve_30", "x": 0.0989010989010989, "y": 0.24651498478930978 }, { "posteriors": "curve_30", "x": 0.1043956043956044, "y": 0.257241403098217 }, { "posteriors": "curve_30", "x": 0.10989010989010989, "y": 0.26784860968280966 }, { "posteriors": "curve_30", "x": 0.11538461538461539, "y": 0.27834379810425075 }, { "posteriors": "curve_30", "x": 0.12087912087912088, "y": 0.28873340707296363 }, { "posteriors": "curve_30", "x": 0.12637362637362637, "y": 0.2990232302885752 }, { "posteriors": "curve_30", "x": 0.13186813186813187, "y": 0.30921850622380925 }, { "posteriors": "curve_30", "x": 0.13736263736263737, "y": 0.319323992196671 }, { "posteriors": "curve_30", "x": 0.14285714285714285, "y": 0.3293440259981906 }, { "posteriors": "curve_30", "x": 0.14835164835164835, "y": 0.3392825775641064 }, { "posteriors": "curve_30", "x": 0.15384615384615385, "y": 0.34914329260762406 }, { "posteriors": "curve_30", "x": 0.15934065934065933, "y": 0.35892952970599673 }, { "posteriors": "curve_30", "x": 0.16483516483516483, "y": 0.36864439201460997 }, { "posteriors": "curve_30", "x": 0.17032967032967034, "y": 0.378290754539751 }, { "posteriors": "curve_30", "x": 0.17582417582417584, "y": 0.3878712877150437 }, { "posteriors": "curve_30", "x": 0.1813186813186813, "y": 0.39738847788221615 }, { "posteriors": "curve_30", "x": 0.18681318681318682, "y": 0.40684464516403257 }, { "posteriors": "curve_30", "x": 0.19230769230769232, "y": 0.41624195912827355 }, { "posteriors": "curve_30", "x": 0.1978021978021978, "y": 0.4255824525709978 }, { "posteriors": "curve_30", "x": 0.2032967032967033, "y": 0.43486803369079174 }, { "posteriors": "curve_30", "x": 0.2087912087912088, "y": 0.4441004968801856 }, { "posteriors": "curve_30", "x": 0.21428571428571427, "y": 0.45328153232351437 }, { "posteriors": "curve_30", "x": 0.21978021978021978, "y": 0.46241273456040777 }, { "posteriors": "curve_30", "x": 0.22527472527472528, "y": 0.47149561014942065 }, { "posteriors": "curve_30", "x": 0.23076923076923078, "y": 0.4805315845459739 }, { "posteriors": "curve_30", "x": 0.23626373626373626, "y": 0.4895220082919164 }, { "posteriors": "curve_30", "x": 0.24175824175824176, "y": 0.4984681625999917 }, { "posteriors": "curve_30", "x": 0.24725274725274726, "y": 0.5073712644047497 }, { "posteriors": "curve_30", "x": 0.25274725274725274, "y": 0.516232470941591 }, { "posteriors": "curve_30", "x": 0.25824175824175827, "y": 0.5250528839073104 }, { "posteriors": "curve_30", "x": 0.26373626373626374, "y": 0.5338335532484673 }, { "posteriors": "curve_30", "x": 0.2692307692307692, "y": 0.542575480617925 }, { "posteriors": "curve_30", "x": 0.27472527472527475, "y": 0.5512796225347949 }, { "posteriors": "curve_30", "x": 0.2802197802197802, "y": 0.5599468932786481 }, { "posteriors": "curve_30", "x": 0.2857142857142857, "y": 0.56857816754511 }, { "posteriors": "curve_30", "x": 0.29120879120879123, "y": 0.5771742828867129 }, { "posteriors": "curve_30", "x": 0.2967032967032967, "y": 0.5857360419600903 }, { "posteriors": "curve_30", "x": 0.3021978021978022, "y": 0.5942642145981774 }, { "posteriors": "curve_30", "x": 0.3076923076923077, "y": 0.6027595397239714 }, { "posteriors": "curve_30", "x": 0.3131868131868132, "y": 0.6112227271205781 }, { "posteriors": "curve_30", "x": 0.31868131868131866, "y": 0.6196544590706647 }, { "posteriors": "curve_30", "x": 0.3241758241758242, "y": 0.6280553918770366 }, { "posteriors": "curve_30", "x": 0.32967032967032966, "y": 0.6364261572748238 }, { "posteriors": "curve_30", "x": 0.33516483516483514, "y": 0.6447673637446802 }, { "posteriors": "curve_30", "x": 0.34065934065934067, "y": 0.65307959773544 }, { "posteriors": "curve_30", "x": 0.34615384615384615, "y": 0.6613634248038315 }, { "posteriors": "curve_30", "x": 0.3516483516483517, "y": 0.6696193906781028 }, { "posteriors": "curve_30", "x": 0.35714285714285715, "y": 0.6778480222517453 }, { "posteriors": "curve_30", "x": 0.3626373626373626, "y": 0.6860498285129126 }, { "posteriors": "curve_30", "x": 0.36813186813186816, "y": 0.6942253014146075 }, { "posteriors": "curve_30", "x": 0.37362637362637363, "y": 0.7023749166902363 }, { "posteriors": "curve_30", "x": 0.3791208791208791, "y": 0.7104991346187165 }, { "posteriors": "curve_30", "x": 0.38461538461538464, "y": 0.718598400742938 }, { "posteriors": "curve_30", "x": 0.3901098901098901, "y": 0.7266731465450513 }, { "posteriors": "curve_30", "x": 0.3956043956043956, "y": 0.7347237900817458 }, { "posteriors": "curve_30", "x": 0.4010989010989011, "y": 0.7427507365824106 }, { "posteriors": "curve_30", "x": 0.4065934065934066, "y": 0.7507543790128257 }, { "posteriors": "curve_30", "x": 0.41208791208791207, "y": 0.7587350986068084 }, { "posteriors": "curve_30", "x": 0.4175824175824176, "y": 0.7666932653680381 }, { "posteriors": "curve_30", "x": 0.4230769230769231, "y": 0.7746292385441024 }, { "posteriors": "curve_30", "x": 0.42857142857142855, "y": 0.7825433670746446 }, { "posteriors": "curve_30", "x": 0.4340659340659341, "y": 0.7904359900153382 }, { "posteriors": "curve_30", "x": 0.43956043956043955, "y": 0.7983074369392825 }, { "posteriors": "curve_30", "x": 0.44505494505494503, "y": 0.8061580283172912 }, { "posteriors": "curve_30", "x": 0.45054945054945056, "y": 0.8139880758784251 }, { "posteriors": "curve_30", "x": 0.45604395604395603, "y": 0.8217978829520289 }, { "posteriors": "curve_30", "x": 0.46153846153846156, "y": 0.8295877447924287 }, { "posteriors": "curve_30", "x": 0.46703296703296704, "y": 0.837357948887367 }, { "posteriors": "curve_30", "x": 0.4725274725274725, "y": 0.845108775251169 }, { "posteriors": "curve_30", "x": 0.47802197802197804, "y": 0.8528404967035669 }, { "posteriors": "curve_30", "x": 0.4835164835164835, "y": 0.8605533791350395 }, { "posteriors": "curve_30", "x": 0.489010989010989, "y": 0.8682476817594643 }, { "posteriors": "curve_30", "x": 0.4945054945054945, "y": 0.8759236573548262 }, { "posteriors": "curve_30", "x": 0.5, "y": 0.8835815524926708 }, { "posteriors": "curve_30", "x": 0.5054945054945055, "y": 0.8912216077569497 }, { "posteriors": "curve_30", "x": 0.510989010989011, "y": 0.898844057952856 }, { "posteriors": "curve_30", "x": 0.5164835164835165, "y": 0.9064491323062107 }, { "posteriors": "curve_30", "x": 0.521978021978022, "y": 0.914037054653923 }, { "posteriors": "curve_30", "x": 0.5274725274725275, "y": 0.9216080436260169 }, { "posteriors": "curve_30", "x": 0.532967032967033, "y": 0.9291623128196755 }, { "posteriors": "curve_30", "x": 0.5384615384615384, "y": 0.9367000709657386 }, { "posteriors": "curve_30", "x": 0.5439560439560439, "y": 0.9442215220880484 }, { "posteriors": "curve_30", "x": 0.5494505494505495, "y": 0.9517268656560228 }, { "posteriors": "curve_30", "x": 0.554945054945055, "y": 0.9592162967308097 }, { "posteriors": "curve_30", "x": 0.5604395604395604, "y": 0.9666900061053487 }, { "posteriors": "curve_30", "x": 0.5659340659340659, "y": 0.9741481804386589 }, { "posteriors": "curve_30", "x": 0.5714285714285714, "y": 0.981591002384635 }, { "posteriors": "curve_30", "x": 0.5769230769230769, "y": 0.9890186507156357 }, { "posteriors": "curve_30", "x": 0.5824175824175825, "y": 0.9964313004411172 }, { "posteriors": "curve_30", "x": 0.5879120879120879, "y": 1.0038291229215566 }, { "posteriors": "curve_30", "x": 0.5934065934065934, "y": 1.0112122859778958 }, { "posteriors": "curve_30", "x": 0.5989010989010989, "y": 1.0185809539967194 }, { "posteriors": "curve_30", "x": 0.6043956043956044, "y": 1.0259352880313732 }, { "posteriors": "curve_30", "x": 0.6098901098901099, "y": 1.0332754458992122 }, { "posteriors": "curve_30", "x": 0.6153846153846154, "y": 1.040601582275163 }, { "posteriors": "curve_30", "x": 0.6208791208791209, "y": 1.047913848781771 }, { "posteriors": "curve_30", "x": 0.6263736263736264, "y": 1.0552123940758906 }, { "posteriors": "curve_30", "x": 0.6318681318681318, "y": 1.0624973639321804 }, { "posteriors": "curve_30", "x": 0.6373626373626373, "y": 1.0697689013235374 }, { "posteriors": "curve_30", "x": 0.6428571428571429, "y": 1.077027146498616 }, { "posteriors": "curve_30", "x": 0.6483516483516484, "y": 1.0842722370565585 }, { "posteriors": "curve_30", "x": 0.6538461538461539, "y": 1.0915043080190578 }, { "posteriors": "curve_30", "x": 0.6593406593406593, "y": 1.0987234918998754 }, { "posteriors": "curve_30", "x": 0.6648351648351648, "y": 1.1059299187719172 }, { "posteriors": "curve_30", "x": 0.6703296703296703, "y": 1.1131237163319787 }, { "posteriors": "curve_30", "x": 0.6758241758241759, "y": 1.1203050099632557 }, { "posteriors": "curve_30", "x": 0.6813186813186813, "y": 1.1274739227957153 }, { "posteriors": "curve_30", "x": 0.6868131868131868, "y": 1.134630575764421 }, { "posteriors": "curve_30", "x": 0.6923076923076923, "y": 1.141775087665888 }, { "posteriors": "curve_30", "x": 0.6978021978021978, "y": 1.1489075752125633 }, { "posteriors": "curve_30", "x": 0.7032967032967034, "y": 1.156028153085493 }, { "posteriors": "curve_30", "x": 0.7087912087912088, "y": 1.1631369339852637 }, { "posteriors": "curve_30", "x": 0.7142857142857143, "y": 1.1702340286812785 }, { "posteriors": "curve_30", "x": 0.7197802197802198, "y": 1.177319546059439 }, { "posteriors": "curve_30", "x": 0.7252747252747253, "y": 1.1843935931682936 }, { "posteriors": "curve_30", "x": 0.7307692307692307, "y": 1.1914562752637166 }, { "posteriors": "curve_30", "x": 0.7362637362637363, "y": 1.1985076958521717 }, { "posteriors": "curve_30", "x": 0.7417582417582418, "y": 1.2055479567326168 }, { "posteriors": "curve_30", "x": 0.7472527472527473, "y": 1.2125771580371034 }, { "posteriors": "curve_30", "x": 0.7527472527472527, "y": 1.219595398270117 }, { "posteriors": "curve_30", "x": 0.7582417582417582, "y": 1.2266027743467118 }, { "posteriors": "curve_30", "x": 0.7637362637362637, "y": 1.2335993816294806 }, { "posteriors": "curve_30", "x": 0.7692307692307693, "y": 1.2405853139644045 }, { "posteriors": "curve_30", "x": 0.7747252747252747, "y": 1.2475606637156262 }, { "posteriors": "curve_30", "x": 0.7802197802197802, "y": 1.2545255217991853 }, { "posteriors": "curve_30", "x": 0.7857142857142857, "y": 1.2614799777157515 }, { "posteriors": "curve_30", "x": 0.7912087912087912, "y": 1.2684241195823975 }, { "posteriors": "curve_30", "x": 0.7967032967032966, "y": 1.2753580341634396 }, { "posteriors": "curve_30", "x": 0.8021978021978022, "y": 1.2822818069003865 }, { "posteriors": "curve_30", "x": 0.8076923076923077, "y": 1.2891955219410214 }, { "posteriors": "curve_30", "x": 0.8131868131868132, "y": 1.296099262167654 }, { "posteriors": "curve_30", "x": 0.8186813186813187, "y": 1.3029931092245668 }, { "posteriors": "curve_30", "x": 0.8241758241758241, "y": 1.3098771435446883 }, { "posteriors": "curve_30", "x": 0.8296703296703297, "y": 1.316751444375516 }, { "posteriors": "curve_30", "x": 0.8351648351648352, "y": 1.3236160898043154 }, { "posteriors": "curve_30", "x": 0.8406593406593407, "y": 1.330471156782626 }, { "posteriors": "curve_30", "x": 0.8461538461538461, "y": 1.337316721150088 }, { "posteriors": "curve_30", "x": 0.8516483516483516, "y": 1.3441528576576198 }, { "posteriors": "curve_30", "x": 0.8571428571428571, "y": 1.3509796399899667 }, { "posteriors": "curve_30", "x": 0.8626373626373627, "y": 1.3577971407876397 }, { "posteriors": "curve_30", "x": 0.8681318681318682, "y": 1.364605431668267 }, { "posteriors": "curve_30", "x": 0.8736263736263736, "y": 1.3714045832473762 }, { "posteriors": "curve_30", "x": 0.8791208791208791, "y": 1.3781946651586279 }, { "posteriors": "curve_30", "x": 0.8846153846153846, "y": 1.384975746073513 }, { "posteriors": "curve_30", "x": 0.8901098901098901, "y": 1.3917478937205394 }, { "posteriors": "curve_30", "x": 0.8956043956043956, "y": 1.3985111749039183 }, { "posteriors": "curve_30", "x": 0.9010989010989011, "y": 1.4052656555217662 }, { "posteriors": "curve_30", "x": 0.9065934065934066, "y": 1.4120114005838436 }, { "posteriors": "curve_30", "x": 0.9120879120879121, "y": 1.418748474228837 }, { "posteriors": "curve_30", "x": 0.9175824175824175, "y": 1.425476939741206 }, { "posteriors": "curve_30", "x": 0.9230769230769231, "y": 1.432196859567603 }, { "posteriors": "curve_30", "x": 0.9285714285714286, "y": 1.438908295332883 }, { "posteriors": "curve_30", "x": 0.9340659340659341, "y": 1.4456113078557153 }, { "posteriors": "curve_30", "x": 0.9395604395604396, "y": 1.4523059571638066 }, { "posteriors": "curve_30", "x": 0.945054945054945, "y": 1.4589923025087503 }, { "posteriors": "curve_30", "x": 0.9505494505494505, "y": 1.4656704023805132 }, { "posteriors": "curve_30", "x": 0.9560439560439561, "y": 1.4723403145215683 }, { "posteriors": "curve_30", "x": 0.9615384615384616, "y": 1.4790020959406858 }, { "posteriors": "curve_30", "x": 0.967032967032967, "y": 1.485655802926394 }, { "posteriors": "curve_30", "x": 0.9725274725274725, "y": 1.4923014910601162 }, { "posteriors": "curve_30", "x": 0.978021978021978, "y": 1.4989392152289966 }, { "posteriors": "curve_30", "x": 0.9835164835164835, "y": 1.5055690296384208 }, { "posteriors": "curve_30", "x": 0.989010989010989, "y": 1.5121909878242457 }, { "posteriors": "curve_30", "x": 0.9945054945054945, "y": 1.518805142664738 }, { "posteriors": "curve_31", "x": 0, "y": 0 }, { "posteriors": "curve_31", "x": 0.005494505494505495, "y": 0.028683495017695137 }, { "posteriors": "curve_31", "x": 0.01098901098901099, "y": 0.04885226201078804 }, { "posteriors": "curve_31", "x": 0.016483516483516484, "y": 0.06670506052523194 }, { "posteriors": "curve_31", "x": 0.02197802197802198, "y": 0.0832026746426264 }, { "posteriors": "curve_31", "x": 0.027472527472527472, "y": 0.0987606636133861 }, { "posteriors": "curve_31", "x": 0.03296703296703297, "y": 0.11360864818648438 }, { "posteriors": "curve_31", "x": 0.038461538461538464, "y": 0.1278910697549465 }, { "posteriors": "curve_31", "x": 0.04395604395604396, "y": 0.14170654096135837 }, { "posteriors": "curve_31", "x": 0.04945054945054945, "y": 0.15512632253949085 }, { "posteriors": "curve_31", "x": 0.054945054945054944, "y": 0.16820411223332593 }, { "posteriors": "curve_31", "x": 0.06043956043956044, "y": 0.18098169773361678 }, { "posteriors": "curve_31", "x": 0.06593406593406594, "y": 0.19349244032059895 }, { "posteriors": "curve_31", "x": 0.07142857142857142, "y": 0.20576353376679393 }, { "posteriors": "curve_31", "x": 0.07692307692307693, "y": 0.2178175304179042 }, { "posteriors": "curve_31", "x": 0.08241758241758242, "y": 0.22967340764362532 }, { "posteriors": "curve_31", "x": 0.08791208791208792, "y": 0.24134733453563006 }, { "posteriors": "curve_31", "x": 0.09340659340659341, "y": 0.2528532365832424 }, { "posteriors": "curve_31", "x": 0.0989010989010989, "y": 0.26420322031168475 }, { "posteriors": "curve_31", "x": 0.1043956043956044, "y": 0.27540789845964675 }, { "posteriors": "curve_31", "x": 0.10989010989010989, "y": 0.2864766429978352 }, { "posteriors": "curve_31", "x": 0.11538461538461539, "y": 0.2974177848054261 }, { "posteriors": "curve_31", "x": 0.12087912087912088, "y": 0.3082387732521983 }, { "posteriors": "curve_31", "x": 0.12637362637362637, "y": 0.318946305191584 }, { "posteriors": "curve_31", "x": 0.13186813186813187, "y": 0.3295464303013736 }, { "posteriors": "curve_31", "x": 0.13736263736263737, "y": 0.3400446379124744 }, { "posteriors": "curve_31", "x": 0.14285714285714285, "y": 0.350445929188192 }, { "posteriors": "curve_31", "x": 0.14835164835164835, "y": 0.36075487759318664 }, { "posteriors": "curve_31", "x": 0.15384615384615385, "y": 0.3709756799146612 }, { "posteriors": "curve_31", "x": 0.15934065934065933, "y": 0.38111219959608494 }, { "posteriors": "curve_31", "x": 0.16483516483516483, "y": 0.39116800376645666 }, { "posteriors": "curve_31", "x": 0.17032967032967034, "y": 0.4011463950615497 }, { "posteriors": "curve_31", "x": 0.17582417582417584, "y": 0.4110504391137244 }, { "posteriors": "curve_31", "x": 0.1813186813186813, "y": 0.4208829884165983 }, { "posteriors": "curve_31", "x": 0.18681318681318682, "y": 0.4306467031378142 }, { "posteriors": "curve_31", "x": 0.19230769230769232, "y": 0.44034406934832787 }, { "posteriors": "curve_31", "x": 0.1978021978021978, "y": 0.4499774150534295 }, { "posteriors": "curve_31", "x": 0.2032967032967033, "y": 0.45954892434418537 }, { "posteriors": "curve_31", "x": 0.2087912087912088, "y": 0.4690606499344336 }, { "posteriors": "curve_31", "x": 0.21428571428571427, "y": 0.4785145243050825 }, { "posteriors": "curve_31", "x": 0.21978021978021978, "y": 0.487912369642108 }, { "posteriors": "curve_31", "x": 0.22527472527472528, "y": 0.49725590672566733 }, { "posteriors": "curve_31", "x": 0.23076923076923078, "y": 0.5065467629038732 }, { "posteriors": "curve_31", "x": 0.23626373626373626, "y": 0.5157864792649974 }, { "posteriors": "curve_31", "x": 0.24175824175824176, "y": 0.5249765171054204 }, { "posteriors": "curve_31", "x": 0.24725274725274726, "y": 0.5341182637768862 }, { "posteriors": "curve_31", "x": 0.25274725274725274, "y": 0.5432130379850781 }, { "posteriors": "curve_31", "x": 0.25824175824175827, "y": 0.5522620946017878 }, { "posteriors": "curve_31", "x": 0.26373626373626374, "y": 0.561266629044714 }, { "posteriors": "curve_31", "x": 0.2692307692307692, "y": 0.570227781271924 }, { "posteriors": "curve_31", "x": 0.27472527472527475, "y": 0.579146639432038 }, { "posteriors": "curve_31", "x": 0.2802197802197802, "y": 0.5880242432060947 }, { "posteriors": "curve_31", "x": 0.2857142857142857, "y": 0.5968615868726624 }, { "posteriors": "curve_31", "x": 0.29120879120879123, "y": 0.6056596221239915 }, { "posteriors": "curve_31", "x": 0.2967032967032967, "y": 0.6144192606577367 }, { "posteriors": "curve_31", "x": 0.3021978021978022, "y": 0.6231413765659546 }, { "posteriors": "curve_31", "x": 0.3076923076923077, "y": 0.631826808540626 }, { "posteriors": "curve_31", "x": 0.3131868131868132, "y": 0.6404763619128124 }, { "posteriors": "curve_31", "x": 0.31868131868131866, "y": 0.6490908105406938 }, { "posteriors": "curve_31", "x": 0.3241758241758242, "y": 0.6576708985600906 }, { "posteriors": "curve_31", "x": 0.32967032967032966, "y": 0.6662173420096488 }, { "posteriors": "curve_31", "x": 0.33516483516483514, "y": 0.6747308303415953 }, { "posteriors": "curve_31", "x": 0.34065934065934067, "y": 0.6832120278278634 }, { "posteriors": "curve_31", "x": 0.34615384615384615, "y": 0.6916615748704021 }, { "posteriors": "curve_31", "x": 0.3516483516483517, "y": 0.7000800892236153 }, { "posteriors": "curve_31", "x": 0.35714285714285715, "y": 0.7084681671361006 }, { "posteriors": "curve_31", "x": 0.3626373626373626, "y": 0.7168263844181744 }, { "posteriors": "curve_31", "x": 0.36813186813186816, "y": 0.7251552974410569 }, { "posteriors": "curve_31", "x": 0.37362637362637363, "y": 0.7334554440730449 }, { "posteriors": "curve_31", "x": 0.3791208791208791, "y": 0.7417273445575143 }, { "posteriors": "curve_31", "x": 0.38461538461538464, "y": 0.7499715023371554 }, { "posteriors": "curve_31", "x": 0.3901098901098901, "y": 0.7581884048284532 }, { "posteriors": "curve_31", "x": 0.3956043956043956, "y": 0.7663785241500758 }, { "posteriors": "curve_31", "x": 0.4010989010989011, "y": 0.7745423178085138 }, { "posteriors": "curve_31", "x": 0.4065934065934066, "y": 0.7826802293440293 }, { "posteriors": "curve_31", "x": 0.41208791208791207, "y": 0.7907926889397193 }, { "posteriors": "curve_31", "x": 0.4175824175824176, "y": 0.798880113996261 }, { "posteriors": "curve_31", "x": 0.4230769230769231, "y": 0.8069429096746981 }, { "posteriors": "curve_31", "x": 0.42857142857142855, "y": 0.8149814694094385 }, { "posteriors": "curve_31", "x": 0.4340659340659341, "y": 0.8229961753934567 }, { "posteriors": "curve_31", "x": 0.43956043956043955, "y": 0.8309873990375402 }, { "posteriors": "curve_31", "x": 0.44505494505494503, "y": 0.8389555014052756 }, { "posteriors": "curve_31", "x": 0.45054945054945056, "y": 0.8469008336253392 }, { "posteriors": "curve_31", "x": 0.45604395604395603, "y": 0.8548237372825358 }, { "posteriors": "curve_31", "x": 0.46153846153846156, "y": 0.8627245447889287 }, { "posteriors": "curve_31", "x": 0.46703296703296704, "y": 0.8706035797362939 }, { "posteriors": "curve_31", "x": 0.4725274725274725, "y": 0.8784611572310507 }, { "posteriors": "curve_31", "x": 0.47802197802197804, "y": 0.8862975842127315 }, { "posteriors": "curve_31", "x": 0.4835164835164835, "y": 0.8941131597569784 }, { "posteriors": "curve_31", "x": 0.489010989010989, "y": 0.9019081753639888 }, { "posteriors": "curve_31", "x": 0.4945054945054945, "y": 0.9096829152332614 }, { "posteriors": "curve_31", "x": 0.5, "y": 0.9174376565254387 }, { "posteriors": "curve_31", "x": 0.5054945054945055, "y": 0.9251726696119887 }, { "posteriors": "curve_31", "x": 0.510989010989011, "y": 0.9328882183134127 }, { "posteriors": "curve_31", "x": 0.5164835164835165, "y": 0.9405845601266293 }, { "posteriors": "curve_31", "x": 0.521978021978022, "y": 0.9482619464421315 }, { "posteriors": "curve_31", "x": 0.5274725274725275, "y": 0.9559206227514814 }, { "posteriors": "curve_31", "x": 0.532967032967033, "y": 0.9635608288456705 }, { "posteriors": "curve_31", "x": 0.5384615384615384, "y": 0.9711827990048336 }, { "posteriors": "curve_31", "x": 0.5439560439560439, "y": 0.9787867621797801 }, { "posteriors": "curve_31", "x": 0.5494505494505495, "y": 0.9863729421657753 }, { "posteriors": "curve_31", "x": 0.554945054945055, "y": 0.9939415577689735 }, { "posteriors": "curve_31", "x": 0.5604395604395604, "y": 1.001492822965888 }, { "posteriors": "curve_31", "x": 0.5659340659340659, "y": 1.0090269470562483 }, { "posteriors": "curve_31", "x": 0.5714285714285714, "y": 1.0165441348095878 }, { "posteriors": "curve_31", "x": 0.5769230769230769, "y": 1.0240445866058696 }, { "posteriors": "curve_31", "x": 0.5824175824175825, "y": 1.0315284985704523 }, { "posteriors": "curve_31", "x": 0.5879120879120879, "y": 1.038996062703672 }, { "posteriors": "curve_31", "x": 0.5934065934065934, "y": 1.046447467005307 }, { "posteriors": "curve_31", "x": 0.5989010989010989, "y": 1.0538828955941675 }, { "posteriors": "curve_31", "x": 0.6043956043956044, "y": 1.061302528823048 }, { "posteriors": "curve_31", "x": 0.6098901098901099, "y": 1.0687065433892629 }, { "posteriors": "curve_31", "x": 0.6153846153846154, "y": 1.0760951124409703 }, { "posteriors": "curve_31", "x": 0.6208791208791209, "y": 1.083468405679485 }, { "posteriors": "curve_31", "x": 0.6263736263736264, "y": 1.0908265894577593 }, { "posteriors": "curve_31", "x": 0.6318681318681318, "y": 1.0981698268752165 }, { "posteriors": "curve_31", "x": 0.6373626373626373, "y": 1.1054982778690954 }, { "posteriors": "curve_31", "x": 0.6428571428571429, "y": 1.1128120993024642 }, { "posteriors": "curve_31", "x": 0.6483516483516484, "y": 1.1201114450490577 }, { "posteriors": "curve_31", "x": 0.6538461538461539, "y": 1.1273964660750722 }, { "posteriors": "curve_31", "x": 0.6593406593406593, "y": 1.134667310518054 }, { "posteriors": "curve_31", "x": 0.6648351648351648, "y": 1.1419241237630113 }, { "posteriors": "curve_31", "x": 0.6703296703296703, "y": 1.1491670485158632 }, { "posteriors": "curve_31", "x": 0.6758241758241759, "y": 1.1563962248743445 }, { "posteriors": "curve_31", "x": 0.6813186813186813, "y": 1.1636117903964742 }, { "posteriors": "curve_31", "x": 0.6868131868131868, "y": 1.1708138801666899 }, { "posteriors": "curve_31", "x": 0.6923076923076923, "y": 1.1780026268597412 }, { "posteriors": "curve_31", "x": 0.6978021978021978, "y": 1.1851781608024439 }, { "posteriors": "curve_31", "x": 0.7032967032967034, "y": 1.192340610033376 }, { "posteriors": "curve_31", "x": 0.7087912087912088, "y": 1.199490100360601 }, { "posteriors": "curve_31", "x": 0.7142857142857143, "y": 1.2066267554175019 }, { "posteriors": "curve_31", "x": 0.7197802197802198, "y": 1.2137506967167948 }, { "posteriors": "curve_31", "x": 0.7252747252747253, "y": 1.2208620437028055 }, { "posteriors": "curve_31", "x": 0.7307692307692307, "y": 1.2279609138020648 }, { "posteriors": "curve_31", "x": 0.7362637362637363, "y": 1.2350474224723 }, { "posteriors": "curve_31", "x": 0.7417582417582418, "y": 1.2421216832498785 }, { "posteriors": "curve_31", "x": 0.7472527472527473, "y": 1.2491838077957653 }, { "posteriors": "curve_31", "x": 0.7527472527472527, "y": 1.2562339059400534 }, { "posteriors": "curve_31", "x": 0.7582417582417582, "y": 1.2632720857251172 }, { "posteriors": "curve_31", "x": 0.7637362637362637, "y": 1.2702984534474455 }, { "posteriors": "curve_31", "x": 0.7692307692307693, "y": 1.2773131136982023 }, { "posteriors": "curve_31", "x": 0.7747252747252747, "y": 1.2843161694025593 }, { "posteriors": "curve_31", "x": 0.7802197802197802, "y": 1.2913077218578541 }, { "posteriors": "curve_31", "x": 0.7857142857142857, "y": 1.2982878707706076 }, { "posteriors": "curve_31", "x": 0.7912087912087912, "y": 1.3052567142924476 }, { "posteriors": "curve_31", "x": 0.7967032967032966, "y": 1.312214349054981 }, { "posteriors": "curve_31", "x": 0.8021978021978022, "y": 1.3191608702036428 }, { "posteriors": "curve_31", "x": 0.8076923076923077, "y": 1.3260963714305718 }, { "posteriors": "curve_31", "x": 0.8131868131868132, "y": 1.3330209450065342 }, { "posteriors": "curve_31", "x": 0.8186813186813187, "y": 1.33993468181194 }, { "posteriors": "curve_31", "x": 0.8241758241758241, "y": 1.3468376713669756 }, { "posteriors": "curve_31", "x": 0.8296703296703297, "y": 1.35373000186089 }, { "posteriors": "curve_31", "x": 0.8351648351648352, "y": 1.3606117601804573 }, { "posteriors": "curve_31", "x": 0.8406593406593407, "y": 1.367483031937651 }, { "posteriors": "curve_31", "x": 0.8461538461538461, "y": 1.3743439014965508 }, { "posteriors": "curve_31", "x": 0.8516483516483516, "y": 1.3811944519995127 }, { "posteriors": "curve_31", "x": 0.8571428571428571, "y": 1.3880347653926224 }, { "posteriors": "curve_31", "x": 0.8626373626373627, "y": 1.3948649224504608 }, { "posteriors": "curve_31", "x": 0.8681318681318682, "y": 1.4016850028002026 }, { "posteriors": "curve_31", "x": 0.8736263736263736, "y": 1.4084950849450681 }, { "posteriors": "curve_31", "x": 0.8791208791208791, "y": 1.4152952462871535 }, { "posteriors": "curve_31", "x": 0.8846153846153846, "y": 1.4220855631496552 }, { "posteriors": "curve_31", "x": 0.8901098901098901, "y": 1.428866110798513 }, { "posteriors": "curve_31", "x": 0.8956043956043956, "y": 1.4356369634634873 }, { "posteriors": "curve_31", "x": 0.9010989010989011, "y": 1.4423981943586874 }, { "posteriors": "curve_31", "x": 0.9065934065934066, "y": 1.4491498757025751 }, { "posteriors": "curve_31", "x": 0.9120879120879121, "y": 1.4558920787374503 }, { "posteriors": "curve_31", "x": 0.9175824175824175, "y": 1.4626248737484444 }, { "posteriors": "curve_31", "x": 0.9230769230769231, "y": 1.46934833008203 }, { "posteriors": "curve_31", "x": 0.9285714285714286, "y": 1.4760625161640666 }, { "posteriors": "curve_31", "x": 0.9340659340659341, "y": 1.482767499517393 }, { "posteriors": "curve_31", "x": 0.9395604395604396, "y": 1.489463346778984 }, { "posteriors": "curve_31", "x": 0.945054945054945, "y": 1.49615012371668 }, { "posteriors": "curve_31", "x": 0.9505494505494505, "y": 1.5028278952455094 }, { "posteriors": "curve_31", "x": 0.9560439560439561, "y": 1.5094967254436071 }, { "posteriors": "curve_31", "x": 0.9615384615384616, "y": 1.5161566775677502 }, { "posteriors": "curve_31", "x": 0.967032967032967, "y": 1.5228078140685155 }, { "posteriors": "curve_31", "x": 0.9725274725274725, "y": 1.5294501966050749 }, { "posteriors": "curve_31", "x": 0.978021978021978, "y": 1.5360838860596355 }, { "posteriors": "curve_31", "x": 0.9835164835164835, "y": 1.5427089425515381 }, { "posteriors": "curve_31", "x": 0.989010989010989, "y": 1.5493254254510214 }, { "posteriors": "curve_31", "x": 0.9945054945054945, "y": 1.5559333933926627 }, { "posteriors": "curve_32", "x": 0, "y": 0 }, { "posteriors": "curve_32", "x": 0.005494505494505495, "y": 0.025947775557211495 }, { "posteriors": "curve_32", "x": 0.01098901098901099, "y": 0.04493043816072366 }, { "posteriors": "curve_32", "x": 0.016483516483516484, "y": 0.061946877097696494 }, { "posteriors": "curve_32", "x": 0.02197802197802198, "y": 0.07780028268178685 }, { "posteriors": "curve_32", "x": 0.027472527472527472, "y": 0.09284144209504604 }, { "posteriors": "curve_32", "x": 0.03296703296703297, "y": 0.10726546961804814 }, { "posteriors": "curve_32", "x": 0.038461538461538464, "y": 0.12119572564600715 }, { "posteriors": "curve_32", "x": 0.04395604395604396, "y": 0.13471678072031631 }, { "posteriors": "curve_32", "x": 0.04945054945054945, "y": 0.1478899635807358 }, { "posteriors": "curve_32", "x": 0.054945054945054944, "y": 0.160761629204263 }, { "posteriors": "curve_32", "x": 0.06043956043956044, "y": 0.1733679487192392 }, { "posteriors": "curve_32", "x": 0.06593406593406594, "y": 0.1857378694689398 }, { "posteriors": "curve_32", "x": 0.07142857142857142, "y": 0.19789503919389828 }, { "posteriors": "curve_32", "x": 0.07692307692307693, "y": 0.20985910890417572 }, { "posteriors": "curve_32", "x": 0.08241758241758242, "y": 0.22164664521449967 }, { "posteriors": "curve_32", "x": 0.08791208791208792, "y": 0.23327178748020674 }, { "posteriors": "curve_32", "x": 0.09340659340659341, "y": 0.24474673262372673 }, { "posteriors": "curve_32", "x": 0.0989010989010989, "y": 0.25608210031742745 }, { "posteriors": "curve_32", "x": 0.1043956043956044, "y": 0.2672872130560487 }, { "posteriors": "curve_32", "x": 0.10989010989010989, "y": 0.2783703143898923 }, { "posteriors": "curve_32", "x": 0.11538461538461539, "y": 0.28933874138096527 }, { "posteriors": "curve_32", "x": 0.12087912087912088, "y": 0.3001990626058273 }, { "posteriors": "curve_32", "x": 0.12637362637362637, "y": 0.31095718984034 }, { "posteriors": "curve_32", "x": 0.13186813186813187, "y": 0.3216184693704665 }, { "posteriors": "curve_32", "x": 0.13736263736263737, "y": 0.3321877573390764 }, { "posteriors": "curve_32", "x": 0.14285714285714285, "y": 0.3426694824460309 }, { "posteriors": "curve_32", "x": 0.14835164835164835, "y": 0.353067698528497 }, { "posteriors": "curve_32", "x": 0.15384615384615385, "y": 0.36338612896869626 }, { "posteriors": "curve_32", "x": 0.15934065934065933, "y": 0.37362820444551137 }, { "posteriors": "curve_32", "x": 0.16483516483516483, "y": 0.383797095222453 }, { "posteriors": "curve_32", "x": 0.17032967032967034, "y": 0.39389573891824803 }, { "posteriors": "curve_32", "x": 0.17582417582417584, "y": 0.40392686451721627 }, { "posteriors": "curve_32", "x": 0.1813186813186813, "y": 0.4138930132300174 }, { "posteriors": "curve_32", "x": 0.18681318681318682, "y": 0.4237965567007272 }, { "posteriors": "curve_32", "x": 0.19230769230769232, "y": 0.43363971296582576 }, { "posteriors": "curve_32", "x": 0.1978021978021978, "y": 0.4434245604988923 }, { "posteriors": "curve_32", "x": 0.2032967032967033, "y": 0.4531530506173503 }, { "posteriors": "curve_32", "x": 0.2087912087912088, "y": 0.4628270184813315 }, { "posteriors": "curve_32", "x": 0.21428571428571427, "y": 0.47244819287721923 }, { "posteriors": "curve_32", "x": 0.21978021978021978, "y": 0.48201820494783 }, { "posteriors": "curve_32", "x": 0.22527472527472528, "y": 0.49153859600611166 }, { "posteriors": "curve_32", "x": 0.23076923076923078, "y": 0.5010108245485437 }, { "posteriors": "curve_32", "x": 0.23626373626373626, "y": 0.5104362725672861 }, { "posteriors": "curve_32", "x": 0.24175824175824176, "y": 0.5198162512458485 }, { "posteriors": "curve_32", "x": 0.24725274725274726, "y": 0.5291520061111126 }, { "posteriors": "curve_32", "x": 0.25274725274725274, "y": 0.5384447217045091 }, { "posteriors": "curve_32", "x": 0.25824175824175827, "y": 0.5476955258266932 }, { "posteriors": "curve_32", "x": 0.26373626373626374, "y": 0.5569054934028911 }, { "posteriors": "curve_32", "x": 0.2692307692307692, "y": 0.5660756500100057 }, { "posteriors": "curve_32", "x": 0.27472527472527475, "y": 0.5752069751013685 }, { "posteriors": "curve_32", "x": 0.2802197802197802, "y": 0.5843004049605751 }, { "posteriors": "curve_32", "x": 0.2857142857142857, "y": 0.5933568354120277 }, { "posteriors": "curve_32", "x": 0.29120879120879123, "y": 0.6023771243125076 }, { "posteriors": "curve_32", "x": 0.2967032967032967, "y": 0.6113620938452594 }, { "posteriors": "curve_32", "x": 0.3021978021978022, "y": 0.6203125326356069 }, { "posteriors": "curve_32", "x": 0.3076923076923077, "y": 0.6292291977049679 }, { "posteriors": "curve_32", "x": 0.3131868131868132, "y": 0.6381128162782771 }, { "posteriors": "curve_32", "x": 0.31868131868131866, "y": 0.6469640874581902 }, { "posteriors": "curve_32", "x": 0.3241758241758242, "y": 0.655783683778011 }, { "posteriors": "curve_32", "x": 0.32967032967032966, "y": 0.6645722526440321 }, { "posteriors": "curve_32", "x": 0.33516483516483514, "y": 0.6733304176768745 }, { "posteriors": "curve_32", "x": 0.34065934065934067, "y": 0.6820587799604362 }, { "posteriors": "curve_32", "x": 0.34615384615384615, "y": 0.6907579192061977 }, { "posteriors": "curve_32", "x": 0.3516483516483517, "y": 0.6994283948398755 }, { "posteriors": "curve_32", "x": 0.35714285714285715, "y": 0.7080707470167296 }, { "posteriors": "curve_32", "x": 0.3626373626373626, "y": 0.7166854975712362 }, { "posteriors": "curve_32", "x": 0.36813186813186816, "y": 0.7252731509062971 }, { "posteriors": "curve_32", "x": 0.37362637362637363, "y": 0.7338341948266777 }, { "posteriors": "curve_32", "x": 0.3791208791208791, "y": 0.7423691013209427 }, { "posteriors": "curve_32", "x": 0.38461538461538464, "y": 0.7508783272957685 }, { "posteriors": "curve_32", "x": 0.3901098901098901, "y": 0.7593623152661716 }, { "posteriors": "curve_32", "x": 0.3956043956043956, "y": 0.7678214940048845 }, { "posteriors": "curve_32", "x": 0.4010989010989011, "y": 0.7762562791538274 }, { "posteriors": "curve_32", "x": 0.4065934065934066, "y": 0.7846670738003788 }, { "posteriors": "curve_32", "x": 0.41208791208791207, "y": 0.7930542690209174 }, { "posteriors": "curve_32", "x": 0.4175824175824176, "y": 0.8014182443939074 }, { "posteriors": "curve_32", "x": 0.4230769230769231, "y": 0.809759368484609 }, { "posteriors": "curve_32", "x": 0.42857142857142855, "y": 0.8180779993033345 }, { "posteriors": "curve_32", "x": 0.4340659340659341, "y": 0.8263744847390101 }, { "posteriors": "curve_32", "x": 0.43956043956043955, "y": 0.8346491629696725 }, { "posteriors": "curve_32", "x": 0.44505494505494503, "y": 0.8429023628513997 }, { "posteriors": "curve_32", "x": 0.45054945054945056, "y": 0.8511344042870598 }, { "posteriors": "curve_32", "x": 0.45604395604395603, "y": 0.8593455985761574 }, { "posteriors": "curve_32", "x": 0.46153846153846156, "y": 0.8675362487469677 }, { "posteriors": "curve_32", "x": 0.46703296703296704, "y": 0.8757066498720462 }, { "posteriors": "curve_32", "x": 0.4725274725274725, "y": 0.8838570893681407 }, { "posteriors": "curve_32", "x": 0.47802197802197804, "y": 0.8919878472814426 }, { "posteriors": "curve_32", "x": 0.4835164835164835, "y": 0.9000991965590566 }, { "posteriors": "curve_32", "x": 0.489010989010989, "y": 0.9081914033075055 }, { "posteriors": "curve_32", "x": 0.4945054945054945, "y": 0.9162647270390227 }, { "posteriors": "curve_32", "x": 0.5, "y": 0.9243194209063447 }, { "posteriors": "curve_32", "x": 0.5054945054945055, "y": 0.9323557319266558 }, { "posteriors": "curve_32", "x": 0.510989010989011, "y": 0.9403739011953014 }, { "posteriors": "curve_32", "x": 0.5164835164835165, "y": 0.9483741640898415 }, { "posteriors": "curve_32", "x": 0.521978021978022, "y": 0.9563567504649785 }, { "posteriors": "curve_32", "x": 0.5274725274725275, "y": 0.9643218848388605 }, { "posteriors": "curve_32", "x": 0.532967032967033, "y": 0.9722697865712251 }, { "posteriors": "curve_32", "x": 0.5384615384615384, "y": 0.9802006700338253 }, { "posteriors": "curve_32", "x": 0.5439560439560439, "y": 0.988114744773541 }, { "posteriors": "curve_32", "x": 0.5494505494505495, "y": 0.996012215668569 }, { "posteriors": "curve_32", "x": 0.554945054945055, "y": 1.003893283078042 }, { "posteriors": "curve_32", "x": 0.5604395604395604, "y": 1.0117581429854254 }, { "posteriors": "curve_32", "x": 0.5659340659340659, "y": 1.019606987135998 }, { "posteriors": "curve_32", "x": 0.5714285714285714, "y": 1.0274400031687274 }, { "posteriors": "curve_32", "x": 0.5769230769230769, "y": 1.0352573747428087 }, { "posteriors": "curve_32", "x": 0.5824175824175825, "y": 1.0430592816591424 }, { "posteriors": "curve_32", "x": 0.5879120879120879, "y": 1.0508458999769896 }, { "posteriors": "curve_32", "x": 0.5934065934065934, "y": 1.0586174021260468 }, { "posteriors": "curve_32", "x": 0.5989010989010989, "y": 1.0663739570141568 }, { "posteriors": "curve_32", "x": 0.6043956043956044, "y": 1.0741157301308644 }, { "posteriors": "curve_32", "x": 0.6098901098901099, "y": 1.081842883647016 }, { "posteriors": "curve_32", "x": 0.6153846153846154, "y": 1.0895555765105847 }, { "posteriors": "curve_32", "x": 0.6208791208791209, "y": 1.0972539645389001 }, { "posteriors": "curve_32", "x": 0.6263736263736264, "y": 1.1049382005074455 }, { "posteriors": "curve_32", "x": 0.6318681318681318, "y": 1.112608434235381 }, { "posteriors": "curve_32", "x": 0.6373626373626373, "y": 1.120264812667938 }, { "posteriors": "curve_32", "x": 0.6428571428571429, "y": 1.1279074799558304 }, { "posteriors": "curve_32", "x": 0.6483516483516484, "y": 1.1355365775318096 }, { "posteriors": "curve_32", "x": 0.6538461538461539, "y": 1.1431522441844932 }, { "posteriors": "curve_32", "x": 0.6593406593406593, "y": 1.1507546161295836 }, { "posteriors": "curve_32", "x": 0.6648351648351648, "y": 1.158343827078594 }, { "posteriors": "curve_32", "x": 0.6703296703296703, "y": 1.165920008305183 }, { "posteriors": "curve_32", "x": 0.6758241758241759, "y": 1.173483288709206 }, { "posteriors": "curve_32", "x": 0.6813186813186813, "y": 1.1810337948785745 }, { "posteriors": "curve_32", "x": 0.6868131868131868, "y": 1.1885716511490207 }, { "posteriors": "curve_32", "x": 0.6923076923076923, "y": 1.196096979661849 }, { "posteriors": "curve_32", "x": 0.6978021978021978, "y": 1.2036099004197625 }, { "posteriors": "curve_32", "x": 0.7032967032967034, "y": 1.2111105313408388 }, { "posteriors": "curve_32", "x": 0.7087912087912088, "y": 1.2185989883107364 }, { "posteriors": "curve_32", "x": 0.7142857142857143, "y": 1.2260753852331958 }, { "posteriors": "curve_32", "x": 0.7197802197802198, "y": 1.233539834078908 }, { "posteriors": "curve_32", "x": 0.7252747252747253, "y": 1.2409924449328178 }, { "posteriors": "curve_32", "x": 0.7307692307692307, "y": 1.2484333260399143 }, { "posteriors": "curve_32", "x": 0.7362637362637363, "y": 1.2558625838495794 }, { "posteriors": "curve_32", "x": 0.7417582417582418, "y": 1.2632803230585405 }, { "posteriors": "curve_32", "x": 0.7472527472527473, "y": 1.2706866466524886 }, { "posteriors": "curve_32", "x": 0.7527472527472527, "y": 1.2780816559464079 }, { "posteriors": "curve_32", "x": 0.7582417582417582, "y": 1.285465450623666 }, { "posteriors": "curve_32", "x": 0.7637362637362637, "y": 1.2928381287739177 }, { "posteriors": "curve_32", "x": 0.7692307692307693, "y": 1.3001997869298576 }, { "posteriors": "curve_32", "x": 0.7747252747252747, "y": 1.3075505201028699 }, { "posteriors": "curve_32", "x": 0.7802197802197802, "y": 1.314890421817617 }, { "posteriors": "curve_32", "x": 0.7857142857142857, "y": 1.322219584145602 }, { "posteriors": "curve_32", "x": 0.7912087912087912, "y": 1.329538097737745 }, { "posteriors": "curve_32", "x": 0.7967032967032966, "y": 1.3368460518560061 }, { "posteriors": "curve_32", "x": 0.8021978021978022, "y": 1.344143534404097 }, { "posteriors": "curve_32", "x": 0.8076923076923077, "y": 1.351430631957299 }, { "posteriors": "curve_32", "x": 0.8131868131868132, "y": 1.3587074297914377 }, { "posteriors": "curve_32", "x": 0.8186813186813187, "y": 1.3659740119110266 }, { "posteriors": "curve_32", "x": 0.8241758241758241, "y": 1.373230461076622 }, { "posteriors": "curve_32", "x": 0.8296703296703297, "y": 1.3804768588314078 }, { "posteriors": "curve_32", "x": 0.8351648351648352, "y": 1.3877132855270398 }, { "posteriors": "curve_32", "x": 0.8406593406593407, "y": 1.3949398203487788 }, { "posteriors": "curve_32", "x": 0.8461538461538461, "y": 1.4021565413399275 }, { "posteriors": "curve_32", "x": 0.8516483516483516, "y": 1.4093635254256038 }, { "posteriors": "curve_32", "x": 0.8571428571428571, "y": 1.4165608484358687 }, { "posteriors": "curve_32", "x": 0.8626373626373627, "y": 1.4237485851282299 }, { "posteriors": "curve_32", "x": 0.8681318681318682, "y": 1.4309268092095415 }, { "posteriors": "curve_32", "x": 0.8736263736263736, "y": 1.4380955933573247 }, { "posteriors": "curve_32", "x": 0.8791208791208791, "y": 1.4452550092405203 }, { "posteriors": "curve_32", "x": 0.8846153846153846, "y": 1.4524051275396979 }, { "posteriors": "curve_32", "x": 0.8901098901098901, "y": 1.4595460179667374 }, { "posteriors": "curve_32", "x": 0.8956043956043956, "y": 1.4666777492839995 }, { "posteriors": "curve_32", "x": 0.9010989010989011, "y": 1.4738003893229996 }, { "posteriors": "curve_32", "x": 0.9065934065934066, "y": 1.480914005002606 }, { "posteriors": "curve_32", "x": 0.9120879120879121, "y": 1.4880186623467717 }, { "posteriors": "curve_32", "x": 0.9175824175824175, "y": 1.4951144265018195 }, { "posteriors": "curve_32", "x": 0.9230769230769231, "y": 1.5022013617532892 }, { "posteriors": "curve_32", "x": 0.9285714285714286, "y": 1.5092795315423635 }, { "posteriors": "curve_32", "x": 0.9340659340659341, "y": 1.516348998481888 }, { "posteriors": "curve_32", "x": 0.9395604395604396, "y": 1.5234098243719916 }, { "posteriors": "curve_32", "x": 0.945054945054945, "y": 1.5304620702153229 }, { "posteriors": "curve_32", "x": 0.9505494505494505, "y": 1.5375057962319179 }, { "posteriors": "curve_32", "x": 0.9560439560439561, "y": 1.5445410618737 }, { "posteriors": "curve_32", "x": 0.9615384615384616, "y": 1.5515679258386361 }, { "posteriors": "curve_32", "x": 0.967032967032967, "y": 1.5585864460845475 }, { "posteriors": "curve_32", "x": 0.9725274725274725, "y": 1.5655966798425933 }, { "posteriors": "curve_32", "x": 0.978021978021978, "y": 1.572598683630433 }, { "posteriors": "curve_32", "x": 0.9835164835164835, "y": 1.5795925132650777 }, { "posteriors": "curve_32", "x": 0.989010989010989, "y": 1.5865782238754398 }, { "posteriors": "curve_32", "x": 0.9945054945054945, "y": 1.5935558699145889 }, { "posteriors": "curve_33", "x": 0, "y": 0 }, { "posteriors": "curve_33", "x": 0.005494505494505495, "y": 0.024691722276509252 }, { "posteriors": "curve_33", "x": 0.01098901098901099, "y": 0.04267152499328514 }, { "posteriors": "curve_33", "x": 0.016483516483516484, "y": 0.05876483500800682 }, { "posteriors": "curve_33", "x": 0.02197802197802198, "y": 0.07374370345096797 }, { "posteriors": "curve_33", "x": 0.027472527472527472, "y": 0.08794492926222208 }, { "posteriors": "curve_33", "x": 0.03296703296703297, "y": 0.10155569942385347 }, { "posteriors": "curve_33", "x": 0.038461538461538464, "y": 0.11469429095297035 }, { "posteriors": "curve_33", "x": 0.04395604395604396, "y": 0.12744174949266657 }, { "posteriors": "curve_33", "x": 0.04945054945054945, "y": 0.13985682306185684 }, { "posteriors": "curve_33", "x": 0.054945054945054944, "y": 0.1519838999086677 }, { "posteriors": "curve_33", "x": 0.06043956043956044, "y": 0.16385760539620495 }, { "posteriors": "curve_33", "x": 0.06593406593406594, "y": 0.17550564183602024 }, { "posteriors": "curve_33", "x": 0.07142857142857142, "y": 0.18695063396937633 }, { "posteriors": "curve_33", "x": 0.07692307692307693, "y": 0.19821137821734391 }, { "posteriors": "curve_33", "x": 0.08241758241758242, "y": 0.2093037172543453 }, { "posteriors": "curve_33", "x": 0.08791208791208792, "y": 0.22024116980442204 }, { "posteriors": "curve_33", "x": 0.09340659340659341, "y": 0.23103539520075544 }, { "posteriors": "curve_33", "x": 0.0989010989010989, "y": 0.24169654323558928 }, { "posteriors": "curve_33", "x": 0.1043956043956044, "y": 0.2522335224249533 }, { "posteriors": "curve_33", "x": 0.10989010989010989, "y": 0.2626542090058904 }, { "posteriors": "curve_33", "x": 0.11538461538461539, "y": 0.2729656120676442 }, { "posteriors": "curve_33", "x": 0.12087912087912088, "y": 0.2831740056729855 }, { "posteriors": "curve_33", "x": 0.12637362637362637, "y": 0.2932850357677717 }, { "posteriors": "curve_33", "x": 0.13186813186813187, "y": 0.30330380757575265 }, { "posteriors": "curve_33", "x": 0.13736263736263737, "y": 0.3132349577046463 }, { "posteriors": "curve_33", "x": 0.14285714285714285, "y": 0.3230827141419859 }, { "posteriors": "curve_33", "x": 0.14835164835164835, "y": 0.33285094656167175 }, { "posteriors": "curve_33", "x": 0.15384615384615385, "y": 0.34254320880651895 }, { "posteriors": "curve_33", "x": 0.15934065934065933, "y": 0.3521627749992619 }, { "posteriors": "curve_33", "x": 0.16483516483516483, "y": 0.3617126704240952 }, { "posteriors": "curve_33", "x": 0.17032967032967034, "y": 0.371195698084904 }, { "posteriors": "curve_33", "x": 0.17582417582417584, "y": 0.380614461665182 }, { "posteriors": "curve_33", "x": 0.1813186813186813, "y": 0.3899713854742239 }, { "posteriors": "curve_33", "x": 0.18681318681318682, "y": 0.39926873185438616 }, { "posteriors": "curve_33", "x": 0.19230769230769232, "y": 0.40850861643765823 }, { "posteriors": "curve_33", "x": 0.1978021978021978, "y": 0.4176930215710384 }, { "posteriors": "curve_33", "x": 0.2032967032967033, "y": 0.4268238081751939 }, { "posteriors": "curve_33", "x": 0.2087912087912088, "y": 0.4359027262565812 }, { "posteriors": "curve_33", "x": 0.21428571428571427, "y": 0.4449314242572884 }, { "posteriors": "curve_33", "x": 0.21978021978021978, "y": 0.45391145739757116 }, { "posteriors": "curve_33", "x": 0.22527472527472528, "y": 0.4628442951420399 }, { "posteriors": "curve_33", "x": 0.23076923076923078, "y": 0.47173132790065336 }, { "posteriors": "curve_33", "x": 0.23626373626373626, "y": 0.48057387305926935 }, { "posteriors": "curve_33", "x": 0.24175824175824176, "y": 0.4893731804208412 }, { "posteriors": "curve_33", "x": 0.24725274725274726, "y": 0.4981304371269221 }, { "posteriors": "curve_33", "x": 0.25274725274725274, "y": 0.5068467721195457 }, { "posteriors": "curve_33", "x": 0.25824175824175827, "y": 0.5155232601954511 }, { "posteriors": "curve_33", "x": 0.26373626373626374, "y": 0.5241609256977674 }, { "posteriors": "curve_33", "x": 0.2692307692307692, "y": 0.5327607458844443 }, { "posteriors": "curve_33", "x": 0.27472527472527475, "y": 0.5413236540077452 }, { "posteriors": "curve_33", "x": 0.2802197802197802, "y": 0.5498505421348614 }, { "posteriors": "curve_33", "x": 0.2857142857142857, "y": 0.5583422637360548 }, { "posteriors": "curve_33", "x": 0.29120879120879123, "y": 0.5667996360635835 }, { "posteriors": "curve_33", "x": 0.2967032967032967, "y": 0.5752234423419471 }, { "posteriors": "curve_33", "x": 0.3021978021978022, "y": 0.5836144337876296 }, { "posteriors": "curve_33", "x": 0.3076923076923077, "y": 0.5919733314744658 }, { "posteriors": "curve_33", "x": 0.3131868131868132, "y": 0.600300828058976 }, { "posteriors": "curve_33", "x": 0.31868131868131866, "y": 0.6085975893784479 }, { "posteriors": "curve_33", "x": 0.3241758241758242, "y": 0.6168642559331822 }, { "posteriors": "curve_33", "x": 0.32967032967032966, "y": 0.625101444263116 }, { "posteriors": "curve_33", "x": 0.33516483516483514, "y": 0.6333097482279847 }, { "posteriors": "curve_33", "x": 0.34065934065934067, "y": 0.641489740199248 }, { "posteriors": "curve_33", "x": 0.34615384615384615, "y": 0.6496419721711871 }, { "posteriors": "curve_33", "x": 0.3516483516483517, "y": 0.6577669767978485 }, { "posteriors": "curve_33", "x": 0.35714285714285715, "y": 0.6658652683618612 }, { "posteriors": "curve_33", "x": 0.3626373626373626, "y": 0.6739373436805853 }, { "posteriors": "curve_33", "x": 0.36813186813186816, "y": 0.6819836829545283 }, { "posteriors": "curve_33", "x": 0.37362637362637363, "y": 0.6900047505625164 }, { "posteriors": "curve_33", "x": 0.3791208791208791, "y": 0.6980009958076941 }, { "posteriors": "curve_33", "x": 0.38461538461538464, "y": 0.7059728536180602 }, { "posteriors": "curve_33", "x": 0.3901098901098901, "y": 0.7139207452049203 }, { "posteriors": "curve_33", "x": 0.3956043956043956, "y": 0.7218450786823418 }, { "posteriors": "curve_33", "x": 0.4010989010989011, "y": 0.7297462496504279 }, { "posteriors": "curve_33", "x": 0.4065934065934066, "y": 0.7376246417449901 }, { "posteriors": "curve_33", "x": 0.41208791208791207, "y": 0.7454806271559854 }, { "posteriors": "curve_33", "x": 0.4175824175824176, "y": 0.7533145671168816 }, { "posteriors": "curve_33", "x": 0.4230769230769231, "y": 0.7611268123669435 }, { "posteriors": "curve_33", "x": 0.42857142857142855, "y": 0.7689177035882704 }, { "posteriors": "curve_33", "x": 0.4340659340659341, "y": 0.7766875718192694 }, { "posteriors": "curve_33", "x": 0.43956043956043955, "y": 0.7844367388461171 }, { "posteriors": "curve_33", "x": 0.44505494505494503, "y": 0.7921655175736404 }, { "posteriors": "curve_33", "x": 0.45054945054945056, "y": 0.7998742123769407 }, { "posteriors": "curve_33", "x": 0.45604395604395603, "y": 0.8075631194349834 }, { "posteriors": "curve_33", "x": 0.46153846153846156, "y": 0.8152325270472826 }, { "posteriors": "curve_33", "x": 0.46703296703296704, "y": 0.8228827159347284 }, { "posteriors": "curve_33", "x": 0.4725274725274725, "y": 0.8305139595255309 }, { "posteriors": "curve_33", "x": 0.47802197802197804, "y": 0.8381265242271769 }, { "posteriors": "curve_33", "x": 0.4835164835164835, "y": 0.8457206696852398 }, { "posteriors": "curve_33", "x": 0.489010989010989, "y": 0.8532966490298194 }, { "posteriors": "curve_33", "x": 0.4945054945054945, "y": 0.8608547091103332 }, { "posteriors": "curve_33", "x": 0.5, "y": 0.8683950907193365 }, { "posteriors": "curve_33", "x": 0.5054945054945055, "y": 0.8759180288059962 }, { "posteriors": "curve_33", "x": 0.510989010989011, "y": 0.8834237526798031 }, { "posteriors": "curve_33", "x": 0.5164835164835165, "y": 0.8909124862050726 }, { "posteriors": "curve_33", "x": 0.521978021978022, "y": 0.8983844479867389 }, { "posteriors": "curve_33", "x": 0.5274725274725275, "y": 0.9058398515479259 }, { "posteriors": "curve_33", "x": 0.532967032967033, "y": 0.9132789054997341 }, { "posteriors": "curve_33", "x": 0.5384615384615384, "y": 0.9207018137036665 }, { "posteriors": "curve_33", "x": 0.5439560439560439, "y": 0.9281087754270817 }, { "posteriors": "curve_33", "x": 0.5494505494505495, "y": 0.9354999854920418 }, { "posteriors": "curve_33", "x": 0.554945054945055, "y": 0.9428756344178985 }, { "posteriors": "curve_33", "x": 0.5604395604395604, "y": 0.9502359085579409 }, { "posteriors": "curve_33", "x": 0.5659340659340659, "y": 0.9575809902304078 }, { "posteriors": "curve_33", "x": 0.5714285714285714, "y": 0.9649110578441482 }, { "posteriors": "curve_33", "x": 0.5769230769230769, "y": 0.9722262860191995 }, { "posteriors": "curve_33", "x": 0.5824175824175825, "y": 0.9795268457025349 }, { "posteriors": "curve_33", "x": 0.5879120879120879, "y": 0.9868129042792161 }, { "posteriors": "curve_33", "x": 0.5934065934065934, "y": 0.9940846256791774 }, { "posteriors": "curve_33", "x": 0.5989010989010989, "y": 1.001342170479849 }, { "posteriors": "curve_33", "x": 0.6043956043956044, "y": 1.0085856960048194 }, { "posteriors": "curve_33", "x": 0.6098901098901099, "y": 1.0158153564187253 }, { "posteriors": "curve_33", "x": 0.6153846153846154, "y": 1.0230313028185443 }, { "posteriors": "curve_33", "x": 0.6208791208791209, "y": 1.030233683321459 }, { "posteriors": "curve_33", "x": 0.6263736263736264, "y": 1.0374226431494489 }, { "posteriors": "curve_33", "x": 0.6318681318681318, "y": 1.0445983247107617 }, { "posteriors": "curve_33", "x": 0.6373626373626373, "y": 1.051760867678403 }, { "posteriors": "curve_33", "x": 0.6428571428571429, "y": 1.0589104090657797 }, { "posteriors": "curve_33", "x": 0.6483516483516484, "y": 1.0660470832996234 }, { "posteriors": "curve_33", "x": 0.6538461538461539, "y": 1.0731710222903135 }, { "posteriors": "curve_33", "x": 0.6593406593406593, "y": 1.0802823554997147 }, { "posteriors": "curve_33", "x": 0.6648351648351648, "y": 1.087381210006635 }, { "posteriors": "curve_33", "x": 0.6703296703296703, "y": 1.0944677105700087 }, { "posteriors": "curve_33", "x": 0.6758241758241759, "y": 1.1015419796898993 }, { "posteriors": "curve_33", "x": 0.6813186813186813, "y": 1.1086041376664169 }, { "posteriors": "curve_33", "x": 0.6868131868131868, "y": 1.1156543026566357 }, { "posteriors": "curve_33", "x": 0.6923076923076923, "y": 1.1226925907295964 }, { "posteriors": "curve_33", "x": 0.6978021978021978, "y": 1.1297191159194704 }, { "posteriors": "curve_33", "x": 0.7032967032967034, "y": 1.1367339902769653 }, { "posteriors": "curve_33", "x": 0.7087912087912088, "y": 1.1437373239190378 }, { "posteriors": "curve_33", "x": 0.7142857142857143, "y": 1.1507292250769872 }, { "posteriors": "curve_33", "x": 0.7197802197802198, "y": 1.1577098001429917 }, { "posteriors": "curve_33", "x": 0.7252747252747253, "y": 1.164679153715149 }, { "posteriors": "curve_33", "x": 0.7307692307692307, "y": 1.1716373886410831 }, { "posteriors": "curve_33", "x": 0.7362637362637363, "y": 1.1785846060601708 }, { "posteriors": "curve_33", "x": 0.7417582417582418, "y": 1.1855209054444398 }, { "posteriors": "curve_33", "x": 0.7472527472527473, "y": 1.1924463846381974 }, { "posteriors": "curve_33", "x": 0.7527472527472527, "y": 1.1993611398964277 }, { "posteriors": "curve_33", "x": 0.7582417582417582, "y": 1.2062652659220134 }, { "posteriors": "curve_33", "x": 0.7637362637362637, "y": 1.2131588559018203 }, { "posteriors": "curve_33", "x": 0.7692307692307693, "y": 1.22004200154169 }, { "posteriors": "curve_33", "x": 0.7747252747252747, "y": 1.2269147931003825 }, { "posteriors": "curve_33", "x": 0.7802197802197802, "y": 1.2337773194225037 }, { "posteriors": "curve_33", "x": 0.7857142857142857, "y": 1.2406296679704576 }, { "posteriors": "curve_33", "x": 0.7912087912087912, "y": 1.2474719248554593 }, { "posteriors": "curve_33", "x": 0.7967032967032966, "y": 1.2543041748676425 }, { "posteriors": "curve_33", "x": 0.8021978021978022, "y": 1.261126501505289 }, { "posteriors": "curve_33", "x": 0.8076923076923077, "y": 1.2679389870032214 }, { "posteriors": "curve_33", "x": 0.8131868131868132, "y": 1.2747417123603797 }, { "posteriors": "curve_33", "x": 0.8186813186813187, "y": 1.2815347573666138 }, { "posteriors": "curve_33", "x": 0.8241758241758241, "y": 1.2883182006287213 }, { "posteriors": "curve_33", "x": 0.8296703296703297, "y": 1.2950921195957528 }, { "posteriors": "curve_33", "x": 0.8351648351648352, "y": 1.3018565905836135 }, { "posteriors": "curve_33", "x": 0.8406593406593407, "y": 1.3086116887989825 }, { "posteriors": "curve_33", "x": 0.8461538461538461, "y": 1.3153574883625758 }, { "posteriors": "curve_33", "x": 0.8516483516483516, "y": 1.322094062331772 }, { "posteriors": "curve_33", "x": 0.8571428571428571, "y": 1.3288214827226248 }, { "posteriors": "curve_33", "x": 0.8626373626373627, "y": 1.3355398205312807 }, { "posteriors": "curve_33", "x": 0.8681318681318682, "y": 1.342249145754824 }, { "posteriors": "curve_33", "x": 0.8736263736263736, "y": 1.3489495274115662 }, { "posteriors": "curve_33", "x": 0.8791208791208791, "y": 1.3556410335607976 }, { "posteriors": "curve_33", "x": 0.8846153846153846, "y": 1.36232373132202 }, { "posteriors": "curve_33", "x": 0.8901098901098901, "y": 1.368997686893677 }, { "posteriors": "curve_33", "x": 0.8956043956043956, "y": 1.375662965571398 }, { "posteriors": "curve_33", "x": 0.9010989010989011, "y": 1.3823196317657682 }, { "posteriors": "curve_33", "x": 0.9065934065934066, "y": 1.3889677490196488 }, { "posteriors": "curve_33", "x": 0.9120879120879121, "y": 1.3956073800250484 }, { "posteriors": "curve_33", "x": 0.9175824175824175, "y": 1.4022385866395726 }, { "posteriors": "curve_33", "x": 0.9230769230769231, "y": 1.4088614299024544 }, { "posteriors": "curve_33", "x": 0.9285714285714286, "y": 1.4154759700501867 }, { "posteriors": "curve_33", "x": 0.9340659340659341, "y": 1.4220822665317634 }, { "posteriors": "curve_33", "x": 0.9395604395604396, "y": 1.428680378023544 }, { "posteriors": "curve_33", "x": 0.945054945054945, "y": 1.4352703624437515 }, { "posteriors": "curve_33", "x": 0.9505494505494505, "y": 1.441852276966618 }, { "posteriors": "curve_33", "x": 0.9560439560439561, "y": 1.4484261780361831 }, { "posteriors": "curve_33", "x": 0.9615384615384616, "y": 1.4549921213797599 }, { "posteriors": "curve_33", "x": 0.967032967032967, "y": 1.461550162021078 }, { "posteriors": "curve_33", "x": 0.9725274725274725, "y": 1.4681003542931115 }, { "posteriors": "curve_33", "x": 0.978021978021978, "y": 1.4746427518506011 }, { "posteriors": "curve_33", "x": 0.9835164835164835, "y": 1.4811774076822823 }, { "posteriors": "curve_33", "x": 0.989010989010989, "y": 1.487704374122824 }, { "posteriors": "curve_33", "x": 0.9945054945054945, "y": 1.4942237028644887 }, { "posteriors": "curve_34", "x": 0, "y": 0 }, { "posteriors": "curve_34", "x": 0.005494505494505495, "y": 0.027239978729288943 }, { "posteriors": "curve_34", "x": 0.01098901098901099, "y": 0.04627373144135061 }, { "posteriors": "curve_34", "x": 0.016483516483516484, "y": 0.063088562266497 }, { "posteriors": "curve_34", "x": 0.02197802197802198, "y": 0.07860719139269806 }, { "posteriors": "curve_34", "x": 0.027472527472527472, "y": 0.09322810786097616 }, { "posteriors": "curve_34", "x": 0.03296703296703297, "y": 0.10717127264867776 }, { "posteriors": "curve_34", "x": 0.038461538461538464, "y": 0.12057494074999466 }, { "posteriors": "curve_34", "x": 0.04395604395604396, "y": 0.13353343994918412 }, { "posteriors": "curve_34", "x": 0.04945054945054945, "y": 0.1461148970932976 }, { "posteriors": "curve_34", "x": 0.054945054945054944, "y": 0.15837062388398895 }, { "posteriors": "curve_34", "x": 0.06043956043956044, "y": 0.17034053430835758 }, { "posteriors": "curve_34", "x": 0.06593406593406594, "y": 0.18205648169028993 }, { "posteriors": "curve_34", "x": 0.07142857142857142, "y": 0.19354442169583913 }, { "posteriors": "curve_34", "x": 0.07692307692307693, "y": 0.2048258731135822 }, { "posteriors": "curve_34", "x": 0.08241758241758242, "y": 0.21591893834523648 }, { "posteriors": "curve_34", "x": 0.08791208791208792, "y": 0.22683903684566353 }, { "posteriors": "curve_34", "x": 0.09340659340659341, "y": 0.23759944515671494 }, { "posteriors": "curve_34", "x": 0.0989010989010989, "y": 0.24821170291171984 }, { "posteriors": "curve_34", "x": 0.1043956043956044, "y": 0.2586859236700054 }, { "posteriors": "curve_34", "x": 0.10989010989010989, "y": 0.2690310367213032 }, { "posteriors": "curve_34", "x": 0.11538461538461539, "y": 0.2792549778721428 }, { "posteriors": "curve_34", "x": 0.12087912087912088, "y": 0.28936484189269646 }, { "posteriors": "curve_34", "x": 0.12637362637362637, "y": 0.29936700571899205 }, { "posteriors": "curve_34", "x": 0.13186813186813187, "y": 0.3092672290465312 }, { "posteriors": "curve_34", "x": 0.13736263736263737, "y": 0.31907073723198465 }, { "posteriors": "curve_34", "x": 0.14285714285714285, "y": 0.32878229019669125 }, { "posteriors": "curve_34", "x": 0.14835164835164835, "y": 0.3384062401422417 }, { "posteriors": "curve_34", "x": 0.15384615384615385, "y": 0.3479465802411612 }, { "posteriors": "curve_34", "x": 0.15934065934065933, "y": 0.3574069859852902 }, { "posteriors": "curve_34", "x": 0.16483516483516483, "y": 0.36679085051362753 }, { "posteriors": "curve_34", "x": 0.17032967032967034, "y": 0.3761013149673826 }, { "posteriors": "curve_34", "x": 0.17582417582417584, "y": 0.38534129470977274 }, { "posteriors": "curve_34", "x": 0.1813186813186813, "y": 0.39451350208531194 }, { "posteriors": "curve_34", "x": 0.18681318681318682, "y": 0.4036204662661547 }, { "posteriors": "curve_34", "x": 0.19230769230769232, "y": 0.4126645506328829 }, { "posteriors": "curve_34", "x": 0.1978021978021978, "y": 0.421647968057611 }, { "posteriors": "curve_34", "x": 0.2032967032967033, "y": 0.43057279439371393 }, { "posteriors": "curve_34", "x": 0.2087912087912088, "y": 0.43944098042531854 }, { "posteriors": "curve_34", "x": 0.21428571428571427, "y": 0.44825436248825723 }, { "posteriors": "curve_34", "x": 0.21978021978021978, "y": 0.4570146719404095 }, { "posteriors": "curve_34", "x": 0.22527472527472528, "y": 0.4657235436316823 }, { "posteriors": "curve_34", "x": 0.23076923076923078, "y": 0.4743825235010805 }, { "posteriors": "curve_34", "x": 0.23626373626373626, "y": 0.48299307540943504 }, { "posteriors": "curve_34", "x": 0.24175824175824176, "y": 0.49155658730064805 }, { "posteriors": "curve_34", "x": 0.24725274725274726, "y": 0.5000743767711805 }, { "posteriors": "curve_34", "x": 0.25274725274725274, "y": 0.5085476961164836 }, { "posteriors": "curve_34", "x": 0.25824175824175827, "y": 0.5169777369137819 }, { "posteriors": "curve_34", "x": 0.26373626373626374, "y": 0.5253656341927481 }, { "posteriors": "curve_34", "x": 0.2692307692307692, "y": 0.5337124702389304 }, { "posteriors": "curve_34", "x": 0.27472527472527475, "y": 0.5420192780690918 }, { "posteriors": "curve_34", "x": 0.2802197802197802, "y": 0.5502870446127487 }, { "posteriors": "curve_34", "x": 0.2857142857142857, "y": 0.5585167136300121 }, { "posteriors": "curve_34", "x": 0.29120879120879123, "y": 0.5667091883922293 }, { "posteriors": "curve_34", "x": 0.2967032967032967, "y": 0.5748653341488147 }, { "posteriors": "curve_34", "x": 0.3021978021978022, "y": 0.5829859804009622 }, { "posteriors": "curve_34", "x": 0.3076923076923077, "y": 0.591071923000585 }, { "posteriors": "curve_34", "x": 0.3131868131868132, "y": 0.5991239260907983 }, { "posteriors": "curve_34", "x": 0.31868131868131866, "y": 0.6071427239024718 }, { "posteriors": "curve_34", "x": 0.3241758241758242, "y": 0.6151290224198184 }, { "posteriors": "curve_34", "x": 0.32967032967032966, "y": 0.623083500926626 }, { "posteriors": "curve_34", "x": 0.33516483516483514, "y": 0.6310068134435272 }, { "posteriors": "curve_34", "x": 0.34065934065934067, "y": 0.6388995900656408 }, { "posteriors": "curve_34", "x": 0.34615384615384615, "y": 0.6467624382089895 }, { "posteriors": "curve_34", "x": 0.3516483516483517, "y": 0.6545959437732577 }, { "posteriors": "curve_34", "x": 0.35714285714285715, "y": 0.6624006722277257 }, { "posteriors": "curve_34", "x": 0.3626373626373626, "y": 0.6701771696265555 }, { "posteriors": "curve_34", "x": 0.36813186813186816, "y": 0.6779259635590265 }, { "posteriors": "curve_34", "x": 0.37362637362637363, "y": 0.6856475640397937 }, { "posteriors": "curve_34", "x": 0.3791208791208791, "y": 0.6933424643437819 }, { "posteriors": "curve_34", "x": 0.38461538461538464, "y": 0.7010111417899083 }, { "posteriors": "curve_34", "x": 0.3901098901098901, "y": 0.7086540584774558 }, { "posteriors": "curve_34", "x": 0.3956043956043956, "y": 0.7162716619785843 }, { "posteriors": "curve_34", "x": 0.4010989010989011, "y": 0.7238643859901633 }, { "posteriors": "curve_34", "x": 0.4065934065934066, "y": 0.7314326509478404 }, { "posteriors": "curve_34", "x": 0.41208791208791207, "y": 0.7389768646050122 }, { "posteriors": "curve_34", "x": 0.4175824175824176, "y": 0.7464974225791476 }, { "posteriors": "curve_34", "x": 0.4230769230769231, "y": 0.7539947088677033 }, { "posteriors": "curve_34", "x": 0.42857142857142855, "y": 0.7614690963357037 }, { "posteriors": "curve_34", "x": 0.4340659340659341, "y": 0.7689209471768786 }, { "posteriors": "curve_34", "x": 0.43956043956043955, "y": 0.7763506133501116 }, { "posteriors": "curve_34", "x": 0.44505494505494503, "y": 0.7837584369928122 }, { "posteriors": "curve_34", "x": 0.45054945054945056, "y": 0.791144750812702 }, { "posteriors": "curve_34", "x": 0.45604395604395603, "y": 0.7985098784593888 }, { "posteriors": "curve_34", "x": 0.46153846153846156, "y": 0.8058541348770064 }, { "posteriors": "curve_34", "x": 0.46703296703296704, "y": 0.813177826639093 }, { "posteriors": "curve_34", "x": 0.4725274725274725, "y": 0.8204812522668078 }, { "posteriors": "curve_34", "x": 0.47802197802197804, "y": 0.8277647025314911 }, { "posteriors": "curve_34", "x": 0.4835164835164835, "y": 0.8350284607425154 }, { "posteriors": "curve_34", "x": 0.489010989010989, "y": 0.8422728030212987 }, { "posteriors": "curve_34", "x": 0.4945054945054945, "y": 0.8494979985622929 }, { "posteriors": "curve_34", "x": 0.5, "y": 0.8567043098817042 }, { "posteriors": "curve_34", "x": 0.5054945054945055, "y": 0.8638919930546518 }, { "posteriors": "curve_34", "x": 0.510989010989011, "y": 0.8710612979414206 }, { "posteriors": "curve_34", "x": 0.5164835164835165, "y": 0.878212468403422 }, { "posteriors": "curve_34", "x": 0.521978021978022, "y": 0.8853457425094341 }, { "posteriors": "curve_34", "x": 0.5274725274725275, "y": 0.892461352732659 }, { "posteriors": "curve_34", "x": 0.532967032967033, "y": 0.8995595261390945 }, { "posteriors": "curve_34", "x": 0.5384615384615384, "y": 0.90664048456769 }, { "posteriors": "curve_34", "x": 0.5439560439560439, "y": 0.9137044448027253 }, { "posteriors": "curve_34", "x": 0.5494505494505495, "y": 0.9207516187388227 }, { "posteriors": "curve_34", "x": 0.554945054945055, "y": 0.9277822135389764 }, { "posteriors": "curve_34", "x": 0.5604395604395604, "y": 0.9347964317859639 }, { "posteriors": "curve_34", "x": 0.5659340659340659, "y": 0.9417944716274751 }, { "posteriors": "curve_34", "x": 0.5714285714285714, "y": 0.9487765269152815 }, { "posteriors": "curve_34", "x": 0.5769230769230769, "y": 0.9557427873387414 }, { "posteriors": "curve_34", "x": 0.5824175824175825, "y": 0.9626934385529278 }, { "posteriors": "curve_34", "x": 0.5879120879120879, "y": 0.9696286623016397 }, { "posteriors": "curve_34", "x": 0.5934065934065934, "y": 0.9765486365355514 }, { "posteriors": "curve_34", "x": 0.5989010989010989, "y": 0.9834535355257298 }, { "posteriors": "curve_34", "x": 0.6043956043956044, "y": 0.9903435299727491 }, { "posteriors": "curve_34", "x": 0.6098901098901099, "y": 0.9972187871116048 }, { "posteriors": "curve_34", "x": 0.6153846153846154, "y": 1.0040794708126297 }, { "posteriors": "curve_34", "x": 0.6208791208791209, "y": 1.0109257416785984 }, { "posteriors": "curve_34", "x": 0.6263736263736264, "y": 1.017757757138193 }, { "posteriors": "curve_34", "x": 0.6318681318681318, "y": 1.024575671536003 }, { "posteriors": "curve_34", "x": 0.6373626373626373, "y": 1.0313796362192105 }, { "posteriors": "curve_34", "x": 0.6428571428571429, "y": 1.038169799621115 }, { "posteriors": "curve_34", "x": 0.6483516483516484, "y": 1.0449463073416367 }, { "posteriors": "curve_34", "x": 0.6538461538461539, "y": 1.0517093022249335 }, { "posteriors": "curve_34", "x": 0.6593406593406593, "y": 1.0584589244342575 }, { "posteriors": "curve_34", "x": 0.6648351648351648, "y": 1.0651953115241717 }, { "posteriors": "curve_34", "x": 0.6703296703296703, "y": 1.0719185985102417 }, { "posteriors": "curve_34", "x": 0.6758241758241759, "y": 1.0786289179363098 }, { "posteriors": "curve_34", "x": 0.6813186813186813, "y": 1.0853263999394536 }, { "posteriors": "curve_34", "x": 0.6868131868131868, "y": 1.09201117231273 }, { "posteriors": "curve_34", "x": 0.6923076923076923, "y": 1.098683360565793 }, { "posteriors": "curve_34", "x": 0.6978021978021978, "y": 1.1053430879834767 }, { "posteriors": "curve_34", "x": 0.7032967032967034, "y": 1.111990475682426 }, { "posteriors": "curve_34", "x": 0.7087912087912088, "y": 1.1186256426658536 }, { "posteriors": "curve_34", "x": 0.7142857142857143, "y": 1.1252487058765046 }, { "posteriors": "curve_34", "x": 0.7197802197802198, "y": 1.1318597802478918 }, { "posteriors": "curve_34", "x": 0.7252747252747253, "y": 1.1384589787538801 }, { "posteriors": "curve_34", "x": 0.7307692307692307, "y": 1.1450464124566786 }, { "posteriors": "curve_34", "x": 0.7362637362637363, "y": 1.1516221905533075 }, { "posteriors": "curve_34", "x": 0.7417582417582418, "y": 1.158186420420595 }, { "posteriors": "curve_34", "x": 0.7472527472527473, "y": 1.1647392076587666 }, { "posteriors": "curve_34", "x": 0.7527472527472527, "y": 1.1712806561336762 }, { "posteriors": "curve_34", "x": 0.7582417582417582, "y": 1.1778108680177324 }, { "posteriors": "curve_34", "x": 0.7637362637362637, "y": 1.1843299438295711 }, { "posteriors": "curve_34", "x": 0.7692307692307693, "y": 1.1908379824725188 }, { "posteriors": "curve_34", "x": 0.7747252747252747, "y": 1.197335081271894 }, { "posteriors": "curve_34", "x": 0.7802197802197802, "y": 1.203821336011188 }, { "posteriors": "curve_34", "x": 0.7857142857142857, "y": 1.2102968409671702 }, { "posteriors": "curve_34", "x": 0.7912087912087912, "y": 1.2167616889439494 }, { "posteriors": "curve_34", "x": 0.7967032967032966, "y": 1.2232159713060393 }, { "posteriors": "curve_34", "x": 0.8021978021978022, "y": 1.2296597780104557 }, { "posteriors": "curve_34", "x": 0.8076923076923077, "y": 1.236093197637883 }, { "posteriors": "curve_34", "x": 0.8131868131868132, "y": 1.242516317422947 }, { "posteriors": "curve_34", "x": 0.8186813186813187, "y": 1.2489292232836167 }, { "posteriors": "curve_34", "x": 0.8241758241758241, "y": 1.255331999849776 }, { "posteriors": "curve_34", "x": 0.8296703296703297, "y": 1.2617247304909855 }, { "posteriors": "curve_34", "x": 0.8351648351648352, "y": 1.2681074973434678 }, { "posteriors": "curve_34", "x": 0.8406593406593407, "y": 1.274480381336342 }, { "posteriors": "curve_34", "x": 0.8461538461538461, "y": 1.2808434622171307 }, { "posteriors": "curve_34", "x": 0.8516483516483516, "y": 1.2871968185765676 }, { "posteriors": "curve_34", "x": 0.8571428571428571, "y": 1.2935405278727277 }, { "posteriors": "curve_34", "x": 0.8626373626373627, "y": 1.2998746664545 }, { "posteriors": "curve_34", "x": 0.8681318681318682, "y": 1.3061993095844318 }, { "posteriors": "curve_34", "x": 0.8736263736263736, "y": 1.3125145314609576 }, { "posteriors": "curve_34", "x": 0.8791208791208791, "y": 1.318820405240039 }, { "posteriors": "curve_34", "x": 0.8846153846153846, "y": 1.3251170030562285 }, { "posteriors": "curve_34", "x": 0.8901098901098901, "y": 1.3314043960431834 }, { "posteriors": "curve_34", "x": 0.8956043956043956, "y": 1.3376826543536413 }, { "posteriors": "curve_34", "x": 0.9010989010989011, "y": 1.343951847178878 }, { "posteriors": "curve_34", "x": 0.9065934065934066, "y": 1.3502120427676627 }, { "posteriors": "curve_34", "x": 0.9120879120879121, "y": 1.3564633084447273 }, { "posteriors": "curve_34", "x": 0.9175824175824175, "y": 1.362705710628764 }, { "posteriors": "curve_34", "x": 0.9230769230769231, "y": 1.3689393148499687 }, { "posteriors": "curve_34", "x": 0.9285714285714286, "y": 1.3751641857671388 }, { "posteriors": "curve_34", "x": 0.9340659340659341, "y": 1.381380387184348 }, { "posteriors": "curve_34", "x": 0.9395604395604396, "y": 1.3875879820671997 }, { "posteriors": "curve_34", "x": 0.945054945054945, "y": 1.393787032558684 }, { "posteriors": "curve_34", "x": 0.9505494505494505, "y": 1.3999775999946407 }, { "posteriors": "curve_34", "x": 0.9560439560439561, "y": 1.4061597449188445 }, { "posteriors": "curve_34", "x": 0.9615384615384616, "y": 1.4123335270977253 }, { "posteriors": "curve_34", "x": 0.967032967032967, "y": 1.418499005534729 }, { "posteriors": "curve_34", "x": 0.9725274725274725, "y": 1.424656238484337 }, { "posteriors": "curve_34", "x": 0.978021978021978, "y": 1.430805283465747 }, { "posteriors": "curve_34", "x": 0.9835164835164835, "y": 1.4369461972762296 }, { "posteriors": "curve_34", "x": 0.989010989010989, "y": 1.4430790360041703 }, { "posteriors": "curve_34", "x": 0.9945054945054945, "y": 1.449203855041803 }, { "posteriors": "curve_35", "x": 0, "y": 0 }, { "posteriors": "curve_35", "x": 0.005494505494505495, "y": 0.027178723314082595 }, { "posteriors": "curve_35", "x": 0.01098901098901099, "y": 0.04608566372952489 }, { "posteriors": "curve_35", "x": 0.016483516483516484, "y": 0.06276525119092602 }, { "posteriors": "curve_35", "x": 0.02197802197802198, "y": 0.07814526005680178 }, { "posteriors": "curve_35", "x": 0.027472527472527472, "y": 0.09262593352511182 }, { "posteriors": "curve_35", "x": 0.03296703296703297, "y": 0.1064280403040637 }, { "posteriors": "curve_35", "x": 0.038461538461538464, "y": 0.11969026550702175 }, { "posteriors": "curve_35", "x": 0.04395604395604396, "y": 0.13250718716312898 }, { "posteriors": "curve_35", "x": 0.04945054945054945, "y": 0.14494708642251822 }, { "posteriors": "curve_35", "x": 0.054945054945054944, "y": 0.15706137391890657 }, { "posteriors": "curve_35", "x": 0.06043956043956044, "y": 0.168890028707048 }, { "posteriors": "curve_35", "x": 0.06593406593406594, "y": 0.180464947531365 }, { "posteriors": "curve_35", "x": 0.07142857142857142, "y": 0.19181211515555321 }, { "posteriors": "curve_35", "x": 0.07692307692307693, "y": 0.20295306972701144 }, { "posteriors": "curve_35", "x": 0.08241758241758242, "y": 0.21390592623919572 }, { "posteriors": "curve_35", "x": 0.08791208791208792, "y": 0.22468611195511953 }, { "posteriors": "curve_35", "x": 0.09340659340659341, "y": 0.23530690779788213 }, { "posteriors": "curve_35", "x": 0.0989010989010989, "y": 0.24577985530252405 }, { "posteriors": "curve_35", "x": 0.1043956043956044, "y": 0.25611506812386253 }, { "posteriors": "curve_35", "x": 0.10989010989010989, "y": 0.2663214743266988 }, { "posteriors": "curve_35", "x": 0.11538461538461539, "y": 0.2764070075272565 }, { "posteriors": "curve_35", "x": 0.12087912087912088, "y": 0.2863787596023638 }, { "posteriors": "curve_35", "x": 0.12637362637362637, "y": 0.29624310408729987 }, { "posteriors": "curve_35", "x": 0.13186813186813187, "y": 0.3060057969164241 }, { "posteriors": "curve_35", "x": 0.13736263736263737, "y": 0.31567205943602783 }, { "posteriors": "curve_35", "x": 0.14285714285714285, "y": 0.3252466473922789 }, { "posteriors": "curve_35", "x": 0.14835164835164835, "y": 0.3347339087111681 }, { "posteriors": "curve_35", "x": 0.15384615384615385, "y": 0.34413783223833455 }, { "posteriors": "curve_35", "x": 0.15934065934065933, "y": 0.35346208912497007 }, { "posteriors": "curve_35", "x": 0.16483516483516483, "y": 0.3627100681842634 }, { "posteriors": "curve_35", "x": 0.17032967032967034, "y": 0.3718849062681608 }, { "posteriors": "curve_35", "x": 0.17582417582417584, "y": 0.3809895145035271 }, { "posteriors": "curve_35", "x": 0.1813186813186813, "y": 0.39002660106363374 }, { "posteriors": "curve_35", "x": 0.18681318681318682, "y": 0.3989986910234513 }, { "posteriors": "curve_35", "x": 0.19230769230769232, "y": 0.4079081437468396 }, { "posteriors": "curve_35", "x": 0.1978021978021978, "y": 0.41675716817406155 }, { "posteriors": "curve_35", "x": 0.2032967032967033, "y": 0.42554783631435616 }, { "posteriors": "curve_35", "x": 0.2087912087912088, "y": 0.4342820951970496 }, { "posteriors": "curve_35", "x": 0.21428571428571427, "y": 0.4429617774931715 }, { "posteriors": "curve_35", "x": 0.21978021978021978, "y": 0.4515886109857116 }, { "posteriors": "curve_35", "x": 0.22527472527472528, "y": 0.46016422703893856 }, { "posteriors": "curve_35", "x": 0.23076923076923078, "y": 0.468690168194362 }, { "posteriors": "curve_35", "x": 0.23626373626373626, "y": 0.47716789500201556 }, { "posteriors": "curve_35", "x": 0.24175824175824176, "y": 0.48559879218000257 }, { "posteriors": "curve_35", "x": 0.24725274725274726, "y": 0.49398417418209767 }, { "posteriors": "curve_35", "x": 0.25274725274725274, "y": 0.5023252902421615 }, { "posteriors": "curve_35", "x": 0.25824175824175827, "y": 0.5106233289548182 }, { "posteriors": "curve_35", "x": 0.26373626373626374, "y": 0.5188794224439687 }, { "posteriors": "curve_35", "x": 0.2692307692307692, "y": 0.5270946501640312 }, { "posteriors": "curve_35", "x": 0.27472527472527475, "y": 0.5352700423730861 }, { "posteriors": "curve_35", "x": 0.2802197802197802, "y": 0.5434065833122326 }, { "posteriors": "curve_35", "x": 0.2857142857142857, "y": 0.5515052141212715 }, { "posteriors": "curve_35", "x": 0.29120879120879123, "y": 0.5595668355172232 }, { "posteriors": "curve_35", "x": 0.2967032967032967, "y": 0.567592310259077 }, { "posteriors": "curve_35", "x": 0.3021978021978022, "y": 0.5755824654194689 }, { "posteriors": "curve_35", "x": 0.3076923076923077, "y": 0.5835380944816421 }, { "posteriors": "curve_35", "x": 0.3131868131868132, "y": 0.5914599592780017 }, { "posteriors": "curve_35", "x": 0.31868131868131866, "y": 0.5993487917847982 }, { "posteriors": "curve_35", "x": 0.3241758241758242, "y": 0.607205295785906 }, { "posteriors": "curve_35", "x": 0.32967032967032966, "y": 0.6150301484173021 }, { "posteriors": "curve_35", "x": 0.33516483516483514, "y": 0.6228240016026406 }, { "posteriors": "curve_35", "x": 0.34065934065934067, "y": 0.6305874833892596 }, { "posteriors": "curve_35", "x": 0.34615384615384615, "y": 0.6383211991930179 }, { "posteriors": "curve_35", "x": 0.3516483516483517, "y": 0.6460257329595308 }, { "posteriors": "curve_35", "x": 0.35714285714285715, "y": 0.653701648248634 }, { "posteriors": "curve_35", "x": 0.3626373626373626, "y": 0.6613494892482555 }, { "posteriors": "curve_35", "x": 0.36813186813186816, "y": 0.6689697817232865 }, { "posteriors": "curve_35", "x": 0.37362637362637363, "y": 0.6765630339045254 }, { "posteriors": "curve_35", "x": 0.3791208791208791, "y": 0.6841297373223083 }, { "posteriors": "curve_35", "x": 0.38461538461538464, "y": 0.6916703675890117 }, { "posteriors": "curve_35", "x": 0.3901098901098901, "y": 0.6991853851342532 }, { "posteriors": "curve_35", "x": 0.3956043956043956, "y": 0.7066752358962731 }, { "posteriors": "curve_35", "x": 0.4010989010989011, "y": 0.7141403519726791 }, { "posteriors": "curve_35", "x": 0.4065934065934066, "y": 0.7215811522334672 }, { "posteriors": "curve_35", "x": 0.41208791208791207, "y": 0.7289980428989845 }, { "posteriors": "curve_35", "x": 0.4175824175824176, "y": 0.7363914180852801 }, { "posteriors": "curve_35", "x": 0.4230769230769231, "y": 0.7437616603190853 }, { "posteriors": "curve_35", "x": 0.42857142857142855, "y": 0.7511091410244926 }, { "posteriors": "curve_35", "x": 0.4340659340659341, "y": 0.7584342209832241 }, { "posteriors": "curve_35", "x": 0.43956043956043955, "y": 0.7657372507702439 }, { "posteriors": "curve_35", "x": 0.44505494505494503, "y": 0.7730185711663234 }, { "posteriors": "curve_35", "x": 0.45054945054945056, "y": 0.7802785135490495 }, { "posteriors": "curve_35", "x": 0.45604395604395603, "y": 0.7875174002636512 }, { "posteriors": "curve_35", "x": 0.46153846153846156, "y": 0.7947355449749139 }, { "posteriors": "curve_35", "x": 0.46703296703296704, "y": 0.8019332530013633 }, { "posteriors": "curve_35", "x": 0.4725274725274725, "y": 0.8091108216328083 }, { "posteriors": "curve_35", "x": 0.47802197802197804, "y": 0.8162685404322525 }, { "posteriors": "curve_35", "x": 0.4835164835164835, "y": 0.82340669152312 }, { "posteriors": "curve_35", "x": 0.489010989010989, "y": 0.8305255498626634 }, { "posteriors": "curve_35", "x": 0.4945054945054945, "y": 0.8376253835023686 }, { "posteriors": "curve_35", "x": 0.5, "y": 0.8447064538361131 }, { "posteriors": "curve_35", "x": 0.5054945054945055, "y": 0.8517690158367789 }, { "posteriors": "curve_35", "x": 0.510989010989011, "y": 0.8588133182819802 }, { "posteriors": "curve_35", "x": 0.5164835164835165, "y": 0.8658396039695159 }, { "posteriors": "curve_35", "x": 0.521978021978022, "y": 0.8728481099231183 }, { "posteriors": "curve_35", "x": 0.5274725274725275, "y": 0.8798390675890363 }, { "posteriors": "curve_35", "x": 0.532967032967033, "y": 0.886812703023947 }, { "posteriors": "curve_35", "x": 0.5384615384615384, "y": 0.8937692370746684 }, { "posteriors": "curve_35", "x": 0.5439560439560439, "y": 0.900708885550108 }, { "posteriors": "curve_35", "x": 0.5494505494505495, "y": 0.9076318593858591 }, { "posteriors": "curve_35", "x": 0.554945054945055, "y": 0.9145383648018284 }, { "posteriors": "curve_35", "x": 0.5604395604395604, "y": 0.9214286034532571 }, { "posteriors": "curve_35", "x": 0.5659340659340659, "y": 0.9283027725754737 }, { "posteriors": "curve_35", "x": 0.5714285714285714, "y": 0.9351610651226965 }, { "posteriors": "curve_35", "x": 0.5769230769230769, "y": 0.9420036699011867 }, { "posteriors": "curve_35", "x": 0.5824175824175825, "y": 0.9488307716970323 }, { "posteriors": "curve_35", "x": 0.5879120879120879, "y": 0.9556425513988273 }, { "posteriors": "curve_35", "x": 0.5934065934065934, "y": 0.9624391861154986 }, { "posteriors": "curve_35", "x": 0.5989010989010989, "y": 0.9692208492895122 }, { "posteriors": "curve_35", "x": 0.6043956043956044, "y": 0.9759877108056834 }, { "posteriors": "curve_35", "x": 0.6098901098901099, "y": 0.9827399370957983 }, { "posteriors": "curve_35", "x": 0.6153846153846154, "y": 0.9894776912392446 }, { "posteriors": "curve_35", "x": 0.6208791208791209, "y": 0.9962011330598387 }, { "posteriors": "curve_35", "x": 0.6263736263736264, "y": 1.0029104192190252 }, { "posteriors": "curve_35", "x": 0.6318681318681318, "y": 1.0096057033056134 }, { "posteriors": "curve_35", "x": 0.6373626373626373, "y": 1.0162871359222114 }, { "posteriors": "curve_35", "x": 0.6428571428571429, "y": 1.0229548647685058 }, { "posteriors": "curve_35", "x": 0.6483516483516484, "y": 1.029609034721524 }, { "posteriors": "curve_35", "x": 0.6538461538461539, "y": 1.0362497879130224 }, { "posteriors": "curve_35", "x": 0.6593406593406593, "y": 1.042877263804115 }, { "posteriors": "curve_35", "x": 0.6648351648351648, "y": 1.049491599257274 }, { "posteriors": "curve_35", "x": 0.6703296703296703, "y": 1.0560929286058054 }, { "posteriors": "curve_35", "x": 0.6758241758241759, "y": 1.062681383720919 }, { "posteriors": "curve_35", "x": 0.6813186813186813, "y": 1.0692570940764854 }, { "posteriors": "curve_35", "x": 0.6868131868131868, "y": 1.075820186811583 }, { "posteriors": "curve_35", "x": 0.6923076923076923, "y": 1.0823707867909274 }, { "posteriors": "curve_35", "x": 0.6978021978021978, "y": 1.088909016663267 }, { "posteriors": "curve_35", "x": 0.7032967032967034, "y": 1.0954349969178359 }, { "posteriors": "curve_35", "x": 0.7087912087912088, "y": 1.1019488459389344 }, { "posteriors": "curve_35", "x": 0.7142857142857143, "y": 1.1084506800587226 }, { "posteriors": "curve_35", "x": 0.7197802197802198, "y": 1.1149406136082907 }, { "posteriors": "curve_35", "x": 0.7252747252747253, "y": 1.1214187589670799 }, { "posteriors": "curve_35", "x": 0.7307692307692307, "y": 1.1278852266107189 }, { "posteriors": "curve_35", "x": 0.7362637362637363, "y": 1.1343401251573355 }, { "posteriors": "curve_35", "x": 0.7417582417582418, "y": 1.1407835614124051 }, { "posteriors": "curve_35", "x": 0.7472527472527473, "y": 1.1472156404121945 }, { "posteriors": "curve_35", "x": 0.7527472527472527, "y": 1.1536364654658493 }, { "posteriors": "curve_35", "x": 0.7582417582417582, "y": 1.1600461381961835 }, { "posteriors": "curve_35", "x": 0.7637362637362637, "y": 1.166444758579217 }, { "posteriors": "curve_35", "x": 0.7692307692307693, "y": 1.172832424982506 }, { "posteriors": "curve_35", "x": 0.7747252747252747, "y": 1.1792092342023177 }, { "posteriors": "curve_35", "x": 0.7802197802197802, "y": 1.1855752814996856 }, { "posteriors": "curve_35", "x": 0.7857142857142857, "y": 1.1919306606353914 }, { "posteriors": "curve_35", "x": 0.7912087912087912, "y": 1.1982754639039093 }, { "posteriors": "curve_35", "x": 0.7967032967032966, "y": 1.2046097821663537 }, { "posteriors": "curve_35", "x": 0.8021978021978022, "y": 1.210933704882464 }, { "posteriors": "curve_35", "x": 0.8076923076923077, "y": 1.21724732014166 }, { "posteriors": "curve_35", "x": 0.8131868131868132, "y": 1.2235507146932065 }, { "posteriors": "curve_35", "x": 0.8186813186813187, "y": 1.229843973975511 }, { "posteriors": "curve_35", "x": 0.8241758241758241, "y": 1.2361271821445892 }, { "posteriors": "curve_35", "x": 0.8296703296703297, "y": 1.2424004221017302 }, { "posteriors": "curve_35", "x": 0.8351648351648352, "y": 1.2486637755203815 }, { "posteriors": "curve_35", "x": 0.8406593406593407, "y": 1.2549173228722874 }, { "posteriors": "curve_35", "x": 0.8461538461538461, "y": 1.261161143452903 }, { "posteriors": "curve_35", "x": 0.8516483516483516, "y": 1.2673953154061102 }, { "posteriors": "curve_35", "x": 0.8571428571428571, "y": 1.2736199157482566 }, { "posteriors": "curve_35", "x": 0.8626373626373627, "y": 1.2798350203915445 }, { "posteriors": "curve_35", "x": 0.8681318681318682, "y": 1.2860407041667865 }, { "posteriors": "curve_35", "x": 0.8736263736263736, "y": 1.2922370408455517 }, { "posteriors": "curve_35", "x": 0.8791208791208791, "y": 1.298424103161724 }, { "posteriors": "curve_35", "x": 0.8846153846153846, "y": 1.3046019628324863 }, { "posteriors": "curve_35", "x": 0.8901098901098901, "y": 1.310770690578756 }, { "posteriors": "curve_35", "x": 0.8956043956043956, "y": 1.3169303561450845 }, { "posteriors": "curve_35", "x": 0.9010989010989011, "y": 1.3230810283190388 }, { "posteriors": "curve_35", "x": 0.9065934065934066, "y": 1.3292227749500858 }, { "posteriors": "curve_35", "x": 0.9120879120879121, "y": 1.3353556629679884 }, { "posteriors": "curve_35", "x": 0.9175824175824175, "y": 1.3414797584007343 }, { "posteriors": "curve_35", "x": 0.9230769230769231, "y": 1.3475951263920092 }, { "posteriors": "curve_35", "x": 0.9285714285714286, "y": 1.3537018312182303 }, { "posteriors": "curve_35", "x": 0.9340659340659341, "y": 1.3597999363051512 }, { "posteriors": "curve_35", "x": 0.9395604395604396, "y": 1.3658895042440564 }, { "posteriors": "curve_35", "x": 0.945054945054945, "y": 1.3719705968075508 }, { "posteriors": "curve_35", "x": 0.9505494505494505, "y": 1.3780432749649634 }, { "posteriors": "curve_35", "x": 0.9560439560439561, "y": 1.384107598897372 }, { "posteriors": "curve_35", "x": 0.9615384615384616, "y": 1.3901636280122627 }, { "posteriors": "curve_35", "x": 0.967032967032967, "y": 1.3962114209578367 }, { "posteriors": "curve_35", "x": 0.9725274725274725, "y": 1.402251035636968 }, { "posteriors": "curve_35", "x": 0.978021978021978, "y": 1.408282529220833 }, { "posteriors": "curve_35", "x": 0.9835164835164835, "y": 1.4143059581622106 }, { "posteriors": "curve_35", "x": 0.989010989010989, "y": 1.4203213782084707 }, { "posteriors": "curve_35", "x": 0.9945054945054945, "y": 1.4263288444142566 }, { "posteriors": "curve_36", "x": 0, "y": 0 }, { "posteriors": "curve_36", "x": 0.005494505494505495, "y": 0.025026268818948465 }, { "posteriors": "curve_36", "x": 0.01098901098901099, "y": 0.043596657947851766 }, { "posteriors": "curve_36", "x": 0.016483516483516484, "y": 0.060320170180664164 }, { "posteriors": "curve_36", "x": 0.02197802197802198, "y": 0.07594694191021031 }, { "posteriors": "curve_36", "x": 0.027472527472527472, "y": 0.09080574835163435 }, { "posteriors": "curve_36", "x": 0.03296703296703297, "y": 0.10507990007409816 }, { "posteriors": "curve_36", "x": 0.038461538461538464, "y": 0.11888550905097578 }, { "posteriors": "curve_36", "x": 0.04395604395604396, "y": 0.13230229694239842 }, { "posteriors": "curve_36", "x": 0.04945054945054945, "y": 0.14538815022515078 }, { "posteriors": "curve_36", "x": 0.054945054945054944, "y": 0.1581868707327042 }, { "posteriors": "curve_36", "x": 0.06043956043956044, "y": 0.1707326709848273 }, { "posteriors": "curve_36", "x": 0.06593406593406594, "y": 0.18305295503164773 }, { "posteriors": "curve_36", "x": 0.07142857142857142, "y": 0.19517012777354054 }, { "posteriors": "curve_36", "x": 0.07692307692307693, "y": 0.20710282106165764 }, { "posteriors": "curve_36", "x": 0.08241758241758242, "y": 0.21886675291388064 }, { "posteriors": "curve_36", "x": 0.08791208791208792, "y": 0.23047534681421245 }, { "posteriors": "curve_36", "x": 0.09340659340659341, "y": 0.2419401889136806 }, { "posteriors": "curve_36", "x": 0.0989010989010989, "y": 0.2532713726081965 }, { "posteriors": "curve_36", "x": 0.1043956043956044, "y": 0.2644777629541555 }, { "posteriors": "curve_36", "x": 0.10989010989010989, "y": 0.27556720280864133 }, { "posteriors": "curve_36", "x": 0.11538461538461539, "y": 0.2865466758089056 }, { "posteriors": "curve_36", "x": 0.12087912087912088, "y": 0.2974224368521501 }, { "posteriors": "curve_36", "x": 0.12637362637362637, "y": 0.30820011773828027 }, { "posteriors": "curve_36", "x": 0.13186813186813187, "y": 0.3188848135769987 }, { "posteriors": "curve_36", "x": 0.13736263736263737, "y": 0.329481154116637 }, { "posteriors": "curve_36", "x": 0.14285714285714285, "y": 0.33999336312328027 }, { "posteriors": "curve_36", "x": 0.14835164835164835, "y": 0.3504253081942859 }, { "posteriors": "curve_36", "x": 0.15384615384615385, "y": 0.3607805428440056 }, { "posteriors": "curve_36", "x": 0.15934065934065933, "y": 0.3710623422934406 }, { "posteriors": "curve_36", "x": 0.16483516483516483, "y": 0.38127373409011295 }, { "posteriors": "curve_36", "x": 0.17032967032967034, "y": 0.39141752445215866 }, { "posteriors": "curve_36", "x": 0.17582417582417584, "y": 0.4014963210522212 }, { "posteriors": "curve_36", "x": 0.1813186813186813, "y": 0.4115125528183648 }, { "posteriors": "curve_36", "x": 0.18681318681318682, "y": 0.42146848722100316 }, { "posteriors": "curve_36", "x": 0.19230769230769232, "y": 0.4313662454294875 }, { "posteriors": "curve_36", "x": 0.1978021978021978, "y": 0.44120781565417555 }, { "posteriors": "curve_36", "x": 0.2032967032967033, "y": 0.4509950649355179 }, { "posteriors": "curve_36", "x": 0.2087912087912088, "y": 0.46072974959795915 }, { "posteriors": "curve_36", "x": 0.21428571428571427, "y": 0.4704135245509838 }, { "posteriors": "curve_36", "x": 0.21978021978021978, "y": 0.4800479515907086 }, { "posteriors": "curve_36", "x": 0.22527472527472528, "y": 0.4896345068316849 }, { "posteriors": "curve_36", "x": 0.23076923076923078, "y": 0.49917458737901166 }, { "posteriors": "curve_36", "x": 0.23626373626373626, "y": 0.5086695173346281 }, { "posteriors": "curve_36", "x": 0.24175824175824176, "y": 0.5181205532181505 }, { "posteriors": "curve_36", "x": 0.24725274725274726, "y": 0.5275288888713124 }, { "posteriors": "curve_36", "x": 0.25274725274725274, "y": 0.5368956599055669 }, { "posteriors": "curve_36", "x": 0.25824175824175827, "y": 0.546221947744401 }, { "posteriors": "curve_36", "x": 0.26373626373626374, "y": 0.5555087833051185 }, { "posteriors": "curve_36", "x": 0.2692307692307692, "y": 0.5647571503590803 }, { "posteriors": "curve_36", "x": 0.27472527472527475, "y": 0.5739679886044635 }, { "posteriors": "curve_36", "x": 0.2802197802197802, "y": 0.5831421964813869 }, { "posteriors": "curve_36", "x": 0.2857142857142857, "y": 0.5922806337556239 }, { "posteriors": "curve_36", "x": 0.29120879120879123, "y": 0.6013841238940065 }, { "posteriors": "curve_36", "x": 0.2967032967032967, "y": 0.6104534562519228 }, { "posteriors": "curve_36", "x": 0.3021978021978022, "y": 0.6194893880909743 }, { "posteriors": "curve_36", "x": 0.3076923076923077, "y": 0.6284926464428217 }, { "posteriors": "curve_36", "x": 0.3131868131868132, "y": 0.6374639298334817 }, { "posteriors": "curve_36", "x": 0.31868131868131866, "y": 0.6464039098807832 }, { "posteriors": "curve_36", "x": 0.3241758241758242, "y": 0.6553132327763377 }, { "posteriors": "curve_36", "x": 0.32967032967032966, "y": 0.6641925206621857 }, { "posteriors": "curve_36", "x": 0.33516483516483514, "y": 0.6730423729112353 }, { "posteriors": "curve_36", "x": 0.34065934065934067, "y": 0.6818633673196782 }, { "posteriors": "curve_36", "x": 0.34615384615384615, "y": 0.6906560612187589 }, { "posteriors": "curve_36", "x": 0.3516483516483517, "y": 0.6994209925125399 }, { "posteriors": "curve_36", "x": 0.35714285714285715, "y": 0.7081586806476692 }, { "posteriors": "curve_36", "x": 0.3626373626373626, "y": 0.7168696275205817 }, { "posteriors": "curve_36", "x": 0.36813186813186816, "y": 0.7255543183270563 }, { "posteriors": "curve_36", "x": 0.37362637362637363, "y": 0.734213222358596 }, { "posteriors": "curve_36", "x": 0.3791208791208791, "y": 0.7428467937496938 }, { "posteriors": "curve_36", "x": 0.38461538461538464, "y": 0.7514554721796768 }, { "posteriors": "curve_36", "x": 0.3901098901098901, "y": 0.7600396835325032 }, { "posteriors": "curve_36", "x": 0.3956043956043956, "y": 0.768599840517582 }, { "posteriors": "curve_36", "x": 0.4010989010989011, "y": 0.7771363432544317 }, { "posteriors": "curve_36", "x": 0.4065934065934066, "y": 0.7856495798237456 }, { "posteriors": "curve_36", "x": 0.41208791208791207, "y": 0.7941399267872263 }, { "posteriors": "curve_36", "x": 0.4175824175824176, "y": 0.8026077496783472 }, { "posteriors": "curve_36", "x": 0.4230769230769231, "y": 0.8110534034660308 }, { "posteriors": "curve_36", "x": 0.42857142857142855, "y": 0.8194772329930692 }, { "posteriors": "curve_36", "x": 0.4340659340659341, "y": 0.8278795733909681 }, { "posteriors": "curve_36", "x": 0.43956043956043955, "y": 0.8362607504727659 }, { "posteriors": "curve_36", "x": 0.44505494505494503, "y": 0.844621081105256 }, { "posteriors": "curve_36", "x": 0.45054945054945056, "y": 0.8529608735619334 }, { "posteriors": "curve_36", "x": 0.45604395604395603, "y": 0.8612804278578865 }, { "posteriors": "curve_36", "x": 0.46153846153846156, "y": 0.869580036067766 }, { "posteriors": "curve_36", "x": 0.46703296703296704, "y": 0.8778599826278721 }, { "posteriors": "curve_36", "x": 0.4725274725274725, "y": 0.8861205446233362 }, { "posteriors": "curve_36", "x": 0.47802197802197804, "y": 0.894361992061294 }, { "posteriors": "curve_36", "x": 0.4835164835164835, "y": 0.9025845881308859 }, { "posteriors": "curve_36", "x": 0.489010989010989, "y": 0.9107885894508658 }, { "posteriors": "curve_36", "x": 0.4945054945054945, "y": 0.9189742463055364 }, { "posteriors": "curve_36", "x": 0.5, "y": 0.9271418028696886 }, { "posteriors": "curve_36", "x": 0.5054945054945055, "y": 0.935291497423172 }, { "posteriors": "curve_36", "x": 0.510989010989011, "y": 0.9434235625556798 }, { "posteriors": "curve_36", "x": 0.5164835164835165, "y": 0.951538225362297 }, { "posteriors": "curve_36", "x": 0.521978021978022, "y": 0.9596357076303209 }, { "posteriors": "curve_36", "x": 0.5274725274725275, "y": 0.9677162260178324 }, { "posteriors": "curve_36", "x": 0.532967032967033, "y": 0.9757799922244624 }, { "posteriors": "curve_36", "x": 0.5384615384615384, "y": 0.983827213154775 }, { "posteriors": "curve_36", "x": 0.5439560439560439, "y": 0.9918580910746523 }, { "posteriors": "curve_36", "x": 0.5494505494505495, "y": 0.9998728237610564 }, { "posteriors": "curve_36", "x": 0.554945054945055, "y": 1.0078716046455045 }, { "posteriors": "curve_36", "x": 0.5604395604395604, "y": 1.0158546229515886 }, { "posteriors": "curve_36", "x": 0.5659340659340659, "y": 1.0238220638268334 }, { "posteriors": "curve_36", "x": 0.5714285714285714, "y": 1.0317741084691883 }, { "posteriors": "curve_36", "x": 0.5769230769230769, "y": 1.0397109342484128 }, { "posteriors": "curve_36", "x": 0.5824175824175825, "y": 1.0476327148226137 }, { "posteriors": "curve_36", "x": 0.5879120879120879, "y": 1.0555396202501695 }, { "posteriors": "curve_36", "x": 0.5934065934065934, "y": 1.0634318170972643 }, { "posteriors": "curve_36", "x": 0.5989010989010989, "y": 1.0713094685412474 }, { "posteriors": "curve_36", "x": 0.6043956043956044, "y": 1.0791727344700113 }, { "posteriors": "curve_36", "x": 0.6098901098901099, "y": 1.0870217715775807 }, { "posteriors": "curve_36", "x": 0.6153846153846154, "y": 1.0948567334560866 }, { "posteriors": "curve_36", "x": 0.6208791208791209, "y": 1.1026777706842987 }, { "posteriors": "curve_36", "x": 0.6263736263736264, "y": 1.110485030912866 }, { "posteriors": "curve_36", "x": 0.6318681318681318, "y": 1.1182786589464226 }, { "posteriors": "curve_36", "x": 0.6373626373626373, "y": 1.1260587968226976 }, { "posteriors": "curve_36", "x": 0.6428571428571429, "y": 1.133825583888763 }, { "posteriors": "curve_36", "x": 0.6483516483516484, "y": 1.141579156874547 }, { "posteriors": "curve_36", "x": 0.6538461538461539, "y": 1.1493196499637341 }, { "posteriors": "curve_36", "x": 0.6593406593406593, "y": 1.1570471948621646 }, { "posteriors": "curve_36", "x": 0.6648351648351648, "y": 1.1647619208638424 }, { "posteriors": "curve_36", "x": 0.6703296703296703, "y": 1.1724639549146543 }, { "posteriors": "curve_36", "x": 0.6758241758241759, "y": 1.1801534216738978 }, { "posteriors": "curve_36", "x": 0.6813186813186813, "y": 1.1878304435737082 }, { "posteriors": "curve_36", "x": 0.6868131868131868, "y": 1.1954951408764773 }, { "posteriors": "curve_36", "x": 0.6923076923076923, "y": 1.203147631730344 }, { "posteriors": "curve_36", "x": 0.6978021978021978, "y": 1.2107880322228344 }, { "posteriors": "curve_36", "x": 0.7032967032967034, "y": 1.218416456432733 }, { "posteriors": "curve_36", "x": 0.7087912087912088, "y": 1.2260330164802522 }, { "posteriors": "curve_36", "x": 0.7142857142857143, "y": 1.2336378225755684 }, { "posteriors": "curve_36", "x": 0.7197802197802198, "y": 1.2412309830657937 }, { "posteriors": "curve_36", "x": 0.7252747252747253, "y": 1.2488126044804417 }, { "posteriors": "curve_36", "x": 0.7307692307692307, "y": 1.2563827915754484 }, { "posteriors": "curve_36", "x": 0.7362637362637363, "y": 1.2639416473758034 }, { "posteriors": "curve_36", "x": 0.7417582417582418, "y": 1.2714892732168475 }, { "posteriors": "curve_36", "x": 0.7472527472527473, "y": 1.279025768784285 }, { "posteriors": "curve_36", "x": 0.7527472527472527, "y": 1.286551232152963 }, { "posteriors": "curve_36", "x": 0.7582417582417582, "y": 1.2940657598244618 }, { "posteriors": "curve_36", "x": 0.7637362637362637, "y": 1.3015694467635424 }, { "posteriors": "curve_36", "x": 0.7692307692307693, "y": 1.3090623864334936 }, { "posteriors": "curve_36", "x": 0.7747252747252747, "y": 1.3165446708304205 }, { "posteriors": "curve_36", "x": 0.7802197802197802, "y": 1.3240163905165108 }, { "posteriors": "curve_36", "x": 0.7857142857142857, "y": 1.3314776346523198 }, { "posteriors": "curve_36", "x": 0.7912087912087912, "y": 1.3389284910281074 }, { "posteriors": "curve_36", "x": 0.7967032967032966, "y": 1.3463690460942603 }, { "posteriors": "curve_36", "x": 0.8021978021978022, "y": 1.3537993849908363 }, { "posteriors": "curve_36", "x": 0.8076923076923077, "y": 1.3612195915762577 }, { "posteriors": "curve_36", "x": 0.8131868131868132, "y": 1.368629748455186 }, { "posteriors": "curve_36", "x": 0.8186813186813187, "y": 1.376029937005606 }, { "posteriors": "curve_36", "x": 0.8241758241758241, "y": 1.3834202374051483 }, { "posteriors": "curve_36", "x": 0.8296703296703297, "y": 1.3908007286566735 }, { "posteriors": "curve_36", "x": 0.8351648351648352, "y": 1.398171488613146 }, { "posteriors": "curve_36", "x": 0.8406593406593407, "y": 1.4055325940018224 }, { "posteriors": "curve_36", "x": 0.8461538461538461, "y": 1.412884120447774 }, { "posteriors": "curve_36", "x": 0.8516483516483516, "y": 1.4202261424967713 }, { "posteriors": "curve_36", "x": 0.8571428571428571, "y": 1.4275587336375453 }, { "posteriors": "curve_36", "x": 0.8626373626373627, "y": 1.4348819663234536 }, { "posteriors": "curve_36", "x": 0.8681318681318682, "y": 1.442195911993564 }, { "posteriors": "curve_36", "x": 0.8736263736263736, "y": 1.4495006410931812 }, { "posteriors": "curve_36", "x": 0.8791208791208791, "y": 1.4567962230938294 }, { "posteriors": "curve_36", "x": 0.8846153846153846, "y": 1.4640827265127112 }, { "posteriors": "curve_36", "x": 0.8901098901098901, "y": 1.4713602189316608 }, { "posteriors": "curve_36", "x": 0.8956043956043956, "y": 1.4786287670156042 }, { "posteriors": "curve_36", "x": 0.9010989010989011, "y": 1.4858884365305445 }, { "posteriors": "curve_36", "x": 0.9065934065934066, "y": 1.4931392923610882 }, { "posteriors": "curve_36", "x": 0.9120879120879121, "y": 1.5003813985275254 }, { "posteriors": "curve_36", "x": 0.9175824175824175, "y": 1.5076148182024762 }, { "posteriors": "curve_36", "x": 0.9230769230769231, "y": 1.5148396137271216 }, { "posteriors": "curve_36", "x": 0.9285714285714286, "y": 1.522055846627026 }, { "posteriors": "curve_36", "x": 0.9340659340659341, "y": 1.5292635776275703 }, { "posteriors": "curve_36", "x": 0.9395604395604396, "y": 1.5364628666690003 }, { "posteriors": "curve_36", "x": 0.945054945054945, "y": 1.543653772921109 }, { "posteriors": "curve_36", "x": 0.9505494505494505, "y": 1.5508363547975583 }, { "posteriors": "curve_36", "x": 0.9560439560439561, "y": 1.5580106699698533 }, { "posteriors": "curve_36", "x": 0.9615384615384616, "y": 1.5651767753809822 }, { "posteriors": "curve_36", "x": 0.967032967032967, "y": 1.5723347272587263 }, { "posteriors": "curve_36", "x": 0.9725274725274725, "y": 1.5794845811286526 }, { "posteriors": "curve_36", "x": 0.978021978021978, "y": 1.5866263918268013 }, { "posteriors": "curve_36", "x": 0.9835164835164835, "y": 1.5937602135120699 }, { "posteriors": "curve_36", "x": 0.989010989010989, "y": 1.6008860996783112 }, { "posteriors": "curve_36", "x": 0.9945054945054945, "y": 1.6080041031661452 }, { "posteriors": "curve_37", "x": 0, "y": 0 }, { "posteriors": "curve_37", "x": 0.005494505494505495, "y": 0.025479803964832237 }, { "posteriors": "curve_37", "x": 0.01098901098901099, "y": 0.043954567222196324 }, { "posteriors": "curve_37", "x": 0.016483516483516484, "y": 0.060468300816413856 }, { "posteriors": "curve_37", "x": 0.02197802197802198, "y": 0.07582491538620816 }, { "posteriors": "curve_37", "x": 0.027472527472527472, "y": 0.0903747395726944 }, { "posteriors": "curve_37", "x": 0.03296703296703297, "y": 0.10431234073525385 }, { "posteriors": "curve_37", "x": 0.038461538461538464, "y": 0.1177605916572656 }, { "posteriors": "curve_37", "x": 0.04395604395604396, "y": 0.13080364923766707 }, { "posteriors": "curve_37", "x": 0.04945054945054945, "y": 0.1435024935306009 }, { "posteriors": "curve_37", "x": 0.054945054945054944, "y": 0.15590318399699027 }, { "posteriors": "curve_37", "x": 0.06043956043956044, "y": 0.1680416391249667 }, { "posteriors": "curve_37", "x": 0.06593406593406594, "y": 0.179946588257927 }, { "posteriors": "curve_37", "x": 0.07142857142857142, "y": 0.19164148933871153 }, { "posteriors": "curve_37", "x": 0.07692307692307693, "y": 0.20314582676024812 }, { "posteriors": "curve_37", "x": 0.08241758241758242, "y": 0.21447601976174502 }, { "posteriors": "curve_37", "x": 0.08791208791208792, "y": 0.22564607644788373 }, { "posteriors": "curve_37", "x": 0.09340659340659341, "y": 0.23666807612498061 }, { "posteriors": "curve_37", "x": 0.0989010989010989, "y": 0.2475525324743259 }, { "posteriors": "curve_37", "x": 0.1043956043956044, "y": 0.258308671987546 }, { "posteriors": "curve_37", "x": 0.10989010989010989, "y": 0.2689446508539992 }, { "posteriors": "curve_37", "x": 0.11538461538461539, "y": 0.2794677263011391 }, { "posteriors": "curve_37", "x": 0.12087912087912088, "y": 0.28988439366491947 }, { "posteriors": "curve_37", "x": 0.12637362637362637, "y": 0.30020049728954235 }, { "posteriors": "curve_37", "x": 0.13186813186813187, "y": 0.31042132117283 }, { "posteriors": "curve_37", "x": 0.13736263736263737, "y": 0.32055166374534994 }, { "posteriors": "curve_37", "x": 0.14285714285714285, "y": 0.3305959000833183 }, { "posteriors": "curve_37", "x": 0.14835164835164835, "y": 0.34055803406849305 }, { "posteriors": "curve_37", "x": 0.15384615384615385, "y": 0.35044174243123016 }, { "posteriors": "curve_37", "x": 0.15934065934065933, "y": 0.3602504121842047 }, { "posteriors": "curve_37", "x": 0.16483516483516483, "y": 0.3699871726320324 }, { "posteriors": "curve_37", "x": 0.17032967032967034, "y": 0.3796549228970956 }, { "posteriors": "curve_37", "x": 0.17582417582417584, "y": 0.38925635571382855 }, { "posteriors": "curve_37", "x": 0.1813186813186813, "y": 0.39879397809796496 }, { "posteriors": "curve_37", "x": 0.18681318681318682, "y": 0.4082701293833062 }, { "posteriors": "curve_37", "x": 0.19230769230769232, "y": 0.4176869970287412 }, { "posteriors": "curve_37", "x": 0.1978021978021978, "y": 0.4270466305269056 }, { "posteriors": "curve_37", "x": 0.2032967032967033, "y": 0.4363509536887911 }, { "posteriors": "curve_37", "x": 0.2087912087912088, "y": 0.44560177553264024 }, { "posteriors": "curve_37", "x": 0.21428571428571427, "y": 0.45480079996820644 }, { "posteriors": "curve_37", "x": 0.21978021978021978, "y": 0.46394963443707415 }, { "posteriors": "curve_37", "x": 0.22527472527472528, "y": 0.47304979764482 }, { "posteriors": "curve_37", "x": 0.23076923076923078, "y": 0.482102726500261 }, { "posteriors": "curve_37", "x": 0.23626373626373626, "y": 0.49110978236001623 }, { "posteriors": "curve_37", "x": 0.24175824175824176, "y": 0.5000722566624433 }, { "posteriors": "curve_37", "x": 0.24725274725274726, "y": 0.5089913760231598 }, { "posteriors": "curve_37", "x": 0.25274725274725274, "y": 0.51786830685441 }, { "posteriors": "curve_37", "x": 0.25824175824175827, "y": 0.526704159562141 }, { "posteriors": "curve_37", "x": 0.26373626373626374, "y": 0.5354999923675429 }, { "posteriors": "curve_37", "x": 0.2692307692307692, "y": 0.5442568147937696 }, { "posteriors": "curve_37", "x": 0.27472527472527475, "y": 0.5529755908533979 }, { "posteriors": "curve_37", "x": 0.2802197802197802, "y": 0.5616572419677754 }, { "posteriors": "curve_37", "x": 0.2857142857142857, "y": 0.5703026496456166 }, { "posteriors": "curve_37", "x": 0.29120879120879123, "y": 0.5789126579449428 }, { "posteriors": "curve_37", "x": 0.2967032967032967, "y": 0.5874880757396423 }, { "posteriors": "curve_37", "x": 0.3021978021978022, "y": 0.5960296788094834 }, { "posteriors": "curve_37", "x": 0.3076923076923077, "y": 0.6045382117702857 }, { "posteriors": "curve_37", "x": 0.3131868131868132, "y": 0.6130143898591077 }, { "posteriors": "curve_37", "x": 0.31868131868131866, "y": 0.621458900587692 }, { "posteriors": "curve_37", "x": 0.3241758241758242, "y": 0.6298724052759879 }, { "posteriors": "curve_37", "x": 0.32967032967032966, "y": 0.6382555404763335 }, { "posteriors": "curve_37", "x": 0.33516483516483514, "y": 0.6466089192977859 }, { "posteriors": "curve_37", "x": 0.34065934065934067, "y": 0.6549331326391162 }, { "posteriors": "curve_37", "x": 0.34615384615384615, "y": 0.663228750338141 }, { "posteriors": "curve_37", "x": 0.3516483516483517, "y": 0.6714963222443024 }, { "posteriors": "curve_37", "x": 0.35714285714285715, "y": 0.679736379220741 }, { "posteriors": "curve_37", "x": 0.3626373626373626, "y": 0.6879494340815075 }, { "posteriors": "curve_37", "x": 0.36813186813186816, "y": 0.6961359824690292 }, { "posteriors": "curve_37", "x": 0.37362637362637363, "y": 0.7042965036764748 }, { "posteriors": "curve_37", "x": 0.3791208791208791, "y": 0.7124314614192363 }, { "posteriors": "curve_37", "x": 0.38461538461538464, "y": 0.7205413045593657 }, { "posteriors": "curve_37", "x": 0.3901098901098901, "y": 0.7286264677864674 }, { "posteriors": "curve_37", "x": 0.3956043956043956, "y": 0.7366873722582385 }, { "posteriors": "curve_37", "x": 0.4010989010989011, "y": 0.7447244262035756 }, { "posteriors": "curve_37", "x": 0.4065934065934066, "y": 0.7527380254909165 }, { "posteriors": "curve_37", "x": 0.41208791208791207, "y": 0.7607285541642662 }, { "posteriors": "curve_37", "x": 0.4175824175824176, "y": 0.7686963849491465 }, { "posteriors": "curve_37", "x": 0.4230769230769231, "y": 0.7766418797305329 }, { "posteriors": "curve_37", "x": 0.42857142857142855, "y": 0.784565390004672 }, { "posteriors": "curve_37", "x": 0.4340659340659341, "y": 0.7924672573065232 }, { "posteriors": "curve_37", "x": 0.43956043956043955, "y": 0.8003478136144307 }, { "posteriors": "curve_37", "x": 0.44505494505494503, "y": 0.8082073817335095 }, { "posteriors": "curve_37", "x": 0.45054945054945056, "y": 0.8160462756591116 }, { "posteriors": "curve_37", "x": 0.45604395604395603, "y": 0.8238648009216392 }, { "posteriors": "curve_37", "x": 0.46153846153846156, "y": 0.8316632549138756 }, { "posteriors": "curve_37", "x": 0.46703296703296704, "y": 0.8394419272019138 }, { "posteriors": "curve_37", "x": 0.4725274725274725, "y": 0.8472010998206935 }, { "posteriors": "curve_37", "x": 0.47802197802197804, "y": 0.8549410475550732 }, { "posteriors": "curve_37", "x": 0.4835164835164835, "y": 0.862662038207306 }, { "posteriors": "curve_37", "x": 0.489010989010989, "y": 0.8703643328517248 }, { "posteriors": "curve_37", "x": 0.4945054945054945, "y": 0.8780481860773801 }, { "posteriors": "curve_37", "x": 0.5, "y": 0.8857138462193354 }, { "posteriors": "curve_37", "x": 0.5054945054945055, "y": 0.8933615555792613 }, { "posteriors": "curve_37", "x": 0.510989010989011, "y": 0.9009915506359408 }, { "posteriors": "curve_37", "x": 0.5164835164835165, "y": 0.9086040622462448 }, { "posteriors": "curve_37", "x": 0.521978021978022, "y": 0.9161993158371114 }, { "posteriors": "curve_37", "x": 0.5274725274725275, "y": 0.9237775315890174 }, { "posteriors": "curve_37", "x": 0.532967032967033, "y": 0.9313389246114081 }, { "posteriors": "curve_37", "x": 0.5384615384615384, "y": 0.9388837051105119 }, { "posteriors": "curve_37", "x": 0.5439560439560439, "y": 0.9464120785499489 }, { "posteriors": "curve_37", "x": 0.5494505494505495, "y": 0.9539242458045121 }, { "posteriors": "curve_37", "x": 0.554945054945055, "y": 0.9614204033074719 }, { "posteriors": "curve_37", "x": 0.5604395604395604, "y": 0.9689007431917468 }, { "posteriors": "curve_37", "x": 0.5659340659340659, "y": 0.9763654534252431 }, { "posteriors": "curve_37", "x": 0.5714285714285714, "y": 0.9838147179406678 }, { "posteriors": "curve_37", "x": 0.5769230769230769, "y": 0.9912487167600851 }, { "posteriors": "curve_37", "x": 0.5824175824175825, "y": 0.9986676261144805 }, { "posteriors": "curve_37", "x": 0.5879120879120879, "y": 1.006071618558576 }, { "posteriors": "curve_37", "x": 0.5934065934065934, "y": 1.01346086308113 }, { "posteriors": "curve_37", "x": 0.5989010989010989, "y": 1.020835525210936 }, { "posteriors": "curve_37", "x": 0.6043956043956044, "y": 1.0281957671187294 }, { "posteriors": "curve_37", "x": 0.6098901098901099, "y": 1.0355417477151936 }, { "posteriors": "curve_37", "x": 0.6153846153846154, "y": 1.04287362274525 }, { "posteriors": "curve_37", "x": 0.6208791208791209, "y": 1.0501915448788022 }, { "posteriors": "curve_37", "x": 0.6263736263736264, "y": 1.0574956637981034 }, { "posteriors": "curve_37", "x": 0.6318681318681318, "y": 1.0647861262818934 }, { "posteriors": "curve_37", "x": 0.6373626373626373, "y": 1.0720630762864578 }, { "posteriors": "curve_37", "x": 0.6428571428571429, "y": 1.0793266550237468 }, { "posteriors": "curve_37", "x": 0.6483516483516484, "y": 1.086577001036679 }, { "posteriors": "curve_37", "x": 0.6538461538461539, "y": 1.093814250271764 }, { "posteriors": "curve_37", "x": 0.6593406593406593, "y": 1.101038536149152 }, { "posteriors": "curve_37", "x": 0.6648351648351648, "y": 1.108249989630227 }, { "posteriors": "curve_37", "x": 0.6703296703296703, "y": 1.1154487392828487 }, { "posteriors": "curve_37", "x": 0.6758241758241759, "y": 1.1226349113443432 }, { "posteriors": "curve_37", "x": 0.6813186813186813, "y": 1.1298086297823366 }, { "posteriors": "curve_37", "x": 0.6868131868131868, "y": 1.1369700163535246 }, { "posteriors": "curve_37", "x": 0.6923076923076923, "y": 1.1441191906604615 }, { "posteriors": "curve_37", "x": 0.6978021978021978, "y": 1.1512562702064535 }, { "posteriors": "curve_37", "x": 0.7032967032967034, "y": 1.1583813704486297 }, { "posteriors": "curve_37", "x": 0.7087912087912088, "y": 1.1654946048492698 }, { "posteriors": "curve_37", "x": 0.7142857142857143, "y": 1.1725960849254562 }, { "posteriors": "curve_37", "x": 0.7197802197802198, "y": 1.179685920297117 }, { "posteriors": "curve_37", "x": 0.7252747252747253, "y": 1.1867642187335266 }, { "posteriors": "curve_37", "x": 0.7307692307692307, "y": 1.1938310861983212 }, { "posteriors": "curve_37", "x": 0.7362637362637363, "y": 1.2008866268930922 }, { "posteriors": "curve_37", "x": 0.7417582417582418, "y": 1.2079309432996062 }, { "posteriors": "curve_37", "x": 0.7472527472527473, "y": 1.214964136220711 }, { "posteriors": "curve_37", "x": 0.7527472527472527, "y": 1.2219863048199762 }, { "posteriors": "curve_37", "x": 0.7582417582417582, "y": 1.228997546660111 }, { "posteriors": "curve_37", "x": 0.7637362637362637, "y": 1.2359979577402147 }, { "posteriors": "curve_37", "x": 0.7692307692307693, "y": 1.2429876325318976 }, { "posteriors": "curve_37", "x": 0.7747252747252747, "y": 1.2499666640143121 }, { "posteriors": "curve_37", "x": 0.7802197802197802, "y": 1.256935143708144 }, { "posteriors": "curve_37", "x": 0.7857142857142857, "y": 1.2638931617085913 }, { "posteriors": "curve_37", "x": 0.7912087912087912, "y": 1.2708408067173729 }, { "posteriors": "curve_37", "x": 0.7967032967032966, "y": 1.2777781660738017 }, { "posteriors": "curve_37", "x": 0.8021978021978022, "y": 1.2847053257849574 }, { "posteriors": "curve_37", "x": 0.8076923076923077, "y": 1.2916223705549845 }, { "posteriors": "curve_37", "x": 0.8131868131868132, "y": 1.2985293838135565 }, { "posteriors": "curve_37", "x": 0.8186813186813187, "y": 1.3054264477435265 }, { "posteriors": "curve_37", "x": 0.8241758241758241, "y": 1.3123136433077973 }, { "posteriors": "curve_37", "x": 0.8296703296703297, "y": 1.3191910502754398 }, { "posteriors": "curve_37", "x": 0.8351648351648352, "y": 1.3260587472470777 }, { "posteriors": "curve_37", "x": 0.8406593406593407, "y": 1.3329168116795758 }, { "posteriors": "curve_37", "x": 0.8461538461538461, "y": 1.339765319910042 }, { "posteriors": "curve_37", "x": 0.8516483516483516, "y": 1.34660434717918 }, { "posteriors": "curve_37", "x": 0.8571428571428571, "y": 1.3534339676540006 }, { "posteriors": "curve_37", "x": 0.8626373626373627, "y": 1.3602542544499265 }, { "posteriors": "curve_37", "x": 0.8681318681318682, "y": 1.3670652796522986 }, { "posteriors": "curve_37", "x": 0.8736263736263736, "y": 1.3738671143373136 }, { "posteriors": "curve_37", "x": 0.8791208791208791, "y": 1.3806598285924048 }, { "posteriors": "curve_37", "x": 0.8846153846153846, "y": 1.387443491536087 }, { "posteriors": "curve_37", "x": 0.8901098901098901, "y": 1.3942181713372819 }, { "posteriors": "curve_37", "x": 0.8956043956043956, "y": 1.4009839352341436 }, { "posteriors": "curve_37", "x": 0.9010989010989011, "y": 1.407740849552393 }, { "posteriors": "curve_37", "x": 0.9065934065934066, "y": 1.4144889797231877 }, { "posteriors": "curve_37", "x": 0.9120879120879121, "y": 1.42122839030053 }, { "posteriors": "curve_37", "x": 0.9175824175824175, "y": 1.4279591449782372 }, { "posteriors": "curve_37", "x": 0.9230769230769231, "y": 1.4346813066064823 }, { "posteriors": "curve_37", "x": 0.9285714285714286, "y": 1.4413949372079207 }, { "posteriors": "curve_37", "x": 0.9340659340659341, "y": 1.4481000979934144 }, { "posteriors": "curve_37", "x": 0.9395604395604396, "y": 1.4547968493773689 }, { "posteriors": "curve_37", "x": 0.945054945054945, "y": 1.4614852509926881 }, { "posteriors": "curve_37", "x": 0.9505494505494505, "y": 1.4681653617053683 }, { "posteriors": "curve_37", "x": 0.9560439560439561, "y": 1.4748372396287324 }, { "posteriors": "curve_37", "x": 0.9615384615384616, "y": 1.4815009421373233 }, { "posteriors": "curve_37", "x": 0.967032967032967, "y": 1.4881565258804608 }, { "posteriors": "curve_37", "x": 0.9725274725274725, "y": 1.4948040467954735 }, { "posteriors": "curve_37", "x": 0.978021978021978, "y": 1.5014435601206193 }, { "posteriors": "curve_37", "x": 0.9835164835164835, "y": 1.5080751204076965 }, { "posteriors": "curve_37", "x": 0.989010989010989, "y": 1.5146987815343602 }, { "posteriors": "curve_37", "x": 0.9945054945054945, "y": 1.5213145967161497 }, { "posteriors": "curve_38", "x": 0, "y": 0 }, { "posteriors": "curve_38", "x": 0.005494505494505495, "y": 0.026061688629437238 }, { "posteriors": "curve_38", "x": 0.01098901098901099, "y": 0.04450565514696928 }, { "posteriors": "curve_38", "x": 0.016483516483516484, "y": 0.060865035754629246 }, { "posteriors": "curve_38", "x": 0.02197802197802198, "y": 0.07600249424450761 }, { "posteriors": "curve_38", "x": 0.027472527472527472, "y": 0.090291736549611 }, { "posteriors": "curve_38", "x": 0.03296703296703297, "y": 0.10393947722726582 }, { "posteriors": "curve_38", "x": 0.038461538461538464, "y": 0.11707585535525379 }, { "posteriors": "curve_38", "x": 0.04395604395604396, "y": 0.12978977867669406 }, { "posteriors": "curve_38", "x": 0.04945054945054945, "y": 0.14214553132324376 }, { "posteriors": "curve_38", "x": 0.054945054945054944, "y": 0.1541915777843733 }, { "posteriors": "curve_38", "x": 0.06043956043956044, "y": 0.1659656496712941 }, { "posteriors": "curve_38", "x": 0.06593406593406594, "y": 0.17749788186817306 }, { "posteriors": "curve_38", "x": 0.07142857142857142, "y": 0.1888128469279141 }, { "posteriors": "curve_38", "x": 0.07692307692307693, "y": 0.1999309299778821 }, { "posteriors": "curve_38", "x": 0.08241758241758242, "y": 0.2108692898445663 }, { "posteriors": "curve_38", "x": 0.08791208791208792, "y": 0.22164255023988996 }, { "posteriors": "curve_38", "x": 0.09340659340659341, "y": 0.23226330896538547 }, { "posteriors": "curve_38", "x": 0.0989010989010989, "y": 0.242742520935859 }, { "posteriors": "curve_38", "x": 0.1043956043956044, "y": 0.25308979156131967 }, { "posteriors": "curve_38", "x": 0.10989010989010989, "y": 0.26331360507803714 }, { "posteriors": "curve_38", "x": 0.11538461538461539, "y": 0.27342150478125776 }, { "posteriors": "curve_38", "x": 0.12087912087912088, "y": 0.28342023709738523 }, { "posteriors": "curve_38", "x": 0.12637362637362637, "y": 0.29331586806273136 }, { "posteriors": "curve_38", "x": 0.13186813186813187, "y": 0.30311387846217935 }, { "posteriors": "curve_38", "x": 0.13736263736263737, "y": 0.3128192422625995 }, { "posteriors": "curve_38", "x": 0.14285714285714285, "y": 0.3224364918242329 }, { "posteriors": "curve_38", "x": 0.14835164835164835, "y": 0.33196977254105214 }, { "posteriors": "curve_38", "x": 0.15384615384615385, "y": 0.34142288895117623 }, { "posteriors": "curve_38", "x": 0.15934065934065933, "y": 0.35079934390557727 }, { "posteriors": "curve_38", "x": 0.16483516483516483, "y": 0.36010237204308243 }, { "posteriors": "curve_38", "x": 0.17032967032967034, "y": 0.36933496856123155 }, { "posteriors": "curve_38", "x": 0.17582417582417584, "y": 0.378499914074231 }, { "posteriors": "curve_38", "x": 0.1813186813186813, "y": 0.3875997961956203 }, { "posteriors": "curve_38", "x": 0.18681318681318682, "y": 0.39663702836321685 }, { "posteriors": "curve_38", "x": 0.19230769230769232, "y": 0.405613866329321 }, { "posteriors": "curve_38", "x": 0.1978021978021978, "y": 0.4145324226640718 }, { "posteriors": "curve_38", "x": 0.2032967032967033, "y": 0.42339467955979104 }, { "posteriors": "curve_38", "x": 0.2087912087912088, "y": 0.4322025001758168 }, { "posteriors": "curve_38", "x": 0.21428571428571427, "y": 0.44095763872415605 }, { "posteriors": "curve_38", "x": 0.21978021978021978, "y": 0.4496617494643682 }, { "posteriors": "curve_38", "x": 0.22527472527472528, "y": 0.45831639474992103 }, { "posteriors": "curve_38", "x": 0.23076923076923078, "y": 0.4669230522467046 }, { "posteriors": "curve_38", "x": 0.23626373626373626, "y": 0.475483121426524 }, { "posteriors": "curve_38", "x": 0.24175824175824176, "y": 0.48399792942353453 }, { "posteriors": "curve_38", "x": 0.24725274725274726, "y": 0.49246873632915283 }, { "posteriors": "curve_38", "x": 0.25274725274725274, "y": 0.5008967399905487 }, { "posteriors": "curve_38", "x": 0.25824175824175827, "y": 0.5092830803690207 }, { "posteriors": "curve_38", "x": 0.26373626373626374, "y": 0.5176288435071145 }, { "posteriors": "curve_38", "x": 0.2692307692307692, "y": 0.5259350651470155 }, { "posteriors": "curve_38", "x": 0.27472527472527475, "y": 0.5342027340373501 }, { "posteriors": "curve_38", "x": 0.2802197802197802, "y": 0.5424327949609129 }, { "posteriors": "curve_38", "x": 0.2857142857142857, "y": 0.5506261515118777 }, { "posteriors": "curve_38", "x": 0.29120879120879123, "y": 0.5587836686476273 }, { "posteriors": "curve_38", "x": 0.2967032967032967, "y": 0.5669061750373974 }, { "posteriors": "curve_38", "x": 0.3021978021978022, "y": 0.5749944652273711 }, { "posteriors": "curve_38", "x": 0.3076923076923077, "y": 0.5830493016396365 }, { "posteriors": "curve_38", "x": 0.3131868131868132, "y": 0.5910714164204953 }, { "posteriors": "curve_38", "x": 0.31868131868131866, "y": 0.5990615131519139 }, { "posteriors": "curve_38", "x": 0.3241758241758242, "y": 0.607020268438431 }, { "posteriors": "curve_38", "x": 0.32967032967032966, "y": 0.6149483333805422 }, { "posteriors": "curve_38", "x": 0.33516483516483514, "y": 0.6228463349444348 }, { "posteriors": "curve_38", "x": 0.34065934065934067, "y": 0.6307148772369418 }, { "posteriors": "curve_38", "x": 0.34615384615384615, "y": 0.6385545426936957 }, { "posteriors": "curve_38", "x": 0.3516483516483517, "y": 0.6463658931876732 }, { "posteriors": "curve_38", "x": 0.35714285714285715, "y": 0.6541494710646224 }, { "posteriors": "curve_38", "x": 0.3626373626373626, "y": 0.6619058001112473 }, { "posteriors": "curve_38", "x": 0.36813186813186816, "y": 0.6696353864614651 }, { "posteriors": "curve_38", "x": 0.37362637362637363, "y": 0.6773387194455627 }, { "posteriors": "curve_38", "x": 0.3791208791208791, "y": 0.6850162723866355 }, { "posteriors": "curve_38", "x": 0.38461538461538464, "y": 0.6926685033482983 }, { "posteriors": "curve_38", "x": 0.3901098901098901, "y": 0.7002958558372988 }, { "posteriors": "curve_38", "x": 0.3956043956043956, "y": 0.7078987594643544 }, { "posteriors": "curve_38", "x": 0.4010989010989011, "y": 0.7154776305662381 }, { "posteriors": "curve_38", "x": 0.4065934065934066, "y": 0.7230328727918856 }, { "posteriors": "curve_38", "x": 0.41208791208791207, "y": 0.7305648776550624 }, { "posteriors": "curve_38", "x": 0.4175824175824176, "y": 0.7380740250559195 }, { "posteriors": "curve_38", "x": 0.4230769230769231, "y": 0.7455606837735721 }, { "posteriors": "curve_38", "x": 0.42857142857142855, "y": 0.7530252119316695 }, { "posteriors": "curve_38", "x": 0.4340659340659341, "y": 0.7604679574387628 }, { "posteriors": "curve_38", "x": 0.43956043956043955, "y": 0.7678892584051339 }, { "posteriors": "curve_38", "x": 0.44505494505494503, "y": 0.7752894435376263 }, { "posteriors": "curve_38", "x": 0.45054945054945056, "y": 0.7826688325138923 }, { "posteriors": "curve_38", "x": 0.45604395604395603, "y": 0.7900277363373687 }, { "posteriors": "curve_38", "x": 0.46153846153846156, "y": 0.7973664576741927 }, { "posteriors": "curve_38", "x": 0.46703296703296704, "y": 0.8046852911731811 }, { "posteriors": "curve_38", "x": 0.4725274725274725, "y": 0.8119845237699148 }, { "posteriors": "curve_38", "x": 0.47802197802197804, "y": 0.8192644349758889 }, { "posteriors": "curve_38", "x": 0.4835164835164835, "y": 0.8265252971536304 }, { "posteriors": "curve_38", "x": 0.489010989010989, "y": 0.8337673757786133 }, { "posteriors": "curve_38", "x": 0.4945054945054945, "y": 0.8409909296887451 }, { "posteriors": "curve_38", "x": 0.5, "y": 0.8481962113221473 }, { "posteriors": "curve_38", "x": 0.5054945054945055, "y": 0.8553834669439021 }, { "posteriors": "curve_38", "x": 0.510989010989011, "y": 0.8625529368623892 }, { "posteriors": "curve_38", "x": 0.5164835164835165, "y": 0.8697048556357998 }, { "posteriors": "curve_38", "x": 0.521978021978022, "y": 0.8768394522693711 }, { "posteriors": "curve_38", "x": 0.5274725274725275, "y": 0.8839569504038551 }, { "posteriors": "curve_38", "x": 0.532967032967033, "y": 0.8910575684956934 }, { "posteriors": "curve_38", "x": 0.5384615384615384, "y": 0.8981415199893491 }, { "posteriors": "curve_38", "x": 0.5439560439560439, "y": 0.9052090134822111 }, { "posteriors": "curve_38", "x": 0.5494505494505495, "y": 0.9122602528824639 }, { "posteriors": "curve_38", "x": 0.554945054945055, "y": 0.9192954375602895 }, { "posteriors": "curve_38", "x": 0.5604395604395604, "y": 0.9263147624927471 }, { "posteriors": "curve_38", "x": 0.5659340659340659, "y": 0.9333184184026528 }, { "posteriors": "curve_38", "x": 0.5714285714285714, "y": 0.9403065918917648 }, { "posteriors": "curve_38", "x": 0.5769230769230769, "y": 0.9472794655685604 }, { "posteriors": "curve_38", "x": 0.5824175824175825, "y": 0.9542372181708724 }, { "posteriors": "curve_38", "x": 0.5879120879120879, "y": 0.961180024683639 }, { "posteriors": "curve_38", "x": 0.5934065934065934, "y": 0.9681080564520055 }, { "posteriors": "curve_38", "x": 0.5989010989010989, "y": 0.9750214812900035 }, { "posteriors": "curve_38", "x": 0.6043956043956044, "y": 0.9819204635850176 }, { "posteriors": "curve_38", "x": 0.6098901098901099, "y": 0.9888051643982418 }, { "posteriors": "curve_38", "x": 0.6153846153846154, "y": 0.9956757415613118 }, { "posteriors": "curve_38", "x": 0.6208791208791209, "y": 1.002532349769295 }, { "posteriors": "curve_38", "x": 0.6263736263736264, "y": 1.009375140670203 }, { "posteriors": "curve_38", "x": 0.6318681318681318, "y": 1.0162042629511874 }, { "posteriors": "curve_38", "x": 0.6373626373626373, "y": 1.02301986242157 }, { "posteriors": "curve_38", "x": 0.6428571428571429, "y": 1.0298220820928516 }, { "posteriors": "curve_38", "x": 0.6483516483516484, "y": 1.0366110622558264 }, { "posteriors": "curve_38", "x": 0.6538461538461539, "y": 1.0433869405549439 }, { "posteriors": "curve_38", "x": 0.6593406593406593, "y": 1.0501498520600234 }, { "posteriors": "curve_38", "x": 0.6648351648351648, "y": 1.0568999293354502 }, { "posteriors": "curve_38", "x": 0.6703296703296703, "y": 1.0636373025069523 }, { "posteriors": "curve_38", "x": 0.6758241758241759, "y": 1.0703620993260665 }, { "posteriors": "curve_38", "x": 0.6813186813186813, "y": 1.0770744452323897 }, { "posteriors": "curve_38", "x": 0.6868131868131868, "y": 1.0837744634137119 }, { "posteriors": "curve_38", "x": 0.6923076923076923, "y": 1.0904622748641122 }, { "posteriors": "curve_38", "x": 0.6978021978021978, "y": 1.0971379984401128 }, { "posteriors": "curve_38", "x": 0.7032967032967034, "y": 1.1038017509149614 }, { "posteriors": "curve_38", "x": 0.7087912087912088, "y": 1.1104536470311221 }, { "posteriors": "curve_38", "x": 0.7142857142857143, "y": 1.1170937995510501 }, { "posteriors": "curve_38", "x": 0.7197802197802198, "y": 1.1237223193063135 }, { "posteriors": "curve_38", "x": 0.7252747252747253, "y": 1.1303393152451329 }, { "posteriors": "curve_38", "x": 0.7307692307692307, "y": 1.1369448944783984 }, { "posteriors": "curve_38", "x": 0.7362637362637363, "y": 1.1435391623242261 }, { "posteriors": "curve_38", "x": 0.7417582417582418, "y": 1.1501222223511085 }, { "posteriors": "curve_38", "x": 0.7472527472527473, "y": 1.156694176419716 }, { "posteriors": "curve_38", "x": 0.7527472527472527, "y": 1.1632551247233993 }, { "posteriors": "curve_38", "x": 0.7582417582417582, "y": 1.1698051658274415 }, { "posteriors": "curve_38", "x": 0.7637362637362637, "y": 1.1763443967071123 }, { "posteriors": "curve_38", "x": 0.7692307692307693, "y": 1.1828729127845612 }, { "posteriors": "curve_38", "x": 0.7747252747252747, "y": 1.1893908079645994 }, { "posteriors": "curve_38", "x": 0.7802197802197802, "y": 1.1958981746694108 }, { "posteriors": "curve_38", "x": 0.7857142857142857, "y": 1.202395103872229 }, { "posteriors": "curve_38", "x": 0.7912087912087912, "y": 1.2088816851300177 }, { "posteriors": "curve_38", "x": 0.7967032967032966, "y": 1.2153580066151966 }, { "posteriors": "curve_38", "x": 0.8021978021978022, "y": 1.2218241551464377 }, { "posteriors": "curve_38", "x": 0.8076923076923077, "y": 1.2282802162185757 }, { "posteriors": "curve_38", "x": 0.8131868131868132, "y": 1.234726274031654 }, { "posteriors": "curve_38", "x": 0.8186813186813187, "y": 1.2411624115191449 }, { "posteriors": "curve_38", "x": 0.8241758241758241, "y": 1.2475887103753684 }, { "posteriors": "curve_38", "x": 0.8296703296703297, "y": 1.254005251082139 }, { "posteriors": "curve_38", "x": 0.8351648351648352, "y": 1.2604121129346646 }, { "posteriors": "curve_38", "x": 0.8406593406593407, "y": 1.2668093740667317 }, { "posteriors": "curve_38", "x": 0.8461538461538461, "y": 1.2731971114751868 }, { "posteriors": "curve_38", "x": 0.8516483516483516, "y": 1.2795754010437532 }, { "posteriors": "curve_38", "x": 0.8571428571428571, "y": 1.2859443175661953 }, { "posteriors": "curve_38", "x": 0.8626373626373627, "y": 1.292303934768855 }, { "posteriors": "curve_38", "x": 0.8681318681318682, "y": 1.298654325332584 }, { "posteriors": "curve_38", "x": 0.8736263736263736, "y": 1.304995560914087 }, { "posteriors": "curve_38", "x": 0.8791208791208791, "y": 1.3113277121667013 }, { "posteriors": "curve_38", "x": 0.8846153846153846, "y": 1.3176508487606227 }, { "posteriors": "curve_38", "x": 0.8901098901098901, "y": 1.3239650394026052 }, { "posteriors": "curve_38", "x": 0.8956043956043956, "y": 1.3302703518551449 }, { "posteriors": "curve_38", "x": 0.9010989010989011, "y": 1.3365668529551655 }, { "posteriors": "curve_38", "x": 0.9065934065934066, "y": 1.3428546086322257 }, { "posteriors": "curve_38", "x": 0.9120879120879121, "y": 1.3491336839262569 }, { "posteriors": "curve_38", "x": 0.9175824175824175, "y": 1.3554041430048516 }, { "posteriors": "curve_38", "x": 0.9230769230769231, "y": 1.3616660491801136 }, { "posteriors": "curve_38", "x": 0.9285714285714286, "y": 1.3679194649250839 }, { "posteriors": "curve_38", "x": 0.9340659340659341, "y": 1.374164451889758 }, { "posteriors": "curve_38", "x": 0.9395604395604396, "y": 1.3804010709167025 }, { "posteriors": "curve_38", "x": 0.945054945054945, "y": 1.3866293820562865 }, { "posteriors": "curve_38", "x": 0.9505494505494505, "y": 1.3928494445815414 }, { "posteriors": "curve_38", "x": 0.9560439560439561, "y": 1.3990613170026536 }, { "posteriors": "curve_38", "x": 0.9615384615384616, "y": 1.4052650570811085 }, { "posteriors": "curve_38", "x": 0.967032967032967, "y": 1.411460721843491 }, { "posteriors": "curve_38", "x": 0.9725274725274725, "y": 1.417648367594957 }, { "posteriors": "curve_38", "x": 0.978021978021978, "y": 1.4238280499323803 }, { "posteriors": "curve_38", "x": 0.9835164835164835, "y": 1.42999982375719 }, { "posteriors": "curve_38", "x": 0.989010989010989, "y": 1.4361637432879035 }, { "posteriors": "curve_38", "x": 0.9945054945054945, "y": 1.4423198620723654 }, { "posteriors": "curve_39", "x": 0, "y": 0 }, { "posteriors": "curve_39", "x": 0.005494505494505495, "y": 0.026222500865666333 }, { "posteriors": "curve_39", "x": 0.01098901098901099, "y": 0.044907075166841184 }, { "posteriors": "curve_39", "x": 0.016483516483516484, "y": 0.061515675273830284 }, { "posteriors": "curve_39", "x": 0.02197802197802198, "y": 0.07690515143354465 }, { "posteriors": "curve_39", "x": 0.027472527472527472, "y": 0.09144730787063964 }, { "posteriors": "curve_39", "x": 0.03296703296703297, "y": 0.1053480393656074 }, { "posteriors": "curve_39", "x": 0.038461538461538464, "y": 0.11873708145735075 }, { "posteriors": "curve_39", "x": 0.04395604395604396, "y": 0.13170312907360204 }, { "posteriors": "curve_39", "x": 0.04945054945054945, "y": 0.14431035101423292 }, { "posteriors": "curve_39", "x": 0.054945054945054944, "y": 0.1566071500727446 }, { "posteriors": "curve_39", "x": 0.06043956043956044, "y": 0.16863122722610796 }, { "posteriors": "curve_39", "x": 0.06593406593406594, "y": 0.18041270535965187 }, { "posteriors": "curve_39", "x": 0.07142857142857142, "y": 0.19197615646410546 }, { "posteriors": "curve_39", "x": 0.07692307692307693, "y": 0.20334197220212777 }, { "posteriors": "curve_39", "x": 0.08241758241758242, "y": 0.21452732233490981 }, { "posteriors": "curve_39", "x": 0.08791208791208792, "y": 0.22554684418984175 }, { "posteriors": "curve_39", "x": 0.09340659340659341, "y": 0.2364131507497045 }, { "posteriors": "curve_39", "x": 0.0989010989010989, "y": 0.24713721294350385 }, { "posteriors": "curve_39", "x": 0.1043956043956044, "y": 0.2577286525429455 }, { "posteriors": "curve_39", "x": 0.10989010989010989, "y": 0.26819597017116215 }, { "posteriors": "curve_39", "x": 0.11538461538461539, "y": 0.27854672532230723 }, { "posteriors": "curve_39", "x": 0.12087912087912088, "y": 0.2887876802946224 }, { "posteriors": "curve_39", "x": 0.12637362637362637, "y": 0.2989249165806979 }, { "posteriors": "curve_39", "x": 0.13186813186813187, "y": 0.3089639299524984 }, { "posteriors": "curve_39", "x": 0.13736263736263737, "y": 0.3189097088652171 }, { "posteriors": "curve_39", "x": 0.14285714285714285, "y": 0.3287667996557346 }, { "posteriors": "curve_39", "x": 0.14835164835164835, "y": 0.3385393611815003 }, { "posteriors": "curve_39", "x": 0.15384615384615385, "y": 0.3482312109372733 }, { "posteriors": "curve_39", "x": 0.15934065934065933, "y": 0.35784586423538606 }, { "posteriors": "curve_39", "x": 0.16483516483516483, "y": 0.36738656769571104 }, { "posteriors": "curve_39", "x": 0.17032967032967034, "y": 0.37685632803359564 }, { "posteriors": "curve_39", "x": 0.17582417582417584, "y": 0.3862579369360873 }, { "posteriors": "curve_39", "x": 0.1813186813186813, "y": 0.395593992663413 }, { "posteriors": "curve_39", "x": 0.18681318681318682, "y": 0.40486691889282406 }, { "posteriors": "curve_39", "x": 0.19230769230769232, "y": 0.4140789812274703 }, { "posteriors": "curve_39", "x": 0.1978021978021978, "y": 0.4232323017179755 }, { "posteriors": "curve_39", "x": 0.2032967032967033, "y": 0.4323288716844128 }, { "posteriors": "curve_39", "x": 0.2087912087912088, "y": 0.4413705630780862 }, { "posteriors": "curve_39", "x": 0.21428571428571427, "y": 0.45035913858339993 }, { "posteriors": "curve_39", "x": 0.21978021978021978, "y": 0.4592962606281997 }, { "posteriors": "curve_39", "x": 0.22527472527472528, "y": 0.4681834994448262 }, { "posteriors": "curve_39", "x": 0.23076923076923078, "y": 0.4770223403025699 }, { "posteriors": "curve_39", "x": 0.23626373626373626, "y": 0.4858141900143728 }, { "posteriors": "curve_39", "x": 0.24175824175824176, "y": 0.4945603828057599 }, { "posteriors": "curve_39", "x": 0.24725274725274726, "y": 0.5032621856215655 }, { "posteriors": "curve_39", "x": 0.25274725274725274, "y": 0.511920802935591 }, { "posteriors": "curve_39", "x": 0.25824175824175827, "y": 0.5205373811195256 }, { "posteriors": "curve_39", "x": 0.26373626373626374, "y": 0.5291130124200278 }, { "posteriors": "curve_39", "x": 0.2692307692307692, "y": 0.5376487385865242 }, { "posteriors": "curve_39", "x": 0.27472527472527475, "y": 0.5461455541868977 }, { "posteriors": "curve_39", "x": 0.2802197802197802, "y": 0.5546044096436094 }, { "posteriors": "curve_39", "x": 0.2857142857142857, "y": 0.5630262140188408 }, { "posteriors": "curve_39", "x": 0.29120879120879123, "y": 0.5714118375738229 }, { "posteriors": "curve_39", "x": 0.2967032967032967, "y": 0.5797621141245682 }, { "posteriors": "curve_39", "x": 0.3021978021978022, "y": 0.5880778432136713 }, { "posteriors": "curve_39", "x": 0.3076923076923077, "y": 0.5963597921156133 }, { "posteriors": "curve_39", "x": 0.3131868131868132, "y": 0.6046086976910775 }, { "posteriors": "curve_39", "x": 0.31868131868131866, "y": 0.6128252681040911 }, { "posteriors": "curve_39", "x": 0.3241758241758242, "y": 0.6210101844143265 }, { "posteriors": "curve_39", "x": 0.32967032967032966, "y": 0.6291641020555975 }, { "posteriors": "curve_39", "x": 0.33516483516483514, "y": 0.6372876522104447 }, { "posteriors": "curve_39", "x": 0.34065934065934067, "y": 0.6453814430896924 }, { "posteriors": "curve_39", "x": 0.34615384615384615, "y": 0.6534460611249727 }, { "posteriors": "curve_39", "x": 0.3516483516483517, "y": 0.6614820720814233 }, { "posteriors": "curve_39", "x": 0.35714285714285715, "y": 0.6694900220970605 }, { "posteriors": "curve_39", "x": 0.3626373626373626, "y": 0.6774704386547187 }, { "posteriors": "curve_39", "x": 0.36813186813186816, "y": 0.6854238314918779 }, { "posteriors": "curve_39", "x": 0.37362637362637363, "y": 0.6933506934532212 }, { "posteriors": "curve_39", "x": 0.3791208791208791, "y": 0.7012515012903121 }, { "posteriors": "curve_39", "x": 0.38461538461538464, "y": 0.7091267164123903 }, { "posteriors": "curve_39", "x": 0.3901098901098901, "y": 0.7169767855919292 }, { "posteriors": "curve_39", "x": 0.3956043956043956, "y": 0.7248021416282782 }, { "posteriors": "curve_39", "x": 0.4010989010989011, "y": 0.7326032039724273 }, { "posteriors": "curve_39", "x": 0.4065934065934066, "y": 0.7403803793156716 }, { "posteriors": "curve_39", "x": 0.41208791208791207, "y": 0.7481340621447223 }, { "posteriors": "curve_39", "x": 0.4175824175824176, "y": 0.7558646352655953 }, { "posteriors": "curve_39", "x": 0.4230769230769231, "y": 0.763572470298424 }, { "posteriors": "curve_39", "x": 0.42857142857142855, "y": 0.7712579281451641 }, { "posteriors": "curve_39", "x": 0.4340659340659341, "y": 0.778921359432004 }, { "posteriors": "curve_39", "x": 0.43956043956043955, "y": 0.7865631049281515 }, { "posteriors": "curve_39", "x": 0.44505494505494503, "y": 0.794183495942538 }, { "posteriors": "curve_39", "x": 0.45054945054945056, "y": 0.8017828546998622 }, { "posteriors": "curve_39", "x": 0.45604395604395603, "y": 0.8093614946972856 }, { "posteriors": "curve_39", "x": 0.46153846153846156, "y": 0.8169197210430015 }, { "posteriors": "curve_39", "x": 0.46703296703296704, "y": 0.8244578307777971 }, { "posteriors": "curve_39", "x": 0.4725274725274725, "y": 0.8319761131806579 }, { "posteriors": "curve_39", "x": 0.47802197802197804, "y": 0.8394748500593787 }, { "posteriors": "curve_39", "x": 0.4835164835164835, "y": 0.8469543160270828 }, { "posteriors": "curve_39", "x": 0.489010989010989, "y": 0.8544147787654842 }, { "posteriors": "curve_39", "x": 0.4945054945054945, "y": 0.8618564992756708 }, { "posteriors": "curve_39", "x": 0.5, "y": 0.8692797321171286 }, { "posteriors": "curve_39", "x": 0.5054945054945055, "y": 0.876684725635688 }, { "posteriors": "curve_39", "x": 0.510989010989011, "y": 0.884071722181013 }, { "posteriors": "curve_39", "x": 0.5164835164835165, "y": 0.8914409583142254 }, { "posteriors": "curve_39", "x": 0.521978021978022, "y": 0.8987926650062087 }, { "posteriors": "curve_39", "x": 0.5274725274725275, "y": 0.9061270678271055 }, { "posteriors": "curve_39", "x": 0.532967032967033, "y": 0.9134443871274858 }, { "posteriors": "curve_39", "x": 0.5384615384615384, "y": 0.9207448382116347 }, { "posteriors": "curve_39", "x": 0.5439560439560439, "y": 0.9280286315033796 }, { "posteriors": "curve_39", "x": 0.5494505494505495, "y": 0.9352959727048497 }, { "posteriors": "curve_39", "x": 0.554945054945055, "y": 0.9425470629485356 }, { "posteriors": "curve_39", "x": 0.5604395604395604, "y": 0.9497820989429979 }, { "posteriors": "curve_39", "x": 0.5659340659340659, "y": 0.9570012731125478 }, { "posteriors": "curve_39", "x": 0.5714285714285714, "y": 0.9642047737312037 }, { "posteriors": "curve_39", "x": 0.5769230769230769, "y": 0.9713927850512154 }, { "posteriors": "curve_39", "x": 0.5824175824175825, "y": 0.9785654874264208 }, { "posteriors": "curve_39", "x": 0.5879120879120879, "y": 0.9857230574306931 }, { "posteriors": "curve_39", "x": 0.5934065934065934, "y": 0.9928656679717176 }, { "posteriors": "curve_39", "x": 0.5989010989010989, "y": 0.9999934884003217 }, { "posteriors": "curve_39", "x": 0.6043956043956044, "y": 1.007106684615572 }, { "posteriors": "curve_39", "x": 0.6098901098901099, "y": 1.0142054191658423 }, { "posteriors": "curve_39", "x": 0.6153846153846154, "y": 1.021289851346035 }, { "posteriors": "curve_39", "x": 0.6208791208791209, "y": 1.028360137291143 }, { "posteriors": "curve_39", "x": 0.6263736263736264, "y": 1.0354164300663184 }, { "posteriors": "curve_39", "x": 0.6318681318681318, "y": 1.0424588797536012 }, { "posteriors": "curve_39", "x": 0.6373626373626373, "y": 1.049487633535472 }, { "posteriors": "curve_39", "x": 0.6428571428571429, "y": 1.056502835775362 }, { "posteriors": "curve_39", "x": 0.6483516483516484, "y": 1.0635046280952587 }, { "posteriors": "curve_39", "x": 0.6538461538461539, "y": 1.0704931494505379 }, { "posteriors": "curve_39", "x": 0.6593406593406593, "y": 1.0774685362021403 }, { "posteriors": "curve_39", "x": 0.6648351648351648, "y": 1.0844309221862112 }, { "posteriors": "curve_39", "x": 0.6703296703296703, "y": 1.0913804387813093 }, { "posteriors": "curve_39", "x": 0.6758241758241759, "y": 1.0983172149732938 }, { "posteriors": "curve_39", "x": 0.6813186813186813, "y": 1.105241377417981 }, { "posteriors": "curve_39", "x": 0.6868131868131868, "y": 1.1121530505016728 }, { "posteriors": "curve_39", "x": 0.6923076923076923, "y": 1.119052356399638 }, { "posteriors": "curve_39", "x": 0.6978021978021978, "y": 1.1259394151326376 }, { "posteriors": "curve_39", "x": 0.7032967032967034, "y": 1.1328143446215693 }, { "posteriors": "curve_39", "x": 0.7087912087912088, "y": 1.1396772607403114 }, { "posteriors": "curve_39", "x": 0.7142857142857143, "y": 1.146528277366839 }, { "posteriors": "curve_39", "x": 0.7197802197802198, "y": 1.1533675064326787 }, { "posteriors": "curve_39", "x": 0.7252747252747253, "y": 1.1601950579707703 }, { "posteriors": "curve_39", "x": 0.7307692307692307, "y": 1.1670110401618001 }, { "posteriors": "curve_39", "x": 0.7362637362637363, "y": 1.1738155593790616 }, { "posteriors": "curve_39", "x": 0.7417582417582418, "y": 1.1806087202319042 }, { "posteriors": "curve_39", "x": 0.7472527472527473, "y": 1.1873906256078248 }, { "posteriors": "curve_39", "x": 0.7527472527472527, "y": 1.1941613767132497 }, { "posteriors": "curve_39", "x": 0.7582417582417582, "y": 1.2009210731130648 }, { "posteriors": "curve_39", "x": 0.7637362637362637, "y": 1.2076698127689323 }, { "posteriors": "curve_39", "x": 0.7692307692307693, "y": 1.2144076920764473 }, { "posteriors": "curve_39", "x": 0.7747252747252747, "y": 1.2211348059011722 }, { "posteriors": "curve_39", "x": 0.7802197802197802, "y": 1.2278512476135937 }, { "posteriors": "curve_39", "x": 0.7857142857142857, "y": 1.2345571091230394 }, { "posteriors": "curve_39", "x": 0.7912087912087912, "y": 1.2412524809105951 }, { "posteriors": "curve_39", "x": 0.7967032967032966, "y": 1.2479374520610558 }, { "posteriors": "curve_39", "x": 0.8021978021978022, "y": 1.2546121102939467 }, { "posteriors": "curve_39", "x": 0.8076923076923077, "y": 1.261276541993649 }, { "posteriors": "curve_39", "x": 0.8131868131868132, "y": 1.2679308322386587 }, { "posteriors": "curve_39", "x": 0.8186813186813187, "y": 1.274575064830012 }, { "posteriors": "curve_39", "x": 0.8241758241758241, "y": 1.2812093223189058 }, { "posteriors": "curve_39", "x": 0.8296703296703297, "y": 1.2878336860335398 }, { "posteriors": "curve_39", "x": 0.8351648351648352, "y": 1.2944482361052085 }, { "posteriors": "curve_39", "x": 0.8406593406593407, "y": 1.3010530514936716 }, { "posteriors": "curve_39", "x": 0.8461538461538461, "y": 1.3076482100118187 }, { "posteriors": "curve_39", "x": 0.8516483516483516, "y": 1.3142337883496633 }, { "posteriors": "curve_39", "x": 0.8571428571428571, "y": 1.3208098620976818 }, { "posteriors": "curve_39", "x": 0.8626373626373627, "y": 1.3273765057695186 }, { "posteriors": "curve_39", "x": 0.8681318681318682, "y": 1.3339337928240844 }, { "posteriors": "curve_39", "x": 0.8736263736263736, "y": 1.340481795687062 }, { "posteriors": "curve_39", "x": 0.8791208791208791, "y": 1.3470205857718418 }, { "posteriors": "curve_39", "x": 0.8846153846153846, "y": 1.3535502334999046 }, { "posteriors": "curve_39", "x": 0.8901098901098901, "y": 1.3600708083206698 }, { "posteriors": "curve_39", "x": 0.8956043956043956, "y": 1.366582378730829 }, { "posteriors": "curve_39", "x": 0.9010989010989011, "y": 1.3730850122931741 }, { "posteriors": "curve_39", "x": 0.9065934065934066, "y": 1.379578775654945 }, { "posteriors": "curve_39", "x": 0.9120879120879121, "y": 1.3860637345657065 }, { "posteriors": "curve_39", "x": 0.9175824175824175, "y": 1.39253995389477 }, { "posteriors": "curve_39", "x": 0.9230769230769231, "y": 1.3990074976481768 }, { "posteriors": "curve_39", "x": 0.9285714285714286, "y": 1.4054664289852508 }, { "posteriors": "curve_39", "x": 0.9340659340659341, "y": 1.4119168102347424 }, { "posteriors": "curve_39", "x": 0.9395604395604396, "y": 1.418358702910568 }, { "posteriors": "curve_39", "x": 0.945054945054945, "y": 1.4247921677271644 }, { "posteriors": "curve_39", "x": 0.9505494505494505, "y": 1.4312172646144619 }, { "posteriors": "curve_39", "x": 0.9560439560439561, "y": 1.4376340527324956 }, { "posteriors": "curve_39", "x": 0.9615384615384616, "y": 1.4440425904856606 }, { "posteriors": "curve_39", "x": 0.967032967032967, "y": 1.4504429355366253 }, { "posteriors": "curve_39", "x": 0.9725274725274725, "y": 1.456835144819908 }, { "posteriors": "curve_39", "x": 0.978021978021978, "y": 1.4632192745551313 }, { "posteriors": "curve_39", "x": 0.9835164835164835, "y": 1.469595380259963 }, { "posteriors": "curve_39", "x": 0.989010989010989, "y": 1.4759635167627507 }, { "posteriors": "curve_39", "x": 0.9945054945054945, "y": 1.48232373821486 }, { "posteriors": "curve_40", "x": 0, "y": 0 }, { "posteriors": "curve_40", "x": 0.005494505494505495, "y": 0.025574582689359516 }, { "posteriors": "curve_40", "x": 0.01098901098901099, "y": 0.04369685025627143 }, { "posteriors": "curve_40", "x": 0.016483516483516484, "y": 0.05977736018863195 }, { "posteriors": "curve_40", "x": 0.02197802197802198, "y": 0.07466064043005612 }, { "posteriors": "curve_40", "x": 0.027472527472527472, "y": 0.08871265371985639 }, { "posteriors": "curve_40", "x": 0.03296703296703297, "y": 0.10213587406705278 }, { "posteriors": "curve_40", "x": 0.038461538461538464, "y": 0.11505779150122145 }, { "posteriors": "curve_40", "x": 0.04395604395604396, "y": 0.12756551551735956 }, { "posteriors": "curve_40", "x": 0.04945054945054945, "y": 0.13972203709146547 }, { "posteriors": "curve_40", "x": 0.054945054945054944, "y": 0.15157485040981158 }, { "posteriors": "curve_40", "x": 0.06043956043956044, "y": 0.16316093484446645 }, { "posteriors": "curve_40", "x": 0.06593406593406594, "y": 0.17450982677258978 }, { "posteriors": "curve_40", "x": 0.07142857142857142, "y": 0.18564561239864438 }, { "posteriors": "curve_40", "x": 0.07692307692307693, "y": 0.19658827465982337 }, { "posteriors": "curve_40", "x": 0.08241758241758242, "y": 0.20735463483858096 }, { "posteriors": "curve_40", "x": 0.08791208791208792, "y": 0.21795902975751466 }, { "posteriors": "curve_40", "x": 0.09340659340659341, "y": 0.22841381070358427 }, { "posteriors": "curve_40", "x": 0.0989010989010989, "y": 0.23872971873856494 }, { "posteriors": "curve_40", "x": 0.1043956043956044, "y": 0.24891617218682538 }, { "posteriors": "curve_40", "x": 0.10989010989010989, "y": 0.25898149038928275 }, { "posteriors": "curve_40", "x": 0.11538461538461539, "y": 0.26893307033074715 }, { "posteriors": "curve_40", "x": 0.12087912087912088, "y": 0.2787775278358007 }, { "posteriors": "curve_40", "x": 0.12637362637362637, "y": 0.2885208117265156 }, { "posteriors": "curve_40", "x": 0.13186813186813187, "y": 0.298168297068729 }, { "posteriors": "curve_40", "x": 0.13736263736263737, "y": 0.3077248620480323 }, { "posteriors": "curve_40", "x": 0.14285714285714285, "y": 0.3171949518884028 }, { "posteriors": "curve_40", "x": 0.14835164835164835, "y": 0.32658263241108226 }, { "posteriors": "curve_40", "x": 0.15384615384615385, "y": 0.33589163523372406 }, { "posteriors": "curve_40", "x": 0.15934065934065933, "y": 0.34512539616614935 }, { "posteriors": "curve_40", "x": 0.16483516483516483, "y": 0.3542870880256866 }, { "posteriors": "curve_40", "x": 0.17032967032967034, "y": 0.3633796488418371 }, { "posteriors": "curve_40", "x": 0.17582417582417584, "y": 0.372405806225683 }, { "posteriors": "curve_40", "x": 0.1813186813186813, "y": 0.3813680985289165 }, { "posteriors": "curve_40", "x": 0.18681318681318682, "y": 0.390268893299733 }, { "posteriors": "curve_40", "x": 0.19230769230769232, "y": 0.399110403450142 }, { "posteriors": "curve_40", "x": 0.1978021978021978, "y": 0.40789470147565937 }, { "posteriors": "curve_40", "x": 0.2032967032967033, "y": 0.41662373200950387 }, { "posteriors": "curve_40", "x": 0.2087912087912088, "y": 0.4252993229460348 }, { "posteriors": "curve_40", "x": 0.21428571428571427, "y": 0.4339231953297943 }, { "posteriors": "curve_40", "x": 0.21978021978021978, "y": 0.4424969721752241 }, { "posteriors": "curve_40", "x": 0.22527472527472528, "y": 0.45102218635648594 }, { "posteriors": "curve_40", "x": 0.23076923076923078, "y": 0.4595002876856824 }, { "posteriors": "curve_40", "x": 0.23626373626373626, "y": 0.46793264928026923 }, { "posteriors": "curve_40", "x": 0.24175824175824176, "y": 0.47632057330588645 }, { "posteriors": "curve_40", "x": 0.24725274725274726, "y": 0.4846652961686519 }, { "posteriors": "curve_40", "x": 0.25274725274725274, "y": 0.4929679932207398 }, { "posteriors": "curve_40", "x": 0.25824175824175827, "y": 0.5012297830344392 }, { "posteriors": "curve_40", "x": 0.26373626373626374, "y": 0.5094517312925899 }, { "posteriors": "curve_40", "x": 0.2692307692307692, "y": 0.5176348543370926 }, { "posteriors": "curve_40", "x": 0.27472527472527475, "y": 0.5257801224118978 }, { "posteriors": "curve_40", "x": 0.2802197802197802, "y": 0.5338884626323536 }, { "posteriors": "curve_40", "x": 0.2857142857142857, "y": 0.5419607617089088 }, { "posteriors": "curve_40", "x": 0.29120879120879123, "y": 0.549997868449817 }, { "posteriors": "curve_40", "x": 0.2967032967032967, "y": 0.5580005960645994 }, { "posteriors": "curve_40", "x": 0.3021978021978022, "y": 0.5659697242875206 }, { "posteriors": "curve_40", "x": 0.3076923076923077, "y": 0.5739060013381497 }, { "posteriors": "curve_40", "x": 0.3131868131868132, "y": 0.5818101457341915 }, { "posteriors": "curve_40", "x": 0.31868131868131866, "y": 0.5896828479701095 }, { "posteriors": "curve_40", "x": 0.3241758241758242, "y": 0.597524772073617 }, { "posteriors": "curve_40", "x": 0.32967032967032966, "y": 0.6053365570508392 }, { "posteriors": "curve_40", "x": 0.33516483516483514, "y": 0.6131188182298288 }, { "posteriors": "curve_40", "x": 0.34065934065934067, "y": 0.6208721485111321 }, { "posteriors": "curve_40", "x": 0.34615384615384615, "y": 0.6285971195332286 }, { "posteriors": "curve_40", "x": 0.3516483516483517, "y": 0.6362942827598975 }, { "posteriors": "curve_40", "x": 0.35714285714285715, "y": 0.6439641704958772 }, { "posteriors": "curve_40", "x": 0.3626373626373626, "y": 0.6516072968365755 }, { "posteriors": "curve_40", "x": 0.36813186813186816, "y": 0.6592241585570461 }, { "posteriors": "curve_40", "x": 0.37362637362637363, "y": 0.6668152359449621 }, { "posteriors": "curve_40", "x": 0.3791208791208791, "y": 0.6743809935818866 }, { "posteriors": "curve_40", "x": 0.38461538461538464, "y": 0.68192188107675 }, { "posteriors": "curve_40", "x": 0.3901098901098901, "y": 0.6894383337550979 }, { "posteriors": "curve_40", "x": 0.3956043956043956, "y": 0.696930773307363 }, { "posteriors": "curve_40", "x": 0.4010989010989011, "y": 0.70439960839913 }, { "posteriors": "curve_40", "x": 0.4065934065934066, "y": 0.7118452352461112 }, { "posteriors": "curve_40", "x": 0.41208791208791207, "y": 0.719268038156324 }, { "posteriors": "curve_40", "x": 0.4175824175824176, "y": 0.7266683900417507 }, { "posteriors": "curve_40", "x": 0.4230769230769231, "y": 0.7340466529015782 }, { "posteriors": "curve_40", "x": 0.42857142857142855, "y": 0.7414031782789452 }, { "posteriors": "curve_40", "x": 0.4340659340659341, "y": 0.7487383076929671 }, { "posteriors": "curve_40", "x": 0.43956043956043955, "y": 0.7560523730476759 }, { "posteriors": "curve_40", "x": 0.44505494505494503, "y": 0.7633456970193777 }, { "posteriors": "curve_40", "x": 0.45054945054945056, "y": 0.7706185934238242 }, { "posteriors": "curve_40", "x": 0.45604395604395603, "y": 0.7778713675644758 }, { "posteriors": "curve_40", "x": 0.46153846153846156, "y": 0.7851043165630537 }, { "posteriors": "curve_40", "x": 0.46703296703296704, "y": 0.7923177296734756 }, { "posteriors": "curve_40", "x": 0.4725274725274725, "y": 0.7995118885801994 }, { "posteriors": "curve_40", "x": 0.47802197802197804, "y": 0.8066870676819198 }, { "posteriors": "curve_40", "x": 0.4835164835164835, "y": 0.8138435343614958 }, { "posteriors": "curve_40", "x": 0.489010989010989, "y": 0.82098154924293 }, { "posteriors": "curve_40", "x": 0.4945054945054945, "y": 0.828101366436154 }, { "posteriors": "curve_40", "x": 0.5, "y": 0.8352032337703311 }, { "posteriors": "curve_40", "x": 0.5054945054945055, "y": 0.8422873930163344 }, { "posteriors": "curve_40", "x": 0.510989010989011, "y": 0.849354080099013 }, { "posteriors": "curve_40", "x": 0.5164835164835165, "y": 0.8564035252998227 }, { "posteriors": "curve_40", "x": 0.521978021978022, "y": 0.8634359534503515 }, { "posteriors": "curve_40", "x": 0.5274725274725275, "y": 0.8704515841172477 }, { "posteriors": "curve_40", "x": 0.532967032967033, "y": 0.8774506317790093 }, { "posteriors": "curve_40", "x": 0.5384615384615384, "y": 0.8844333059950811 }, { "posteriors": "curve_40", "x": 0.5439560439560439, "y": 0.8913998115676643 }, { "posteriors": "curve_40", "x": 0.5494505494505495, "y": 0.8983503486966237 }, { "posteriors": "curve_40", "x": 0.554945054945055, "y": 0.9052851131278549 }, { "posteriors": "curve_40", "x": 0.5604395604395604, "y": 0.912204296295447 }, { "posteriors": "curve_40", "x": 0.5659340659340659, "y": 0.9191080854579622 }, { "posteriors": "curve_40", "x": 0.5714285714285714, "y": 0.9259966638291245 }, { "posteriors": "curve_40", "x": 0.5769230769230769, "y": 0.9328702107032052 }, { "posteriors": "curve_40", "x": 0.5824175824175825, "y": 0.9397289015753635 }, { "posteriors": "curve_40", "x": 0.5879120879120879, "y": 0.946572908257194 }, { "posteriors": "curve_40", "x": 0.5934065934065934, "y": 0.9534023989877131 }, { "posteriors": "curve_40", "x": 0.5989010989010989, "y": 0.9602175385400065 }, { "posteriors": "curve_40", "x": 0.6043956043956044, "y": 0.9670184883237433 }, { "posteriors": "curve_40", "x": 0.6098901098901099, "y": 0.9738054064837567 }, { "posteriors": "curve_40", "x": 0.6153846153846154, "y": 0.9805784479948707 }, { "posteriors": "curve_40", "x": 0.6208791208791209, "y": 0.9873377647531555 }, { "posteriors": "curve_40", "x": 0.6263736263736264, "y": 0.9940835056637681 }, { "posteriors": "curve_40", "x": 0.6318681318681318, "y": 1.000815816725542 }, { "posteriors": "curve_40", "x": 0.6373626373626373, "y": 1.0075348411124692 }, { "posteriors": "curve_40", "x": 0.6428571428571429, "y": 1.014240719252214 }, { "posteriors": "curve_40", "x": 0.6483516483516484, "y": 1.020933588901796 }, { "posteriors": "curve_40", "x": 0.6538461538461539, "y": 1.0276135852205623 }, { "posteriors": "curve_40", "x": 0.6593406593406593, "y": 1.0342808408405693 }, { "posteriors": "curve_40", "x": 0.6648351648351648, "y": 1.0409354859344893 }, { "posteriors": "curve_40", "x": 0.6703296703296703, "y": 1.0475776482811454 }, { "posteriors": "curve_40", "x": 0.6758241758241759, "y": 1.0542074533287782 }, { "posteriors": "curve_40", "x": 0.6813186813186813, "y": 1.0608250242561397 }, { "posteriors": "curve_40", "x": 0.6868131868131868, "y": 1.067430482031507 }, { "posteriors": "curve_40", "x": 0.6923076923076923, "y": 1.0740239454697016 }, { "posteriors": "curve_40", "x": 0.6978021978021978, "y": 1.0806055312871974 }, { "posteriors": "curve_40", "x": 0.7032967032967034, "y": 1.0871753541553952 }, { "posteriors": "curve_40", "x": 0.7087912087912088, "y": 1.0937335267521413 }, { "posteriors": "curve_40", "x": 0.7142857142857143, "y": 1.100280159811558 }, { "posteriors": "curve_40", "x": 0.7197802197802198, "y": 1.1068153621722532 }, { "posteriors": "curve_40", "x": 0.7252747252747253, "y": 1.1133392408239808 }, { "posteriors": "curve_40", "x": 0.7307692307692307, "y": 1.1198519009528023 }, { "posteriors": "curve_40", "x": 0.7362637362637363, "y": 1.1263534459848183 }, { "posteriors": "curve_40", "x": 0.7417582417582418, "y": 1.1328439776285186 }, { "posteriors": "curve_40", "x": 0.7472527472527473, "y": 1.13932359591581 }, { "posteriors": "curve_40", "x": 0.7527472527472527, "y": 1.1457923992417678 }, { "posteriors": "curve_40", "x": 0.7582417582417582, "y": 1.1522504844031627 }, { "posteriors": "curve_40", "x": 0.7637362637362637, "y": 1.1586979466358087 }, { "posteriors": "curve_40", "x": 0.7692307692307693, "y": 1.1651348796507746 }, { "posteriors": "curve_40", "x": 0.7747252747252747, "y": 1.1715613756695042 }, { "posteriors": "curve_40", "x": 0.7802197802197802, "y": 1.1779775254578853 }, { "posteriors": "curve_40", "x": 0.7857142857142857, "y": 1.1843834183593034 }, { "posteriors": "curve_40", "x": 0.7912087912087912, "y": 1.1907791423267193 }, { "posteriors": "curve_40", "x": 0.7967032967032966, "y": 1.197164783953807 }, { "posteriors": "curve_40", "x": 0.8021978021978022, "y": 1.203540428505184 }, { "posteriors": "curve_40", "x": 0.8076923076923077, "y": 1.2099061599457657 }, { "posteriors": "curve_40", "x": 0.8131868131868132, "y": 1.2162620609692782 }, { "posteriors": "curve_40", "x": 0.8186813186813187, "y": 1.2226082130259566 }, { "posteriors": "curve_40", "x": 0.8241758241758241, "y": 1.228944696349457 }, { "posteriors": "curve_40", "x": 0.8296703296703297, "y": 1.2352715899830136 }, { "posteriors": "curve_40", "x": 0.8351648351648352, "y": 1.2415889718048587 }, { "posteriors": "curve_40", "x": 0.8406593406593407, "y": 1.247896918552943 }, { "posteriors": "curve_40", "x": 0.8461538461538461, "y": 1.2541955058489678 }, { "posteriors": "curve_40", "x": 0.8516483516483516, "y": 1.2604848082217615 }, { "posteriors": "curve_40", "x": 0.8571428571428571, "y": 1.2667648991300167 }, { "posteriors": "curve_40", "x": 0.8626373626373627, "y": 1.2730358509844135 }, { "posteriors": "curve_40", "x": 0.8681318681318682, "y": 1.2792977351691457 }, { "posteriors": "curve_40", "x": 0.8736263736263736, "y": 1.2855506220628738 }, { "posteriors": "curve_40", "x": 0.8791208791208791, "y": 1.2917945810591183 }, { "posteriors": "curve_40", "x": 0.8846153846153846, "y": 1.298029680586118 }, { "posteriors": "curve_40", "x": 0.8901098901098901, "y": 1.3042559881261642 }, { "posteriors": "curve_40", "x": 0.8956043956043956, "y": 1.310473570234433 }, { "posteriors": "curve_40", "x": 0.9010989010989011, "y": 1.3166824925573273 }, { "posteriors": "curve_40", "x": 0.9065934065934066, "y": 1.3228828198503493 }, { "posteriors": "curve_40", "x": 0.9120879120879121, "y": 1.3290746159955122 }, { "posteriors": "curve_40", "x": 0.9175824175824175, "y": 1.3352579440183117 }, { "posteriors": "curve_40", "x": 0.9230769230769231, "y": 1.3414328661042656 }, { "posteriors": "curve_40", "x": 0.9285714285714286, "y": 1.34759944361504 }, { "posteriors": "curve_40", "x": 0.9340659340659341, "y": 1.3537577371041696 }, { "posteriors": "curve_40", "x": 0.9395604395604396, "y": 1.3599078063323904 }, { "posteriors": "curve_40", "x": 0.945054945054945, "y": 1.3660497102825913 }, { "posteriors": "curve_40", "x": 0.9505494505494505, "y": 1.3721835071743993 }, { "posteriors": "curve_40", "x": 0.9560439560439561, "y": 1.378309254478409 }, { "posteriors": "curve_40", "x": 0.9615384615384616, "y": 1.3844270089300654 }, { "posteriors": "curve_40", "x": 0.967032967032967, "y": 1.3905368265432132 }, { "posteriors": "curve_40", "x": 0.9725274725274725, "y": 1.3966387626233185 }, { "posteriors": "curve_40", "x": 0.978021978021978, "y": 1.4027328717803789 }, { "posteriors": "curve_40", "x": 0.9835164835164835, "y": 1.408819207941522 }, { "posteriors": "curve_40", "x": 0.989010989010989, "y": 1.414897824363311 }, { "posteriors": "curve_40", "x": 0.9945054945054945, "y": 1.4209687736437588 }, { "posteriors": "curve_41", "x": 0, "y": 0 }, { "posteriors": "curve_41", "x": 0.005494505494505495, "y": 0.024822854663531922 }, { "posteriors": "curve_41", "x": 0.01098901098901099, "y": 0.042959453526608585 }, { "posteriors": "curve_41", "x": 0.016483516483516484, "y": 0.059210799397028314 }, { "posteriors": "curve_41", "x": 0.02197802197802198, "y": 0.07434739768331922 }, { "posteriors": "curve_41", "x": 0.027472527472527472, "y": 0.08870565462463378 }, { "posteriors": "curve_41", "x": 0.03296703296703297, "y": 0.10247264544907325 }, { "posteriors": "curve_41", "x": 0.038461538461538464, "y": 0.11576662837463299 }, { "posteriors": "curve_41", "x": 0.04395604395604396, "y": 0.12866866518350675 }, { "posteriors": "curve_41", "x": 0.04945054945054945, "y": 0.14123753342462217 }, { "posteriors": "curve_41", "x": 0.054945054945054944, "y": 0.1535176553643059 }, { "posteriors": "curve_41", "x": 0.06043956043956044, "y": 0.16554369098073166 }, { "posteriors": "curve_41", "x": 0.06593406593406594, "y": 0.17734337607775116 }, { "posteriors": "curve_41", "x": 0.07142857142857142, "y": 0.18893936704487924 }, { "posteriors": "curve_41", "x": 0.07692307692307693, "y": 0.20035048986120882 }, { "posteriors": "curve_41", "x": 0.08241758241758242, "y": 0.21159261465111195 }, { "posteriors": "curve_41", "x": 0.08791208791208792, "y": 0.22267928556993505 }, { "posteriors": "curve_41", "x": 0.09340659340659341, "y": 0.23362218549931035 }, { "posteriors": "curve_41", "x": 0.0989010989010989, "y": 0.24443148604829196 }, { "posteriors": "curve_41", "x": 0.1043956043956044, "y": 0.25511611596914635 }, { "posteriors": "curve_41", "x": 0.10989010989010989, "y": 0.26568397029797686 }, { "posteriors": "curve_41", "x": 0.11538461538461539, "y": 0.2761420756183651 }, { "posteriors": "curve_41", "x": 0.12087912087912088, "y": 0.28649672230317563 }, { "posteriors": "curve_41", "x": 0.12637362637362637, "y": 0.2967535715327401 }, { "posteriors": "curve_41", "x": 0.13186813186813187, "y": 0.3069177427871227 }, { "posteriors": "curve_41", "x": 0.13736263736263737, "y": 0.31699388603942363 }, { "posteriors": "curve_41", "x": 0.14285714285714285, "y": 0.3269862418296269 }, { "posteriors": "curve_41", "x": 0.14835164835164835, "y": 0.3368986916409107 }, { "posteriors": "curve_41", "x": 0.15384615384615385, "y": 0.34673480044463284 }, { "posteriors": "curve_41", "x": 0.15934065934065933, "y": 0.35649785286729235 }, { "posteriors": "curve_41", "x": 0.16483516483516483, "y": 0.36619088412229717 }, { "posteriors": "curve_41", "x": 0.17032967032967034, "y": 0.37581670661335703 }, { "posteriors": "curve_41", "x": 0.17582417582417584, "y": 0.3853779329350874 }, { "posteriors": "curve_41", "x": 0.1813186813186813, "y": 0.3948769958559259 }, { "posteriors": "curve_41", "x": 0.18681318681318682, "y": 0.40431616575860585 }, { "posteriors": "curve_41", "x": 0.19230769230769232, "y": 0.41369756592682616 }, { "posteriors": "curve_41", "x": 0.1978021978021978, "y": 0.42302318599795513 }, { "posteriors": "curve_41", "x": 0.2032967032967033, "y": 0.432294893846552 }, { "posteriors": "curve_41", "x": 0.2087912087912088, "y": 0.44151444611914886 }, { "posteriors": "curve_41", "x": 0.21428571428571427, "y": 0.45068349760478627 }, { "posteriors": "curve_41", "x": 0.21978021978021978, "y": 0.4598036095964799 }, { "posteriors": "curve_41", "x": 0.22527472527472528, "y": 0.46887625737475713 }, { "posteriors": "curve_41", "x": 0.23076923076923078, "y": 0.4779028369245777 }, { "posteriors": "curve_41", "x": 0.23626373626373626, "y": 0.4868846709805299 }, { "posteriors": "curve_41", "x": 0.24175824175824176, "y": 0.49582301448151617 }, { "posteriors": "curve_41", "x": 0.24725274725274726, "y": 0.5047190595047006 }, { "posteriors": "curve_41", "x": 0.25274725274725274, "y": 0.5135739397388859 }, { "posteriors": "curve_41", "x": 0.25824175824175827, "y": 0.5223887345493746 }, { "posteriors": "curve_41", "x": 0.26373626373626374, "y": 0.5311644726795083 }, { "posteriors": "curve_41", "x": 0.2692307692307692, "y": 0.5399021356282431 }, { "posteriors": "curve_41", "x": 0.27472527472527475, "y": 0.5486026607381367 }, { "posteriors": "curve_41", "x": 0.2802197802197802, "y": 0.5572669440238659 }, { "posteriors": "curve_41", "x": 0.2857142857142857, "y": 0.5658958427677292 }, { "posteriors": "curve_41", "x": 0.29120879120879123, "y": 0.5744901779054364 }, { "posteriors": "curve_41", "x": 0.2967032967032967, "y": 0.5830507362227633 }, { "posteriors": "curve_41", "x": 0.3021978021978022, "y": 0.5915782723812828 }, { "posteriors": "curve_41", "x": 0.3076923076923077, "y": 0.6000735107893386 }, { "posteriors": "curve_41", "x": 0.3131868131868132, "y": 0.6085371473326279 }, { "posteriors": "curve_41", "x": 0.31868131868131866, "y": 0.6169698509772084 }, { "posteriors": "curve_41", "x": 0.3241758241758242, "y": 0.6253722652563635 }, { "posteriors": "curve_41", "x": 0.32967032967032966, "y": 0.6337450096515691 }, { "posteriors": "curve_41", "x": 0.33516483516483514, "y": 0.6420886808767373 }, { "posteriors": "curve_41", "x": 0.34065934065934067, "y": 0.6504038540739869 }, { "posteriors": "curve_41", "x": 0.34615384615384615, "y": 0.658691083928362 }, { "posteriors": "curve_41", "x": 0.3516483516483517, "y": 0.6669509057081894 }, { "posteriors": "curve_41", "x": 0.35714285714285715, "y": 0.6751838362371202 }, { "posteriors": "curve_41", "x": 0.3626373626373626, "y": 0.6833903748033215 }, { "posteriors": "curve_41", "x": 0.36813186813186816, "y": 0.6915710040107707 }, { "posteriors": "curve_41", "x": 0.37362637362637363, "y": 0.6997261905771486 }, { "posteriors": "curve_41", "x": 0.3791208791208791, "y": 0.7078563860824166 }, { "posteriors": "curve_41", "x": 0.38461538461538464, "y": 0.7159620276717947 }, { "posteriors": "curve_41", "x": 0.3901098901098901, "y": 0.7240435387165296 }, { "posteriors": "curve_41", "x": 0.3956043956043956, "y": 0.7321013294355456 }, { "posteriors": "curve_41", "x": 0.4010989010989011, "y": 0.7401357974808046 }, { "posteriors": "curve_41", "x": 0.4065934065934066, "y": 0.7481473284889605 }, { "posteriors": "curve_41", "x": 0.41208791208791207, "y": 0.7561362966016797 }, { "posteriors": "curve_41", "x": 0.4175824175824176, "y": 0.7641030649567987 }, { "posteriors": "curve_41", "x": 0.4230769230769231, "y": 0.7720479861523158 }, { "posteriors": "curve_41", "x": 0.42857142857142855, "y": 0.7799714026850539 }, { "posteriors": "curve_41", "x": 0.4340659340659341, "y": 0.7878736473656822 }, { "posteriors": "curve_41", "x": 0.43956043956043955, "y": 0.795755043711653 }, { "posteriors": "curve_41", "x": 0.44505494505494503, "y": 0.8036159063194931 }, { "posteriors": "curve_41", "x": 0.45054945054945056, "y": 0.8114565412177716 }, { "posteriors": "curve_41", "x": 0.45604395604395603, "y": 0.8192772462019738 }, { "posteriors": "curve_41", "x": 0.46153846153846156, "y": 0.8270783111524136 }, { "posteriors": "curve_41", "x": 0.46703296703296704, "y": 0.8348600183362349 }, { "posteriors": "curve_41", "x": 0.4725274725274725, "y": 0.8426226426944768 }, { "posteriors": "curve_41", "x": 0.47802197802197804, "y": 0.8503664521151062 }, { "posteriors": "curve_41", "x": 0.4835164835164835, "y": 0.8580917076928555 }, { "posteriors": "curve_41", "x": 0.489010989010989, "y": 0.8657986639766476 }, { "posteriors": "curve_41", "x": 0.4945054945054945, "y": 0.8734875692053337 }, { "posteriors": "curve_41", "x": 0.5, "y": 0.8811586655324166 }, { "posteriors": "curve_41", "x": 0.5054945054945055, "y": 0.8888121892403946 }, { "posteriors": "curve_41", "x": 0.510989010989011, "y": 0.8964483709453076 }, { "posteriors": "curve_41", "x": 0.5164835164835165, "y": 0.9040674357920375 }, { "posteriors": "curve_41", "x": 0.521978021978022, "y": 0.9116696036408719 }, { "posteriors": "curve_41", "x": 0.5274725274725275, "y": 0.9192550892458132 }, { "posteriors": "curve_41", "x": 0.532967032967033, "y": 0.9268241024250761 }, { "posteriors": "curve_41", "x": 0.5384615384615384, "y": 0.9343768482241955 }, { "posteriors": "curve_41", "x": 0.5439560439560439, "y": 0.9419135270721374 }, { "posteriors": "curve_41", "x": 0.5494505494505495, "y": 0.9494343349307783 }, { "posteriors": "curve_41", "x": 0.554945054945055, "y": 0.9569394634381002 }, { "posteriors": "curve_41", "x": 0.5604395604395604, "y": 0.9644291000454243 }, { "posteriors": "curve_41", "x": 0.5659340659340659, "y": 0.971903428148988 }, { "posteriors": "curve_41", "x": 0.5714285714285714, "y": 0.979362627216149 }, { "posteriors": "curve_41", "x": 0.5769230769230769, "y": 0.9868068729064892 }, { "posteriors": "curve_41", "x": 0.5824175824175825, "y": 0.9942363371880666 }, { "posteriors": "curve_41", "x": 0.5879120879120879, "y": 1.0016511884490573 }, { "posteriors": "curve_41", "x": 0.5934065934065934, "y": 1.0090515916050093 }, { "posteriors": "curve_41", "x": 0.5989010989010989, "y": 1.0164377082019216 }, { "posteriors": "curve_41", "x": 0.6043956043956044, "y": 1.0238096965153443 }, { "posteriors": "curve_41", "x": 0.6098901098901099, "y": 1.0311677116456934 }, { "posteriors": "curve_41", "x": 0.6153846153846154, "y": 1.038511905609953 }, { "posteriors": "curve_41", "x": 0.6208791208791209, "y": 1.0458424274299347 }, { "posteriors": "curve_41", "x": 0.6263736263736264, "y": 1.0531594232172534 }, { "posteriors": "curve_41", "x": 0.6318681318681318, "y": 1.0604630362551675 }, { "posteriors": "curve_41", "x": 0.6373626373626373, "y": 1.0677534070774268 }, { "posteriors": "curve_41", "x": 0.6428571428571429, "y": 1.0750306735442636 }, { "posteriors": "curve_41", "x": 0.6483516483516484, "y": 1.0822949709156497 }, { "posteriors": "curve_41", "x": 0.6538461538461539, "y": 1.0895464319219454 }, { "posteriors": "curve_41", "x": 0.6593406593406593, "y": 1.0967851868320504 }, { "posteriors": "curve_41", "x": 0.6648351648351648, "y": 1.1040113635191662 }, { "posteriors": "curve_41", "x": 0.6703296703296703, "y": 1.1112250875242746 }, { "posteriors": "curve_41", "x": 0.6758241758241759, "y": 1.1184264821174266 }, { "posteriors": "curve_41", "x": 0.6813186813186813, "y": 1.1256156683569354 }, { "posteriors": "curve_41", "x": 0.6868131868131868, "y": 1.132792765146565 }, { "posteriors": "curve_41", "x": 0.6923076923076923, "y": 1.1399578892907904 }, { "posteriors": "curve_41", "x": 0.6978021978021978, "y": 1.1471111555482165 }, { "posteriors": "curve_41", "x": 0.7032967032967034, "y": 1.1542526766832277 }, { "posteriors": "curve_41", "x": 0.7087912087912088, "y": 1.1613825635159392 }, { "posteriors": "curve_41", "x": 0.7142857142857143, "y": 1.1685009249705212 }, { "posteriors": "curve_41", "x": 0.7197802197802198, "y": 1.1756078681219593 }, { "posteriors": "curve_41", "x": 0.7252747252747253, "y": 1.1827034982413138 }, { "posteriors": "curve_41", "x": 0.7307692307692307, "y": 1.1897879188395366 }, { "posteriors": "curve_41", "x": 0.7362637362637363, "y": 1.1968612317099039 }, { "posteriors": "curve_41", "x": 0.7417582417582418, "y": 1.2039235369691144 }, { "posteriors": "curve_41", "x": 0.7472527472527473, "y": 1.210974933097111 }, { "posteriors": "curve_41", "x": 0.7527472527472527, "y": 1.2180155169756681 }, { "posteriors": "curve_41", "x": 0.7582417582417582, "y": 1.225045383925795 }, { "posteriors": "curve_41", "x": 0.7637362637362637, "y": 1.2320646277440008 }, { "posteriors": "curve_41", "x": 0.7692307692307693, "y": 1.2390733407374592 }, { "posteriors": "curve_41", "x": 0.7747252747252747, "y": 1.2460716137581196 }, { "posteriors": "curve_41", "x": 0.7802197802197802, "y": 1.2530595362358001 }, { "posteriors": "curve_41", "x": 0.7857142857142857, "y": 1.2600371962102996 }, { "posteriors": "curve_41", "x": 0.7912087912087912, "y": 1.2670046803625656 }, { "posteriors": "curve_41", "x": 0.7967032967032966, "y": 1.2739620740449522 }, { "posteriors": "curve_41", "x": 0.8021978021978022, "y": 1.2809094613106007 }, { "posteriors": "curve_41", "x": 0.8076923076923077, "y": 1.2878469249419717 }, { "posteriors": "curve_41", "x": 0.8131868131868132, "y": 1.2947745464785645 }, { "posteriors": "curve_41", "x": 0.8186813186813187, "y": 1.3016924062438453 }, { "posteriors": "curve_41", "x": 0.8241758241758241, "y": 1.3086005833714174 }, { "posteriors": "curve_41", "x": 0.8296703296703297, "y": 1.3154991558304572 }, { "posteriors": "curve_41", "x": 0.8351648351648352, "y": 1.3223882004504395 }, { "posteriors": "curve_41", "x": 0.8406593406593407, "y": 1.3292677929451833 }, { "posteriors": "curve_41", "x": 0.8461538461538461, "y": 1.3361380079362324 }, { "posteriors": "curve_41", "x": 0.8516483516483516, "y": 1.3429989189755989 }, { "posteriors": "curve_41", "x": 0.8571428571428571, "y": 1.3498505985678892 }, { "posteriors": "curve_41", "x": 0.8626373626373627, "y": 1.3566931181918354 }, { "posteriors": "curve_41", "x": 0.8681318681318682, "y": 1.3635265483212458 }, { "posteriors": "curve_41", "x": 0.8736263736263736, "y": 1.3703509584454028 }, { "posteriors": "curve_41", "x": 0.8791208791208791, "y": 1.3771664170889157 }, { "posteriors": "curve_41", "x": 0.8846153846153846, "y": 1.3839729918310575 }, { "posteriors": "curve_41", "x": 0.8901098901098901, "y": 1.3907707493245907 }, { "posteriors": "curve_41", "x": 0.8956043956043956, "y": 1.397559755314109 }, { "posteriors": "curve_41", "x": 0.9010989010989011, "y": 1.404340074653903 }, { "posteriors": "curve_41", "x": 0.9065934065934066, "y": 1.4111117713253682 }, { "posteriors": "curve_41", "x": 0.9120879120879121, "y": 1.417874908453971 }, { "posteriors": "curve_41", "x": 0.9175824175824175, "y": 1.4246295483257811 }, { "posteriors": "curve_41", "x": 0.9230769230769231, "y": 1.4313757524035924 }, { "posteriors": "curve_41", "x": 0.9285714285714286, "y": 1.4381135813426342 }, { "posteriors": "curve_41", "x": 0.9340659340659341, "y": 1.4448430950058988 }, { "posteriors": "curve_41", "x": 0.9395604395604396, "y": 1.4515643524790827 }, { "posteriors": "curve_41", "x": 0.945054945054945, "y": 1.4582774120851645 }, { "posteriors": "curve_41", "x": 0.9505494505494505, "y": 1.464982331398626 }, { "posteriors": "curve_41", "x": 0.9560439560439561, "y": 1.471679167259326 }, { "posteriors": "curve_41", "x": 0.9615384615384616, "y": 1.4783679757860384 }, { "posteriors": "curve_41", "x": 0.967032967032967, "y": 1.4850488123896683 }, { "posteriors": "curve_41", "x": 0.9725274725274725, "y": 1.4917217317861486 }, { "posteriors": "curve_41", "x": 0.978021978021978, "y": 1.4983867880090311 }, { "posteriors": "curve_41", "x": 0.9835164835164835, "y": 1.505044034421781 }, { "posteriors": "curve_41", "x": 0.989010989010989, "y": 1.5116935237297824 }, { "posteriors": "curve_41", "x": 0.9945054945054945, "y": 1.5183353079920605 }, { "posteriors": "curve_42", "x": 0, "y": 0 }, { "posteriors": "curve_42", "x": 0.005494505494505495, "y": 0.026922684618266444 }, { "posteriors": "curve_42", "x": 0.01098901098901099, "y": 0.04601319856294761 }, { "posteriors": "curve_42", "x": 0.016483516483516484, "y": 0.06295651372528112 }, { "posteriors": "curve_42", "x": 0.02197802197802198, "y": 0.07864053945633494 }, { "posteriors": "curve_42", "x": 0.027472527472527472, "y": 0.0934501008564853 }, { "posteriors": "curve_42", "x": 0.03296703296703297, "y": 0.1075981317593737 }, { "posteriors": "curve_42", "x": 0.038461538461538464, "y": 0.12121871994853692 }, { "posteriors": "curve_42", "x": 0.04395604395604396, "y": 0.1344034894145208 }, { "posteriors": "curve_42", "x": 0.04945054945054945, "y": 0.1472186996445498 }, { "posteriors": "curve_42", "x": 0.054945054945054944, "y": 0.1597143118305344 }, { "posteriors": "curve_42", "x": 0.06043956043956044, "y": 0.17192922796684995 }, { "posteriors": "curve_42", "x": 0.06593406593406594, "y": 0.1838945213616313 }, { "posteriors": "curve_42", "x": 0.07142857142857142, "y": 0.19563553249827567 }, { "posteriors": "curve_42", "x": 0.07692307692307693, "y": 0.20717328563712584 }, { "posteriors": "curve_42", "x": 0.08241758241758242, "y": 0.21852547918674264 }, { "posteriors": "curve_42", "x": 0.08791208791208792, "y": 0.22970719798825112 }, { "posteriors": "curve_42", "x": 0.09340659340659341, "y": 0.24073143810734235 }, { "posteriors": "curve_42", "x": 0.0989010989010989, "y": 0.2516095016143971 }, { "posteriors": "curve_42", "x": 0.1043956043956044, "y": 0.26235129899384385 }, { "posteriors": "curve_42", "x": 0.10989010989010989, "y": 0.2729655845174073 }, { "posteriors": "curve_42", "x": 0.11538461538461539, "y": 0.2834601420477682 }, { "posteriors": "curve_42", "x": 0.12087912087912088, "y": 0.2938419335732034 }, { "posteriors": "curve_42", "x": 0.12637362637362637, "y": 0.30411721930120494 }, { "posteriors": "curve_42", "x": 0.13186813186813187, "y": 0.3142916557552348 }, { "posteriors": "curve_42", "x": 0.13736263736263737, "y": 0.3243703766511524 }, { "posteriors": "curve_42", "x": 0.14285714285714285, "y": 0.3343580601432153 }, { "posteriors": "curve_42", "x": 0.14835164835164835, "y": 0.3442589851719969 }, { "posteriors": "curve_42", "x": 0.15384615384615385, "y": 0.35407707901802643 }, { "posteriors": "curve_42", "x": 0.15934065934065933, "y": 0.3638159576982732 }, { "posteriors": "curve_42", "x": 0.16483516483516483, "y": 0.3734789604919538 }, { "posteriors": "curve_42", "x": 0.17032967032967034, "y": 0.38306917961577175 }, { "posteriors": "curve_42", "x": 0.17582417582417584, "y": 0.39258948586429243 }, { "posteriors": "curve_42", "x": 0.1813186813186813, "y": 0.4020425508728088 }, { "posteriors": "curve_42", "x": 0.18681318681318682, "y": 0.4114308665363074 }, { "posteriors": "curve_42", "x": 0.19230769230769232, "y": 0.4207567620206453 }, { "posteriors": "curve_42", "x": 0.1978021978021978, "y": 0.4300224187246379 }, { "posteriors": "curve_42", "x": 0.2032967032967033, "y": 0.4392298834898531 }, { "posteriors": "curve_42", "x": 0.2087912087912088, "y": 0.448381080305069 }, { "posteriors": "curve_42", "x": 0.21428571428571427, "y": 0.457477820711976 }, { "posteriors": "curve_42", "x": 0.21978021978021978, "y": 0.4665218130857882 }, { "posteriors": "curve_42", "x": 0.22527472527472528, "y": 0.47551467093745386 }, { "posteriors": "curve_42", "x": 0.23076923076923078, "y": 0.4844579203619231 }, { "posteriors": "curve_42", "x": 0.23626373626373626, "y": 0.49335300673851434 }, { "posteriors": "curve_42", "x": 0.24175824175824176, "y": 0.5022013007741003 }, { "posteriors": "curve_42", "x": 0.24725274725274726, "y": 0.5110041039670156 }, { "posteriors": "curve_42", "x": 0.25274725274725274, "y": 0.5197626535588361 }, { "posteriors": "curve_42", "x": 0.25824175824175827, "y": 0.5284781270321022 }, { "posteriors": "curve_42", "x": 0.26373626373626374, "y": 0.5371516462043814 }, { "posteriors": "curve_42", "x": 0.2692307692307692, "y": 0.5457842809625412 }, { "posteriors": "curve_42", "x": 0.27472527472527475, "y": 0.5543770526755376 }, { "posteriors": "curve_42", "x": 0.2802197802197802, "y": 0.5629309373192601 }, { "posteriors": "curve_42", "x": 0.2857142857142857, "y": 0.5714468683428933 }, { "posteriors": "curve_42", "x": 0.29120879120879123, "y": 0.5799257393027244 }, { "posteriors": "curve_42", "x": 0.2967032967032967, "y": 0.5883684062862933 }, { "posteriors": "curve_42", "x": 0.3021978021978022, "y": 0.5967756901471413 }, { "posteriors": "curve_42", "x": 0.3076923076923077, "y": 0.6051483785681252 }, { "posteriors": "curve_42", "x": 0.3131868131868132, "y": 0.6134872279692726 }, { "posteriors": "curve_42", "x": 0.31868131868131866, "y": 0.6217929652744082 }, { "posteriors": "curve_42", "x": 0.3241758241758242, "y": 0.6300662895492561 }, { "posteriors": "curve_42", "x": 0.32967032967032966, "y": 0.6383078735223872 }, { "posteriors": "curve_42", "x": 0.33516483516483514, "y": 0.6465183649991998 }, { "posteriors": "curve_42", "x": 0.34065934065934067, "y": 0.6546983881780845 }, { "posteriors": "curve_42", "x": 0.34615384615384615, "y": 0.6628485448770056 }, { "posteriors": "curve_42", "x": 0.3516483516483517, "y": 0.6709694156779216 }, { "posteriors": "curve_42", "x": 0.35714285714285715, "y": 0.6790615609957422 }, { "posteriors": "curve_42", "x": 0.3626373626373626, "y": 0.6871255220778829 }, { "posteriors": "curve_42", "x": 0.36813186813186816, "y": 0.6951618219399036 }, { "posteriors": "curve_42", "x": 0.37362637362637363, "y": 0.7031709662422102 }, { "posteriors": "curve_42", "x": 0.3791208791208791, "y": 0.7111534441123449 }, { "posteriors": "curve_42", "x": 0.38461538461538464, "y": 0.7191097289169769 }, { "posteriors": "curve_42", "x": 0.3901098901098901, "y": 0.7270402789873472 }, { "posteriors": "curve_42", "x": 0.3956043956043956, "y": 0.7349455383015898 }, { "posteriors": "curve_42", "x": 0.4010989010989011, "y": 0.7428259371270513 }, { "posteriors": "curve_42", "x": 0.4065934065934066, "y": 0.7506818926254727 }, { "posteriors": "curve_42", "x": 0.41208791208791207, "y": 0.7585138094236534 }, { "posteriors": "curve_42", "x": 0.4175824175824176, "y": 0.7663220801519964 }, { "posteriors": "curve_42", "x": 0.4230769230769231, "y": 0.7741070859531431 }, { "posteriors": "curve_42", "x": 0.42857142857142855, "y": 0.7818691969627253 }, { "posteriors": "curve_42", "x": 0.4340659340659341, "y": 0.7896087727640998 }, { "posteriors": "curve_42", "x": 0.43956043956043955, "y": 0.7973261628187848 }, { "posteriors": "curve_42", "x": 0.44505494505494503, "y": 0.8050217068741833 }, { "posteriors": "curve_42", "x": 0.45054945054945056, "y": 0.8126957353500585 }, { "posteriors": "curve_42", "x": 0.45604395604395603, "y": 0.8203485697051129 }, { "posteriors": "curve_42", "x": 0.46153846153846156, "y": 0.8279805227849218 }, { "posteriors": "curve_42", "x": 0.46703296703296704, "y": 0.8355918991523824 }, { "posteriors": "curve_42", "x": 0.4725274725274725, "y": 0.8431829954017489 }, { "posteriors": "curve_42", "x": 0.47802197802197804, "y": 0.8507541004572544 }, { "posteriors": "curve_42", "x": 0.4835164835164835, "y": 0.8583054958572394 }, { "posteriors": "curve_42", "x": 0.489010989010989, "y": 0.8658374560246511 }, { "posteriors": "curve_42", "x": 0.4945054945054945, "y": 0.8733502485247109 }, { "posteriors": "curve_42", "x": 0.5, "y": 0.8808441343104945 }, { "posteriors": "curve_42", "x": 0.5054945054945055, "y": 0.8883193679571182 }, { "posteriors": "curve_42", "x": 0.510989010989011, "y": 0.895776197885179 }, { "posteriors": "curve_42", "x": 0.5164835164835165, "y": 0.9032148665740506 }, { "posteriors": "curve_42", "x": 0.521978021978022, "y": 0.9106356107655981 }, { "posteriors": "curve_42", "x": 0.5274725274725275, "y": 0.9180386616588407 }, { "posteriors": "curve_42", "x": 0.532967032967033, "y": 0.9254242450960519 }, { "posteriors": "curve_42", "x": 0.5384615384615384, "y": 0.9327925817407597 }, { "posteriors": "curve_42", "x": 0.5439560439560439, "y": 0.9401438872480766 }, { "posteriors": "curve_42", "x": 0.5494505494505495, "y": 0.9474783724277676 }, { "posteriors": "curve_42", "x": 0.554945054945055, "y": 0.9547962434004291 }, { "posteriors": "curve_42", "x": 0.5604395604395604, "y": 0.9620977017471442 }, { "posteriors": "curve_42", "x": 0.5659340659340659, "y": 0.969382944652937 }, { "posteriors": "curve_42", "x": 0.5714285714285714, "y": 0.9766521650443496 }, { "posteriors": "curve_42", "x": 0.5769230769230769, "y": 0.9839055517214332 }, { "posteriors": "curve_42", "x": 0.5824175824175825, "y": 0.9911432894844294 }, { "posteriors": "curve_42", "x": 0.5879120879120879, "y": 0.9983655592554064 }, { "posteriors": "curve_42", "x": 0.5934065934065934, "y": 1.0055725381950957 }, { "posteriors": "curve_42", "x": 0.5989010989010989, "y": 1.012764399815159 }, { "posteriors": "curve_42", "x": 0.6043956043956044, "y": 1.0199413140861076 }, { "posteriors": "curve_42", "x": 0.6098901098901099, "y": 1.027103447541076 }, { "posteriors": "curve_42", "x": 0.6153846153846154, "y": 1.0342509633756525 }, { "posteriors": "curve_42", "x": 0.6208791208791209, "y": 1.0413840215439416 }, { "posteriors": "curve_42", "x": 0.6263736263736264, "y": 1.0485027788510375 }, { "posteriors": "curve_42", "x": 0.6318681318681318, "y": 1.0556073890420745 }, { "posteriors": "curve_42", "x": 0.6373626373626373, "y": 1.062698002888004 }, { "posteriors": "curve_42", "x": 0.6428571428571429, "y": 1.0697747682682517 }, { "posteriors": "curve_42", "x": 0.6483516483516484, "y": 1.0768378302503891 }, { "posteriors": "curve_42", "x": 0.6538461538461539, "y": 1.0838873311669561 }, { "posteriors": "curve_42", "x": 0.6593406593406593, "y": 1.0909234106895551 }, { "posteriors": "curve_42", "x": 0.6648351648351648, "y": 1.097946205900339 }, { "posteriors": "curve_42", "x": 0.6703296703296703, "y": 1.1049558513610045 }, { "posteriors": "curve_42", "x": 0.6758241758241759, "y": 1.1119524791793953 }, { "posteriors": "curve_42", "x": 0.6813186813186813, "y": 1.1189362190738203 }, { "posteriors": "curve_42", "x": 0.6868131868131868, "y": 1.1259071984351812 }, { "posteriors": "curve_42", "x": 0.6923076923076923, "y": 1.1328655423869998 }, { "posteriors": "curve_42", "x": 0.6978021978021978, "y": 1.1398113738434343 }, { "posteriors": "curve_42", "x": 0.7032967032967034, "y": 1.1467448135653675 }, { "posteriors": "curve_42", "x": 0.7087912087912088, "y": 1.1536659802146407 }, { "posteriors": "curve_42", "x": 0.7142857142857143, "y": 1.1605749904065166 }, { "posteriors": "curve_42", "x": 0.7197802197802198, "y": 1.1674719587604347 }, { "posteriors": "curve_42", "x": 0.7252747252747253, "y": 1.1743569979491324 }, { "posteriors": "curve_42", "x": 0.7307692307692307, "y": 1.1812302187461925 }, { "posteriors": "curve_42", "x": 0.7362637362637363, "y": 1.1880917300720821 }, { "posteriors": "curve_42", "x": 0.7417582417582418, "y": 1.1949416390387404 }, { "posteriors": "curve_42", "x": 0.7472527472527473, "y": 1.2017800509927714 }, { "posteriors": "curve_42", "x": 0.7527472527472527, "y": 1.208607069557296 }, { "posteriors": "curve_42", "x": 0.7582417582417582, "y": 1.215422796672511 }, { "posteriors": "curve_42", "x": 0.7637362637362637, "y": 1.2222273326350115 }, { "posteriors": "curve_42", "x": 0.7692307692307693, "y": 1.2290207761359149 }, { "posteriors": "curve_42", "x": 0.7747252747252747, "y": 1.235803224297835 }, { "posteriors": "curve_42", "x": 0.7802197802197802, "y": 1.2425747727107503 }, { "posteriors": "curve_42", "x": 0.7857142857142857, "y": 1.2493355154668047 }, { "posteriors": "curve_42", "x": 0.7912087912087912, "y": 1.2560855451940798 }, { "posteriors": "curve_42", "x": 0.7967032967032966, "y": 1.2628249530893771 }, { "posteriors": "curve_42", "x": 0.8021978021978022, "y": 1.2695538289500452 }, { "posteriors": "curve_42", "x": 0.8076923076923077, "y": 1.2762722612048858 }, { "posteriors": "curve_42", "x": 0.8131868131868132, "y": 1.2829803369441732 }, { "posteriors": "curve_42", "x": 0.8186813186813187, "y": 1.289678141948816 }, { "posteriors": "curve_42", "x": 0.8241758241758241, "y": 1.2963657607186905 }, { "posteriors": "curve_42", "x": 0.8296703296703297, "y": 1.3030432765001811 }, { "posteriors": "curve_42", "x": 0.8351648351648352, "y": 1.3097107713129437 }, { "posteriors": "curve_42", "x": 0.8406593406593407, "y": 1.3163683259759318 }, { "posteriors": "curve_42", "x": 0.8461538461538461, "y": 1.3230160201327 }, { "posteriors": "curve_42", "x": 0.8516483516483516, "y": 1.3296539322760146 }, { "posteriors": "curve_42", "x": 0.8571428571428571, "y": 1.3362821397717948 }, { "posteriors": "curve_42", "x": 0.8626373626373627, "y": 1.3429007188824036 }, { "posteriors": "curve_42", "x": 0.8681318681318682, "y": 1.3495097447893127 }, { "posteriors": "curve_42", "x": 0.8736263736263736, "y": 1.3561092916151634 }, { "posteriors": "curve_42", "x": 0.8791208791208791, "y": 1.3626994324452386 }, { "posteriors": "curve_42", "x": 0.8846153846153846, "y": 1.3692802393483696 }, { "posteriors": "curve_42", "x": 0.8901098901098901, "y": 1.3758517833972945 }, { "posteriors": "curve_42", "x": 0.8956043956043956, "y": 1.3824141346884848 }, { "posteriors": "curve_42", "x": 0.9010989010989011, "y": 1.388967362361459 }, { "posteriors": "curve_42", "x": 0.9065934065934066, "y": 1.395511534617598 }, { "posteriors": "curve_42", "x": 0.9120879120879121, "y": 1.4020467187384804 }, { "posteriors": "curve_42", "x": 0.9175824175824175, "y": 1.4085729811037497 }, { "posteriors": "curve_42", "x": 0.9230769230769231, "y": 1.4150903872085294 }, { "posteriors": "curve_42", "x": 0.9285714285714286, "y": 1.4215990016804014 }, { "posteriors": "curve_42", "x": 0.9340659340659341, "y": 1.4280988882959607 }, { "posteriors": "curve_42", "x": 0.9395604395604396, "y": 1.4345901099969545 }, { "posteriors": "curve_42", "x": 0.945054945054945, "y": 1.4410727289060299 }, { "posteriors": "curve_42", "x": 0.9505494505494505, "y": 1.4475468063420864 }, { "posteriors": "curve_42", "x": 0.9560439560439561, "y": 1.4540124028352615 }, { "posteriors": "curve_42", "x": 0.9615384615384616, "y": 1.460469578141546 }, { "posteriors": "curve_42", "x": 0.967032967032967, "y": 1.466918391257051 }, { "posteriors": "curve_42", "x": 0.9725274725274725, "y": 1.47335890043193 }, { "posteriors": "curve_42", "x": 0.978021978021978, "y": 1.4797911631839704 }, { "posteriors": "curve_42", "x": 0.9835164835164835, "y": 1.4862152363118604 }, { "posteriors": "curve_42", "x": 0.989010989010989, "y": 1.492631175908145 }, { "posteriors": "curve_42", "x": 0.9945054945054945, "y": 1.4990390373718763 }, { "posteriors": "curve_43", "x": 0, "y": 0 }, { "posteriors": "curve_43", "x": 0.005494505494505495, "y": 0.025378692492329404 }, { "posteriors": "curve_43", "x": 0.01098901098901099, "y": 0.044049054066119114 }, { "posteriors": "curve_43", "x": 0.016483516483516484, "y": 0.06081574095632722 }, { "posteriors": "curve_43", "x": 0.02197802197802198, "y": 0.07645465441950319 }, { "posteriors": "curve_43", "x": 0.027472527472527472, "y": 0.09130513336019622 }, { "posteriors": "curve_43", "x": 0.03296703296703297, "y": 0.10555610231953559 }, { "posteriors": "curve_43", "x": 0.038461538461538464, "y": 0.11932709493473073 }, { "posteriors": "curve_43", "x": 0.04395604395604396, "y": 0.13270010687702047 }, { "posteriors": "curve_43", "x": 0.04945054945054945, "y": 0.1457346295198213 }, { "posteriors": "curve_43", "x": 0.054945054945054944, "y": 0.15847564870070047 }, { "posteriors": "curve_43", "x": 0.06043956043956044, "y": 0.17095828074802025 }, { "posteriors": "curve_43", "x": 0.06593406593406594, "y": 0.1832106385893347 }, { "posteriors": "curve_43", "x": 0.07142857142857142, "y": 0.19525569552102678 }, { "posteriors": "curve_43", "x": 0.07692307692307693, "y": 0.2071125475798865 }, { "posteriors": "curve_43", "x": 0.08241758241758242, "y": 0.21879729777627077 }, { "posteriors": "curve_43", "x": 0.08791208791208792, "y": 0.2303236931600152 }, { "posteriors": "curve_43", "x": 0.09340659340659341, "y": 0.241703594956451 }, { "posteriors": "curve_43", "x": 0.0989010989010989, "y": 0.2529473327660479 }, { "posteriors": "curve_43", "x": 0.1043956043956044, "y": 0.26406397627226486 }, { "posteriors": "curve_43", "x": 0.10989010989010989, "y": 0.2750615470001199 }, { "posteriors": "curve_43", "x": 0.11538461538461539, "y": 0.28594718568795596 }, { "posteriors": "curve_43", "x": 0.12087912087912088, "y": 0.29672728624598727 }, { "posteriors": "curve_43", "x": 0.12637362637362637, "y": 0.3074076041867018 }, { "posteriors": "curve_43", "x": 0.13186813186813187, "y": 0.3179933452895184 }, { "posteriors": "curve_43", "x": 0.13736263736263737, "y": 0.3284892387755171 }, { "posteriors": "curve_43", "x": 0.14285714285714285, "y": 0.3388995982091262 }, { "posteriors": "curve_43", "x": 0.14835164835164835, "y": 0.3492283725776086 }, { "posteriors": "curve_43", "x": 0.15384615384615385, "y": 0.3594791894371827 }, { "posteriors": "curve_43", "x": 0.15934065934065933, "y": 0.3696553915969425 }, { "posteriors": "curve_43", "x": 0.16483516483516483, "y": 0.3797600684976462 }, { "posteriors": "curve_43", "x": 0.17032967032967034, "y": 0.38979608320363396 }, { "posteriors": "curve_43", "x": 0.17582417582417584, "y": 0.3997660957427252 }, { "posteriors": "curve_43", "x": 0.1813186813186813, "y": 0.4096725833867563 }, { "posteriors": "curve_43", "x": 0.18681318681318682, "y": 0.4195178583542087 }, { "posteriors": "curve_43", "x": 0.19230769230769232, "y": 0.429304083328698 }, { "posteriors": "curve_43", "x": 0.1978021978021978, "y": 0.4390332851174234 }, { "posteriors": "curve_43", "x": 0.2032967032967033, "y": 0.44870736671792705 }, { "posteriors": "curve_43", "x": 0.2087912087912088, "y": 0.45832811801660156 }, { "posteriors": "curve_43", "x": 0.21428571428571427, "y": 0.46789722530596556 }, { "posteriors": "curve_43", "x": 0.21978021978021978, "y": 0.4774162797780348 }, { "posteriors": "curve_43", "x": 0.22527472527472528, "y": 0.4868867851267509 }, { "posteriors": "curve_43", "x": 0.23076923076923078, "y": 0.49631016437235176 }, { "posteriors": "curve_43", "x": 0.23626373626373626, "y": 0.5056877660039144 }, { "posteriors": "curve_43", "x": 0.24175824175824176, "y": 0.5150208695224473 }, { "posteriors": "curve_43", "x": 0.24725274725274726, "y": 0.5243106904553042 }, { "posteriors": "curve_43", "x": 0.25274725274725274, "y": 0.5335583849029607 }, { "posteriors": "curve_43", "x": 0.25824175824175827, "y": 0.5427650536709658 }, { "posteriors": "curve_43", "x": 0.26373626373626374, "y": 0.551931746032926 }, { "posteriors": "curve_43", "x": 0.2692307692307692, "y": 0.5610594631644598 }, { "posteriors": "curve_43", "x": 0.27472527472527475, "y": 0.5701491612830113 }, { "posteriors": "curve_43", "x": 0.2802197802197802, "y": 0.579201754524091 }, { "posteriors": "curve_43", "x": 0.2857142857142857, "y": 0.5882181175807945 }, { "posteriors": "curve_43", "x": 0.29120879120879123, "y": 0.5971990881302577 }, { "posteriors": "curve_43", "x": 0.2967032967032967, "y": 0.6061454690679343 }, { "posteriors": "curve_43", "x": 0.3021978021978022, "y": 0.6150580305681909 }, { "posteriors": "curve_43", "x": 0.3076923076923077, "y": 0.6239375119876293 }, { "posteriors": "curve_43", "x": 0.3131868131868132, "y": 0.6327846236257298 }, { "posteriors": "curve_43", "x": 0.31868131868131866, "y": 0.6416000483558247 }, { "posteriors": "curve_43", "x": 0.3241758241758242, "y": 0.6503844431380191 }, { "posteriors": "curve_43", "x": 0.32967032967032966, "y": 0.6591384404244585 }, { "posteriors": "curve_43", "x": 0.33516483516483514, "y": 0.6678626494662685 }, { "posteriors": "curve_43", "x": 0.34065934065934067, "y": 0.6765576575305421 }, { "posteriors": "curve_43", "x": 0.34615384615384615, "y": 0.6852240310349166 }, { "posteriors": "curve_43", "x": 0.3516483516483517, "y": 0.6938623166065389 }, { "posteriors": "curve_43", "x": 0.35714285714285715, "y": 0.702473042071557 }, { "posteriors": "curve_43", "x": 0.3626373626373626, "y": 0.7110567173806983 }, { "posteriors": "curve_43", "x": 0.36813186813186816, "y": 0.7196138354759607 }, { "posteriors": "curve_43", "x": 0.37362637362637363, "y": 0.7281448731029915 }, { "posteriors": "curve_43", "x": 0.3791208791208791, "y": 0.7366502915733021 }, { "posteriors": "curve_43", "x": 0.38461538461538464, "y": 0.7451305374800975 }, { "posteriors": "curve_43", "x": 0.3901098901098901, "y": 0.7535860433711663 }, { "posteriors": "curve_43", "x": 0.3956043956043956, "y": 0.7620172283819742 }, { "posteriors": "curve_43", "x": 0.4010989010989011, "y": 0.7704244988318338 }, { "posteriors": "curve_43", "x": 0.4065934065934066, "y": 0.7788082487857808 }, { "posteriors": "curve_43", "x": 0.41208791208791207, "y": 0.7871688605845641 }, { "posteriors": "curve_43", "x": 0.4175824175824176, "y": 0.7955067053449626 }, { "posteriors": "curve_43", "x": 0.4230769230769231, "y": 0.8038221434324545 }, { "posteriors": "curve_43", "x": 0.42857142857142855, "y": 0.8121155249081096 }, { "posteriors": "curve_43", "x": 0.4340659340659341, "y": 0.8203871899514193 }, { "posteriors": "curve_43", "x": 0.43956043956043955, "y": 0.8286374692606503 }, { "posteriors": "curve_43", "x": 0.44505494505494503, "y": 0.8368666844321803 }, { "posteriors": "curve_43", "x": 0.45054945054945056, "y": 0.8450751483201666 }, { "posteriors": "curve_43", "x": 0.45604395604395603, "y": 0.8532631653777937 }, { "posteriors": "curve_43", "x": 0.46153846153846156, "y": 0.8614310319812526 }, { "posteriors": "curve_43", "x": 0.46703296703296704, "y": 0.869579036737523 }, { "posteriors": "curve_43", "x": 0.4725274725274725, "y": 0.8777074607769475 }, { "posteriors": "curve_43", "x": 0.47802197802197804, "y": 0.8858165780315159 }, { "posteriors": "curve_43", "x": 0.4835164835164835, "y": 0.8939066554997173 }, { "posteriors": "curve_43", "x": 0.489010989010989, "y": 0.9019779534987495 }, { "posteriors": "curve_43", "x": 0.4945054945054945, "y": 0.910030725904828 }, { "posteriors": "curve_43", "x": 0.5, "y": 0.9180652203822776 }, { "posteriors": "curve_43", "x": 0.5054945054945055, "y": 0.9260816786020519 }, { "posteriors": "curve_43", "x": 0.510989010989011, "y": 0.9340803364502772 }, { "posteriors": "curve_43", "x": 0.5164835164835165, "y": 0.9420614242273746 }, { "posteriors": "curve_43", "x": 0.521978021978022, "y": 0.9500251668382874 }, { "posteriors": "curve_43", "x": 0.5274725274725275, "y": 0.9579717839742965 }, { "posteriors": "curve_43", "x": 0.532967032967033, "y": 0.9659014902868805 }, { "posteriors": "curve_43", "x": 0.5384615384615384, "y": 0.9738144955540476 }, { "posteriors": "curve_43", "x": 0.5439560439560439, "y": 0.9817110048395378 }, { "posteriors": "curve_43", "x": 0.5494505494505495, "y": 0.9895912186452706 }, { "posteriors": "curve_43", "x": 0.554945054945055, "y": 0.997455333057388 }, { "posteriors": "curve_43", "x": 0.5604395604395604, "y": 1.0053035398862256 }, { "posteriors": "curve_43", "x": 0.5659340659340659, "y": 1.0131360268005178 }, { "posteriors": "curve_43", "x": 0.5714285714285714, "y": 1.0209529774561295 }, { "posteriors": "curve_43", "x": 0.5769230769230769, "y": 1.0287545716195887 }, { "posteriors": "curve_43", "x": 0.5824175824175825, "y": 1.0365409852866787 }, { "posteriors": "curve_43", "x": 0.5879120879120879, "y": 1.044312390796326 }, { "posteriors": "curve_43", "x": 0.5934065934065934, "y": 1.0520689569400223 }, { "posteriors": "curve_43", "x": 0.5989010989010989, "y": 1.0598108490669864 }, { "posteriors": "curve_43", "x": 0.6043956043956044, "y": 1.0675382291852757 }, { "posteriors": "curve_43", "x": 0.6098901098901099, "y": 1.0752512560590344 }, { "posteriors": "curve_43", "x": 0.6153846153846154, "y": 1.082950085302062 }, { "posteriors": "curve_43", "x": 0.6208791208791209, "y": 1.0906348694678731 }, { "posteriors": "curve_43", "x": 0.6263736263736264, "y": 1.0983057581364077 }, { "posteriors": "curve_43", "x": 0.6318681318681318, "y": 1.1059628979975473 }, { "posteriors": "curve_43", "x": 0.6373626373626373, "y": 1.1136064329315778 }, { "posteriors": "curve_43", "x": 0.6428571428571429, "y": 1.1212365040867425 }, { "posteriors": "curve_43", "x": 0.6483516483516484, "y": 1.1288532499540058 }, { "posteriors": "curve_43", "x": 0.6538461538461539, "y": 1.136456806439159 }, { "posteriors": "curve_43", "x": 0.6593406593406593, "y": 1.1440473069323778 }, { "posteriors": "curve_43", "x": 0.6648351648351648, "y": 1.1516248823753457 }, { "posteriors": "curve_43", "x": 0.6703296703296703, "y": 1.159189661326047 }, { "posteriors": "curve_43", "x": 0.6758241758241759, "y": 1.1667417700213296 }, { "posteriors": "curve_43", "x": 0.6813186813186813, "y": 1.1742813324373265 }, { "posteriors": "curve_43", "x": 0.6868131868131868, "y": 1.1818084703478364 }, { "posteriors": "curve_43", "x": 0.6923076923076923, "y": 1.1893233033807373 }, { "posteriors": "curve_43", "x": 0.6978021978021978, "y": 1.1968259490725215 }, { "posteriors": "curve_43", "x": 0.7032967032967034, "y": 1.2043165229210255 }, { "posteriors": "curve_43", "x": 0.7087912087912088, "y": 1.2117951384364294 }, { "posteriors": "curve_43", "x": 0.7142857142857143, "y": 1.219261907190595 }, { "posteriors": "curve_43", "x": 0.7197802197802198, "y": 1.2267169388648105 }, { "posteriors": "curve_43", "x": 0.7252747252747253, "y": 1.2341603412960025 }, { "posteriors": "curve_43", "x": 0.7307692307692307, "y": 1.2415922205214782 }, { "posteriors": "curve_43", "x": 0.7362637362637363, "y": 1.249012680822253 }, { "posteriors": "curve_43", "x": 0.7417582417582418, "y": 1.256421824765021 }, { "posteriors": "curve_43", "x": 0.7472527472527473, "y": 1.2638197532428184 }, { "posteriors": "curve_43", "x": 0.7527472527472527, "y": 1.271206565514431 }, { "posteriors": "curve_43", "x": 0.7582417582417582, "y": 1.2785823592425922 }, { "posteriors": "curve_43", "x": 0.7637362637362637, "y": 1.2859472305310207 }, { "posteriors": "curve_43", "x": 0.7692307692307693, "y": 1.2933012739603351 }, { "posteriors": "curve_43", "x": 0.7747252747252747, "y": 1.300644582622892 }, { "posteriors": "curve_43", "x": 0.7802197802197802, "y": 1.3079772481565886 }, { "posteriors": "curve_43", "x": 0.7857142857142857, "y": 1.3152993607776602 }, { "posteriors": "curve_43", "x": 0.7912087912087912, "y": 1.322611009312518 }, { "posteriors": "curve_43", "x": 0.7967032967032966, "y": 1.329912281228657 }, { "posteriors": "curve_43", "x": 0.8021978021978022, "y": 1.337203262664667 }, { "posteriors": "curve_43", "x": 0.8076923076923077, "y": 1.3444840384593806 }, { "posteriors": "curve_43", "x": 0.8131868131868132, "y": 1.3517546921801888 }, { "posteriors": "curve_43", "x": 0.8186813186813187, "y": 1.359015306150552 }, { "posteriors": "curve_43", "x": 0.8241758241758241, "y": 1.3662659614767356 }, { "posteriors": "curve_43", "x": 0.8296703296703297, "y": 1.3735067380737958 }, { "posteriors": "curve_43", "x": 0.8351648351648352, "y": 1.3807377146908426 }, { "posteriors": "curve_43", "x": 0.8406593406593407, "y": 1.3879589689356067 }, { "posteriors": "curve_43", "x": 0.8461538461538461, "y": 1.3951705772983274 }, { "posteriors": "curve_43", "x": 0.8516483516483516, "y": 1.4023726151749927 }, { "posteriors": "curve_43", "x": 0.8571428571428571, "y": 1.4095651568899472 }, { "posteriors": "curve_43", "x": 0.8626373626373627, "y": 1.4167482757178915 }, { "posteriors": "curve_43", "x": 0.8681318681318682, "y": 1.423922043905293 }, { "posteriors": "curve_43", "x": 0.8736263736263736, "y": 1.431086532691228 }, { "posteriors": "curve_43", "x": 0.8791208791208791, "y": 1.438241812327671 }, { "posteriors": "curve_43", "x": 0.8846153846153846, "y": 1.4453879520992534 }, { "posteriors": "curve_43", "x": 0.8901098901098901, "y": 1.452525020342505 }, { "posteriors": "curve_43", "x": 0.8956043956043956, "y": 1.4596530844645978 }, { "posteriors": "curve_43", "x": 0.9010989010989011, "y": 1.4667722109616037 }, { "posteriors": "curve_43", "x": 0.9065934065934066, "y": 1.4738824654362888 }, { "posteriors": "curve_43", "x": 0.9120879120879121, "y": 1.4809839126154507 }, { "posteriors": "curve_43", "x": 0.9175824175824175, "y": 1.4880766163668195 }, { "posteriors": "curve_43", "x": 0.9230769230769231, "y": 1.495160639715531 }, { "posteriors": "curve_43", "x": 0.9285714285714286, "y": 1.5022360448601906 }, { "posteriors": "curve_43", "x": 0.9340659340659341, "y": 1.5093028931885355 }, { "posteriors": "curve_43", "x": 0.9395604395604396, "y": 1.5163612452927115 }, { "posteriors": "curve_43", "x": 0.945054945054945, "y": 1.523411160984174 }, { "posteriors": "curve_43", "x": 0.9505494505494505, "y": 1.5304526993082228 }, { "posteriors": "curve_43", "x": 0.9560439560439561, "y": 1.537485918558188 }, { "posteriors": "curve_43", "x": 0.9615384615384616, "y": 1.5445108762892685 }, { "posteriors": "curve_43", "x": 0.967032967032967, "y": 1.5515276293320428 }, { "posteriors": "curve_43", "x": 0.9725274725274725, "y": 1.558536233805654 }, { "posteriors": "curve_43", "x": 0.978021978021978, "y": 1.5655367451306836 }, { "posteriors": "curve_43", "x": 0.9835164835164835, "y": 1.5725292180417187 }, { "posteriors": "curve_43", "x": 0.989010989010989, "y": 1.579513706599629 }, { "posteriors": "curve_43", "x": 0.9945054945054945, "y": 1.5864902642035517 }, { "posteriors": "curve_44", "x": 0, "y": 0 }, { "posteriors": "curve_44", "x": 0.005494505494505495, "y": 0.02565675580343385 }, { "posteriors": "curve_44", "x": 0.01098901098901099, "y": 0.04386401720127769 }, { "posteriors": "curve_44", "x": 0.016483516483516484, "y": 0.06002747380818463 }, { "posteriors": "curve_44", "x": 0.02197802197802198, "y": 0.07499202236537143 }, { "posteriors": "curve_44", "x": 0.027472527472527472, "y": 0.08912391665898634 }, { "posteriors": "curve_44", "x": 0.03296703296703297, "y": 0.10262584107843652 }, { "posteriors": "curve_44", "x": 0.038461538461538464, "y": 0.11562544203654977 }, { "posteriors": "curve_44", "x": 0.04395604395604396, "y": 0.1282099492311105 }, { "posteriors": "curve_44", "x": 0.04945054945054945, "y": 0.14044244874131878 }, { "posteriors": "curve_44", "x": 0.054945054945054944, "y": 0.1523705118186376 }, { "posteriors": "curve_44", "x": 0.06043956043956044, "y": 0.16403118152963445 }, { "posteriors": "curve_44", "x": 0.06593406593406594, "y": 0.17545404777004764 }, { "posteriors": "curve_44", "x": 0.07142857142857142, "y": 0.18666324234276827 }, { "posteriors": "curve_44", "x": 0.07692307692307693, "y": 0.19767878749961665 }, { "posteriors": "curve_44", "x": 0.08241758241758242, "y": 0.20851753876903306 }, { "posteriors": "curve_44", "x": 0.08791208791208792, "y": 0.21919386307195127 }, { "posteriors": "curve_44", "x": 0.09340659340659341, "y": 0.2297201383566494 }, { "posteriors": "curve_44", "x": 0.0989010989010989, "y": 0.24010712946623886 }, { "posteriors": "curve_44", "x": 0.1043956043956044, "y": 0.2503642760692328 }, { "posteriors": "curve_44", "x": 0.10989010989010989, "y": 0.2604999167699014 }, { "posteriors": "curve_44", "x": 0.11538461538461539, "y": 0.2705214660257175 }, { "posteriors": "curve_44", "x": 0.12087912087912088, "y": 0.28043555558177063 }, { "posteriors": "curve_44", "x": 0.12637362637362637, "y": 0.2902481488264287 }, { "posteriors": "curve_44", "x": 0.13186813186813187, "y": 0.2999646342032508 }, { "posteriors": "curve_44", "x": 0.13736263736263737, "y": 0.3095899022266431 }, { "posteriors": "curve_44", "x": 0.14285714285714285, "y": 0.3191284095190871 }, { "posteriors": "curve_44", "x": 0.14835164835164835, "y": 0.3285842324713757 }, { "posteriors": "curve_44", "x": 0.15384615384615385, "y": 0.3379611125289033 }, { "posteriors": "curve_44", "x": 0.15934065934065933, "y": 0.3472624946627585 }, { "posteriors": "curve_44", "x": 0.16483516483516483, "y": 0.3564915602505292 }, { "posteriors": "curve_44", "x": 0.17032967032967034, "y": 0.3656512553381296 }, { "posteriors": "curve_44", "x": 0.17582417582417584, "y": 0.37474431505934047 }, { "posteriors": "curve_44", "x": 0.1813186813186813, "y": 0.3837732848389932 }, { "posteriors": "curve_44", "x": 0.18681318681318682, "y": 0.39274053888790367 }, { "posteriors": "curve_44", "x": 0.19230769230769232, "y": 0.40164829640482913 }, { "posteriors": "curve_44", "x": 0.1978021978021978, "y": 0.41049863582701746 }, { "posteriors": "curve_44", "x": 0.2032967032967033, "y": 0.4192935074119701 }, { "posteriors": "curve_44", "x": 0.2087912087912088, "y": 0.42803474438558814 }, { "posteriors": "curve_44", "x": 0.21428571428571427, "y": 0.4367240728534236 }, { "posteriors": "curve_44", "x": 0.21978021978021978, "y": 0.44536312064041444 }, { "posteriors": "curve_44", "x": 0.22527472527472528, "y": 0.45395342519879683 }, { "posteriors": "curve_44", "x": 0.23076923076923078, "y": 0.46249644070271695 }, { "posteriors": "curve_44", "x": 0.23626373626373626, "y": 0.4709935444305296 }, { "posteriors": "curve_44", "x": 0.24175824175824176, "y": 0.47944604252117895 }, { "posteriors": "curve_44", "x": 0.24725274725274726, "y": 0.48785517517885235 }, { "posteriors": "curve_44", "x": 0.25274725274725274, "y": 0.4962221213898571 }, { "posteriors": "curve_44", "x": 0.25824175824175827, "y": 0.5045480032070273 }, { "posteriors": "curve_44", "x": 0.26373626373626374, "y": 0.5128338896496559 }, { "posteriors": "curve_44", "x": 0.2692307692307692, "y": 0.5210808002607336 }, { "posteriors": "curve_44", "x": 0.27472527472527475, "y": 0.5292897083579775 }, { "posteriors": "curve_44", "x": 0.2802197802197802, "y": 0.5374615440105939 }, { "posteriors": "curve_44", "x": 0.2857142857142857, "y": 0.545597196769832 }, { "posteriors": "curve_44", "x": 0.29120879120879123, "y": 0.553697518178028 }, { "posteriors": "curve_44", "x": 0.2967032967032967, "y": 0.5617633240779428 }, { "posteriors": "curve_44", "x": 0.3021978021978022, "y": 0.5697953967416882 }, { "posteriors": "curve_44", "x": 0.3076923076923077, "y": 0.5777944868363559 }, { "posteriors": "curve_44", "x": 0.3131868131868132, "y": 0.5857613152415615 }, { "posteriors": "curve_44", "x": 0.31868131868131866, "y": 0.59369657473246 }, { "posteriors": "curve_44", "x": 0.3241758241758242, "y": 0.6016009315403343 }, { "posteriors": "curve_44", "x": 0.32967032967032966, "y": 0.6094750268015838 }, { "posteriors": "curve_44", "x": 0.33516483516483514, "y": 0.6173194779048171 }, { "posteriors": "curve_44", "x": 0.34065934065934067, "y": 0.6251348797447679 }, { "posteriors": "curve_44", "x": 0.34615384615384615, "y": 0.6329218058908722 }, { "posteriors": "curve_44", "x": 0.3516483516483517, "y": 0.6406808096775795 }, { "posteriors": "curve_44", "x": 0.35714285714285715, "y": 0.6484124252227751 }, { "posteriors": "curve_44", "x": 0.3626373626373626, "y": 0.6561171683800893 }, { "posteriors": "curve_44", "x": 0.36813186813186816, "y": 0.6637955376303176 }, { "posteriors": "curve_44", "x": 0.37362637362637363, "y": 0.6714480149166958 }, { "posteriors": "curve_44", "x": 0.3791208791208791, "y": 0.6790750664283393 }, { "posteriors": "curve_44", "x": 0.38461538461538464, "y": 0.6866771433357665 }, { "posteriors": "curve_44", "x": 0.3901098901098901, "y": 0.6942546824820788 }, { "posteriors": "curve_44", "x": 0.3956043956043956, "y": 0.7018081070330574 }, { "posteriors": "curve_44", "x": 0.4010989010989011, "y": 0.7093378270891536 }, { "posteriors": "curve_44", "x": 0.4065934065934066, "y": 0.7168442402620978 }, { "posteriors": "curve_44", "x": 0.41208791208791207, "y": 0.724327732218624 }, { "posteriors": "curve_44", "x": 0.4175824175824176, "y": 0.7317886771935945 }, { "posteriors": "curve_44", "x": 0.4230769230769231, "y": 0.7392274384746309 }, { "posteriors": "curve_44", "x": 0.42857142857142855, "y": 0.7466443688601798 }, { "posteriors": "curve_44", "x": 0.4340659340659341, "y": 0.7540398110927907 }, { "posteriors": "curve_44", "x": 0.43956043956043955, "y": 0.7614140982692468 }, { "posteriors": "curve_44", "x": 0.44505494505494503, "y": 0.7687675542290551 }, { "posteriors": "curve_44", "x": 0.45054945054945056, "y": 0.7761004939226938 }, { "posteriors": "curve_44", "x": 0.45604395604395603, "y": 0.7834132237609027 }, { "posteriors": "curve_44", "x": 0.46153846153846156, "y": 0.7907060419462119 }, { "posteriors": "curve_44", "x": 0.46703296703296704, "y": 0.7979792387878085 }, { "posteriors": "curve_44", "x": 0.4725274725274725, "y": 0.8052330970007693 }, { "posteriors": "curve_44", "x": 0.47802197802197804, "y": 0.8124678919906039 }, { "posteriors": "curve_44", "x": 0.4835164835164835, "y": 0.8196838921239932 }, { "posteriors": "curve_44", "x": 0.489010989010989, "y": 0.8268813589865406 }, { "posteriors": "curve_44", "x": 0.4945054945054945, "y": 0.8340605476282968 }, { "posteriors": "curve_44", "x": 0.5, "y": 0.8412217067977693 }, { "posteriors": "curve_44", "x": 0.5054945054945055, "y": 0.8483650791650765 }, { "posteriors": "curve_44", "x": 0.510989010989011, "y": 0.855490901534861 }, { "posteriors": "curve_44", "x": 0.5164835164835165, "y": 0.8625994050495395 }, { "posteriors": "curve_44", "x": 0.521978021978022, "y": 0.869690815383423 }, { "posteriors": "curve_44", "x": 0.5274725274725275, "y": 0.8767653529282127 }, { "posteriors": "curve_44", "x": 0.532967032967033, "y": 0.8838232329703372 }, { "posteriors": "curve_44", "x": 0.5384615384615384, "y": 0.890864665860571 }, { "posteriors": "curve_44", "x": 0.5439560439560439, "y": 0.8978898571763475 }, { "posteriors": "curve_44", "x": 0.5494505494505495, "y": 0.904899007877149 }, { "posteriors": "curve_44", "x": 0.554945054945055, "y": 0.9118923144533364 }, { "posteriors": "curve_44", "x": 0.5604395604395604, "y": 0.9188699690687586 }, { "posteriors": "curve_44", "x": 0.5659340659340659, "y": 0.925832159697458 }, { "posteriors": "curve_44", "x": 0.5714285714285714, "y": 0.9327790702547737 }, { "posteriors": "curve_44", "x": 0.5769230769230769, "y": 0.9397108807231204 }, { "posteriors": "curve_44", "x": 0.5824175824175825, "y": 0.9466277672727123 }, { "posteriors": "curve_44", "x": 0.5879120879120879, "y": 0.9535299023774755 }, { "posteriors": "curve_44", "x": 0.5934065934065934, "y": 0.9604174549263897 }, { "posteriors": "curve_44", "x": 0.5989010989010989, "y": 0.9672905903304748 }, { "posteriors": "curve_44", "x": 0.6043956043956044, "y": 0.9741494706256343 }, { "posteriors": "curve_44", "x": 0.6098901098901099, "y": 0.9809942545715509 }, { "posteriors": "curve_44", "x": 0.6153846153846154, "y": 0.9878250977468198 }, { "posteriors": "curve_44", "x": 0.6208791208791209, "y": 0.994642152640497 }, { "posteriors": "curve_44", "x": 0.6263736263736264, "y": 1.0014455687402253 }, { "posteriors": "curve_44", "x": 0.6318681318681318, "y": 1.008235492617097 }, { "posteriors": "curve_44", "x": 0.6373626373626373, "y": 1.0150120680074004 }, { "posteriors": "curve_44", "x": 0.6428571428571429, "y": 1.021775435891391 }, { "posteriors": "curve_44", "x": 0.6483516483516484, "y": 1.0285257345692203 }, { "posteriors": "curve_44", "x": 0.6538461538461539, "y": 1.0352630997341457 }, { "posteriors": "curve_44", "x": 0.6593406593406593, "y": 1.0419876645431463 }, { "posteriors": "curve_44", "x": 0.6648351648351648, "y": 1.0486995596850488 }, { "posteriors": "curve_44", "x": 0.6703296703296703, "y": 1.0553989134462813 }, { "posteriors": "curve_44", "x": 0.6758241758241759, "y": 1.0620858517743477 }, { "posteriors": "curve_44", "x": 0.6813186813186813, "y": 1.0687604983391232 }, { "posteriors": "curve_44", "x": 0.6868131868131868, "y": 1.0754229745920654 }, { "posteriors": "curve_44", "x": 0.6923076923076923, "y": 1.082073399823421 }, { "posteriors": "curve_44", "x": 0.6978021978021978, "y": 1.0887118912175189 }, { "posteriors": "curve_44", "x": 0.7032967032967034, "y": 1.095338563906222 }, { "posteriors": "curve_44", "x": 0.7087912087912088, "y": 1.101953531020618 }, { "posteriors": "curve_44", "x": 0.7142857142857143, "y": 1.1085569037410166 }, { "posteriors": "curve_44", "x": 0.7197802197802198, "y": 1.1151487913453226 }, { "posteriors": "curve_44", "x": 0.7252747252747253, "y": 1.1217293012558507 }, { "posteriors": "curve_44", "x": 0.7307692307692307, "y": 1.1282985390846418 }, { "posteriors": "curve_44", "x": 0.7362637362637363, "y": 1.1348566086773408 }, { "posteriors": "curve_44", "x": 0.7417582417582418, "y": 1.141403612155691 }, { "posteriors": "curve_44", "x": 0.7472527472527473, "y": 1.1479396499587 }, { "posteriors": "curve_44", "x": 0.7527472527472527, "y": 1.154464820882528 }, { "posteriors": "curve_44", "x": 0.7582417582417582, "y": 1.160979222119144 }, { "posteriors": "curve_44", "x": 0.7637362637362637, "y": 1.1674829492938015 }, { "posteriors": "curve_44", "x": 0.7692307692307693, "y": 1.1739760965013755 }, { "posteriors": "curve_44", "x": 0.7747252747252747, "y": 1.1804587563416014 }, { "posteriors": "curve_44", "x": 0.7802197802197802, "y": 1.1869310199532608 }, { "posteriors": "curve_44", "x": 0.7857142857142857, "y": 1.193392977047349 }, { "posteriors": "curve_44", "x": 0.7912087912087912, "y": 1.1998447159392645 }, { "posteriors": "curve_44", "x": 0.7967032967032966, "y": 1.2062863235800518 }, { "posteriors": "curve_44", "x": 0.8021978021978022, "y": 1.212717885586738 }, { "posteriors": "curve_44", "x": 0.8076923076923077, "y": 1.2191394862717886 }, { "posteriors": "curve_44", "x": 0.8131868131868132, "y": 1.225551208671719 }, { "posteriors": "curve_44", "x": 0.8186813186813187, "y": 1.231953134574888 }, { "posteriors": "curve_44", "x": 0.8241758241758241, "y": 1.2383453445485062 }, { "posteriors": "curve_44", "x": 0.8296703296703297, "y": 1.24472791796488 }, { "posteriors": "curve_44", "x": 0.8351648351648352, "y": 1.2511009330269252 }, { "posteriors": "curve_44", "x": 0.8406593406593407, "y": 1.2574644667929704 }, { "posteriors": "curve_44", "x": 0.8461538461538461, "y": 1.2638185952008745 }, { "posteriors": "curve_44", "x": 0.8516483516483516, "y": 1.2701633930914853 }, { "posteriors": "curve_44", "x": 0.8571428571428571, "y": 1.2764989342314566 }, { "posteriors": "curve_44", "x": 0.8626373626373627, "y": 1.2828252913354488 }, { "posteriors": "curve_44", "x": 0.8681318681318682, "y": 1.289142536087732 }, { "posteriors": "curve_44", "x": 0.8736263736263736, "y": 1.295450739163212 }, { "posteriors": "curve_44", "x": 0.8791208791208791, "y": 1.3017499702478972 }, { "posteriors": "curve_44", "x": 0.8846153846153846, "y": 1.308040298058825 }, { "posteriors": "curve_44", "x": 0.8901098901098901, "y": 1.3143217903634667 }, { "posteriors": "curve_44", "x": 0.8956043956043956, "y": 1.3205945139986262 }, { "posteriors": "curve_44", "x": 0.9010989010989011, "y": 1.3268585348888464 }, { "posteriors": "curve_44", "x": 0.9065934065934066, "y": 1.3331139180643465 }, { "posteriors": "curve_44", "x": 0.9120879120879121, "y": 1.3393607276784962 }, { "posteriors": "curve_44", "x": 0.9175824175824175, "y": 1.345599027024846 }, { "posteriors": "curve_44", "x": 0.9230769230769231, "y": 1.351828878553728 }, { "posteriors": "curve_44", "x": 0.9285714285714286, "y": 1.3580503438884388 }, { "posteriors": "curve_44", "x": 0.9340659340659341, "y": 1.3642634838410175 }, { "posteriors": "curve_44", "x": 0.9395604395604396, "y": 1.370468358427632 }, { "posteriors": "curve_44", "x": 0.945054945054945, "y": 1.3766650268835854 }, { "posteriors": "curve_44", "x": 0.9505494505494505, "y": 1.3828535476779538 }, { "posteriors": "curve_44", "x": 0.9560439560439561, "y": 1.3890339785278674 }, { "posteriors": "curve_44", "x": 0.9615384615384616, "y": 1.395206376412442 }, { "posteriors": "curve_44", "x": 0.967032967032967, "y": 1.40137079758638 }, { "posteriors": "curve_44", "x": 0.9725274725274725, "y": 1.4075272975932387 }, { "posteriors": "curve_44", "x": 0.978021978021978, "y": 1.413675931278386 }, { "posteriors": "curve_44", "x": 0.9835164835164835, "y": 1.4198167528016474 }, { "posteriors": "curve_44", "x": 0.989010989010989, "y": 1.4259498156496542 }, { "posteriors": "curve_44", "x": 0.9945054945054945, "y": 1.4320751726479033 }, { "posteriors": "curve_45", "x": 0, "y": 0 }, { "posteriors": "curve_45", "x": 0.005494505494505495, "y": 0.024893991117082855 }, { "posteriors": "curve_45", "x": 0.01098901098901099, "y": 0.04291864918098336 }, { "posteriors": "curve_45", "x": 0.016483516483516484, "y": 0.05902280022180244 }, { "posteriors": "curve_45", "x": 0.02197802197802198, "y": 0.07399417951331605 }, { "posteriors": "curve_45", "x": 0.027472527472527472, "y": 0.08817594792602029 }, { "posteriors": "curve_45", "x": 0.03296703296703297, "y": 0.10175864707610012 }, { "posteriors": "curve_45", "x": 0.038461538461538464, "y": 0.11486258561735024 }, { "posteriors": "curve_45", "x": 0.04395604395604396, "y": 0.1275701520511693 }, { "posteriors": "curve_45", "x": 0.04945054945054945, "y": 0.13994103756356724 }, { "posteriors": "curve_45", "x": 0.054945054945054944, "y": 0.15202032319520598 }, { "posteriors": "curve_45", "x": 0.06043956043956044, "y": 0.16384316104610813 }, { "posteriors": "curve_45", "x": 0.06593406593406594, "y": 0.17543766503530497 }, { "posteriors": "curve_45", "x": 0.07142857142857142, "y": 0.18682678880329995 }, { "posteriors": "curve_45", "x": 0.07692307692307693, "y": 0.19802959649763868 }, { "posteriors": "curve_45", "x": 0.08241758241758242, "y": 0.2090621521606542 }, { "posteriors": "curve_45", "x": 0.08791208791208792, "y": 0.21993816002013708 }, { "posteriors": "curve_45", "x": 0.09340659340659341, "y": 0.23066943667143908 }, { "posteriors": "curve_45", "x": 0.0989010989010989, "y": 0.24126626658479206 }, { "posteriors": "curve_45", "x": 0.1043956043956044, "y": 0.25173767464859337 }, { "posteriors": "curve_45", "x": 0.10989010989010989, "y": 0.2620916384563775 }, { "posteriors": "curve_45", "x": 0.11538461538461539, "y": 0.27233525600482267 }, { "posteriors": "curve_45", "x": 0.12087912087912088, "y": 0.28247487984422864 }, { "posteriors": "curve_45", "x": 0.12637362637362637, "y": 0.2925162256111651 }, { "posteriors": "curve_45", "x": 0.13186813186813187, "y": 0.302464460735433 }, { "posteriors": "curve_45", "x": 0.13736263736263737, "y": 0.3123242776172139 }, { "posteriors": "curve_45", "x": 0.14285714285714285, "y": 0.32209995450492923 }, { "posteriors": "curve_45", "x": 0.14835164835164835, "y": 0.3317954065339956 }, { "posteriors": "curve_45", "x": 0.15384615384615385, "y": 0.3414142288217303 }, { "posteriors": "curve_45", "x": 0.15934065934065933, "y": 0.3509597330939996 }, { "posteriors": "curve_45", "x": 0.16483516483516483, "y": 0.3604349790037172 }, { "posteriors": "curve_45", "x": 0.17032967032967034, "y": 0.3698428010615346 }, { "posteriors": "curve_45", "x": 0.17582417582417584, "y": 0.37918583191498234 }, { "posteriors": "curve_45", "x": 0.1813186813186813, "y": 0.38846652256965436 }, { "posteriors": "curve_45", "x": 0.18681318681318682, "y": 0.397687160034492 }, { "posteriors": "curve_45", "x": 0.19230769230769232, "y": 0.40684988278530254 }, { "posteriors": "curve_45", "x": 0.1978021978021978, "y": 0.41595669437081834 }, { "posteriors": "curve_45", "x": 0.2032967032967033, "y": 0.42500947542973644 }, { "posteriors": "curve_45", "x": 0.2087912087912088, "y": 0.43400999434218385 }, { "posteriors": "curve_45", "x": 0.21428571428571427, "y": 0.44295991670259044 }, { "posteriors": "curve_45", "x": 0.21978021978021978, "y": 0.4518608137712125 }, { "posteriors": "curve_45", "x": 0.22527472527472528, "y": 0.46071417003717247 }, { "posteriors": "curve_45", "x": 0.23076923076923078, "y": 0.46952139000577975 }, { "posteriors": "curve_45", "x": 0.23626373626373626, "y": 0.4782838043062437 }, { "posteriors": "curve_45", "x": 0.24175824175824176, "y": 0.48700267520202817 }, { "posteriors": "curve_45", "x": 0.24725274725274726, "y": 0.49567920157450124 }, { "posteriors": "curve_45", "x": 0.25274725274725274, "y": 0.504314523440793 }, { "posteriors": "curve_45", "x": 0.25824175824175827, "y": 0.5129097260585633 }, { "posteriors": "curve_45", "x": 0.26373626373626374, "y": 0.5214658436634229 }, { "posteriors": "curve_45", "x": 0.2692307692307692, "y": 0.5299838628788405 }, { "posteriors": "curve_45", "x": 0.27472527472527475, "y": 0.5384647258333254 }, { "posteriors": "curve_45", "x": 0.2802197802197802, "y": 0.546909333015359 }, { "posteriors": "curve_45", "x": 0.2857142857142857, "y": 0.5553185458928412 }, { "posteriors": "curve_45", "x": 0.29120879120879123, "y": 0.5636931893206242 }, { "posteriors": "curve_45", "x": 0.2967032967032967, "y": 0.5720340537569459 }, { "posteriors": "curve_45", "x": 0.3021978021978022, "y": 0.5803418973071895 }, { "posteriors": "curve_45", "x": 0.3076923076923077, "y": 0.5886174476113054 }, { "posteriors": "curve_45", "x": 0.3131868131868132, "y": 0.596861403589436 }, { "posteriors": "curve_45", "x": 0.31868131868131866, "y": 0.6050744370586895 }, { "posteriors": "curve_45", "x": 0.3241758241758242, "y": 0.6132571942326305 }, { "posteriors": "curve_45", "x": 0.32967032967032966, "y": 0.6214102971138356 }, { "posteriors": "curve_45", "x": 0.33516483516483514, "y": 0.6295343447887932 }, { "posteriors": "curve_45", "x": 0.34065934065934067, "y": 0.6376299146334831 }, { "posteriors": "curve_45", "x": 0.34615384615384615, "y": 0.6456975634371345 }, { "posteriors": "curve_45", "x": 0.3516483516483517, "y": 0.6537378284509286 }, { "posteriors": "curve_45", "x": 0.35714285714285715, "y": 0.6617512283677472 }, { "posteriors": "curve_45", "x": 0.3626373626373626, "y": 0.6697382642384938 }, { "posteriors": "curve_45", "x": 0.36813186813186816, "y": 0.6776994203299905 }, { "posteriors": "curve_45", "x": 0.37362637362637363, "y": 0.6856351649289913 }, { "posteriors": "curve_45", "x": 0.3791208791208791, "y": 0.693545951096437 }, { "posteriors": "curve_45", "x": 0.38461538461538464, "y": 0.7014322173757078 }, { "posteriors": "curve_45", "x": 0.3901098901098901, "y": 0.7092943884582954 }, { "posteriors": "curve_45", "x": 0.3956043956043956, "y": 0.717132875810018 }, { "posteriors": "curve_45", "x": 0.4010989010989011, "y": 0.7249480782606301 }, { "posteriors": "curve_45", "x": 0.4065934065934066, "y": 0.7327403825594413 }, { "posteriors": "curve_45", "x": 0.41208791208791207, "y": 0.7405101638993334 }, { "posteriors": "curve_45", "x": 0.4175824175824176, "y": 0.7482577864113715 }, { "posteriors": "curve_45", "x": 0.4230769230769231, "y": 0.7559836036320243 }, { "posteriors": "curve_45", "x": 0.42857142857142855, "y": 0.7636879589448444 }, { "posteriors": "curve_45", "x": 0.4340659340659341, "y": 0.7713711859983168 }, { "posteriors": "curve_45", "x": 0.43956043956043955, "y": 0.7790336091014431 }, { "posteriors": "curve_45", "x": 0.44505494505494503, "y": 0.7866755435985144 }, { "posteriors": "curve_45", "x": 0.45054945054945056, "y": 0.7942972962244071 }, { "posteriors": "curve_45", "x": 0.45604395604395603, "y": 0.8018991654416436 }, { "posteriors": "curve_45", "x": 0.46153846153846156, "y": 0.8094814417603562 }, { "posteriors": "curve_45", "x": 0.46703296703296704, "y": 0.8170444080422201 }, { "posteriors": "curve_45", "x": 0.4725274725274725, "y": 0.8245883397893337 }, { "posteriors": "curve_45", "x": 0.47802197802197804, "y": 0.8321135054189591 }, { "posteriors": "curve_45", "x": 0.4835164835164835, "y": 0.8396201665249702 }, { "posteriors": "curve_45", "x": 0.489010989010989, "y": 0.8471085781267937 }, { "posteriors": "curve_45", "x": 0.4945054945054945, "y": 0.8545789889065762 }, { "posteriors": "curve_45", "x": 0.5, "y": 0.8620316414352573 }, { "posteriors": "curve_45", "x": 0.5054945054945055, "y": 0.8694667723881859 }, { "posteriors": "curve_45", "x": 0.510989010989011, "y": 0.8768846127508693 }, { "posteriors": "curve_45", "x": 0.5164835164835165, "y": 0.884285388015409 }, { "posteriors": "curve_45", "x": 0.521978021978022, "y": 0.8916693183681401 }, { "posteriors": "curve_45", "x": 0.5274725274725275, "y": 0.8990366188689547 }, { "posteriors": "curve_45", "x": 0.532967032967033, "y": 0.9063874996227618 }, { "posteriors": "curve_45", "x": 0.5384615384615384, "y": 0.913722165943506 }, { "posteriors": "curve_45", "x": 0.5439560439560439, "y": 0.9210408185111391 }, { "posteriors": "curve_45", "x": 0.5494505494505495, "y": 0.9283436535219185 }, { "posteriors": "curve_45", "x": 0.554945054945055, "y": 0.9356308628323751 }, { "posteriors": "curve_45", "x": 0.5604395604395604, "y": 0.9429026340972834 }, { "posteriors": "curve_45", "x": 0.5659340659340659, "y": 0.9501591509019341 }, { "posteriors": "curve_45", "x": 0.5714285714285714, "y": 0.9574005928890017 }, { "posteriors": "curve_45", "x": 0.5769230769230769, "y": 0.964627135880275 }, { "posteriors": "curve_45", "x": 0.5824175824175825, "y": 0.9718389519935083 }, { "posteriors": "curve_45", "x": 0.5879120879120879, "y": 0.9790362097546284 }, { "posteriors": "curve_45", "x": 0.5934065934065934, "y": 0.9862190742055301 }, { "posteriors": "curve_45", "x": 0.5989010989010989, "y": 0.9933877070076668 }, { "posteriors": "curve_45", "x": 0.6043956043956044, "y": 1.0005422665416401 }, { "posteriors": "curve_45", "x": 0.6098901098901099, "y": 1.0076829080029792 }, { "posteriors": "curve_45", "x": 0.6153846153846154, "y": 1.0148097834942837 }, { "posteriors": "curve_45", "x": 0.6208791208791209, "y": 1.0219230421139063 }, { "posteriors": "curve_45", "x": 0.6263736263736264, "y": 1.0290228300413298 }, { "posteriors": "curve_45", "x": 0.6318681318681318, "y": 1.0361092906193892 }, { "posteriors": "curve_45", "x": 0.6373626373626373, "y": 1.0431825644334851 }, { "posteriors": "curve_45", "x": 0.6428571428571429, "y": 1.0502427893879218 }, { "posteriors": "curve_45", "x": 0.6483516483516484, "y": 1.0572901007794973 }, { "posteriors": "curve_45", "x": 0.6538461538461539, "y": 1.0643246313684676 }, { "posteriors": "curve_45", "x": 0.6593406593406593, "y": 1.071346511447001 }, { "posteriors": "curve_45", "x": 0.6648351648351648, "y": 1.0783558689052286 }, { "posteriors": "curve_45", "x": 0.6703296703296703, "y": 1.0853528292949985 }, { "posteriors": "curve_45", "x": 0.6758241758241759, "y": 1.0923375158914277 }, { "posteriors": "curve_45", "x": 0.6813186813186813, "y": 1.0993100497523467 }, { "posteriors": "curve_45", "x": 0.6868131868131868, "y": 1.1062705497757286 }, { "posteriors": "curve_45", "x": 0.6923076923076923, "y": 1.1132191327551797 }, { "posteriors": "curve_45", "x": 0.6978021978021978, "y": 1.120155913433578 }, { "posteriors": "curve_45", "x": 0.7032967032967034, "y": 1.1270810045549318 }, { "posteriors": "curve_45", "x": 0.7087912087912088, "y": 1.133994516914534 }, { "posteriors": "curve_45", "x": 0.7142857142857143, "y": 1.1408965594074778 }, { "posteriors": "curve_45", "x": 0.7197802197802198, "y": 1.1477872390756019 }, { "posteriors": "curve_45", "x": 0.7252747252747253, "y": 1.1546666611529255 }, { "posteriors": "curve_45", "x": 0.7307692307692307, "y": 1.1615349291096346 }, { "posteriors": "curve_45", "x": 0.7362637362637363, "y": 1.168392144694676 }, { "posteriors": "curve_45", "x": 0.7417582417582418, "y": 1.1752384079770117 }, { "posteriors": "curve_45", "x": 0.7472527472527473, "y": 1.182073817385588 }, { "posteriors": "curve_45", "x": 0.7527472527472527, "y": 1.1888984697480651 }, { "posteriors": "curve_45", "x": 0.7582417582417582, "y": 1.1957124603283578 }, { "posteriors": "curve_45", "x": 0.7637362637362637, "y": 1.2025158828630296 }, { "posteriors": "curve_45", "x": 0.7692307692307693, "y": 1.2093088295965855 }, { "posteriors": "curve_45", "x": 0.7747252747252747, "y": 1.2160913913157012 }, { "posteriors": "curve_45", "x": 0.7802197802197802, "y": 1.222863657382432 }, { "posteriors": "curve_45", "x": 0.7857142857142857, "y": 1.229625715766436 }, { "posteriors": "curve_45", "x": 0.7912087912087912, "y": 1.2363776530762483 }, { "posteriors": "curve_45", "x": 0.7967032967032966, "y": 1.2431195545896396 }, { "posteriors": "curve_45", "x": 0.8021978021978022, "y": 1.2498515042830967 }, { "posteriors": "curve_45", "x": 0.8076923076923077, "y": 1.2565735848604473 }, { "posteriors": "curve_45", "x": 0.8131868131868132, "y": 1.2632858777806695 }, { "posteriors": "curve_45", "x": 0.8186813186813187, "y": 1.269988463284907 }, { "posteriors": "curve_45", "x": 0.8241758241758241, "y": 1.2766814204227228 }, { "posteriors": "curve_45", "x": 0.8296703296703297, "y": 1.283364827077614 }, { "posteriors": "curve_45", "x": 0.8351648351648352, "y": 1.2900387599918157 }, { "posteriors": "curve_45", "x": 0.8406593406593407, "y": 1.2967032947904187 }, { "posteriors": "curve_45", "x": 0.8461538461538461, "y": 1.3033585060048223 }, { "posteriors": "curve_45", "x": 0.8516483516483516, "y": 1.310004467095545 }, { "posteriors": "curve_45", "x": 0.8571428571428571, "y": 1.316641250474417 }, { "posteriors": "curve_45", "x": 0.8626373626373627, "y": 1.323268927526173 }, { "posteriors": "curve_45", "x": 0.8681318681318682, "y": 1.3298875686294651 }, { "posteriors": "curve_45", "x": 0.8736263736263736, "y": 1.3364972431773172 }, { "posteriors": "curve_45", "x": 0.8791208791208791, "y": 1.343098019597035 }, { "posteriors": "curve_45", "x": 0.8846153846153846, "y": 1.3496899653695957 }, { "posteriors": "curve_45", "x": 0.8901098901098901, "y": 1.356273147048526 }, { "posteriors": "curve_45", "x": 0.8956043956043956, "y": 1.362847630278294 }, { "posteriors": "curve_45", "x": 0.9010989010989011, "y": 1.369413479812221 }, { "posteriors": "curve_45", "x": 0.9065934065934066, "y": 1.3759707595299384 }, { "posteriors": "curve_45", "x": 0.9120879120879121, "y": 1.3825195324543944 }, { "posteriors": "curve_45", "x": 0.9175824175824175, "y": 1.389059860768433 }, { "posteriors": "curve_45", "x": 0.9230769230769231, "y": 1.3955918058309522 }, { "posteriors": "curve_45", "x": 0.9285714285714286, "y": 1.4021154281926578 }, { "posteriors": "curve_45", "x": 0.9340659340659341, "y": 1.408630787611426 }, { "posteriors": "curve_45", "x": 0.9395604395604396, "y": 1.4151379430672841 }, { "posteriors": "curve_45", "x": 0.945054945054945, "y": 1.4216369527770216 }, { "posteriors": "curve_45", "x": 0.9505494505494505, "y": 1.4281278742084451 }, { "posteriors": "curve_45", "x": 0.9560439560439561, "y": 1.4346107640942858 }, { "posteriors": "curve_45", "x": 0.9615384615384616, "y": 1.4410856784457688 }, { "posteriors": "curve_45", "x": 0.967032967032967, "y": 1.4475526725658583 }, { "posteriors": "curve_45", "x": 0.9725274725274725, "y": 1.4540118010621836 }, { "posteriors": "curve_45", "x": 0.978021978021978, "y": 1.4604631178596594 }, { "posteriors": "curve_45", "x": 0.9835164835164835, "y": 1.466906676212806 }, { "posteriors": "curve_45", "x": 0.989010989010989, "y": 1.4733425287177804 }, { "posteriors": "curve_45", "x": 0.9945054945054945, "y": 1.4797707273241252 }, { "posteriors": "curve_46", "x": 0, "y": 0 }, { "posteriors": "curve_46", "x": 0.005494505494505495, "y": 0.025965470575058606 }, { "posteriors": "curve_46", "x": 0.01098901098901099, "y": 0.04449442987898815 }, { "posteriors": "curve_46", "x": 0.016483516483516484, "y": 0.06097248596495125 }, { "posteriors": "curve_46", "x": 0.02197802197802198, "y": 0.07624565418652055 }, { "posteriors": "curve_46", "x": 0.027472527472527472, "y": 0.09068117068411637 }, { "posteriors": "curve_46", "x": 0.03296703296703297, "y": 0.10448245077911474 }, { "posteriors": "curve_46", "x": 0.038461538461538464, "y": 0.11777769204007095 }, { "posteriors": "curve_46", "x": 0.04395604395604396, "y": 0.13065455155041267 }, { "posteriors": "curve_46", "x": 0.04945054945054945, "y": 0.14317645559319064 }, { "posteriors": "curve_46", "x": 0.054945054945054944, "y": 0.1553912523435892 }, { "posteriors": "curve_46", "x": 0.06043956043956044, "y": 0.1673362145514631 }, { "posteriors": "curve_46", "x": 0.06593406593406594, "y": 0.17904112564944946 }, { "posteriors": "curve_46", "x": 0.07142857142857142, "y": 0.19053028272440228 }, { "posteriors": "curve_46", "x": 0.07692307692307693, "y": 0.20182385081900908 }, { "posteriors": "curve_46", "x": 0.08241758241758242, "y": 0.21293881005698484 }, { "posteriors": "curve_46", "x": 0.08791208791208792, "y": 0.22388963702874687 }, { "posteriors": "curve_46", "x": 0.09340659340659341, "y": 0.23468880695744854 }, { "posteriors": "curve_46", "x": 0.0989010989010989, "y": 0.24534717155608116 }, { "posteriors": "curve_46", "x": 0.1043956043956044, "y": 0.25587424854341057 }, { "posteriors": "curve_46", "x": 0.10989010989010989, "y": 0.2662784470330893 }, { "posteriors": "curve_46", "x": 0.11538461538461539, "y": 0.2765672454939272 }, { "posteriors": "curve_46", "x": 0.12087912087912088, "y": 0.28674733404320696 }, { "posteriors": "curve_46", "x": 0.12637362637362637, "y": 0.29682472951616323 }, { "posteriors": "curve_46", "x": 0.13186813186813187, "y": 0.3068048694760293 }, { "posteriors": "curve_46", "x": 0.13736263736263737, "y": 0.3166926897346742 }, { "posteriors": "curve_46", "x": 0.14285714285714285, "y": 0.3264926888191231 }, { "posteriors": "curve_46", "x": 0.14835164835164835, "y": 0.3362089819990708 }, { "posteriors": "curve_46", "x": 0.15384615384615385, "y": 0.3458453468892503 }, { "posteriors": "curve_46", "x": 0.15934065934065933, "y": 0.35540526219402874 }, { "posteriors": "curve_46", "x": 0.16483516483516483, "y": 0.36489194082608317 }, { "posteriors": "curve_46", "x": 0.17032967032967034, "y": 0.37430835837608556 }, { "posteriors": "curve_46", "x": 0.17582417582417584, "y": 0.38365727771468283 }, { "posteriors": "curve_46", "x": 0.1813186813186813, "y": 0.3929412703564733 }, { "posteriors": "curve_46", "x": 0.18681318681318682, "y": 0.40216273509720557 }, { "posteriors": "curve_46", "x": 0.19230769230769232, "y": 0.4113239143420709 }, { "posteriors": "curve_46", "x": 0.1978021978021978, "y": 0.4204269084688248 }, { "posteriors": "curve_46", "x": 0.2032967032967033, "y": 0.42947368851018775 }, { "posteriors": "curve_46", "x": 0.2087912087912088, "y": 0.438466107392235 }, { "posteriors": "curve_46", "x": 0.21428571428571427, "y": 0.44740590992680646 }, { "posteriors": "curve_46", "x": 0.21978021978021978, "y": 0.4562947417244299 }, { "posteriors": "curve_46", "x": 0.22527472527472528, "y": 0.4651341571684095 }, { "posteriors": "curve_46", "x": 0.23076923076923078, "y": 0.47392562656941833 }, { "posteriors": "curve_46", "x": 0.23626373626373626, "y": 0.4826705426022948 }, { "posteriors": "curve_46", "x": 0.24175824175824176, "y": 0.4913702261120475 }, { "posteriors": "curve_46", "x": 0.24725274725274726, "y": 0.5000259313637964 }, { "posteriors": "curve_46", "x": 0.25274725274725274, "y": 0.50863885080106 }, { "posteriors": "curve_46", "x": 0.25824175824175827, "y": 0.5172101193681052 }, { "posteriors": "curve_46", "x": 0.26373626373626374, "y": 0.5257408184447081 }, { "posteriors": "curve_46", "x": 0.2692307692307692, "y": 0.5342319794354231 }, { "posteriors": "curve_46", "x": 0.27472527472527475, "y": 0.5426845870501157 }, { "posteriors": "curve_46", "x": 0.2802197802197802, "y": 0.5510995823079508 }, { "posteriors": "curve_46", "x": 0.2857142857142857, "y": 0.5594778652931068 }, { "posteriors": "curve_46", "x": 0.29120879120879123, "y": 0.5678202976871086 }, { "posteriors": "curve_46", "x": 0.2967032967032967, "y": 0.5761277050997518 }, { "posteriors": "curve_46", "x": 0.3021978021978022, "y": 0.5844008792180687 }, { "posteriors": "curve_46", "x": 0.3076923076923077, "y": 0.5926405797905839 }, { "posteriors": "curve_46", "x": 0.3131868131868132, "y": 0.6008475364621939 }, { "posteriors": "curve_46", "x": 0.31868131868131866, "y": 0.6090224504733404 }, { "posteriors": "curve_46", "x": 0.3241758241758242, "y": 0.6171659962356738 }, { "posteriors": "curve_46", "x": 0.32967032967032966, "y": 0.625278822795123 }, { "posteriors": "curve_46", "x": 0.33516483516483514, "y": 0.633361555192161 }, { "posteriors": "curve_46", "x": 0.34065934065934067, "y": 0.6414147957280498 }, { "posteriors": "curve_46", "x": 0.34615384615384615, "y": 0.6494391251449769 }, { "posteriors": "curve_46", "x": 0.3516483516483517, "y": 0.6574351037272087 }, { "posteriors": "curve_46", "x": 0.35714285714285715, "y": 0.6654032723296978 }, { "posteriors": "curve_46", "x": 0.3626373626373626, "y": 0.6733441533399654 }, { "posteriors": "curve_46", "x": 0.36813186813186816, "y": 0.6812582515785307 }, { "posteriors": "curve_46", "x": 0.37362637362637363, "y": 0.6891460551426695 }, { "posteriors": "curve_46", "x": 0.3791208791208791, "y": 0.6970080361978521 }, { "posteriors": "curve_46", "x": 0.38461538461538464, "y": 0.704844651720813 }, { "posteriors": "curve_46", "x": 0.3901098901098901, "y": 0.7126563441978545 }, { "posteriors": "curve_46", "x": 0.3956043956043956, "y": 0.7204435422816777 }, { "posteriors": "curve_46", "x": 0.4010989010989011, "y": 0.728206661409741 }, { "posteriors": "curve_46", "x": 0.4065934065934066, "y": 0.7359461043868956 }, { "posteriors": "curve_46", "x": 0.41208791208791207, "y": 0.7436622619348194 }, { "posteriors": "curve_46", "x": 0.4175824175824176, "y": 0.7513555132105536 }, { "posteriors": "curve_46", "x": 0.4230769230769231, "y": 0.7590262262962657 }, { "posteriors": "curve_46", "x": 0.42857142857142855, "y": 0.766674758662187 }, { "posteriors": "curve_46", "x": 0.4340659340659341, "y": 0.7743014576045198 }, { "posteriors": "curve_46", "x": 0.43956043956043955, "y": 0.781906660659965 }, { "posteriors": "curve_46", "x": 0.44505494505494503, "y": 0.7894906959983959 }, { "posteriors": "curve_46", "x": 0.45054945054945056, "y": 0.7970538827950873 }, { "posteriors": "curve_46", "x": 0.45604395604395603, "y": 0.8045965315837944 }, { "posteriors": "curve_46", "x": 0.46153846153846156, "y": 0.8121189445918953 }, { "posteriors": "curve_46", "x": 0.46703296703296704, "y": 0.8196214160586994 }, { "posteriors": "curve_46", "x": 0.4725274725274725, "y": 0.8271042325379651 }, { "posteriors": "curve_46", "x": 0.47802197802197804, "y": 0.8345676731855775 }, { "posteriors": "curve_46", "x": 0.4835164835164835, "y": 0.8420120100332786 }, { "posteriors": "curve_46", "x": 0.489010989010989, "y": 0.8494375082492803 }, { "posteriors": "curve_46", "x": 0.4945054945054945, "y": 0.8568444263865209 }, { "posteriors": "curve_46", "x": 0.5, "y": 0.8642330166192899 }, { "posteriors": "curve_46", "x": 0.5054945054945055, "y": 0.8716035249688826 }, { "posteriors": "curve_46", "x": 0.510989010989011, "y": 0.8789561915189092 }, { "posteriors": "curve_46", "x": 0.5164835164835165, "y": 0.8862912506208375 }, { "posteriors": "curve_46", "x": 0.521978021978022, "y": 0.8936089310903105 }, { "posteriors": "curve_46", "x": 0.5274725274725275, "y": 0.9009094563947492 }, { "posteriors": "curve_46", "x": 0.532967032967033, "y": 0.90819304483271 }, { "posteriors": "curve_46", "x": 0.5384615384615384, "y": 0.9154599097054423 }, { "posteriors": "curve_46", "x": 0.5439560439560439, "y": 0.9227102594810609 }, { "posteriors": "curve_46", "x": 0.5494505494505495, "y": 0.9299442979517237 }, { "posteriors": "curve_46", "x": 0.554945054945055, "y": 0.9371622243841771 }, { "posteriors": "curve_46", "x": 0.5604395604395604, "y": 0.9443642336640158 }, { "posteriors": "curve_46", "x": 0.5659340659340659, "y": 0.9515505164339731 }, { "posteriors": "curve_46", "x": 0.5714285714285714, "y": 0.95872125922655 }, { "posteriors": "curve_46", "x": 0.5769230769230769, "y": 0.965876644591261 }, { "posteriors": "curve_46", "x": 0.5824175824175825, "y": 0.9730168512167704 }, { "posteriors": "curve_46", "x": 0.5879120879120879, "y": 0.9801420540481655 }, { "posteriors": "curve_46", "x": 0.5934065934065934, "y": 0.987252424399607 }, { "posteriors": "curve_46", "x": 0.5989010989010989, "y": 0.9943481300625778 }, { "posteriors": "curve_46", "x": 0.6043956043956044, "y": 1.0014293354099435 }, { "posteriors": "curve_46", "x": 0.6098901098901099, "y": 1.0084962014960195 }, { "posteriors": "curve_46", "x": 0.6153846153846154, "y": 1.0155488861528363 }, { "posteriors": "curve_46", "x": 0.6208791208791209, "y": 1.0225875440827792 }, { "posteriors": "curve_46", "x": 0.6263736263736264, "y": 1.0296123269477666 }, { "posteriors": "curve_46", "x": 0.6318681318681318, "y": 1.03662338345513 }, { "posteriors": "curve_46", "x": 0.6373626373626373, "y": 1.043620859440342 }, { "posteriors": "curve_46", "x": 0.6428571428571429, "y": 1.050604897946737 }, { "posteriors": "curve_46", "x": 0.6483516483516484, "y": 1.0575756393023534 }, { "posteriors": "curve_46", "x": 0.6538461538461539, "y": 1.0645332211940337 }, { "posteriors": "curve_46", "x": 0.6593406593406593, "y": 1.071477778738892 }, { "posteriors": "curve_46", "x": 0.6648351648351648, "y": 1.0784094445532726 }, { "posteriors": "curve_46", "x": 0.6703296703296703, "y": 1.0853283488193004 }, { "posteriors": "curve_46", "x": 0.6758241758241759, "y": 1.0922346193491341 }, { "posteriors": "curve_46", "x": 0.6813186813186813, "y": 1.0991283816470099 }, { "posteriors": "curve_46", "x": 0.6868131868131868, "y": 1.1060097589691797 }, { "posteriors": "curve_46", "x": 0.6923076923076923, "y": 1.1128788723818213 }, { "posteriors": "curve_46", "x": 0.6978021978021978, "y": 1.1197358408170124 }, { "posteriors": "curve_46", "x": 0.7032967032967034, "y": 1.1265807811268431 }, { "posteriors": "curve_46", "x": 0.7087912087912088, "y": 1.1334138081357457 }, { "posteriors": "curve_46", "x": 0.7142857142857143, "y": 1.1402350346911119 }, { "posteriors": "curve_46", "x": 0.7197802197802198, "y": 1.1470445717122684 }, { "posteriors": "curve_46", "x": 0.7252747252747253, "y": 1.1538425282378737 }, { "posteriors": "curve_46", "x": 0.7307692307692307, "y": 1.1606290114717999 }, { "posteriors": "curve_46", "x": 0.7362637362637363, "y": 1.1674041268275603 }, { "posteriors": "curve_46", "x": 0.7417582417582418, "y": 1.1741679779713345 }, { "posteriors": "curve_46", "x": 0.7472527472527473, "y": 1.1809206668636543 }, { "posteriors": "curve_46", "x": 0.7527472527472527, "y": 1.18766229379979 }, { "posteriors": "curve_46", "x": 0.7582417582417582, "y": 1.1943929574488972 }, { "posteriors": "curve_46", "x": 0.7637362637362637, "y": 1.201112754891965 }, { "posteriors": "curve_46", "x": 0.7692307692307693, "y": 1.2078217816586114 }, { "posteriors": "curve_46", "x": 0.7747252747252747, "y": 1.2145201317627718 }, { "posteriors": "curve_46", "x": 0.7802197802197802, "y": 1.2212078977373169 }, { "posteriors": "curve_46", "x": 0.7857142857142857, "y": 1.2278851706676432 }, { "posteriors": "curve_46", "x": 0.7912087912087912, "y": 1.2345520402242736 }, { "posteriors": "curve_46", "x": 0.7967032967032966, "y": 1.2412085946944986 }, { "posteriors": "curve_46", "x": 0.8021978021978022, "y": 1.247854921013102 }, { "posteriors": "curve_46", "x": 0.8076923076923077, "y": 1.2544911047921934 }, { "posteriors": "curve_46", "x": 0.8131868131868132, "y": 1.261117230350188 }, { "posteriors": "curve_46", "x": 0.8186813186813187, "y": 1.2677333807399591 }, { "posteriors": "curve_46", "x": 0.8241758241758241, "y": 1.2743396377761913 }, { "posteriors": "curve_46", "x": 0.8296703296703297, "y": 1.2809360820619677 }, { "posteriors": "curve_46", "x": 0.8351648351648352, "y": 1.2875227930146103 }, { "posteriors": "curve_46", "x": 0.8406593406593407, "y": 1.2940998488908064 }, { "posteriors": "curve_46", "x": 0.8461538461538461, "y": 1.3006673268110396 }, { "posteriors": "curve_46", "x": 0.8516483516483516, "y": 1.3072253027833525 }, { "posteriors": "curve_46", "x": 0.8571428571428571, "y": 1.3137738517264614 }, { "posteriors": "curve_46", "x": 0.8626373626373627, "y": 1.3203130474922475 }, { "posteriors": "curve_46", "x": 0.8681318681318682, "y": 1.326842962887641 }, { "posteriors": "curve_46", "x": 0.8736263736263736, "y": 1.3333636696959237 }, { "posteriors": "curve_46", "x": 0.8791208791208791, "y": 1.3398752386974626 }, { "posteriors": "curve_46", "x": 0.8846153846153846, "y": 1.3463777396899008 }, { "posteriors": "curve_46", "x": 0.8901098901098901, "y": 1.3528712415078152 }, { "posteriors": "curve_46", "x": 0.8956043956043956, "y": 1.3593558120418652 }, { "posteriors": "curve_46", "x": 0.9010989010989011, "y": 1.3658315182574425 }, { "posteriors": "curve_46", "x": 0.9065934065934066, "y": 1.3722984262128453 }, { "posteriors": "curve_46", "x": 0.9120879120879121, "y": 1.3787566010769827 }, { "posteriors": "curve_46", "x": 0.9175824175824175, "y": 1.3852061071466333 }, { "posteriors": "curve_46", "x": 0.9230769230769231, "y": 1.3916470078632643 }, { "posteriors": "curve_46", "x": 0.9285714285714286, "y": 1.3980793658294308 }, { "posteriors": "curve_46", "x": 0.9340659340659341, "y": 1.4045032428247628 }, { "posteriors": "curve_46", "x": 0.9395604395604396, "y": 1.4109186998215593 }, { "posteriors": "curve_46", "x": 0.945054945054945, "y": 1.4173257969999926 }, { "posteriors": "curve_46", "x": 0.9505494505494505, "y": 1.4237245937629437 }, { "posteriors": "curve_46", "x": 0.9560439560439561, "y": 1.430115148750473 }, { "posteriors": "curve_46", "x": 0.9615384615384616, "y": 1.436497519853942 }, { "posteriors": "curve_46", "x": 0.967032967032967, "y": 1.4428717642297928 }, { "posteriors": "curve_46", "x": 0.9725274725274725, "y": 1.449237938312999 }, { "posteriors": "curve_46", "x": 0.978021978021978, "y": 1.4555960978301936 }, { "posteriors": "curve_46", "x": 0.9835164835164835, "y": 1.4619462978124877 }, { "posteriors": "curve_46", "x": 0.989010989010989, "y": 1.468288592607986 }, { "posteriors": "curve_46", "x": 0.9945054945054945, "y": 1.4746230358940087 }, { "posteriors": "curve_47", "x": 0, "y": 0 }, { "posteriors": "curve_47", "x": 0.005494505494505495, "y": 0.025518093785339035 }, { "posteriors": "curve_47", "x": 0.01098901098901099, "y": 0.04357457484421195 }, { "posteriors": "curve_47", "x": 0.016483516483516484, "y": 0.05958948440067202 }, { "posteriors": "curve_47", "x": 0.02197802197802198, "y": 0.07440773550039691 }, { "posteriors": "curve_47", "x": 0.027472527472527472, "y": 0.08839533073690987 }, { "posteriors": "curve_47", "x": 0.03296703296703297, "y": 0.10175471842794566 }, { "posteriors": "curve_47", "x": 0.038461538461538464, "y": 0.11461334930330017 }, { "posteriors": "curve_47", "x": 0.04395604395604396, "y": 0.12705829310076322 }, { "posteriors": "curve_47", "x": 0.04945054945054945, "y": 0.13915250414112215 }, { "posteriors": "curve_47", "x": 0.054945054945054944, "y": 0.1509434437962339 }, { "posteriors": "curve_47", "x": 0.06043956043956044, "y": 0.16246806232374367 }, { "posteriors": "curve_47", "x": 0.06593406593406594, "y": 0.17375587029300987 }, { "posteriors": "curve_47", "x": 0.07142857142857142, "y": 0.18483093097498765 }, { "posteriors": "curve_47", "x": 0.07692307692307693, "y": 0.19571320684744115 }, { "posteriors": "curve_47", "x": 0.08241758241758242, "y": 0.2064195008588629 }, { "posteriors": "curve_47", "x": 0.08791208791208792, "y": 0.2169641333271504 }, { "posteriors": "curve_47", "x": 0.09340659340659341, "y": 0.227359440614584 }, { "posteriors": "curve_47", "x": 0.0989010989010989, "y": 0.23761615022907875 }, { "posteriors": "curve_47", "x": 0.1043956043956044, "y": 0.24774366813615853 }, { "posteriors": "curve_47", "x": 0.10989010989010989, "y": 0.25775030236470725 }, { "posteriors": "curve_47", "x": 0.11538461538461539, "y": 0.267643439508859 }, { "posteriors": "curve_47", "x": 0.12087912087912088, "y": 0.27742968581718463 }, { "posteriors": "curve_47", "x": 0.12637362637362637, "y": 0.28711498125923773 }, { "posteriors": "curve_47", "x": 0.13186813186813187, "y": 0.29670469269353966 }, { "posteriors": "curve_47", "x": 0.13736263736263737, "y": 0.3062036906760224 }, { "posteriors": "curve_47", "x": 0.14285714285714285, "y": 0.31561641332011303 }, { "posteriors": "curve_47", "x": 0.14835164835164835, "y": 0.32494691980464 }, { "posteriors": "curve_47", "x": 0.15384615384615385, "y": 0.3341989355284147 }, { "posteriors": "curve_47", "x": 0.15934065934065933, "y": 0.34337589046686307 }, { "posteriors": "curve_47", "x": 0.16483516483516483, "y": 0.3524809519528886 }, { "posteriors": "curve_47", "x": 0.17032967032967034, "y": 0.3615170528510406 }, { "posteriors": "curve_47", "x": 0.17582417582417584, "y": 0.3704869158998542 }, { "posteriors": "curve_47", "x": 0.1813186813186813, "y": 0.3793930748467741 }, { "posteriors": "curve_47", "x": 0.18681318681318682, "y": 0.3882378928825121 }, { "posteriors": "curve_47", "x": 0.19230769230769232, "y": 0.39702357878906086 }, { "posteriors": "curve_47", "x": 0.1978021978021978, "y": 0.4057522011420469 }, { "posteriors": "curve_47", "x": 0.2032967032967033, "y": 0.4144257008493009 }, { "posteriors": "curve_47", "x": 0.2087912087912088, "y": 0.4230459022601801 }, { "posteriors": "curve_47", "x": 0.21428571428571427, "y": 0.4316145230418268 }, { "posteriors": "curve_47", "x": 0.21978021978021978, "y": 0.44013318298728005 }, { "posteriors": "curve_47", "x": 0.22527472527472528, "y": 0.4486034118947366 }, { "posteriors": "curve_47", "x": 0.23076923076923078, "y": 0.457026656636145 }, { "posteriors": "curve_47", "x": 0.23626373626373626, "y": 0.46540428751582086 }, { "posteriors": "curve_47", "x": 0.24175824175824176, "y": 0.4737376040052243 }, { "posteriors": "curve_47", "x": 0.24725274725274726, "y": 0.48202783992786746 }, { "posteriors": "curve_47", "x": 0.25274725274725274, "y": 0.49027616815810465 }, { "posteriors": "curve_47", "x": 0.25824175824175827, "y": 0.4984837048889429 }, { "posteriors": "curve_47", "x": 0.26373626373626374, "y": 0.506651513516717 }, { "posteriors": "curve_47", "x": 0.2692307692307692, "y": 0.5147806081842788 }, { "posteriors": "curve_47", "x": 0.27472527472527475, "y": 0.5228719570190651 }, { "posteriors": "curve_47", "x": 0.2802197802197802, "y": 0.5309264850978862 }, { "posteriors": "curve_47", "x": 0.2857142857142857, "y": 0.5389450771664008 }, { "posteriors": "curve_47", "x": 0.29120879120879123, "y": 0.5469285801378904 }, { "posteriors": "curve_47", "x": 0.2967032967032967, "y": 0.5548778053930686 }, { "posteriors": "curve_47", "x": 0.3021978021978022, "y": 0.562793530900153 }, { "posteriors": "curve_47", "x": 0.3076923076923077, "y": 0.5706765031722525 }, { "posteriors": "curve_47", "x": 0.3131868131868132, "y": 0.5785274390772344 }, { "posteriors": "curve_47", "x": 0.31868131868131866, "y": 0.586347027513578 }, { "posteriors": "curve_47", "x": 0.3241758241758242, "y": 0.5941359309642735 }, { "posteriors": "curve_47", "x": 0.32967032967032966, "y": 0.601894786939555 }, { "posteriors": "curve_47", "x": 0.33516483516483514, "y": 0.6096242093181394 }, { "posteriors": "curve_47", "x": 0.34065934065934067, "y": 0.6173247895956544 }, { "posteriors": "curve_47", "x": 0.34615384615384615, "y": 0.6249970980480688 }, { "posteriors": "curve_47", "x": 0.3516483516483517, "y": 0.6326416848171705 }, { "posteriors": "curve_47", "x": 0.35714285714285715, "y": 0.6402590809244463 }, { "posteriors": "curve_47", "x": 0.3626373626373626, "y": 0.6478497992191159 }, { "posteriors": "curve_47", "x": 0.36813186813186816, "y": 0.6554143352655283 }, { "posteriors": "curve_47", "x": 0.37362637362637363, "y": 0.6629531681746423 }, { "posteriors": "curve_47", "x": 0.3791208791208791, "y": 0.6704667613838882 }, { "posteriors": "curve_47", "x": 0.38461538461538464, "y": 0.6779555633893114 }, { "posteriors": "curve_47", "x": 0.3901098901098901, "y": 0.6854200084335607 }, { "posteriors": "curve_47", "x": 0.3956043956043956, "y": 0.692860517152965 }, { "posteriors": "curve_47", "x": 0.4010989010989011, "y": 0.7002774971866673 }, { "posteriors": "curve_47", "x": 0.4065934065934066, "y": 0.7076713437505272 }, { "posteriors": "curve_47", "x": 0.41208791208791207, "y": 0.7150424401782804 }, { "posteriors": "curve_47", "x": 0.4175824175824176, "y": 0.7223911584322315 }, { "posteriors": "curve_47", "x": 0.4230769230769231, "y": 0.7297178595855754 }, { "posteriors": "curve_47", "x": 0.42857142857142855, "y": 0.7370228942782706 }, { "posteriors": "curve_47", "x": 0.4340659340659341, "y": 0.7443066031482339 }, { "posteriors": "curve_47", "x": 0.43956043956043955, "y": 0.7515693172394875 }, { "posteriors": "curve_47", "x": 0.44505494505494503, "y": 0.7588113583887651 }, { "posteriors": "curve_47", "x": 0.45054945054945056, "y": 0.766033039591963 }, { "posteriors": "curve_47", "x": 0.45604395604395603, "y": 0.7732346653517196 }, { "posteriors": "curve_47", "x": 0.46153846153846156, "y": 0.7804165320073131 }, { "posteriors": "curve_47", "x": 0.46703296703296704, "y": 0.7875789280479735 }, { "posteriors": "curve_47", "x": 0.4725274725274725, "y": 0.7947221344106301 }, { "posteriors": "curve_47", "x": 0.47802197802197804, "y": 0.801846424763038 }, { "posteriors": "curve_47", "x": 0.4835164835164835, "y": 0.8089520657731617 }, { "posteriors": "curve_47", "x": 0.489010989010989, "y": 0.8160393173656317 }, { "posteriors": "curve_47", "x": 0.4945054945054945, "y": 0.823108432966033 }, { "posteriors": "curve_47", "x": 0.5, "y": 0.8301596597337283 }, { "posteriors": "curve_47", "x": 0.5054945054945055, "y": 0.8371932387838795 }, { "posteriors": "curve_47", "x": 0.510989010989011, "y": 0.8442094053992751 }, { "posteriors": "curve_47", "x": 0.5164835164835165, "y": 0.851208389232539 }, { "posteriors": "curve_47", "x": 0.521978021978022, "y": 0.858190414499255 }, { "posteriors": "curve_47", "x": 0.5274725274725275, "y": 0.8651557001625045 }, { "posteriors": "curve_47", "x": 0.532967032967033, "y": 0.8721044601092867 }, { "posteriors": "curve_47", "x": 0.5384615384615384, "y": 0.8790369033192572 }, { "posteriors": "curve_47", "x": 0.5439560439560439, "y": 0.8859532340261937 }, { "posteriors": "curve_47", "x": 0.5494505494505495, "y": 0.8928536518725753 }, { "posteriors": "curve_47", "x": 0.554945054945055, "y": 0.8997383520576299 }, { "posteriors": "curve_47", "x": 0.5604395604395604, "y": 0.9066075254791942 }, { "posteriors": "curve_47", "x": 0.5659340659340659, "y": 0.9134613588696969 }, { "posteriors": "curve_47", "x": 0.5714285714285714, "y": 0.9203000349265668 }, { "posteriors": "curve_47", "x": 0.5769230769230769, "y": 0.927123732437344 }, { "posteriors": "curve_47", "x": 0.5824175824175825, "y": 0.9339326263997599 }, { "posteriors": "curve_47", "x": 0.5879120879120879, "y": 0.9407268881370303 }, { "posteriors": "curve_47", "x": 0.5934065934065934, "y": 0.9475066854085984 }, { "posteriors": "curve_47", "x": 0.5989010989010989, "y": 0.9542721825165473 }, { "posteriors": "curve_47", "x": 0.6043956043956044, "y": 0.9610235404078874 }, { "posteriors": "curve_47", "x": 0.6098901098901099, "y": 0.9677609167729171 }, { "posteriors": "curve_47", "x": 0.6153846153846154, "y": 0.9744844661398399 }, { "posteriors": "curve_47", "x": 0.6208791208791209, "y": 0.9811943399658136 }, { "posteriors": "curve_47", "x": 0.6263736263736264, "y": 0.9878906867245958 }, { "posteriors": "curve_47", "x": 0.6318681318681318, "y": 0.9945736519909417 }, { "posteriors": "curve_47", "x": 0.6373626373626373, "y": 1.0012433785219021 }, { "posteriors": "curve_47", "x": 0.6428571428571429, "y": 1.0079000063351606 }, { "posteriors": "curve_47", "x": 0.6483516483516484, "y": 1.014543672784543 }, { "posteriors": "curve_47", "x": 0.6538461538461539, "y": 1.0211745126328224 }, { "posteriors": "curve_47", "x": 0.6593406593406593, "y": 1.0277926581219432 }, { "posteriors": "curve_47", "x": 0.6648351648351648, "y": 1.0343982390407678 }, { "posteriors": "curve_47", "x": 0.6703296703296703, "y": 1.0409913827904629 }, { "posteriors": "curve_47", "x": 0.6758241758241759, "y": 1.0475722144476196 }, { "posteriors": "curve_47", "x": 0.6813186813186813, "y": 1.0541408568252053 }, { "posteriors": "curve_47", "x": 0.6868131868131868, "y": 1.0606974305314407 }, { "posteriors": "curve_47", "x": 0.6923076923076923, "y": 1.0672420540266863 }, { "posteriors": "curve_47", "x": 0.6978021978021978, "y": 1.07377484367842 }, { "posteriors": "curve_47", "x": 0.7032967032967034, "y": 1.0802959138143902 }, { "posteriors": "curve_47", "x": 0.7087912087912088, "y": 1.086805376774009 }, { "posteriors": "curve_47", "x": 0.7142857142857143, "y": 1.093303342958067 }, { "posteriors": "curve_47", "x": 0.7197802197802198, "y": 1.0997899208768311 }, { "posteriors": "curve_47", "x": 0.7252747252747253, "y": 1.1062652171965903 }, { "posteriors": "curve_47", "x": 0.7307692307692307, "y": 1.1127293367847129 }, { "posteriors": "curve_47", "x": 0.7362637362637363, "y": 1.1191823827532714 }, { "posteriors": "curve_47", "x": 0.7417582417582418, "y": 1.1256244565012936 }, { "posteriors": "curve_47", "x": 0.7472527472527473, "y": 1.1320556577556906 }, { "posteriors": "curve_47", "x": 0.7527472527472527, "y": 1.1384760846109137 }, { "posteriors": "curve_47", "x": 0.7582417582417582, "y": 1.1448858335673866 }, { "posteriors": "curve_47", "x": 0.7637362637362637, "y": 1.1512849995687653 }, { "posteriors": "curve_47", "x": 0.7692307692307693, "y": 1.1576736760380606 }, { "posteriors": "curve_47", "x": 0.7747252747252747, "y": 1.164051954912674 }, { "posteriors": "curve_47", "x": 0.7802197802197802, "y": 1.1704199266783815 }, { "posteriors": "curve_47", "x": 0.7857142857142857, "y": 1.1767776804023096 }, { "posteriors": "curve_47", "x": 0.7912087912087912, "y": 1.1831253037649323 }, { "posteriors": "curve_47", "x": 0.7967032967032966, "y": 1.1894628830911333 }, { "posteriors": "curve_47", "x": 0.8021978021978022, "y": 1.1957905033803622 }, { "posteriors": "curve_47", "x": 0.8076923076923077, "y": 1.2021082483359162 }, { "posteriors": "curve_47", "x": 0.8131868131868132, "y": 1.208416200393383 }, { "posteriors": "curve_47", "x": 0.8186813186813187, "y": 1.2147144407482686 }, { "posteriors": "curve_47", "x": 0.8241758241758241, "y": 1.2210030493828463 }, { "posteriors": "curve_47", "x": 0.8296703296703297, "y": 1.227282105092244 }, { "posteriors": "curve_47", "x": 0.8351648351648352, "y": 1.2335516855098048 }, { "posteriors": "curve_47", "x": 0.8406593406593407, "y": 1.239811867131743 }, { "posteriors": "curve_47", "x": 0.8461538461538461, "y": 1.2460627253411178 }, { "posteriors": "curve_47", "x": 0.8516483516483516, "y": 1.2523043344311497 }, { "posteriors": "curve_47", "x": 0.8571428571428571, "y": 1.2585367676279011 }, { "posteriors": "curve_47", "x": 0.8626373626373627, "y": 1.2647600971123438 }, { "posteriors": "curve_47", "x": 0.8681318681318682, "y": 1.2709743940418305 }, { "posteriors": "curve_47", "x": 0.8736263736263736, "y": 1.2771797285709954 }, { "posteriors": "curve_47", "x": 0.8791208791208791, "y": 1.2833761698720951 }, { "posteriors": "curve_47", "x": 0.8846153846153846, "y": 1.2895637861548161 }, { "posteriors": "curve_47", "x": 0.8901098901098901, "y": 1.2957426446855613 }, { "posteriors": "curve_47", "x": 0.8956043956043956, "y": 1.3019128118062315 }, { "posteriors": "curve_47", "x": 0.9010989010989011, "y": 1.3080743529525236 }, { "posteriors": "curve_47", "x": 0.9065934065934066, "y": 1.3142273326717546 }, { "posteriors": "curve_47", "x": 0.9120879120879121, "y": 1.3203718146402303 }, { "posteriors": "curve_47", "x": 0.9175824175824175, "y": 1.3265078616801724 }, { "posteriors": "curve_47", "x": 0.9230769230769231, "y": 1.3326355357762154 }, { "posteriors": "curve_47", "x": 0.9285714285714286, "y": 1.3387548980914905 }, { "posteriors": "curve_47", "x": 0.9340659340659341, "y": 1.344866008983307 }, { "posteriors": "curve_47", "x": 0.9395604395604396, "y": 1.3509689280184438 }, { "posteriors": "curve_47", "x": 0.945054945054945, "y": 1.357063713988062 }, { "posteriors": "curve_47", "x": 0.9505494505494505, "y": 1.3631504249222526 }, { "posteriors": "curve_47", "x": 0.9560439560439561, "y": 1.3692291181042286 }, { "posteriors": "curve_47", "x": 0.9615384615384616, "y": 1.3752998500841724 }, { "posteriors": "curve_47", "x": 0.967032967032967, "y": 1.3813626766927478 }, { "posteriors": "curve_47", "x": 0.9725274725274725, "y": 1.387417653054289 }, { "posteriors": "curve_47", "x": 0.978021978021978, "y": 1.3934648335996747 }, { "posteriors": "curve_47", "x": 0.9835164835164835, "y": 1.3995042720788955 }, { "posteriors": "curve_47", "x": 0.989010989010989, "y": 1.4055360215733252 }, { "posteriors": "curve_47", "x": 0.9945054945054945, "y": 1.4115601345077047 }, { "posteriors": "curve_48", "x": 0, "y": 0 }, { "posteriors": "curve_48", "x": 0.005494505494505495, "y": 0.02661553003954109 }, { "posteriors": "curve_48", "x": 0.01098901098901099, "y": 0.04515044260723554 }, { "posteriors": "curve_48", "x": 0.016483516483516484, "y": 0.06150729631760774 }, { "posteriors": "curve_48", "x": 0.02197802197802198, "y": 0.07659296901473316 }, { "posteriors": "curve_48", "x": 0.027472527472527472, "y": 0.09079878975474318 }, { "posteriors": "curve_48", "x": 0.03296703296703297, "y": 0.1043406480422759 }, { "posteriors": "curve_48", "x": 0.038461538461538464, "y": 0.11735418214314941 }, { "posteriors": "curve_48", "x": 0.04395604395604396, "y": 0.12993190240734756 }, { "posteriors": "curve_48", "x": 0.04945054945054945, "y": 0.14214060342520357 }, { "posteriors": "curve_48", "x": 0.054945054945054944, "y": 0.15403058062482472 }, { "posteriors": "curve_48", "x": 0.06043956043956044, "y": 0.16564094862561052 }, { "posteriors": "curve_48", "x": 0.06593406593406594, "y": 0.17700291649407895 }, { "posteriors": "curve_48", "x": 0.07142857142857142, "y": 0.1881419102528669 }, { "posteriors": "curve_48", "x": 0.07692307692307693, "y": 0.1990790060427702 }, { "posteriors": "curve_48", "x": 0.08241758241758242, "y": 0.20983193114802415 }, { "posteriors": "curve_48", "x": 0.08791208791208792, "y": 0.22041578333312897 }, { "posteriors": "curve_48", "x": 0.09340659340659341, "y": 0.23084356041537946 }, { "posteriors": "curve_48", "x": 0.0989010989010989, "y": 0.24112655835044705 }, { "posteriors": "curve_48", "x": 0.1043956043956044, "y": 0.25127467596560477 }, { "posteriors": "curve_48", "x": 0.10989010989010989, "y": 0.26129665198958507 }, { "posteriors": "curve_48", "x": 0.11538461538461539, "y": 0.2712002520508007 }, { "posteriors": "curve_48", "x": 0.12087912087912088, "y": 0.2809924180813958 }, { "posteriors": "curve_48", "x": 0.12637362637362637, "y": 0.29067938904820656 }, { "posteriors": "curve_48", "x": 0.13186813186813187, "y": 0.3002667995191657 }, { "posteriors": "curve_48", "x": 0.13736263736263737, "y": 0.30975976088688884 }, { "posteriors": "curve_48", "x": 0.14285714285714285, "y": 0.3191629288715151 }, { "posteriors": "curve_48", "x": 0.14835164835164835, "y": 0.3284805600583226 }, { "posteriors": "curve_48", "x": 0.15384615384615385, "y": 0.33771655959080704 }, { "posteriors": "curve_48", "x": 0.15934065934065933, "y": 0.3468745216687644 }, { "posteriors": "curve_48", "x": 0.16483516483516483, "y": 0.35595776414707153 }, { "posteriors": "curve_48", "x": 0.17032967032967034, "y": 0.36496935826216886 }, { "posteriors": "curve_48", "x": 0.17582417582417584, "y": 0.3739121543071436 }, { "posteriors": "curve_48", "x": 0.1813186813186813, "y": 0.38278880391670506 }, { "posteriors": "curve_48", "x": 0.18681318681318682, "y": 0.3916017794986663 }, { "posteriors": "curve_48", "x": 0.19230769230769232, "y": 0.40035339125034325 }, { "posteriors": "curve_48", "x": 0.1978021978021978, "y": 0.40904580212034003 }, { "posteriors": "curve_48", "x": 0.2032967032967033, "y": 0.41768104101388515 }, { "posteriors": "curve_48", "x": 0.2087912087912088, "y": 0.42626101448973286 }, { "posteriors": "curve_48", "x": 0.21428571428571427, "y": 0.4347875171560316 }, { "posteriors": "curve_48", "x": 0.21978021978021978, "y": 0.4432622409394622 }, { "posteriors": "curve_48", "x": 0.22527472527472528, "y": 0.4516867833748337 }, { "posteriors": "curve_48", "x": 0.23076923076923078, "y": 0.4600626550399752 }, { "posteriors": "curve_48", "x": 0.23626373626373626, "y": 0.4683912862422704 }, { "posteriors": "curve_48", "x": 0.24175824175824176, "y": 0.4766740330477801 }, { "posteriors": "curve_48", "x": 0.24725274725274726, "y": 0.4849121827310383 }, { "posteriors": "curve_48", "x": 0.25274725274725274, "y": 0.4931069587128024 }, { "posteriors": "curve_48", "x": 0.25824175824175827, "y": 0.5012595250439378 }, { "posteriors": "curve_48", "x": 0.26373626373626374, "y": 0.5093709904859045 }, { "posteriors": "curve_48", "x": 0.2692307692307692, "y": 0.5174424122317777 }, { "posteriors": "curve_48", "x": 0.27472527472527475, "y": 0.5254747993061432 }, { "posteriors": "curve_48", "x": 0.2802197802197802, "y": 0.5334691156774402 }, { "posteriors": "curve_48", "x": 0.2857142857142857, "y": 0.5414262831122264 }, { "posteriors": "curve_48", "x": 0.29120879120879123, "y": 0.5493471837973065 }, { "posteriors": "curve_48", "x": 0.2967032967032967, "y": 0.5572326627526221 }, { "posteriors": "curve_48", "x": 0.3021978021978022, "y": 0.5650835300551598 }, { "posteriors": "curve_48", "x": 0.3076923076923077, "y": 0.5729005628918403 }, { "posteriors": "curve_48", "x": 0.3131868131868132, "y": 0.5806845074573538 }, { "posteriors": "curve_48", "x": 0.31868131868131866, "y": 0.5884360807111647 }, { "posteriors": "curve_48", "x": 0.3241758241758242, "y": 0.5961559720063804 }, { "posteriors": "curve_48", "x": 0.32967032967032966, "y": 0.6038448446018378 }, { "posteriors": "curve_48", "x": 0.33516483516483514, "y": 0.6115033370675873 }, { "posteriors": "curve_48", "x": 0.34065934065934067, "y": 0.6191320645929081 }, { "posteriors": "curve_48", "x": 0.34615384615384615, "y": 0.6267316202050778 }, { "posteriors": "curve_48", "x": 0.3516483516483517, "y": 0.6343025759063026 }, { "posteriors": "curve_48", "x": 0.35714285714285715, "y": 0.6418454837354939 }, { "posteriors": "curve_48", "x": 0.3626373626373626, "y": 0.6493608767609397 }, { "posteriors": "curve_48", "x": 0.36813186813186816, "y": 0.6568492700093421 }, { "posteriors": "curve_48", "x": 0.37362637362637363, "y": 0.6643111613361918 }, { "posteriors": "curve_48", "x": 0.3791208791208791, "y": 0.6717470322419886 }, { "posteriors": "curve_48", "x": 0.38461538461538464, "y": 0.6791573486384122 }, { "posteriors": "curve_48", "x": 0.3901098901098901, "y": 0.6865425615681836 }, { "posteriors": "curve_48", "x": 0.3956043956043956, "y": 0.693903107882028 }, { "posteriors": "curve_48", "x": 0.4010989010989011, "y": 0.7012394108758545 }, { "posteriors": "curve_48", "x": 0.4065934065934066, "y": 0.7085518808910024 }, { "posteriors": "curve_48", "x": 0.41208791208791207, "y": 0.715840915880167 }, { "posteriors": "curve_48", "x": 0.4175824175824176, "y": 0.7231069019413946 }, { "posteriors": "curve_48", "x": 0.4230769230769231, "y": 0.7303502138223475 }, { "posteriors": "curve_48", "x": 0.42857142857142855, "y": 0.7375712153968556 }, { "posteriors": "curve_48", "x": 0.4340659340659341, "y": 0.7447702601156152 }, { "posteriors": "curve_48", "x": 0.43956043956043955, "y": 0.7519476914327451 }, { "posteriors": "curve_48", "x": 0.44505494505494503, "y": 0.7591038432097801 }, { "posteriors": "curve_48", "x": 0.45054945054945056, "y": 0.7662390400985565 }, { "posteriors": "curve_48", "x": 0.45604395604395603, "y": 0.7733535979043383 }, { "posteriors": "curve_48", "x": 0.46153846153846156, "y": 0.7804478239304288 }, { "posteriors": "curve_48", "x": 0.46703296703296704, "y": 0.7875220173054196 }, { "posteriors": "curve_48", "x": 0.4725274725274725, "y": 0.7945764692941467 }, { "posteriors": "curve_48", "x": 0.47802197802197804, "y": 0.8016114635933438 }, { "posteriors": "curve_48", "x": 0.4835164835164835, "y": 0.8086272766129131 }, { "posteriors": "curve_48", "x": 0.489010989010989, "y": 0.8156241777436698 }, { "posteriors": "curve_48", "x": 0.4945054945054945, "y": 0.8226024296123526 }, { "posteriors": "curve_48", "x": 0.5, "y": 0.8295622883246438 }, { "posteriors": "curve_48", "x": 0.5054945054945055, "y": 0.8365040036968857 }, { "posteriors": "curve_48", "x": 0.510989010989011, "y": 0.8434278194771362 }, { "posteriors": "curve_48", "x": 0.5164835164835165, "y": 0.8503339735561654 }, { "posteriors": "curve_48", "x": 0.521978021978022, "y": 0.8572226981689505 }, { "posteriors": "curve_48", "x": 0.5274725274725275, "y": 0.8640942200871944 }, { "posteriors": "curve_48", "x": 0.532967032967033, "y": 0.8709487608033544 }, { "posteriors": "curve_48", "x": 0.5384615384615384, "y": 0.877786536706643 }, { "posteriors": "curve_48", "x": 0.5439560439560439, "y": 0.8846077592514245 }, { "posteriors": "curve_48", "x": 0.5494505494505495, "y": 0.8914126351184141 }, { "posteriors": "curve_48", "x": 0.554945054945055, "y": 0.898201366369051 }, { "posteriors": "curve_48", "x": 0.5604395604395604, "y": 0.9049741505934052 }, { "posteriors": "curve_48", "x": 0.5659340659340659, "y": 0.9117311810519428 }, { "posteriors": "curve_48", "x": 0.5714285714285714, "y": 0.918472646811468 }, { "posteriors": "curve_48", "x": 0.5769230769230769, "y": 0.9251987328755295 }, { "posteriors": "curve_48", "x": 0.5824175824175825, "y": 0.9319096203095726 }, { "posteriors": "curve_48", "x": 0.5879120879120879, "y": 0.9386054863610899 }, { "posteriors": "curve_48", "x": 0.5934065934065934, "y": 0.9452865045750221 }, { "posteriors": "curve_48", "x": 0.5989010989010989, "y": 0.9519528449046327 }, { "posteriors": "curve_48", "x": 0.6043956043956044, "y": 0.9586046738180783 }, { "posteriors": "curve_48", "x": 0.6098901098901099, "y": 0.9652421544008774 }, { "posteriors": "curve_48", "x": 0.6153846153846154, "y": 0.9718654464544704 }, { "posteriors": "curve_48", "x": 0.6208791208791209, "y": 0.9784747065910564 }, { "posteriors": "curve_48", "x": 0.6263736263736264, "y": 0.9850700883248744 }, { "posteriors": "curve_48", "x": 0.6318681318681318, "y": 0.9916517421600965 }, { "posteriors": "curve_48", "x": 0.6373626373626373, "y": 0.9982198156754858 }, { "posteriors": "curve_48", "x": 0.6428571428571429, "y": 1.004774453605963 }, { "posteriors": "curve_48", "x": 0.6483516483516484, "y": 1.0113157979212235 }, { "posteriors": "curve_48", "x": 0.6538461538461539, "y": 1.017843987901533 }, { "posteriors": "curve_48", "x": 0.6593406593406593, "y": 1.0243591602108266 }, { "posteriors": "curve_48", "x": 0.6648351648351648, "y": 1.0308614489672292 }, { "posteriors": "curve_48", "x": 0.6703296703296703, "y": 1.037350985811108 }, { "posteriors": "curve_48", "x": 0.6758241758241759, "y": 1.043827899970765 }, { "posteriors": "curve_48", "x": 0.6813186813186813, "y": 1.0502923183258661 }, { "posteriors": "curve_48", "x": 0.6868131868131868, "y": 1.056744365468706 }, { "posteriors": "curve_48", "x": 0.6923076923076923, "y": 1.0631841637633983 }, { "posteriors": "curve_48", "x": 0.6978021978021978, "y": 1.0696118334030758 }, { "posteriors": "curve_48", "x": 0.7032967032967034, "y": 1.0760274924651838 }, { "posteriors": "curve_48", "x": 0.7087912087912088, "y": 1.0824312569649464 }, { "posteriors": "curve_48", "x": 0.7142857142857143, "y": 1.0888232409070753 }, { "posteriors": "curve_48", "x": 0.7197802197802198, "y": 1.095203556335797 }, { "posteriors": "curve_48", "x": 0.7252747252747253, "y": 1.1015723133832611 }, { "posteriors": "curve_48", "x": 0.7307692307692307, "y": 1.1079296203163973 }, { "posteriors": "curve_48", "x": 0.7362637362637363, "y": 1.1142755835822802 }, { "posteriors": "curve_48", "x": 0.7417582417582418, "y": 1.120610307852061 }, { "posteriors": "curve_48", "x": 0.7472527472527473, "y": 1.126933896063521 }, { "posteriors": "curve_48", "x": 0.7527472527472527, "y": 1.1332464494623 }, { "posteriors": "curve_48", "x": 0.7582417582417582, "y": 1.1395480676418517 }, { "posteriors": "curve_48", "x": 0.7637362637362637, "y": 1.1458388485821727 }, { "posteriors": "curve_48", "x": 0.7692307692307693, "y": 1.1521188886873508 }, { "posteriors": "curve_48", "x": 0.7747252747252747, "y": 1.158388282821979 }, { "posteriors": "curve_48", "x": 0.7802197802197802, "y": 1.1646471243464747 }, { "posteriors": "curve_48", "x": 0.7857142857142857, "y": 1.170895505151348 }, { "posteriors": "curve_48", "x": 0.7912087912087912, "y": 1.1771335156904534 }, { "posteriors": "curve_48", "x": 0.7967032967032966, "y": 1.1833612450132631 }, { "posteriors": "curve_48", "x": 0.8021978021978022, "y": 1.1895787807962002 }, { "posteriors": "curve_48", "x": 0.8076923076923077, "y": 1.1957862093730616 }, { "posteriors": "curve_48", "x": 0.8131868131868132, "y": 1.2019836157645651 }, { "posteriors": "curve_48", "x": 0.8186813186813187, "y": 1.2081710837070512 }, { "posteriors": "curve_48", "x": 0.8241758241758241, "y": 1.214348695680369 }, { "posteriors": "curve_48", "x": 0.8296703296703297, "y": 1.2205165329349745 }, { "posteriors": "curve_48", "x": 0.8351648351648352, "y": 1.22667467551827 }, { "posteriors": "curve_48", "x": 0.8406593406593407, "y": 1.2328232023002097 }, { "posteriors": "curve_48", "x": 0.8461538461538461, "y": 1.238962190998195 }, { "posteriors": "curve_48", "x": 0.8516483516483516, "y": 1.2450917182012877 }, { "posteriors": "curve_48", "x": 0.8571428571428571, "y": 1.2512118593937602 }, { "posteriors": "curve_48", "x": 0.8626373626373627, "y": 1.257322688978006 }, { "posteriors": "curve_48", "x": 0.8681318681318682, "y": 1.263424280296834 }, { "posteriors": "curve_48", "x": 0.8736263736263736, "y": 1.2695167056551635 }, { "posteriors": "curve_48", "x": 0.8791208791208791, "y": 1.2756000363411437 }, { "posteriors": "curve_48", "x": 0.8846153846153846, "y": 1.281674342646711 }, { "posteriors": "curve_48", "x": 0.8901098901098901, "y": 1.287739693887609 }, { "posteriors": "curve_48", "x": 0.8956043956043956, "y": 1.293796158422882 }, { "posteriors": "curve_48", "x": 0.9010989010989011, "y": 1.2998438036738658 }, { "posteriors": "curve_48", "x": 0.9065934065934066, "y": 1.305882696142684 }, { "posteriors": "curve_48", "x": 0.9120879120879121, "y": 1.3119129014302728 }, { "posteriors": "curve_48", "x": 0.9175824175824175, "y": 1.3179344842539449 }, { "posteriors": "curve_48", "x": 0.9230769230769231, "y": 1.3239475084645078 }, { "posteriors": "curve_48", "x": 0.9285714285714286, "y": 1.32995203706295 }, { "posteriors": "curve_48", "x": 0.9340659340659341, "y": 1.3359481322167117 }, { "posteriors": "curve_48", "x": 0.9395604395604396, "y": 1.3419358552755458 }, { "posteriors": "curve_48", "x": 0.945054945054945, "y": 1.347915266786992 }, { "posteriors": "curve_48", "x": 0.9505494505494505, "y": 1.353886426511463 }, { "posteriors": "curve_48", "x": 0.9560439560439561, "y": 1.359849393436968 }, { "posteriors": "curve_48", "x": 0.9615384615384616, "y": 1.3658042257934735 }, { "posteriors": "curve_48", "x": 0.967032967032967, "y": 1.371750981066918 }, { "posteriors": "curve_48", "x": 0.9725274725274725, "y": 1.3776897160128896 }, { "posteriors": "curve_48", "x": 0.978021978021978, "y": 1.3836204866699773 }, { "posteriors": "curve_48", "x": 0.9835164835164835, "y": 1.389543348372801 }, { "posteriors": "curve_48", "x": 0.989010989010989, "y": 1.3954583557647395 }, { "posteriors": "curve_48", "x": 0.9945054945054945, "y": 1.4013655628103512 }, { "posteriors": "curve_49", "x": 0, "y": 0 }, { "posteriors": "curve_49", "x": 0.005494505494505495, "y": 0.025741272561755037 }, { "posteriors": "curve_49", "x": 0.01098901098901099, "y": 0.043950366156699026 }, { "posteriors": "curve_49", "x": 0.016483516483516484, "y": 0.06009914432605249 }, { "posteriors": "curve_49", "x": 0.02197802197802198, "y": 0.07504037264178738 }, { "posteriors": "curve_49", "x": 0.027472527472527472, "y": 0.08914342909074505 }, { "posteriors": "curve_49", "x": 0.03296703296703297, "y": 0.10261261918957042 }, { "posteriors": "curve_49", "x": 0.038461538461538464, "y": 0.11557655809411384 }, { "posteriors": "curve_49", "x": 0.04395604395604396, "y": 0.12812310837505986 }, { "posteriors": "curve_49", "x": 0.04945054945054945, "y": 0.1403157959676811 }, { "posteriors": "curve_49", "x": 0.054945054945054944, "y": 0.15220251211756175 }, { "posteriors": "curve_49", "x": 0.06043956043956044, "y": 0.16382054101833657 }, { "posteriors": "curve_49", "x": 0.06593406593406594, "y": 0.17519965941311097 }, { "posteriors": "curve_49", "x": 0.07142857142857142, "y": 0.18636414722485695 }, { "posteriors": "curve_49", "x": 0.07692307692307693, "y": 0.19733414636673155 }, { "posteriors": "curve_49", "x": 0.08241758241758242, "y": 0.20812661059359233 }, { "posteriors": "curve_49", "x": 0.08791208791208792, "y": 0.21875598856696102 }, { "posteriors": "curve_49", "x": 0.09340659340659341, "y": 0.22923472706634443 }, { "posteriors": "curve_49", "x": 0.0989010989010989, "y": 0.23957364949822807 }, { "posteriors": "curve_49", "x": 0.1043956043956044, "y": 0.24978224581503097 }, { "posteriors": "curve_49", "x": 0.10989010989010989, "y": 0.2598688981474418 }, { "posteriors": "curve_49", "x": 0.11538461538461539, "y": 0.26984105890423615 }, { "posteriors": "curve_49", "x": 0.12087912087912088, "y": 0.2797053931374685 }, { "posteriors": "curve_49", "x": 0.12637362637362637, "y": 0.28946789363961756 }, { "posteriors": "curve_49", "x": 0.13186813186813187, "y": 0.2991339749525653 }, { "posteriors": "curve_49", "x": 0.13736263736263737, "y": 0.3087085508687414 }, { "posteriors": "curve_49", "x": 0.14285714285714285, "y": 0.31819609886664363 }, { "posteriors": "curve_49", "x": 0.14835164835164835, "y": 0.32760071410050173 }, { "posteriors": "curve_49", "x": 0.15384615384615385, "y": 0.3369261549610884 }, { "posteriors": "curve_49", "x": 0.15934065934065933, "y": 0.34617588177716313 }, { "posteriors": "curve_49", "x": 0.16483516483516483, "y": 0.35535308989080683 }, { "posteriors": "curve_49", "x": 0.17032967032967034, "y": 0.36446073808450374 }, { "posteriors": "curve_49", "x": 0.17582417582417584, "y": 0.3735015731418483 }, { "posteriors": "curve_49", "x": 0.1813186813186813, "y": 0.3824781511719384 }, { "posteriors": "curve_49", "x": 0.18681318681318682, "y": 0.3913928562088887 }, { "posteriors": "curve_49", "x": 0.19230769230769232, "y": 0.40024791650442654 }, { "posteriors": "curve_49", "x": 0.1978021978021978, "y": 0.4090454188573305 }, { "posteriors": "curve_49", "x": 0.2032967032967033, "y": 0.4177873212641339 }, { "posteriors": "curve_49", "x": 0.2087912087912088, "y": 0.4264754641277429 }, { "posteriors": "curve_49", "x": 0.21428571428571427, "y": 0.4351115802219196 }, { "posteriors": "curve_49", "x": 0.21978021978021978, "y": 0.443697303578036 }, { "posteriors": "curve_49", "x": 0.22527472527472528, "y": 0.45223417743464756 }, { "posteriors": "curve_49", "x": 0.23076923076923078, "y": 0.46072366136913245 }, { "posteriors": "curve_49", "x": 0.23626373626373626, "y": 0.4691671377129934 }, { "posteriors": "curve_49", "x": 0.24175824175824176, "y": 0.4775659173377342 }, { "posteriors": "curve_49", "x": 0.24725274725274726, "y": 0.4859212448859453 }, { "posteriors": "curve_49", "x": 0.25274725274725274, "y": 0.49423430351192404 }, { "posteriors": "curve_49", "x": 0.25824175824175827, "y": 0.5025062191874606 }, { "posteriors": "curve_49", "x": 0.26373626373626374, "y": 0.5107380646210645 }, { "posteriors": "curve_49", "x": 0.2692307692307692, "y": 0.5189308628326543 }, { "posteriors": "curve_49", "x": 0.27472527472527475, "y": 0.5270855904204014 }, { "posteriors": "curve_49", "x": 0.2802197802197802, "y": 0.5352031805518548 }, { "posteriors": "curve_49", "x": 0.2857142857142857, "y": 0.543284525707563 }, { "posteriors": "curve_49", "x": 0.29120879120879123, "y": 0.5513304802020284 }, { "posteriors": "curve_49", "x": 0.2967032967032967, "y": 0.5593418625039204 }, { "posteriors": "curve_49", "x": 0.3021978021978022, "y": 0.5673194573749508 }, { "posteriors": "curve_49", "x": 0.3076923076923077, "y": 0.5752640178446151 }, { "posteriors": "curve_49", "x": 0.3131868131868132, "y": 0.5831762670360991 }, { "posteriors": "curve_49", "x": 0.31868131868131866, "y": 0.59105689985698 }, { "posteriors": "curve_49", "x": 0.3241758241758242, "y": 0.5989065845668857 }, { "posteriors": "curve_49", "x": 0.32967032967032966, "y": 0.6067259642330021 }, { "posteriors": "curve_49", "x": 0.33516483516483514, "y": 0.6145156580831801 }, { "posteriors": "curve_49", "x": 0.34065934065934067, "y": 0.6222762627654101 }, { "posteriors": "curve_49", "x": 0.34615384615384615, "y": 0.6300083535215415 }, { "posteriors": "curve_49", "x": 0.3516483516483517, "y": 0.6377124852823564 }, { "posteriors": "curve_49", "x": 0.35714285714285715, "y": 0.6453891936904119 }, { "posteriors": "curve_49", "x": 0.3626373626373626, "y": 0.6530389960564508 }, { "posteriors": "curve_49", "x": 0.36813186813186816, "y": 0.6606623922546342 }, { "posteriors": "curve_49", "x": 0.37362637362637363, "y": 0.6682598655613663 }, { "posteriors": "curve_49", "x": 0.3791208791208791, "y": 0.6758318834420391 }, { "posteriors": "curve_49", "x": 0.38461538461538464, "y": 0.6833788982896379 }, { "posteriors": "curve_49", "x": 0.3901098901098901, "y": 0.6909013481187979 }, { "posteriors": "curve_49", "x": 0.3956043956043956, "y": 0.6983996572185892 }, { "posteriors": "curve_49", "x": 0.4010989010989011, "y": 0.7058742367670212 }, { "posteriors": "curve_49", "x": 0.4065934065934066, "y": 0.7133254854100042 }, { "posteriors": "curve_49", "x": 0.41208791208791207, "y": 0.7207537898072767 }, { "posteriors": "curve_49", "x": 0.4175824175824176, "y": 0.7281595251475987 }, { "posteriors": "curve_49", "x": 0.4230769230769231, "y": 0.7355430556353205 }, { "posteriors": "curve_49", "x": 0.42857142857142855, "y": 0.7429047349502701 }, { "posteriors": "curve_49", "x": 0.4340659340659341, "y": 0.750244906682743 }, { "posteriors": "curve_49", "x": 0.43956043956043955, "y": 0.7575639047452427 }, { "posteriors": "curve_49", "x": 0.44505494505494503, "y": 0.7648620537624871 }, { "posteriors": "curve_49", "x": 0.45054945054945056, "y": 0.7721396694410829 }, { "posteriors": "curve_49", "x": 0.45604395604395603, "y": 0.7793970589201625 }, { "posteriors": "curve_49", "x": 0.46153846153846156, "y": 0.7866345211041815 }, { "posteriors": "curve_49", "x": 0.46703296703296704, "y": 0.7938523469789845 }, { "posteriors": "curve_49", "x": 0.4725274725274725, "y": 0.8010508199121692 }, { "posteriors": "curve_49", "x": 0.47802197802197804, "y": 0.8082302159387004 }, { "posteriors": "curve_49", "x": 0.4835164835164835, "y": 0.8153908040326594 }, { "posteriors": "curve_49", "x": 0.489010989010989, "y": 0.8225328463659533 }, { "posteriors": "curve_49", "x": 0.4945054945054945, "y": 0.8296565985547465 }, { "posteriors": "curve_49", "x": 0.5, "y": 0.8367623098943295 }, { "posteriors": "curve_49", "x": 0.5054945054945055, "y": 0.8438502235830873 }, { "posteriors": "curve_49", "x": 0.510989010989011, "y": 0.8509205769361858 }, { "posteriors": "curve_49", "x": 0.5164835164835165, "y": 0.8579736015895547 }, { "posteriors": "curve_49", "x": 0.521978021978022, "y": 0.8650095236947035 }, { "posteriors": "curve_49", "x": 0.5274725274725275, "y": 0.87202856410488 }, { "posteriors": "curve_49", "x": 0.532967032967033, "y": 0.8790309385530353 }, { "posteriors": "curve_49", "x": 0.5384615384615384, "y": 0.8860168578220409 }, { "posteriors": "curve_49", "x": 0.5439560439560439, "y": 0.8929865279075706 }, { "posteriors": "curve_49", "x": 0.5494505494505495, "y": 0.8999401501740326 }, { "posteriors": "curve_49", "x": 0.554945054945055, "y": 0.906877921503914 }, { "posteriors": "curve_49", "x": 0.5604395604395604, "y": 0.9138000344408832 }, { "posteriors": "curve_49", "x": 0.5659340659340659, "y": 0.9207066773269637 }, { "posteriors": "curve_49", "x": 0.5714285714285714, "y": 0.9275980344340827 }, { "posteriors": "curve_49", "x": 0.5769230769230769, "y": 0.9344742860902794 }, { "posteriors": "curve_49", "x": 0.5824175824175825, "y": 0.9413356088008328 }, { "posteriors": "curve_49", "x": 0.5879120879120879, "y": 0.948182175364565 }, { "posteriors": "curve_49", "x": 0.5934065934065934, "y": 0.9550141549855535 }, { "posteriors": "curve_49", "x": 0.5989010989010989, "y": 0.9618317133804726 }, { "posteriors": "curve_49", "x": 0.6043956043956044, "y": 0.9686350128817758 }, { "posteriors": "curve_49", "x": 0.6098901098901099, "y": 0.9754242125369168 }, { "posteriors": "curve_49", "x": 0.6153846153846154, "y": 0.9821994682037926 }, { "posteriors": "curve_49", "x": 0.6208791208791209, "y": 0.9889609326425891 }, { "posteriors": "curve_49", "x": 0.6263736263736264, "y": 0.9957087556041923 }, { "posteriors": "curve_49", "x": 0.6318681318681318, "y": 1.0024430839153222 }, { "posteriors": "curve_49", "x": 0.6373626373626373, "y": 1.0091640615605422 }, { "posteriors": "curve_49", "x": 0.6428571428571429, "y": 1.0158718297612799 }, { "posteriors": "curve_49", "x": 0.6483516483516484, "y": 1.0225665270519948 }, { "posteriors": "curve_49", "x": 0.6538461538461539, "y": 1.0292482893536217 }, { "posteriors": "curve_49", "x": 0.6593406593406593, "y": 1.0359172500444027 }, { "posteriors": "curve_49", "x": 0.6648351648351648, "y": 1.04257354002823 }, { "posteriors": "curve_49", "x": 0.6703296703296703, "y": 1.0492172878006 }, { "posteriors": "curve_49", "x": 0.6758241758241759, "y": 1.055848619512285 }, { "posteriors": "curve_49", "x": 0.6813186813186813, "y": 1.0624676590308153 }, { "posteriors": "curve_49", "x": 0.6868131868131868, "y": 1.0690745279998717 }, { "posteriors": "curve_49", "x": 0.6923076923076923, "y": 1.0756693458966657 }, { "posteriors": "curve_49", "x": 0.6978021978021978, "y": 1.082252230087399 }, { "posteriors": "curve_49", "x": 0.7032967032967034, "y": 1.0888232958808768 }, { "posteriors": "curve_49", "x": 0.7087912087912088, "y": 1.0953826565803513 }, { "posteriors": "curve_49", "x": 0.7142857142857143, "y": 1.1019304235336695 }, { "posteriors": "curve_49", "x": 0.7197802197802198, "y": 1.1084667061817879 }, { "posteriors": "curve_49", "x": 0.7252747252747253, "y": 1.1149916121057262 }, { "posteriors": "curve_49", "x": 0.7307692307692307, "y": 1.1215052470720144 }, { "posteriors": "curve_49", "x": 0.7362637362637363, "y": 1.1280077150767014 }, { "posteriors": "curve_49", "x": 0.7417582417582418, "y": 1.1344991183879698 }, { "posteriors": "curve_49", "x": 0.7472527472527473, "y": 1.1409795575874222 }, { "posteriors": "curve_49", "x": 0.7527472527472527, "y": 1.1474491316100832 }, { "posteriors": "curve_49", "x": 0.7582417582417582, "y": 1.1539079377831662 }, { "posteriors": "curve_49", "x": 0.7637362637362637, "y": 1.1603560718636567 }, { "posteriors": "curve_49", "x": 0.7692307692307693, "y": 1.1667936280747497 }, { "posteriors": "curve_49", "x": 0.7747252747252747, "y": 1.1732206991411898 }, { "posteriors": "curve_49", "x": 0.7802197802197802, "y": 1.1796373763235517 }, { "posteriors": "curve_49", "x": 0.7857142857142857, "y": 1.1860437494515013 }, { "posteriors": "curve_49", "x": 0.7912087912087912, "y": 1.1924399069560727 }, { "posteriors": "curve_49", "x": 0.7967032967032966, "y": 1.198825935900999 }, { "posteriors": "curve_49", "x": 0.8021978021978022, "y": 1.2052019220131311 }, { "posteriors": "curve_49", "x": 0.8076923076923077, "y": 1.2115679497119742 }, { "posteriors": "curve_49", "x": 0.8131868131868132, "y": 1.2179241021383773 }, { "posteriors": "curve_49", "x": 0.8186813186813187, "y": 1.2242704611824022 }, { "posteriors": "curve_49", "x": 0.8241758241758241, "y": 1.2306071075104041 }, { "posteriors": "curve_49", "x": 0.8296703296703297, "y": 1.2369341205913458 }, { "posteriors": "curve_49", "x": 0.8351648351648352, "y": 1.2432515787223808 }, { "posteriors": "curve_49", "x": 0.8406593406593407, "y": 1.2495595590537203 }, { "posteriors": "curve_49", "x": 0.8461538461538461, "y": 1.2558581376128168 }, { "posteriors": "curve_49", "x": 0.8516483516483516, "y": 1.2621473893278823 }, { "posteriors": "curve_49", "x": 0.8571428571428571, "y": 1.2684273880507668 }, { "posteriors": "curve_49", "x": 0.8626373626373627, "y": 1.2746982065792156 }, { "posteriors": "curve_49", "x": 0.8681318681318682, "y": 1.2809599166785295 }, { "posteriors": "curve_49", "x": 0.8736263736263736, "y": 1.2872125891026434 }, { "posteriors": "curve_49", "x": 0.8791208791208791, "y": 1.293456293614647 }, { "posteriors": "curve_49", "x": 0.8846153846153846, "y": 1.2996910990067627 }, { "posteriors": "curve_49", "x": 0.8901098901098901, "y": 1.3059170731197989 }, { "posteriors": "curve_49", "x": 0.8956043956043956, "y": 1.3121342828620952 }, { "posteriors": "curve_49", "x": 0.9010989010989011, "y": 1.318342794227979 }, { "posteriors": "curve_49", "x": 0.9065934065934066, "y": 1.324542672315744 }, { "posteriors": "curve_49", "x": 0.9120879120879121, "y": 1.33073398134517 }, { "posteriors": "curve_49", "x": 0.9175824175824175, "y": 1.3369167846745953 }, { "posteriors": "curve_49", "x": 0.9230769230769231, "y": 1.3430911448175578 }, { "posteriors": "curve_49", "x": 0.9285714285714286, "y": 1.3492571234590187 }, { "posteriors": "curve_49", "x": 0.9340659340659341, "y": 1.3554147814711786 }, { "posteriors": "curve_49", "x": 0.9395604395604396, "y": 1.3615641789289015 }, { "posteriors": "curve_49", "x": 0.945054945054945, "y": 1.3677053751247576 }, { "posteriors": "curve_49", "x": 0.9505494505494505, "y": 1.3738384285836969 }, { "posteriors": "curve_49", "x": 0.9560439560439561, "y": 1.3799633970773633 }, { "posteriors": "curve_49", "x": 0.9615384615384616, "y": 1.3860803376380615 }, { "posteriors": "curve_49", "x": 0.967032967032967, "y": 1.3921893065723887 }, { "posteriors": "curve_49", "x": 0.9725274725274725, "y": 1.3982903594745348 }, { "posteriors": "curve_49", "x": 0.978021978021978, "y": 1.4043835512392695 }, { "posteriors": "curve_49", "x": 0.9835164835164835, "y": 1.4104689360746179 }, { "posteriors": "curve_49", "x": 0.989010989010989, "y": 1.4165465675142388 }, { "posteriors": "curve_49", "x": 0.9945054945054945, "y": 1.4226164984295109 } ] }, "hconcat": [ { "layer": [ { "data": { "name": "data-302bda8f9a6e2ecc44eac160021dd7d1" }, "encoding": { "x": { "field": "M", "scale": { "domain": [ 0, 1 ] }, "title": "body mass", "type": "quantitative" }, "y": { "field": "B", "scale": { "domain": [ 0, 1 ] }, "title": "brain volume", "type": "quantitative" } }, "mark": "circle" }, { "data": { "name": "data-65443eb82aaf61e324ed35935a4274af" }, "encoding": { "color": { "field": "posteriors", "legend": null, "type": "nominal" }, "x": { "field": "x", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" }, "y": { "field": "y", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" } }, "mark": { "clip": true, "type": "line" } } ] }, { "data": { "name": "data-302bda8f9a6e2ecc44eac160021dd7d1" }, "layer": [ { "encoding": { "x": { "field": "M", "scale": { "domain": [ 0, 1 ] }, "title": "body mass", "type": "quantitative" }, "y": { "field": "B", "scale": { "domain": [ 0, 1 ] }, "title": "brain volume", "type": "quantitative" } }, "mark": "circle" }, { "encoding": { "x": { "field": "M_true", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" }, "y": { "field": "B_true", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" } }, "mark": "point" }, { "data": { "name": "data-44338d165f119cd3ab492b5340442b35" }, "encoding": { "x": { "field": "x", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" }, "y": { "field": "avg_curve", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" } }, "mark": { "clip": true, "color": "black", "type": "line" } } ] } ] }, "image/png": "iVBORw0KGgoAAAANSUhEUgAAA5AAAAFpCAYAAADqTsfcAAAgAElEQVR4XuydCXhU1fn/v+fOZJLJvrGFLRD2NWEHWYJaURIQtKzWCq21v2ptxVYB9VdE/xZQUZTa9teWIi4EVwSCuwIiq7IvshOyh5B9mWSWe/7PucnEScgymTOTDPG9z+PzYOa8557zed9zz3znnHteBrqIABEgAkSACBABIkAEiAARIAJEgAg4QYA5UYaKEAEiQASIABEgAkSACBABIkAEiAARAAlICgIiQASIABEgAkSACBABIkAEiAARcIoACUinMFEhIkAEiAARIAJEgAgQASJABIgAESABSTFABIgAESACRIAIEAEiQASIABEgAk4RIAHpFCYqRASIABEgAkSACBABIkAEiAARIAIkICkGiAARIAJEgAgQASJABIgAESACRMApAiQgncJEhYgAESACRIAIEAEiQASIABEgAt5FIHHpu2MZ51GArYBBn7p15ewLnm4hCUhPE6b6iQARIAJEgAgQASJABIgAESACbiaQuHjTajD0cayWw/bH7SvvueTmW9WqjgSkJ+lS3USACBABIkAEiAARIAJEgAj8ZAnMWvauwWSxTYCKYKhqRvLz9xx0B4yEpZseYRy3cOCaAnaGQzUCbDiAMnDl8eRVs1PdcZ/66iAB6SmyVC8RIAJEgAgQASJABIgAESACP1kC05Zu7Aeu+wsHD/oRAr+avHLer2WhJCzd9E/G0Rmq7Vm7KE1Y+s4LjPN+ANYmr5z7uew9GrInAekpslQvESACRIAIEAEiQASIABEgAj9ZAglLNr2mMHTkHPs5Y1cZ5+0BTGTgH2xbOe91GTCJSza9C8BoqVTu++zl2fmirmlL3lnMwcczVV237fn5H8nU35gtCUhPkaV6iQARIAJEgAgQASJABIgAEfhJEpj62LsdFZ36b4ClJ6+c8zsBIWHJ2z0ZdK8AyE5eOfc3MmASl25aBY4BDGwj52wPuKUjV3S/Y0AkY+pj21bMPyNTPwlIT9GjeokAESACRIAIEAEiQASIABEgAnUITF26qY/CsZozZGxfMfd/xMeJi9/tBqa+xjjM21bNvVsGWuKSTbcBeLhuHQzs220r56ySqbspW1qBbIoQfU4EiAARIAJEgAgQASJABIgAEWgGgZlLN0RYuK+2TZWDb9OpSFYVPCAOuuFA6vaV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", "text/plain": [ "\n", "\n", "If you see this message, it means the renderer has not been properly enabled\n", "for the frontend that you are using. For more information, see\n", "https://altair-viz.github.io/user_guide/troubleshooting.html\n" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plot = alt.Chart(d)\\\n", " .mark_circle()\\\n", " .encode(\n", " x=alt.X('M',title='body mass',scale=alt.Scale(domain=(0, 1))),\n", " y=alt.Y('B',title='brain volume',scale=alt.Scale(domain=(0, 1)))\n", " )\n", "\n", "plot_2 = alt.Chart(aux_plot)\\\n", " .mark_line(clip=True)\\\n", " .encode(\n", " x=alt.X('x',scale=alt.Scale(domain=(0, 1))),\n", " y=alt.Y('y',scale=alt.Scale(domain=(0, 1))),\n", " color = alt.Color('posteriors', legend=None)\n", " )\n", "\n", "plot_3 = alt.Chart(d)\\\n", " .mark_point()\\\n", " .encode(\n", " x=alt.X('M_true',scale=alt.Scale(domain=(0, 1))),\n", " y=alt.Y('B_true',scale=alt.Scale(domain=(0, 1)))\n", " )\n", "\n", "plot_4 = alt.Chart(aux)\\\n", " .mark_line(clip=True, color='black')\\\n", " .encode(\n", " x=alt.X('x',scale=alt.Scale(domain=(0, 1))),\n", " y=alt.Y('avg_curve',scale=alt.Scale(domain=(0, 1)))\n", " )\n", "\n", "alt.hconcat(plot + plot_2, plot + plot_3 + plot_4)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(_On the left chart_) The two points in the upper right are gorillas. Most primates are small, and obviously gorillas have something special going on.\n", "\n", "(_On the right chart_) Now let's plot the estimated values on this. The open points are the posterior mean estimates. Notice that they have moved\n", "towards the regression line, as you'd expect. But even the outlier gorillas haven't moved much. The assumed error just isn't big enough to get them any closer. If you increase the amount of error, you can get all of the species to fall right on the regression line. Try for example 30% error. The model will mix poorly, but take a look at the inferred true values. The truth of this example is that there are just so many small primates that they\n", "dominate the relationship. And their measurement errors are also smaller (in absolute terms). So adding plausible amounts of measurement error here doesn't make a big difference. We still don't have a good explanation for gorillas.\n", "\n", "Before moving on, I'll also plot the estimated species values with 50% compatibility ellipses." ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "aux_ellipse = pd.concat([pd.DataFrame(pm.stats.hpd(posterior_12['B_true'], alpha=0.1)).rename({0:'B_true_lower_hpdi',1:'B_true_upper_hpdi'}, axis=1),\n", " pd.DataFrame(pm.stats.hpd(posterior_12['M_true'], alpha=0.1)).rename({0:'M_true_lower_hpdi',1:'M_true_upper_hpdi'}, axis=1),\n", " pd.DataFrame(np.mean(posterior_12['B_true'], axis=0)).rename({0:'B_true_avg'}, axis=1),\n", " pd.DataFrame(np.mean(posterior_12['M_true'], axis=0)).rename({0:'M_true_avg'}, axis=1)],\n", " axis=1)\n", "\n", "aux_ellipse['B_true_hpdi'] = abs(aux_ellipse.B_true_lower_hpdi - aux_ellipse.B_true_upper_hpdi)\n", "aux_ellipse['M_true_hpdi'] = abs(aux_ellipse.M_true_lower_hpdi - aux_ellipse.M_true_upper_hpdi)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "ells = [Ellipse(xy=aux_ellipse.loc[i,['M_true_avg','B_true_avg']].values,\n", " width=aux_ellipse.loc[i,'M_true_hpdi'],\n", " height=aux_ellipse.loc[i,'B_true_hpdi'])\n", " for i in range(len(aux_ellipse))]\n", "\n", "fig = plt.figure(0, figsize=(8, 6))\n", "ax = fig.add_subplot(111, aspect='equal')\n", "ax.set_ylabel('brain volume')\n", "ax.set_xlabel('body mass')\n", "for e in ells:\n", " ax.add_artist(e)\n", " e.set_alpha(0.1)\n", "\n", "ax.set_xlim(0, 1.2)\n", "ax.set_ylim(0, 1.2)\n", "\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Exercise 2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> Now consider missing values, this data set is lousy with them. You can ignore measurement error in this problem. Let's get a quick idea of the missing values by counting them in each variable:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "name 0\n", "genus 0\n", "species 0\n", "subspecies 267\n", "spp_id 0\n", "genus_id 0\n", "social_learning 98\n", "research_effort 115\n", "brain 117\n", "body 63\n", "group_size 114\n", "gestation 161\n", "weaning 185\n", "longevity 181\n", "sex_maturity 194\n", "maternal_investment 197\n", "dtype: int64" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d = pd.read_csv('../../data/Primates301.csv', header=0, sep=';')\n", "d.isna().sum()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We’ll continue to focus on just brain and body, to stave off insanity. Consider only those species with measured body masses:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "name 0\n", "genus 0\n", "species 0\n", "subspecies 223\n", "spp_id 0\n", "genus_id 0\n", "social_learning 39\n", "research_effort 53\n", "brain 56\n", "body 0\n", "group_size 52\n", "gestation 98\n", "weaning 122\n", "longevity 118\n", "sex_maturity 131\n", "maternal_investment 134\n", "B 56\n", "M 0\n", "dtype: int64" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d.dropna(subset=['body'], inplace=True)\n", "d['B'] = d['brain']/np.max(d['brain'])\n", "d['M'] = d['body']/np.max(d['body'])\n", "d.isna().sum()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First, consider whether there is a pattern to the missing values. Does it look like\n", "missing values are associated with particular values of body mass? Draw a DAG that\n", "represents how missingness works in this case. Which type (MCAR, MAR, MNAR)\n", "is this?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Compare the inferences to an analysis that drops all the missing values. Has anything changed? Why or why not? Hint: Consider the density of data in the ranges where there are missing values. You might want to plot the imputed brain sizes together with the observed values." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Looks like the missing brain values are almost all for small bodied species. This implies at least a MAR (dog eats students homework) mechanism. Let's try a DAG to express it:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`M` here is body mass, `B` (unobserved, suggested by the circle) is brain size, R_B is the missingness mechanism, and `B*` is the observed brain sizes (with missing values). The arrow from `M` to `R_B` indicates that body size influences missingness. In this case, it would imply that small body size makes a missing brain value more likely.\n", "\n", "Now let's do some imputation. Remember that the model for imputation is really no different than an ordinary model. It just needs a prior for any variable with missing values. In this case, the missing values are in the outcome, so the likelihood is the prior we need. So the model doesn't change at all." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# PyMC3 can handle missing value quite naturally.\n", "body = d['B'].values.copy()\n", "mask = np.isnan(body)\n", "#body[~mask] = -999\n", "#body = np.ma.masked_values(body, value=-999)\n", "body = np.ma.masked_array(data=body, mask=mask)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "M = theano.shared(np.array(d['M']))\n", "B = theano.shared(np.array(d['B']))" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Auto-assigning NUTS sampler...\n", "Initializing NUTS using jitter+adapt_diag...\n", "Multiprocess sampling (4 chains in 4 jobs)\n", "NUTS: [brain_hat_missing, sigma, b, a]\n", "Sampling 4 chains, 0 divergences: 100%|██████████| 10000/10000 [01:25<00:00, 117.63draws/s]\n" ] } ], "source": [ "with pm.Model() as model_21: \n", " # Priors\n", " a = pm.Normal('a', mu=0, sd=1)\n", " b = pm.Normal('b', mu=0, sd=1)\n", " sigma = pm.Exponential('sigma', lam=1)\n", " \n", " # Regression\n", " mu = a + b*np.log(M)\n", " brain_hat = pm.Lognormal('brain_hat', mu, sigma, observed=body) # please note that body contains masked values\n", " \n", " # Prior sampling, trace definition and posterior sampling\n", " #prior = pm.sample_prior_predictive()\n", " posterior_21 = pm.sample(tune=2000)\n", " #posterior_pred_21 = pm.sample_posterior_predictive(posterior_21)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is the posterior summary for the imputation model:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
meansdmcse_meanmcse_sdhpd_5.5%hpd_94.5%ess_meaness_sdess_bulkess_tailr_hat
a0.430.060.00.00.330.511333.01328.01332.01340.01.0
b0.780.010.00.00.760.811140.01137.01140.01108.01.0
sigma0.290.020.00.00.270.321912.01902.01899.01321.01.0
\n", "
" ], "text/plain": [ " mean sd mcse_mean mcse_sd hpd_5.5% hpd_94.5% ess_mean ess_sd \\\n", "a 0.43 0.06 0.0 0.0 0.33 0.51 1333.0 1328.0 \n", "b 0.78 0.01 0.0 0.0 0.76 0.81 1140.0 1137.0 \n", "sigma 0.29 0.02 0.0 0.0 0.27 0.32 1912.0 1902.0 \n", "\n", " ess_bulk ess_tail r_hat \n", "a 1332.0 1340.0 1.0 \n", "b 1140.0 1108.0 1.0 \n", "sigma 1899.0 1321.0 1.0 " ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "az.summary(posterior_21, var_names=['a','b', 'sigma'], credible_interval=.89).round(2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The same analysis on only complete cases:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "d = pd.read_csv('../../data/Primates301.csv', header=0, sep=';')\n", "d.dropna(subset=['body', 'brain'], inplace=True)\n", "d['B'] = d['brain']/np.max(d['brain'])\n", "d['M'] = d['body']/np.max(d['body'])" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "M = theano.shared(np.array(d['M']))\n", "B = theano.shared(np.array(d['B']))" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Auto-assigning NUTS sampler...\n", "Initializing NUTS using jitter+adapt_diag...\n", "Multiprocess sampling (4 chains in 4 jobs)\n", "NUTS: [sigma, b, a]\n", "Sampling 4 chains, 0 divergences: 100%|██████████| 10000/10000 [00:06<00:00, 1527.08draws/s]\n" ] } ], "source": [ "with pm.Model() as model_22: \n", " # Priors\n", " a = pm.Normal('a', mu=0, sd=1)\n", " b = pm.Normal('b', mu=0, sd=1)\n", " sigma = pm.Exponential('sigma', lam=1)\n", " \n", " # Regression\n", " mu = a + b*np.log(M)\n", " brain_hat = pm.Lognormal('brain_hat', mu, sigma, observed=B)\n", " \n", " # Prior sampling, trace definition and posterior sampling\n", " #prior = pm.sample_prior_predictive()\n", " posterior_22 = pm.sample(tune=2000)\n", " #posterior_pred_22 = pm.sample_posterior_predictive(posterior_22)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
meansdmcse_meanmcse_sdhpd_5.5%hpd_94.5%ess_meaness_sdess_bulkess_tailr_hat
a0.430.060.00.00.340.52773.0762.0774.0899.01.00
b0.780.010.00.00.760.80751.0749.0751.0978.01.00
sigma0.290.020.00.00.270.311166.01166.01137.0870.01.01
\n", "
" ], "text/plain": [ " mean sd mcse_mean mcse_sd hpd_5.5% hpd_94.5% ess_mean ess_sd \\\n", "a 0.43 0.06 0.0 0.0 0.34 0.52 773.0 762.0 \n", "b 0.78 0.01 0.0 0.0 0.76 0.80 751.0 749.0 \n", "sigma 0.29 0.02 0.0 0.0 0.27 0.31 1166.0 1166.0 \n", "\n", " ess_bulk ess_tail r_hat \n", "a 774.0 899.0 1.00 \n", "b 751.0 978.0 1.00 \n", "sigma 1137.0 870.0 1.01 " ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "az.summary(posterior_22, var_names=['a','b', 'sigma'], credible_interval=.89).round(2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "_Let's add a quick model comparison:_" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "model_21.name = 'model_11'\n", "model_22.name = 'model_12'" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
WAICpWAICdWAICweightSEdSEvar_warn
model_12-869.72.460137.8100
model_11-869.412.590.29037.810.030
\n", "
" ], "text/plain": [ " WAIC pWAIC dWAIC weight SE dSE var_warn\n", "model_12 -869.7 2.46 0 1 37.81 0 0\n", "model_11 -869.41 2.59 0.29 0 37.81 0.03 0" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pm.compare({model_21: posterior_21,\n", " model_22: posterior_22})" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Really no difference from before. Let's plot the imputed values:" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [], "source": [ "d = pd.read_csv('../../data/Primates301.csv', header=0, sep=';')\n", "d.dropna(subset=['body'], inplace=True)\n", "d['B'] = d['brain']/np.max(d['brain'])\n", "d['M'] = d['body']/np.max(d['body'])" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [], "source": [ "aux = pd.concat([pd.DataFrame(d.M[np.isnan(d.loc[:, 'B'])]).reset_index(drop=True),\n", " pd.DataFrame(np.mean(posterior_21['brain_hat_missing'], axis=0)).reset_index(drop=True).rename({0:'B'}, axis=1),\n", " pd.DataFrame(pm.stats.hpd(posterior_21['brain_hat_missing'], alpha=0.5)).rename({0:'B_lower_hpdi',1:'B_upper_hpdi'}, axis=1)],\n", " axis = 1)" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "data": { "application/vnd.vegalite.v3+json": { "$schema": "https://vega.github.io/schema/vega-lite/v3.3.0.json", "config": { "mark": { "tooltip": null }, "view": { "height": 300, "width": 400 } }, "data": { "name": "data-ba9ad9c6de9be31ad925cdb10e11dd2a" }, "datasets": { "data-b671b0ddfc642a779346876ec2d067a3": [ { "B": 0.11810206200256479, "M": 0.035807692307692304, "body": 4655, "brain": 58.02, "genus": "Allenopithecus", "genus_id": 1, "gestation": null, "group_size": 40, "longevity": 276, "maternal_investment": null, "name": "Allenopithecus_nigroviridis", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "nigroviridis", "spp_id": 1, "subspecies": null, "weaning": 106.15 }, { "B": null, "M": 0.0006006923076923077, "body": 78.09, "brain": null, "genus": "Allocebus", "genus_id": 2, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Allocebus_trichotis", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "trichotis", "spp_id": 2, "subspecies": null, "weaning": null }, { "B": 0.10755796201681357, "M": 0.049192307692307695, "body": 6395, "brain": 52.84, "genus": "Alouatta", "genus_id": 3, "gestation": null, "group_size": 7.4, "longevity": null, "maternal_investment": null, "name": "Alouatta_belzebul", "research_effort": 15, "sex_maturity": null, "social_learning": 0, "species": "belzebul", "spp_id": 3, "subspecies": null, "weaning": null }, { "B": 0.10713049850387771, "M": 0.041407692307692305, "body": 5383, "brain": 52.63, "genus": "Alouatta", "genus_id": 3, "gestation": 185.92, "group_size": 8.9, "longevity": 243.6, "maternal_investment": 509.08, "name": "Alouatta_caraya", "research_effort": 45, "sex_maturity": 1276.72, "social_learning": 0, "species": "caraya", "spp_id": 4, "subspecies": null, "weaning": 323.16 }, { "B": 0.10523744580373319, "M": 0.03980769230769231, "body": 5175, "brain": 51.7, "genus": "Alouatta", "genus_id": 3, "gestation": null, "group_size": 7.4, "longevity": null, "maternal_investment": null, "name": "Alouatta_guariba", "research_effort": 37, "sex_maturity": null, "social_learning": 0, "species": "guariba", "spp_id": 5, "subspecies": null, "weaning": null }, { "B": 0.10153276202495573, "M": 0.04807692307692308, "body": 6250, "brain": 49.88, "genus": "Alouatta", "genus_id": 3, "gestation": 185.42, "group_size": 13.1, "longevity": 300, "maternal_investment": 681.02, "name": "Alouatta_palliata", "research_effort": 79, "sex_maturity": 1578.42, "social_learning": 3, "species": "palliata", "spp_id": 6, "subspecies": null, "weaning": 495.6 }, { "B": 0.104077187697193, "M": 0.06857692307692308, "body": 8915, "brain": 51.13, "genus": "Alouatta", "genus_id": 3, "gestation": 185.92, "group_size": 5.5, "longevity": 240, "maternal_investment": null, "name": "Alouatta_pigra", "research_effort": 25, "sex_maturity": null, "social_learning": 0, "species": "pigra", "spp_id": 7, "subspecies": null, "weaning": null }, { "B": 0.12025973497262198, "M": 0.05085415384615385, "body": 6611.04, "brain": 59.08, "genus": "Alouatta", "genus_id": 3, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Alouatta_sara", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "sara", "spp_id": 8, "subspecies": null, "weaning": null }, { "B": 0.11240254849675331, "M": 0.04576923076923077, "body": 5950, "brain": 55.22, "genus": "Alouatta", "genus_id": 3, "gestation": 189.9, "group_size": 7.9, "longevity": 300, "maternal_investment": 559.94, "name": "Alouatta_seniculus", "research_effort": 82, "sex_maturity": 1690.22, "social_learning": 0, "species": "seniculus", "spp_id": 9, "subspecies": null, "weaning": 370.04 }, { "B": 0.04207462291611538, "M": 0.00926923076923077, "body": 1205, "brain": 20.67, "genus": "Aotus", "genus_id": 4, "gestation": null, "group_size": 4.1, "longevity": null, "maternal_investment": null, "name": "Aotus_azarai", "research_effort": 22, "sex_maturity": null, "social_learning": 0, "species": "azarai", "spp_id": 10, "subspecies": null, "weaning": 229.69 }, { "B": 0.033179310765973906, "M": 0.005646153846153846, "body": 734, "brain": 16.3, "genus": "Aotus", "genus_id": 4, "gestation": 132.23, "group_size": null, "longevity": 216, "maternal_investment": 206.8, "name": "Aotus_lemurinus", "research_effort": 16, "sex_maturity": 755.15, "social_learning": 0, "species": "lemurinus", "spp_id": 14, "subspecies": null, "weaning": 74.57 }, { "B": null, "M": 0.006084846153846153, "body": 791.03, "brain": null, "genus": "Aotus", "genus_id": 4, "gestation": null, "group_size": 4, "longevity": null, "maternal_investment": null, "name": "Aotus_nancymaae", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "nancymaae", "spp_id": 16, "subspecies": null, "weaning": null }, { "B": null, "M": 0.007369230769230769, "body": 958, "brain": null, "genus": "Aotus", "genus_id": 4, "gestation": null, "group_size": 3.3, "longevity": null, "maternal_investment": null, "name": "Aotus_nigriceps", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "nigriceps", "spp_id": 17, "subspecies": null, "weaning": null }, { "B": 0.0342988580617583, "M": 0.0076076923076923075, "body": 989, "brain": 16.85, "genus": "Aotus", "genus_id": 4, "gestation": 133.47, "group_size": 3.15, "longevity": 303.6, "maternal_investment": 209.68, "name": "Aotus_trivirgatus", "research_effort": 58, "sex_maturity": 736.6, "social_learning": 0, "species": "trivirgatus", "spp_id": 18, "subspecies": null, "weaning": 76.21 }, { "B": null, "M": 0.005407692307692308, "body": 703, "brain": null, "genus": "Aotus", "genus_id": 4, "gestation": null, "group_size": 3.3, "longevity": null, "maternal_investment": null, "name": "Aotus_vociferans", "research_effort": 12, "sex_maturity": null, "social_learning": 0, "species": "vociferans", "spp_id": 19, "subspecies": null, "weaning": null }, { "B": 0.011968978362204084, "M": 0.0016153846153846153, "body": 210, "brain": 5.88, "genus": "Arctocebus", "genus_id": 6, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Arctocebus_aureus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "aureus", "spp_id": 21, "subspecies": null, "weaning": null }, { "B": 0.014085940521505486, "M": 0.002376923076923077, "body": 309, "brain": 6.92, "genus": "Arctocebus", "genus_id": 6, "gestation": 133.74, "group_size": 1, "longevity": 156, "maternal_investment": 243, "name": "Arctocebus_calabarensis", "research_effort": 1, "sex_maturity": 298.91, "social_learning": 0, "species": "calabarensis", "spp_id": 22, "subspecies": null, "weaning": 109.26 }, { "B": 0.23819895373216357, "M": 0.06282307692307693, "body": 8167, "brain": 117.02, "genus": "Ateles", "genus_id": 7, "gestation": 138.2, "group_size": 14.5, "longevity": 336, "maternal_investment": null, "name": "Ateles_belzebuth", "research_effort": 12, "sex_maturity": null, "social_learning": 0, "species": "belzebuth", "spp_id": 23, "subspecies": null, "weaning": null }, { "B": 0.2325401510371079, "M": 0.06942307692307692, "body": 9025, "brain": 114.24, "genus": "Ateles", "genus_id": 7, "gestation": 224.7, "group_size": null, "longevity": 288, "maternal_investment": 707.4, "name": "Ateles_fusciceps", "research_effort": 4, "sex_maturity": 1799.68, "social_learning": 0, "species": "fusciceps", "spp_id": 24, "subspecies": null, "weaning": 482.7 }, { "B": 0.21391495511633116, "M": 0.05796153846153846, "body": 7535, "brain": 105.09, "genus": "Ateles", "genus_id": 7, "gestation": 226.37, "group_size": 42, "longevity": 327.6, "maternal_investment": 1042.72, "name": "Ateles_geoffroyi", "research_effort": 58, "sex_maturity": 2104.57, "social_learning": 2, "species": "geoffroyi", "spp_id": 25, "subspecies": null, "weaning": 816.35 }, { "B": 0.21139088484947177, "M": 0.06369230769230769, "body": 8280, "brain": 103.85, "genus": "Ateles", "genus_id": 7, "gestation": 228.18, "group_size": 20, "longevity": 453.6, "maternal_investment": 1033.59, "name": "Ateles_paniscus", "research_effort": 30, "sex_maturity": 2104.57, "social_learning": 0, "species": "paniscus", "spp_id": 26, "subspecies": null, "weaning": 805.41 }, { "B": 0.02007042970260753, "M": 0.009284615384615384, "body": 1207, "brain": 9.86, "genus": "Avahi", "genus_id": 8, "gestation": 136.15, "group_size": 2, "longevity": null, "maternal_investment": 285.3, "name": "Avahi_laniger", "research_effort": 10, "sex_maturity": null, "social_learning": 0, "species": "laniger", "spp_id": 28, "subspecies": null, "weaning": 149.15 }, { "B": 0.01618254727542899, "M": 0.006161538461538461, "body": 801, "brain": 7.95, "genus": "Avahi", "genus_id": 8, "gestation": null, "group_size": 3, "longevity": null, "maternal_investment": null, "name": "Avahi_occidentalis", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "occidentalis", "spp_id": 29, "subspecies": null, "weaning": null }, { "B": null, "M": 0.08105623076923077, "body": 10537.31, "brain": null, "genus": "Brachyteles", "genus_id": 9, "gestation": 221.75, "group_size": 19.6, "longevity": null, "maternal_investment": 956.57, "name": "Brachyteles_arachnoides", "research_effort": 57, "sex_maturity": 2876.24, "social_learning": 0, "species": "arachnoides", "spp_id": 31, "subspecies": null, "weaning": 734.82 }, { "B": 0.2252936267225762, "M": 0.05175384615384616, "body": 6728, "brain": 110.68, "genus": "Bunopithecus", "genus_id": 10, "gestation": 232.5, "group_size": 3.2, "longevity": null, "maternal_investment": 867.63, "name": "Bunopithecus_hoolock", "research_effort": 24, "sex_maturity": 2689.08, "social_learning": 0, "species": "hoolock", "spp_id": 32, "subspecies": null, "weaning": 635.13 }, { "B": 0.15470108087202558, "M": 0.024346153846153847, "body": 3165, "brain": 76, "genus": "Cacajao", "genus_id": 11, "gestation": 180, "group_size": 23.7, "longevity": 324, "maternal_investment": 519.29, "name": "Cacajao_calvus", "research_effort": 11, "sex_maturity": 1262.74, "social_learning": 0, "species": "calvus", "spp_id": 33, "subspecies": null, "weaning": 339.29 }, { "B": 0.13998412278380523, "M": 0.022576923076923078, "body": 2935, "brain": 68.77, "genus": "Cacajao", "genus_id": 11, "gestation": null, "group_size": 30, "longevity": 216, "maternal_investment": null, "name": "Cacajao_melanocephalus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "melanocephalus", "spp_id": 34, "subspecies": null, "weaning": null }, { "B": null, "M": 0.006905153846153846, "body": 897.67, "brain": null, "genus": "Callicebus", "genus_id": 12, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Callicebus_donacophilus", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "donacophilus", "spp_id": 35, "subspecies": null, "weaning": null }, { "B": null, "M": 0.008212384615384614, "body": 1067.61, "brain": null, "genus": "Callicebus", "genus_id": 12, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Callicebus_hoffmannsi", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "hoffmannsi", "spp_id": 36, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0073702307692307695, "body": 958.13, "brain": null, "genus": "Callicebus", "genus_id": 12, "gestation": 164, "group_size": 2.95, "longevity": 303.6, "maternal_investment": 222.85, "name": "Callicebus_moloch", "research_effort": 18, "sex_maturity": 1262.74, "social_learning": 0, "species": "moloch", "spp_id": 37, "subspecies": null, "weaning": 58.85 }, { "B": null, "M": 0.010698461538461539, "body": 1390.8, "brain": null, "genus": "Callicebus", "genus_id": 12, "gestation": null, "group_size": 2.35, "longevity": null, "maternal_investment": null, "name": "Callicebus_personatus", "research_effort": 19, "sex_maturity": null, "social_learning": 0, "species": "personatus", "spp_id": 38, "subspecies": null, "weaning": null }, { "B": null, "M": 0.009576923076923077, "body": 1245, "brain": null, "genus": "Callicebus", "genus_id": 12, "gestation": null, "group_size": 3.85, "longevity": null, "maternal_investment": null, "name": "Callicebus_torquatus", "research_effort": 4, "sex_maturity": 1683.65, "social_learning": 0, "species": "torquatus", "spp_id": 39, "subspecies": null, "weaning": 121.66 }, { "B": 0.02326622834693753, "M": 0.003723076923076923, "body": 484, "brain": 11.43, "genus": "Callimico", "genus_id": 13, "gestation": 153.99, "group_size": 6.85, "longevity": 214.8, "maternal_investment": 220.52, "name": "Callimico_goeldii", "research_effort": 43, "sex_maturity": 413.84, "social_learning": 0, "species": "goeldii", "spp_id": 40, "subspecies": null, "weaning": 66.53 }, { "B": 0.01618254727542899, "M": 0.0026538461538461538, "body": 345, "brain": 7.95, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": 9.5, "longevity": 201.6, "maternal_investment": null, "name": "Callithrix_argentata", "research_effort": 16, "sex_maturity": 701.52, "social_learning": 0, "species": "argentata", "spp_id": 41, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0033, "body": 429, "brain": null, "genus": "Callithrix", "genus_id": 14, "gestation": 140, "group_size": 6, "longevity": null, "maternal_investment": null, "name": "Callithrix_aurita", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "aurita", "spp_id": 42, "subspecies": null, "weaning": null }, { "B": null, "M": 0.002381384615384615, "body": 309.58, "brain": null, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Callithrix_emiliae", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "emiliae", "spp_id": 43, "subspecies": null, "weaning": null }, { "B": null, "M": 0.002630769230769231, "body": 342, "brain": null, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Callithrix_geoffroyi", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "geoffroyi", "spp_id": 44, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0028461538461538463, "body": 370, "brain": null, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": 8.5, "longevity": 180, "maternal_investment": null, "name": "Callithrix_humeralifera", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "humeralifera", "spp_id": 45, "subspecies": null, "weaning": 99.01 }, { "B": 0.014737313493598227, "M": 0.0024615384615384616, "body": 320, "brain": 7.24, "genus": "Callithrix", "genus_id": 14, "gestation": 144, "group_size": 8.55, "longevity": 201.6, "maternal_investment": 204.24, "name": "Callithrix_jacchus", "research_effort": 161, "sex_maturity": 455.99, "social_learning": 2, "species": "jacchus", "spp_id": 46, "subspecies": null, "weaning": 60.24 }, { "B": null, "M": 0.002884538461538462, "body": 374.99, "brain": null, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Callithrix_kuhli", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "kuhli", "spp_id": 47, "subspecies": null, "weaning": null }, { "B": null, "M": 0.003413769230769231, "body": 443.79, "brain": null, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Callithrix_mauesi", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "mauesi", "spp_id": 48, "subspecies": null, "weaning": null }, { "B": 0.014900156736621411, "M": 0.002523076923076923, "body": 328, "brain": 7.32, "genus": "Callithrix", "genus_id": 14, "gestation": null, "group_size": 5.9, "longevity": null, "maternal_investment": null, "name": "Callithrix_penicillata", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "penicillata", "spp_id": 49, "subspecies": null, "weaning": null }, { "B": 0.008488204042583509, "M": 0.0008923076923076924, "body": 116, "brain": 4.17, "genus": "Callithrix", "genus_id": 14, "gestation": 134.44, "group_size": 6, "longevity": 181.2, "maternal_investment": 225.17, "name": "Callithrix_pygmaea", "research_effort": 36, "sex_maturity": 708.5, "social_learning": 0, "species": "pygmaea", "spp_id": 50, "subspecies": null, "weaning": 90.73 }, { "B": 0.1332261281983431, "M": 0.021038461538461537, "body": 2735, "brain": 65.45, "genus": "Cebus", "genus_id": 15, "gestation": 158.29, "group_size": 25, "longevity": 528, "maternal_investment": 428.61, "name": "Cebus_albifrons", "research_effort": 13, "sex_maturity": 1501.69, "social_learning": 1, "species": "albifrons", "spp_id": 51, "subspecies": null, "weaning": 270.32 }, { "B": 0.13562806603293504, "M": 0.022584615384615384, "body": 2936, "brain": 66.63, "genus": "Cebus", "genus_id": 15, "gestation": 154.99, "group_size": 7.9, "longevity": 541.2, "maternal_investment": 418.11, "name": "Cebus_apella", "research_effort": 249, "sex_maturity": 1760.81, "social_learning": 17, "species": "apella", "spp_id": 52, "subspecies": null, "weaning": 263.12 }, { "B": 0.14845197142101088, "M": 0.022007692307692308, "body": 2861, "brain": 72.93, "genus": "Cebus", "genus_id": 15, "gestation": 161.06, "group_size": 18.15, "longevity": 657.6, "maternal_investment": 675.13, "name": "Cebus_capucinus", "research_effort": 60, "sex_maturity": 2134.73, "social_learning": 5, "species": "capucinus", "spp_id": 53, "subspecies": null, "weaning": 514.07 }, { "B": 0.14216215115924036, "M": 0.022546153846153848, "body": 2931, "brain": 69.84, "genus": "Cebus", "genus_id": 15, "gestation": null, "group_size": 11.45, "longevity": 492, "maternal_investment": null, "name": "Cebus_olivaceus", "research_effort": 18, "sex_maturity": 2525.48, "social_learning": 0, "species": "olivaceus", "spp_id": 54, "subspecies": null, "weaning": 725.86 }, { "B": 0.13452887414252857, "M": 0.01876923076923077, "body": 2440, "brain": 66.09, "genus": "Cebus", "genus_id": 15, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cebus_xanthosternos", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "xanthosternos", "spp_id": 55, "subspecies": null, "weaning": null }, { "B": 0.2369979848148676, "M": 0.05830769230769231, "body": 7580, "brain": 116.43, "genus": "Cercocebus", "genus_id": 16, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercocebus_agilis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "agilis", "spp_id": 56, "subspecies": null, "weaning": null }, { "B": 0.20166100107883647, "M": 0.057192307692307695, "body": 7435, "brain": 99.07, "genus": "Cercocebus", "genus_id": 16, "gestation": 174.43, "group_size": 20.35, "longevity": 252, "maternal_investment": null, "name": "Cercocebus_galeritus", "research_effort": 19, "sex_maturity": 2735.94, "social_learning": 0, "species": "galeritus", "spp_id": 57, "subspecies": null, "weaning": null }, { "B": 0.21574694160034197, "M": 0.057576923076923074, "body": 7485, "brain": 105.99, "genus": "Cercocebus", "genus_id": 16, "gestation": 168.98, "group_size": 26.85, "longevity": 360, "maternal_investment": null, "name": "Cercocebus_torquatus", "research_effort": 32, "sex_maturity": 1318.86, "social_learning": 1, "species": "torquatus", "spp_id": 58, "subspecies": null, "weaning": null }, { "B": 0.19272497811793923, "M": 0.06615384615384616, "body": 8600, "brain": 94.68, "genus": "Cercocebus", "genus_id": 16, "gestation": 165.08, "group_size": 35, "longevity": 321.6, "maternal_investment": null, "name": "Cercocebus_torquatus_atys", "research_effort": null, "sex_maturity": 1321.67, "social_learning": null, "species": "torquatus", "spp_id": 59, "subspecies": "atys", "weaning": null }, { "B": 0.14269139169906567, "M": 0.04323076923076923, "body": 5620, "brain": 70.1, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 32.5, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_albogularis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "albogularis", "spp_id": 60, "subspecies": null, "weaning": null }, { "B": 0.12127750524151688, "M": 0.02856923076923077, "body": 3714, "brain": 59.58, "genus": "Cercopithecus", "genus_id": 17, "gestation": 148.5, "group_size": 26.3, "longevity": 339.6, "maternal_investment": 295.04, "name": "Cercopithecus_ascanius", "research_effort": 26, "sex_maturity": 1718.73, "social_learning": 1, "species": "ascanius", "spp_id": 61, "subspecies": null, "weaning": 146.54 }, { "B": 0.11681967146375721, "M": 0.027692307692307693, "body": 3600, "brain": 57.39, "genus": "Cercopithecus", "genus_id": 17, "gestation": 180.8, "group_size": 11, "longevity": 396, "maternal_investment": 543.73, "name": "Cercopithecus_campbelli", "research_effort": 11, "sex_maturity": null, "social_learning": 0, "species": "campbelli", "spp_id": 62, "subspecies": null, "weaning": 362.93 }, { "B": 0.11325747552262504, "M": 0.024515384615384616, "body": 3187, "brain": 55.64, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_campbelli_lowei", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "campbelli", "spp_id": 63, "subspecies": "lowei", "weaning": null }, { "B": 0.132839375496163, "M": 0.027576923076923075, "body": 3585, "brain": 65.26, "genus": "Cercopithecus", "genus_id": 17, "gestation": 169.51, "group_size": 11, "longevity": 276, "maternal_investment": 532.44, "name": "Cercopithecus_cephus", "research_effort": 8, "sex_maturity": 1521.9, "social_learning": 0, "species": "cephus", "spp_id": 64, "subspecies": null, "weaning": 362.93 }, { "B": 0.12744519307102, "M": 0.035, "body": 4550, "brain": 62.61, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 24.95, "longevity": 447.6, "maternal_investment": null, "name": "Cercopithecus_diana", "research_effort": 28, "sex_maturity": 2279.95, "social_learning": 1, "species": "diana", "spp_id": 67, "subspecies": null, "weaning": 362.93 }, { "B": null, "M": 0.026499076923076924, "body": 3444.88, "brain": null, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_erythrogaster", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "erythrogaster", "spp_id": 68, "subspecies": null, "weaning": null }, { "B": 0.1331243511714536, "M": 0.025, "body": 3250, "brain": 65.4, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_erythrotis", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "erythrotis", "spp_id": 70, "subspecies": null, "weaning": null }, { "B": 0.1341421214403485, "M": 0.03403846153846154, "body": 4425, "brain": 65.9, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_hamlyni", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "hamlyni", "spp_id": 71, "subspecies": null, "weaning": null }, { "B": 0.15103710790400393, "M": 0.03623076923076923, "body": 4710, "brain": 74.2, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 17.4, "longevity": 192, "maternal_investment": null, "name": "Cercopithecus_lhoesti", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "lhoesti", "spp_id": 72, "subspecies": null, "weaning": null }, { "B": 0.14519510656054715, "M": 0.046992307692307694, "body": 6109, "brain": 71.33, "genus": "Cercopithecus", "genus_id": 17, "gestation": 138.39, "group_size": 16, "longevity": 325.2, "maternal_investment": 826.47, "name": "Cercopithecus_mitis", "research_effort": 56, "sex_maturity": 2049.25, "social_learning": 0, "species": "mitis", "spp_id": 73, "subspecies": null, "weaning": 688.08 }, { "B": 0.12587782685692187, "M": 0.028607692307692306, "body": 3719, "brain": 61.84, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": 360, "maternal_investment": null, "name": "Cercopithecus_mona", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "mona", "spp_id": 74, "subspecies": null, "weaning": null }, { "B": 0.13428460927799377, "M": 0.041923076923076924, "body": 5450, "brain": 65.97, "genus": "Cercopithecus", "genus_id": 17, "gestation": 172.07, "group_size": 4.5, "longevity": 315.6, "maternal_investment": 589.69, "name": "Cercopithecus_neglectus", "research_effort": 17, "sex_maturity": 2076.39, "social_learning": 0, "species": "neglectus", "spp_id": 75, "subspecies": null, "weaning": 417.62 }, { "B": 0.14478799845298918, "M": 0.04203846153846154, "body": 5465, "brain": 71.13, "genus": "Cercopithecus", "genus_id": 17, "gestation": 169.51, "group_size": 16, "longevity": 276, "maternal_investment": null, "name": "Cercopithecus_nictitans", "research_effort": 7, "sex_maturity": 1684.59, "social_learning": 0, "species": "nictitans", "spp_id": 76, "subspecies": null, "weaning": null }, { "B": 0.11211757282146274, "M": 0.027761538461538462, "body": 3609, "brain": 55.08, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 14, "longevity": 228, "maternal_investment": null, "name": "Cercopithecus_petaurista", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "petaurista", "spp_id": 77, "subspecies": null, "weaning": null }, { "B": 0.1212367944307611, "M": 0.02753846153846154, "body": 3580, "brain": 59.56, "genus": "Cercopithecus", "genus_id": 17, "gestation": 169.51, "group_size": 15, "longevity": 289.2, "maternal_investment": null, "name": "Cercopithecus_pogonias", "research_effort": 8, "sex_maturity": 1684.59, "social_learning": 0, "species": "pogonias", "spp_id": 78, "subspecies": null, "weaning": null }, { "B": null, "M": 0.03948130769230769, "body": 5132.57, "brain": null, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 3, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_preussi", "research_effort": 2, "sex_maturity": null, "social_learning": 0, "species": "preussi", "spp_id": 79, "subspecies": null, "weaning": null }, { "B": null, "M": 0.04043776923076923, "body": 5256.91, "brain": null, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": 10, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_solatus", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "solatus", "spp_id": 80, "subspecies": null, "weaning": null }, { "B": 0.12508396604718383, "M": 0.026076923076923077, "body": 3390, "brain": 61.45, "genus": "Cercopithecus", "genus_id": 17, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Cercopithecus_wolfi", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "wolfi", "spp_id": 81, "subspecies": null, "weaning": null }, { "B": 0.011826490524558796, "M": 0.003076923076923077, "body": 400, "brain": 5.81, "genus": "Cheirogaleus", "genus_id": 18, "gestation": 70, "group_size": 1, "longevity": 180, "maternal_investment": 117.14, "name": "Cheirogaleus_major", "research_effort": 3, "sex_maturity": 420.91, "social_learning": 0, "species": "major", "spp_id": 83, "subspecies": null, "weaning": 47.14 }, { "B": 0.005292405398253507, "M": 0.0010769230769230769, "body": 140, "brain": 2.6, "genus": "Cheirogaleus", "genus_id": 18, "gestation": 61.79, "group_size": 1, "longevity": 231.6, "maternal_investment": 122.44, "name": "Cheirogaleus_medius", "research_effort": 13, "sex_maturity": 413.84, "social_learning": 0, "species": "medius", "spp_id": 84, "subspecies": null, "weaning": 60.65 }, { "B": 0.09837767419138152, "M": 0.023307692307692307, "body": 3030, "brain": 48.33, "genus": "Chiropotes", "genus_id": 19, "gestation": 157.67, "group_size": 14.4, "longevity": 216, "maternal_investment": null, "name": "Chiropotes_satanas", "research_effort": 21, "sex_maturity": null, "social_learning": 0, "species": "satanas", "spp_id": 85, "subspecies": null, "weaning": null }, { "B": 0.13231013495633767, "M": 0.028615384615384615, "body": 3720, "brain": 65, "genus": "Chlorocebus", "genus_id": 20, "gestation": null, "group_size": null, "longevity": 379.2, "maternal_investment": null, "name": "Chlorocebus_aethiops", "research_effort": 91, "sex_maturity": null, "social_learning": 5, "species": "aethiops", "spp_id": 86, "subspecies": null, "weaning": 217.76 }, { "B": 0.12738412685488631, "M": 0.03326153846153846, "body": 4324, "brain": 62.58, "genus": "Chlorocebus", "genus_id": 20, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Chlorocebus_pygerythrus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "pygerythrus", "spp_id": 87, "subspecies": null, "weaning": null }, { "B": 0.13212693630793657, "M": 0.03316923076923077, "body": 4312, "brain": 64.91, "genus": "Chlorocebus", "genus_id": 20, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Chlorocebus_sabaeus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "sabaeus", "spp_id": 89, "subspecies": null, "weaning": null }, { "B": 0.15816149978626826, "M": 0.06634615384615385, "body": 8625, "brain": 77.7, "genus": "Colobus", "genus_id": 21, "gestation": null, "group_size": 10.9, "longevity": null, "maternal_investment": null, "name": "Colobus_angolensis", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "angolensis", "spp_id": 91, "subspecies": null, "weaning": null }, { "B": 0.15142386060618399, "M": 0.06606923076923077, "body": 8589, "brain": 74.39, "genus": "Colobus", "genus_id": 21, "gestation": 169.02, "group_size": 7.6, "longevity": 294, "maternal_investment": 556.81, "name": "Colobus_guereza", "research_effort": 42, "sex_maturity": 1929.19, "social_learning": 0, "species": "guereza", "spp_id": 93, "subspecies": null, "weaning": 387.79 }, { "B": 0.1502839579050217, "M": 0.07, "body": 9100, "brain": 73.83, "genus": "Colobus", "genus_id": 21, "gestation": 172.69, "group_size": 10.2, "longevity": 366, "maternal_investment": 386.47, "name": "Colobus_polykomos", "research_effort": 17, "sex_maturity": 1629.84, "social_learning": 0, "species": "polykomos", "spp_id": 94, "subspecies": null, "weaning": 213.78 }, { "B": 0.1524619862804568, "M": 0.06853846153846153, "body": 8910, "brain": 74.9, "genus": "Colobus", "genus_id": 21, "gestation": 192.76, "group_size": 15.5, "longevity": null, "maternal_investment": null, "name": "Colobus_satanas", "research_effort": 10, "sex_maturity": null, "social_learning": 0, "species": "satanas", "spp_id": 95, "subspecies": null, "weaning": null }, { "B": 0.14873694709630142, "M": 0.060153846153846155, "body": 7820, "brain": 73.07, "genus": "Colobus", "genus_id": 21, "gestation": null, "group_size": 16, "longevity": null, "maternal_investment": null, "name": "Colobus_vellerosus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "vellerosus", "spp_id": 96, "subspecies": null, "weaning": null }, { "B": 0.09129399311987299, "M": 0.019653846153846154, "body": 2555, "brain": 44.85, "genus": "Daubentonia", "genus_id": 22, "gestation": 166.48, "group_size": 1, "longevity": 291.6, "maternal_investment": 364.18, "name": "Daubentonia_madagascariensis", "research_effort": 52, "sex_maturity": 834.72, "social_learning": 0, "species": "madagascariensis", "spp_id": 97, "subspecies": null, "weaning": 197.7 }, { "B": 0.19893337675819817, "M": 0.0726923076923077, "body": 9450, "brain": 97.73, "genus": "Erythrocebus", "genus_id": 23, "gestation": 167.2, "group_size": 28, "longevity": 286.8, "maternal_investment": 378.99, "name": "Erythrocebus_patas", "research_effort": 33, "sex_maturity": 1246.07, "social_learning": 2, "species": "patas", "spp_id": 98, "subspecies": null, "weaning": 211.79 }, { "B": 0.042033912105359575, "M": 0.009076923076923076, "body": 1180, "brain": 20.65, "genus": "Eulemur", "genus_id": 24, "gestation": 124.04, "group_size": 6.95, "longevity": 220.8, "maternal_investment": null, "name": "Eulemur_coronatus", "research_effort": 11, "sex_maturity": 701.52, "social_learning": 0, "species": "coronatus", "spp_id": 99, "subspecies": null, "weaning": null }, { "B": 0.043662344535591424, "M": 0.01796923076923077, "body": 2336, "brain": 21.45, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_albifrons", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 100, "subspecies": "albifrons", "weaning": null }, { "B": 0.04498544588515481, "M": 0.01646153846153846, "body": 2140, "brain": 22.1, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_albocollaris", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 101, "subspecies": "albocollaris", "weaning": null }, { "B": 0.05245587965884341, "M": 0.01763076923076923, "body": 2292, "brain": 25.77, "genus": "Eulemur", "genus_id": 24, "gestation": 120.83, "group_size": 9.15, "longevity": 444, "maternal_investment": 255.47, "name": "Eulemur_fulvus_fulvus", "research_effort": 81, "sex_maturity": 791.75, "social_learning": 1, "species": "fulvus", "spp_id": 103, "subspecies": "fulvus", "weaning": 134.64 }, { "B": 0.051702729659861175, "M": 0.017076923076923076, "body": 2220, "brain": 25.4, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": 9.5, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_rufus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 105, "subspecies": "rufus", "weaning": null }, { "B": null, "M": 0.018415615384615384, "body": 2394.03, "brain": null, "genus": "Eulemur", "genus_id": 24, "gestation": null, "group_size": 7.7, "longevity": null, "maternal_investment": null, "name": "Eulemur_fulvus_sanfordi", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "fulvus", "spp_id": 106, "subspecies": "sanfordi", "weaning": null }, { "B": 0.04989109858122825, "M": 0.018384615384615385, "body": 2390, "brain": 24.51, "genus": "Eulemur", "genus_id": 24, "gestation": 127.49, "group_size": 9.2, "longevity": 360, "maternal_investment": 270.77, "name": "Eulemur_macaco_macaco", "research_effort": 32, "sex_maturity": 660.75, "social_learning": 0, "species": "macaco", "spp_id": 108, "subspecies": "macaco", "weaning": 143.28 }, { "B": 0.041056852647220476, "M": 0.009323076923076924, "body": 1212, "brain": 20.17, "genus": "Eulemur", "genus_id": 24, "gestation": 129, "group_size": 2.7, "longevity": 360, "maternal_investment": 280.13, "name": "Eulemur_mongoz", "research_effort": 13, "sex_maturity": 1060.7, "social_learning": 0, "species": "mongoz", "spp_id": 109, "subspecies": null, "weaning": 151.13 }, { "B": 0.053392228306226724, "M": 0.015076923076923076, "body": 1960, "brain": 26.23, "genus": "Eulemur", "genus_id": 24, "gestation": 126.99, "group_size": 3.3, "longevity": null, "maternal_investment": 278.21, "name": "Eulemur_rubriventer", "research_effort": 13, "sex_maturity": 566.36, "social_learning": 0, "species": "rubriventer", "spp_id": 110, "subspecies": null, "weaning": 151.22 }, { "B": 0.011256539173977651, "M": 0.002107692307692308, "body": 274, "brain": 5.53, "genus": "Euoticus", "genus_id": 25, "gestation": 133.45, "group_size": 1, "longevity": 180, "maternal_investment": null, "name": "Euoticus_elegantulus", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "elegantulus", "spp_id": 111, "subspecies": null, "weaning": null }, { "B": 0.011358316200867141, "M": 0.0019384615384615384, "body": 252, "brain": 5.58, "genus": "Galago", "genus_id": 26, "gestation": 133, "group_size": 6, "longevity": 144, "maternal_investment": null, "name": "Galago_alleni", "research_effort": 2, "sex_maturity": 283.18, "social_learning": 0, "species": "alleni", "spp_id": 112, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0019230769230769232, "body": 250, "brain": null, "genus": "Galago", "genus_id": 26, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Galago_gallarum", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "gallarum", "spp_id": 113, "subspecies": null, "weaning": null }, { "B": 0.009404197284588923, "M": 0.0016153846153846153, "body": 210, "brain": 4.62, "genus": "Galago", "genus_id": 26, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Galago_matschiei", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "matschiei", "spp_id": 115, "subspecies": null, "weaning": null }, { "B": 0.007551855395200196, "M": 0.0011384615384615385, "body": 148, "brain": 3.71, "genus": "Galago", "genus_id": 26, "gestation": 122.29, "group_size": 1, "longevity": 198, "maternal_investment": 212.75, "name": "Galago_moholi", "research_effort": 14, "sex_maturity": 420.91, "social_learning": 0, "species": "moholi", "spp_id": 116, "subspecies": null, "weaning": 90.46 }, { "B": 0.008060740529647649, "M": 0.0014923076923076923, "body": 194, "brain": 3.96, "genus": "Galago", "genus_id": 26, "gestation": 126.98, "group_size": 3.5, "longevity": 204, "maternal_investment": 220.91, "name": "Galago_senegalensis", "research_effort": 20, "sex_maturity": 330.37, "social_learning": 0, "species": "senegalensis", "spp_id": 117, "subspecies": null, "weaning": 93.93 }, { "B": 0.005394182425142997, "M": 0.000576923076923077, "body": 75, "brain": 2.65, "genus": "Galagoides", "genus_id": 27, "gestation": 111, "group_size": 5.5, "longevity": 168, "maternal_investment": 154.47, "name": "Galagoides_demidoff", "research_effort": 5, "sex_maturity": 345.24, "social_learning": 0, "species": "demidoff", "spp_id": 118, "subspecies": null, "weaning": 43.47 }, { "B": 0.007144747287642233, "M": 0.0011, "body": 143, "brain": 3.51, "genus": "Galagoides", "genus_id": 27, "gestation": 120, "group_size": 1, "longevity": null, "maternal_investment": 179.27, "name": "Galagoides_zanzibaricus", "research_effort": null, "sex_maturity": 322.75, "social_learning": 0, "species": "zanzibaricus", "spp_id": 119, "subspecies": null, "weaning": 59.27 }, { "B": 1, "M": 1, "body": 130000, "brain": 491.27, "genus": "Gorilla", "genus_id": 28, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Gorilla_beringei", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "beringei", "spp_id": 120, "subspecies": null, "weaning": null }, { "B": 0.9982494351375009, "M": 0.9303846153846154, "body": 120950, "brain": 490.41, "genus": "Gorilla", "genus_id": 28, "gestation": 257, "group_size": 6, "longevity": 648, "maternal_investment": 1177.35, "name": "Gorilla_gorilla_gorilla", "research_effort": 517, "sex_maturity": 3353.12, "social_learning": 13, "species": "gorilla", "spp_id": 121, "subspecies": "gorilla", "weaning": 920.35 }, { "B": null, "M": 0.012018538461538462, "body": 1562.41, "brain": null, "genus": "Hapalemur", "genus_id": 29, "gestation": 142.5, "group_size": 3, "longevity": null, "maternal_investment": null, "name": "Hapalemur_aureus", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "aureus", "spp_id": 123, "subspecies": null, "weaning": null }, { "B": 0.028680766177458426, "M": 0.005453846153846154, "body": 709, "brain": 14.09, "genus": "Hapalemur", "genus_id": 29, "gestation": 141.24, "group_size": 3.1, "longevity": 205.2, "maternal_investment": 277.53, "name": "Hapalemur_griseus", "research_effort": 40, "sex_maturity": 1003.17, "social_learning": 0, "species": "griseus", "spp_id": 124, "subspecies": null, "weaning": 136.29 }, { "B": 0.028090459421499382, "M": 0.009538461538461539, "body": 1240, "brain": 13.8, "genus": "Hapalemur", "genus_id": 29, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Hapalemur_griseus_alaotrensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "griseus", "spp_id": 125, "subspecies": "alaotrensis", "weaning": null }, { "B": 0.05524457019561545, "M": 0.01653846153846154, "body": 2150, "brain": 27.14, "genus": "Hapalemur", "genus_id": 29, "gestation": 140, "group_size": 7.5, "longevity": 144, "maternal_investment": null, "name": "Hapalemur_simus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "simus", "spp_id": 129, "subspecies": null, "weaning": null }, { "B": null, "M": 0.45031253846153846, "body": 58540.63, "brain": null, "genus": "Homo", "genus_id": 30, "gestation": 274.78, "group_size": null, "longevity": 1470, "maternal_investment": 1000.64, "name": "Homo_sapiens", "research_effort": null, "sex_maturity": 5582.93, "social_learning": null, "species": "sapiens", "spp_id": 130, "subspecies": null, "weaning": 725.86 }, { "B": 0.18555987542491909, "M": 0.045, "body": 5850, "brain": 91.16, "genus": "Hylobates", "genus_id": 31, "gestation": null, "group_size": 4.2, "longevity": 528, "maternal_investment": null, "name": "Hylobates_agilis", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "agilis", "spp_id": 132, "subspecies": null, "weaning": null }, { "B": 0.17910721192012538, "M": 0.044576923076923076, "body": 5795, "brain": 87.99, "genus": "Hylobates", "genus_id": 31, "gestation": 207.59, "group_size": 3, "longevity": null, "maternal_investment": null, "name": "Hylobates_klossii", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "klossii", "spp_id": 133, "subspecies": null, "weaning": null }, { "B": 0.20736051458464796, "M": 0.04303846153846154, "body": 5595, "brain": 101.87, "genus": "Hylobates", "genus_id": 31, "gestation": 212.91, "group_size": 3.2, "longevity": 480, "maternal_investment": 938.77, "name": "Hylobates_lar", "research_effort": 86, "sex_maturity": 3852.57, "social_learning": 0, "species": "lar", "spp_id": 134, "subspecies": null, "weaning": 725.86 }, { "B": null, "M": 0.04508315384615385, "body": 5860.81, "brain": null, "genus": "Hylobates", "genus_id": 31, "gestation": 241.2, "group_size": 2.15, "longevity": null, "maternal_investment": null, "name": "Hylobates_moloch", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "moloch", "spp_id": 135, "subspecies": null, "weaning": null }, { "B": 0.17328556598204653, "M": 0.044776923076923075, "body": 5821, "brain": 85.13, "genus": "Hylobates", "genus_id": 31, "gestation": 206.7, "group_size": 3.2, "longevity": null, "maternal_investment": null, "name": "Hylobates_muelleri", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "muelleri", "spp_id": 136, "subspecies": null, "weaning": null }, { "B": 0.172389928145419, "M": 0.042076923076923074, "body": 5470, "brain": 84.69, "genus": "Hylobates", "genus_id": 31, "gestation": 200.16, "group_size": 3.25, "longevity": 432, "maternal_investment": 835.29, "name": "Hylobates_pileatus", "research_effort": 16, "sex_maturity": 2454.24, "social_learning": 0, "species": "pileatus", "spp_id": 137, "subspecies": null, "weaning": 635.13 }, { "B": 0.07085716612046329, "M": 0.04873076923076923, "body": 6335, "brain": 34.81, "genus": "Indri", "genus_id": 32, "gestation": 136.5, "group_size": 3.1, "longevity": null, "maternal_investment": 467.84, "name": "Indri_indri", "research_effort": 8, "sex_maturity": 1605.69, "social_learning": 0, "species": "indri", "spp_id": 138, "subspecies": null, "weaning": 331.34 }, { "B": 0.19642966189671668, "M": 0.055, "body": 7150, "brain": 96.5, "genus": "Lagothrix", "genus_id": 33, "gestation": 223.99, "group_size": 33, "longevity": 360, "maternal_investment": 536.65, "name": "Lagothrix_lagotricha", "research_effort": 34, "sex_maturity": 1729.33, "social_learning": 0, "species": "lagotricha", "spp_id": 139, "subspecies": null, "weaning": 312.66 }, { "B": 0.04661387831538665, "M": 0.017, "body": 2210, "brain": 22.9, "genus": "Lemur", "genus_id": 34, "gestation": 134.74, "group_size": 16.45, "longevity": 360, "maternal_investment": 261.25, "name": "Lemur_catta", "research_effort": 103, "sex_maturity": 831.62, "social_learning": 4, "species": "catta", "spp_id": 140, "subspecies": null, "weaning": 126.51 }, { "B": 0.024100799967431353, "M": 0.0050384615384615385, "body": 655, "brain": 11.84, "genus": "Leontopithecus", "genus_id": 35, "gestation": null, "group_size": 6.7, "longevity": null, "maternal_investment": null, "name": "Leontopithecus_chrysomelas", "research_effort": 46, "sex_maturity": null, "social_learning": 0, "species": "chrysomelas", "spp_id": 141, "subspecies": null, "weaning": null }, { "B": null, "M": 0.005047076923076923, "body": 656.12, "brain": null, "genus": "Leontopithecus", "genus_id": 35, "gestation": null, "group_size": 3.6, "longevity": null, "maternal_investment": null, "name": "Leontopithecus_chrysopygus", "research_effort": 38, "sex_maturity": null, "social_learning": 0, "species": "chrysopygus", "spp_id": 142, "subspecies": null, "weaning": null }, { "B": 0.026115985099843263, "M": 0.004684615384615384, "body": 609, "brain": 12.83, "genus": "Leontopithecus", "genus_id": 35, "gestation": 134, "group_size": 4.5, "longevity": 297.6, "maternal_investment": 209.69, "name": "Leontopithecus_rosalia", "research_effort": 85, "sex_maturity": 890.34, "social_learning": 0, "species": "rosalia", "spp_id": 143, "subspecies": null, "weaning": 75.69 }, { "B": 0.013638121603191729, "M": 0.006692307692307693, "body": 870, "brain": 6.7, "genus": "Lepilemur", "genus_id": 36, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Lepilemur_dorsalis", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "dorsalis", "spp_id": 146, "subspecies": null, "weaning": null }, { "B": 0.014757668898976124, "M": 0.007161538461538461, "body": 931, "brain": 7.25, "genus": "Lepilemur", "genus_id": 36, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Lepilemur_edwardsi", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "edwardsi", "spp_id": 147, "subspecies": null, "weaning": null }, { "B": 0.013984163494615997, "M": 0.004661538461538462, "body": 606, "brain": 6.87, "genus": "Lepilemur", "genus_id": 36, "gestation": 135.92, "group_size": 1, "longevity": 103, "maternal_investment": 257.58, "name": "Lepilemur_leucopus", "research_effort": 2, "sex_maturity": 620.76, "social_learning": 0, "species": "leucopus", "spp_id": 149, "subspecies": null, "weaning": 121.66 }, { "B": 0.019846520243450648, "M": 0.007461538461538461, "body": 970, "brain": 9.75, "genus": "Lepilemur", "genus_id": 36, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Lepilemur_microdon", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "microdon", "spp_id": 151, "subspecies": null, "weaning": null }, { "B": 0.019459767541270587, "M": 0.005976923076923077, "body": 777, "brain": 9.56, "genus": "Lepilemur", "genus_id": 36, "gestation": 133.45, "group_size": 1, "longevity": 144, "maternal_investment": 209.66, "name": "Lepilemur_mustelinus", "research_effort": 5, "sex_maturity": 663.81, "social_learning": 0, "species": "mustelinus", "spp_id": 153, "subspecies": null, "weaning": 76.21 }, { "B": 0.016793209436765932, "M": 0.006192307692307692, "body": 805, "brain": 8.25, "genus": "Lepilemur", "genus_id": 36, "gestation": 135.92, "group_size": 1, "longevity": null, "maternal_investment": 255.24, "name": "Lepilemur_ruficaudatus", "research_effort": 2, "sex_maturity": null, "social_learning": 0, "species": "ruficaudatus", "spp_id": 156, "subspecies": null, "weaning": 119.32 }, { "B": null, "M": 0.005813615384615384, "body": 755.77, "brain": null, "genus": "Lepilemur", "genus_id": 36, "gestation": 134.99, "group_size": 1, "longevity": null, "maternal_investment": 255.96, "name": "Lepilemur_septentrionalis", "research_effort": null, "sex_maturity": 377.57, "social_learning": 0, "species": "septentrionalis", "spp_id": 159, "subspecies": null, "weaning": 120.97 }, { "B": 0.19127974433610845, "M": 0.05346153846153846, "body": 6950, "brain": 93.97, "genus": "Lophocebus", "genus_id": 37, "gestation": 182.64, "group_size": 16, "longevity": 392.4, "maternal_investment": 394.35, "name": "Lophocebus_albigena", "research_effort": 34, "sex_maturity": 2525.48, "social_learning": 0, "species": "albigena", "spp_id": 160, "subspecies": null, "weaning": 211.71 }, { "B": 0.20679056323406683, "M": 0.052307692307692305, "body": 6800, "brain": 101.59, "genus": "Lophocebus", "genus_id": 37, "gestation": null, "group_size": 17.5, "longevity": 321.6, "maternal_investment": null, "name": "Lophocebus_aterrimus", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "aterrimus", "spp_id": 161, "subspecies": null, "weaning": null }, { "B": 0.012905327009587396, "M": 0.002053846153846154, "body": 267, "brain": 6.34, "genus": "Loris", "genus_id": 38, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Loris_lydekkerianus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "lydekkerianus", "spp_id": 162, "subspecies": null, "weaning": null }, { "B": 0.011948622956826185, "M": 0.0014846153846153846, "body": 193, "brain": 5.87, "genus": "Loris", "genus_id": 38, "gestation": 165.99, "group_size": 1, "longevity": 196.8, "maternal_investment": 333.48, "name": "Loris_tardigradus", "research_effort": 14, "sex_maturity": 350.76, "social_learning": 0, "species": "tardigradus", "spp_id": 163, "subspecies": null, "weaning": 167.49 }, { "B": 0.2049789321554339, "M": 0.07923076923076923, "body": 10300, "brain": 100.7, "genus": "Macaca", "genus_id": 39, "gestation": 176.6, "group_size": null, "longevity": 360, "maternal_investment": 554.26, "name": "Macaca_arctoides", "research_effort": 48, "sex_maturity": 1570.01, "social_learning": 1, "species": "arctoides", "spp_id": 164, "subspecies": null, "weaning": 377.66 }, { "B": 0.18413499704846623, "M": 0.07, "body": 9100, "brain": 90.46, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": 21, "longevity": null, "maternal_investment": null, "name": "Macaca_assamensis", "research_effort": 17, "sex_maturity": null, "social_learning": 0, "species": "assamensis", "spp_id": 165, "subspecies": null, "weaning": null }, { "B": 0.16691432409876444, "M": 0.042076923076923074, "body": 5470, "brain": 82, "genus": "Macaca", "genus_id": 39, "gestation": 161.06, "group_size": 20.2, "longevity": null, "maternal_investment": 366.3, "name": "Macaca_cyclopis", "research_effort": 12, "sex_maturity": 1650.01, "social_learning": 0, "species": "cyclopis", "spp_id": 167, "subspecies": null, "weaning": 205.24 }, { "B": 0.13023388360779206, "M": 0.0327, "body": 4251, "brain": 63.98, "genus": "Macaca", "genus_id": 39, "gestation": 164.69, "group_size": 27, "longevity": 456, "maternal_investment": 448.22, "name": "Macaca_fascicularis", "research_effort": 174, "sex_maturity": 1319.5, "social_learning": 7, "species": "fascicularis", "spp_id": 168, "subspecies": null, "weaning": 283.53 }, { "B": 0.20949783214932727, "M": 0.0731923076923077, "body": 9515, "brain": 102.92, "genus": "Macaca", "genus_id": 39, "gestation": 172.99, "group_size": 40.65, "longevity": 396, "maternal_investment": 438.03, "name": "Macaca_fuscata", "research_effort": 253, "sex_maturity": 1460.77, "social_learning": 45, "species": "fuscata", "spp_id": 169, "subspecies": null, "weaning": 265.04 }, { "B": 0.17424227003480774, "M": 0.0434, "body": 5642, "brain": 85.6, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Macaca_leonina", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "leonina", "spp_id": 171, "subspecies": null, "weaning": null }, { "B": null, "M": 0.05607923076923077, "body": 7290.3, "brain": null, "genus": "Macaca", "genus_id": 39, "gestation": 167.19, "group_size": null, "longevity": null, "maternal_investment": 664.35, "name": "Macaca_maura", "research_effort": 22, "sex_maturity": null, "social_learning": 0, "species": "maura", "spp_id": 172, "subspecies": null, "weaning": 497.16 }, { "B": 0.18112239705253733, "M": 0.05225384615384615, "body": 6793, "brain": 88.98, "genus": "Macaca", "genus_id": 39, "gestation": 166.07, "group_size": 38.5, "longevity": 432, "maternal_investment": 470.23, "name": "Macaca_mulatta", "research_effort": 296, "sex_maturity": 1101.07, "social_learning": 15, "species": "mulatta", "spp_id": 173, "subspecies": null, "weaning": 304.16 }, { "B": 0.21493272538522606, "M": 0.06785384615384615, "body": 8821, "brain": 105.59, "genus": "Macaca", "genus_id": 39, "gestation": 171, "group_size": 22.6, "longevity": 411.6, "maternal_investment": 463.6, "name": "Macaca_nemestrina", "research_effort": 51, "sex_maturity": 1427.17, "social_learning": 3, "species": "nemestrina", "spp_id": 175, "subspecies": null, "weaning": 292.6 }, { "B": 0.193172797036253, "M": 0.059076923076923075, "body": 7680, "brain": 94.9, "genus": "Macaca", "genus_id": 39, "gestation": 172.43, "group_size": 35, "longevity": 216, "maternal_investment": 537.43, "name": "Macaca_nigra", "research_effort": 27, "sex_maturity": 1984.51, "social_learning": 0, "species": "nigra", "spp_id": 178, "subspecies": null, "weaning": 365 }, { "B": null, "M": 0.026153846153846153, "body": 3400, "brain": null, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Macaca_ochreata", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "ochreata", "spp_id": 180, "subspecies": null, "weaning": null }, { "B": null, "M": 0.034881999999999996, "body": 4534.66, "brain": null, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": null, "longevity": 360, "maternal_investment": null, "name": "Macaca_pagensis", "research_effort": null, "sex_maturity": 1227.12, "social_learning": null, "species": "pagensis", "spp_id": 181, "subspecies": null, "weaning": 272.2 }, { "B": 0.1524009200643231, "M": 0.03910769230769231, "body": 5084, "brain": 74.87, "genus": "Macaca", "genus_id": 39, "gestation": 161.56, "group_size": 33.5, "longevity": 360, "maternal_investment": 493.81, "name": "Macaca_radiata", "research_effort": 34, "sex_maturity": 1785.78, "social_learning": 0, "species": "radiata", "spp_id": 182, "subspecies": null, "weaning": 332.25 }, { "B": 0.17302094571213386, "M": 0.057692307692307696, "body": 7500, "brain": 85, "genus": "Macaca", "genus_id": 39, "gestation": 172, "group_size": 21, "longevity": 480, "maternal_investment": 534.93, "name": "Macaca_silenus", "research_effort": 48, "sex_maturity": 1912.19, "social_learning": 1, "species": "silenus", "spp_id": 183, "subspecies": null, "weaning": 362.93 }, { "B": 0.14187717548394976, "M": 0.03415384615384615, "body": 4440, "brain": 69.7, "genus": "Macaca", "genus_id": 39, "gestation": 180.9, "group_size": 20.1, "longevity": 420, "maternal_investment": null, "name": "Macaca_sinica", "research_effort": 12, "sex_maturity": 1894.11, "social_learning": 0, "species": "sinica", "spp_id": 184, "subspecies": null, "weaning": null }, { "B": 0.1897123781220103, "M": 0.0929076923076923, "body": 12078, "brain": 93.2, "genus": "Macaca", "genus_id": 39, "gestation": 164.84, "group_size": 18.3, "longevity": 264, "maternal_investment": 375.09, "name": "Macaca_sylvanus", "research_effort": 67, "sex_maturity": 1542.25, "social_learning": 0, "species": "sylvanus", "spp_id": 185, "subspecies": null, "weaning": 210.25 }, { "B": null, "M": 0.08148507692307692, "body": 10593.06, "brain": null, "genus": "Macaca", "genus_id": 39, "gestation": 169.02, "group_size": 21, "longevity": null, "maternal_investment": 620.81, "name": "Macaca_thibetana", "research_effort": 42, "sex_maturity": null, "social_learning": 1, "species": "thibetana", "spp_id": 186, "subspecies": null, "weaning": 451.79 }, { "B": null, "M": 0.07719638461538463, "body": 10035.53, "brain": null, "genus": "Macaca", "genus_id": 39, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Macaca_tonkeana", "research_effort": 26, "sex_maturity": null, "social_learning": 2, "species": "tonkeana", "spp_id": 187, "subspecies": null, "weaning": null }, { "B": 0.3012599995928919, "M": 0.11538461538461539, "body": 15000, "brain": 148, "genus": "Mandrillus", "genus_id": 40, "gestation": 179.22, "group_size": 17, "longevity": 400.8, "maternal_investment": 665.88, "name": "Mandrillus_leucophaeus", "research_effort": 18, "sex_maturity": 1745.96, "social_learning": 0, "species": "leucophaeus", "spp_id": 188, "subspecies": null, "weaning": 486.66 }, { "B": 0.31322897795509597, "M": 0.18153846153846154, "body": 23600, "brain": 153.88, "genus": "Mandrillus", "genus_id": 40, "gestation": 173.99, "group_size": 13.9, "longevity": 555.96, "maternal_investment": 522, "name": "Mandrillus_sphinx", "research_effort": 30, "sex_maturity": 2122.11, "social_learning": 3, "species": "sphinx", "spp_id": 189, "subspecies": null, "weaning": 348.01 }, { "B": null, "M": 0.0002573076923076923, "body": 33.45, "brain": null, "genus": "Microcebus", "genus_id": 41, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Microcebus_berthae", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "berthae", "spp_id": 190, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0005403076923076923, "body": 70.24, "brain": null, "genus": "Microcebus", "genus_id": 41, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Microcebus_griseorufus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "griseorufus", "spp_id": 193, "subspecies": null, "weaning": null }, { "B": 0.0033179310765973904, "M": 0.0005, "body": 65, "brain": 1.63, "genus": "Microcebus", "genus_id": 41, "gestation": 60.34, "group_size": 1, "longevity": 186, "maternal_investment": 100.79, "name": "Microcebus_murinus", "research_effort": 66, "sex_maturity": 355.53, "social_learning": 0, "species": "murinus", "spp_id": 200, "subspecies": null, "weaning": 40.45 }, { "B": null, "M": 0.00024023076923076925, "body": 31.23, "brain": null, "genus": "Microcebus", "genus_id": 41, "gestation": 59.99, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Microcebus_myoxinus", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "myoxinus", "spp_id": 201, "subspecies": null, "weaning": null }, { "B": null, "M": 0.00045076923076923077, "body": 58.6, "brain": null, "genus": "Microcebus", "genus_id": 41, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Microcebus_ravelobensis", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "ravelobensis", "spp_id": 202, "subspecies": null, "weaning": null }, { "B": 0.0035011297249984735, "M": 0.0003307692307692308, "body": 43, "brain": 1.72, "genus": "Microcebus", "genus_id": 41, "gestation": 59.99, "group_size": 1, "longevity": 144, "maternal_investment": 99.99, "name": "Microcebus_rufus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "rufus", "spp_id": 203, "subspecies": null, "weaning": 40 }, { "B": null, "M": 0.0003773846153846154, "body": 49.06, "brain": null, "genus": "Microcebus", "genus_id": 41, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Microcebus_sambiranensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "sambiranensis", "spp_id": 204, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0005231538461538462, "body": 68.01, "brain": null, "genus": "Microcebus", "genus_id": 41, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Microcebus_tavaratra", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "tavaratra", "spp_id": 206, "subspecies": null, "weaning": null }, { "B": null, "M": 0.009606615384615384, "body": 1248.86, "brain": null, "genus": "Miopithecus", "genus_id": 42, "gestation": 164.38, "group_size": 91.2, "longevity": 370.8, "maternal_investment": 343.36, "name": "Miopithecus_talapoin", "research_effort": 4, "sex_maturity": 1733.36, "social_learning": 0, "species": "talapoin", "spp_id": 207, "subspecies": null, "weaning": 178.98 }, { "B": 0.011806135119180898, "M": 0.0024, "body": 312, "brain": 5.8, "genus": "Mirza", "genus_id": 43, "gestation": 88.58, "group_size": 1, "longevity": 183.6, "maternal_investment": 224.58, "name": "Mirza_coquereli", "research_effort": 3, "sex_maturity": 343.74, "social_learning": 0, "species": "coquereli", "spp_id": 208, "subspecies": null, "weaning": 136 }, { "B": 0.18788039163799947, "M": 0.11200769230769231, "body": 14561, "brain": 92.3, "genus": "Nasalis", "genus_id": 44, "gestation": 165.04, "group_size": 11.25, "longevity": 252, "maternal_investment": 376.79, "name": "Nasalis_larvatus", "research_effort": 17, "sex_maturity": 1894.11, "social_learning": 0, "species": "larvatus", "spp_id": 210, "subspecies": null, "weaning": 211.75 }, { "B": null, "M": 0.049311307692307696, "body": 6410.47, "brain": null, "genus": "Nomascus", "genus_id": 45, "gestation": 205.81, "group_size": 4, "longevity": 529.2, "maternal_investment": 840.94, "name": "Nomascus_concolor", "research_effort": 21, "sex_maturity": 2454.24, "social_learning": 0, "species": "concolor", "spp_id": 211, "subspecies": null, "weaning": 635.13 }, { "B": 0.24300282940134751, "M": 0.05665384615384615, "body": 7365, "brain": 119.38, "genus": "Nomascus", "genus_id": 45, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Nomascus_gabriellae", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "gabriellae", "spp_id": 212, "subspecies": null, "weaning": null }, { "B": null, "M": 0.05630769230769231, "body": 7320, "brain": null, "genus": "Nomascus", "genus_id": 45, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Nomascus_leucogenys", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "leucogenys", "spp_id": 213, "subspecies": null, "weaning": null }, { "B": 0.02745944185478454, "M": 0.008153846153846154, "body": 1060, "brain": 13.49, "genus": "Nycticebus", "genus_id": 46, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Nycticebus_bengalensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "bengalensis", "spp_id": 216, "subspecies": null, "weaning": null }, { "B": 0.020620025647810777, "M": 0.0050230769230769235, "body": 653, "brain": 10.13, "genus": "Nycticebus", "genus_id": 46, "gestation": 191.09, "group_size": 1, "longevity": 318, "maternal_investment": 372.3, "name": "Nycticebus_coucang", "research_effort": 37, "sex_maturity": 660.82, "social_learning": 0, "species": "coucang", "spp_id": 217, "subspecies": null, "weaning": 181.21 }, { "B": 0.019683677000427464, "M": 0.004876923076923077, "body": 634, "brain": 9.67, "genus": "Nycticebus", "genus_id": 46, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Nycticebus_menagensis", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "menagensis", "spp_id": 219, "subspecies": null, "weaning": null }, { "B": 0.014716958088220329, "M": 0.0023615384615384614, "body": 307, "brain": 7.23, "genus": "Nycticebus", "genus_id": 46, "gestation": 185.42, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Nycticebus_pygmaeus", "research_effort": 19, "sex_maturity": null, "social_learning": 0, "species": "pygmaeus", "spp_id": 220, "subspecies": null, "weaning": null }, { "B": 0.023978667535163964, "M": 0.008846153846153846, "body": 1150, "brain": 11.78, "genus": "Otolemur", "genus_id": 47, "gestation": 131.04, "group_size": 3.5, "longevity": 225.6, "maternal_investment": 255.66, "name": "Otolemur_crassicaudatus", "research_effort": 36, "sex_maturity": 609.86, "social_learning": 1, "species": "crassicaudatus", "spp_id": 221, "subspecies": null, "weaning": 124.62 }, { "B": 0.023408716184582817, "M": 0.005876923076923077, "body": 764, "brain": 11.5, "genus": "Otolemur", "genus_id": 47, "gestation": 132.24, "group_size": 1, "longevity": 204, "maternal_investment": 271.44, "name": "Otolemur_garnettii", "research_effort": 12, "sex_maturity": 592.15, "social_learning": 1, "species": "garnettii", "spp_id": 222, "subspecies": null, "weaning": 139.2 }, { "B": 0.6947096301422844, "M": 0.3007692307692308, "body": 39100, "brain": 341.29, "genus": "Pan", "genus_id": 48, "gestation": 235.24, "group_size": 85, "longevity": 576, "maternal_investment": 1316.55, "name": "Pan_paniscus", "research_effort": 225, "sex_maturity": 5465.72, "social_learning": 5, "species": "paniscus", "spp_id": 223, "subspecies": null, "weaning": 1081.31 }, { "B": 0.7945325381154965, "M": 0.29384615384615387, "body": 38200, "brain": 390.33, "genus": "Pan", "genus_id": 48, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Pan_troglodytes_schweinfurthii", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "troglodytes", "spp_id": 224, "subspecies": "schweinfurthii", "weaning": null }, { "B": 0.7390029922445907, "M": 0.40576923076923077, "body": 52750, "brain": 363.05, "genus": "Pan", "genus_id": 48, "gestation": 231.49, "group_size": 50, "longevity": 720, "maternal_investment": 1492.3, "name": "Pan_troglodytes_troglodytes", "research_effort": 755, "sex_maturity": 3897.96, "social_learning": 214, "species": "troglodytes", "spp_id": 225, "subspecies": "troglodytes", "weaning": 1260.81 }, { "B": 0.756691839517984, "M": 0.33807692307692305, "body": 43950, "brain": 371.74, "genus": "Pan", "genus_id": 48, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Pan_troglodytes_verus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "troglodytes", "spp_id": 227, "subspecies": "verus", "weaning": null }, { "B": 0.34079019683677, "M": 0.1396153846153846, "body": 18150, "brain": 167.42, "genus": "Papio", "genus_id": 49, "gestation": 178.96, "group_size": 40, "longevity": 302.4, "maternal_investment": 775.56, "name": "Papio_anubis", "research_effort": 43, "sex_maturity": null, "social_learning": 4, "species": "anubis", "spp_id": 228, "subspecies": null, "weaning": 596.6 }, { "B": 0.3321798603619191, "M": 0.13192307692307692, "body": 17150, "brain": 163.19, "genus": "Papio", "genus_id": 49, "gestation": 172.99, "group_size": 48.2, "longevity": 540, "maternal_investment": 623.41, "name": "Papio_cynocephalus", "research_effort": 114, "sex_maturity": 2560.56, "social_learning": 2, "species": "cynocephalus", "spp_id": 229, "subspecies": null, "weaning": 450.42 }, { "B": 0.2975349604087365, "M": 0.10884615384615384, "body": 14150, "brain": 146.17, "genus": "Papio", "genus_id": 49, "gestation": 180, "group_size": 36.9, "longevity": 450, "maternal_investment": 543.96, "name": "Papio_hamadryas", "research_effort": 78, "sex_maturity": 1652.37, "social_learning": 1, "species": "hamadryas", "spp_id": 230, "subspecies": null, "weaning": 363.96 }, { "B": 0.29006452663504795, "M": 0.13866192307692307, "body": 18026.05, "brain": 142.5, "genus": "Papio", "genus_id": 49, "gestation": 184.42, "group_size": null, "longevity": 480, "maternal_investment": null, "name": "Papio_papio", "research_effort": 8, "sex_maturity": null, "social_learning": 3, "species": "papio", "spp_id": 231, "subspecies": null, "weaning": null }, { "B": 0.3623262157265862, "M": 0.17153846153846153, "body": 22300, "brain": 178, "genus": "Papio", "genus_id": 49, "gestation": 185.92, "group_size": 47, "longevity": 540, "maternal_investment": 1063.01, "name": "Papio_ursinus", "research_effort": 22, "sex_maturity": 1543.35, "social_learning": 5, "species": "ursinus", "spp_id": 232, "subspecies": null, "weaning": 877.09 }, { "B": 0.02528141347934944, "M": 0.006423076923076923, "body": 835, "brain": 12.42, "genus": "Perodicticus", "genus_id": 50, "gestation": 193, "group_size": 1, "longevity": 312, "maternal_investment": 342.15, "name": "Perodicticus_potto", "research_effort": 10, "sex_maturity": 561.58, "social_learning": 0, "species": "potto", "spp_id": 233, "subspecies": null, "weaning": 149.15 }, { "B": null, "M": 0.003152846153846154, "body": 409.87, "brain": null, "genus": "Phaner", "genus_id": 51, "gestation": 174.46, "group_size": 1, "longevity": 144, "maternal_investment": null, "name": "Phaner_furcifer", "research_effort": 1, "sex_maturity": null, "social_learning": 0, "species": "furcifer", "spp_id": 234, "subspecies": null, "weaning": null }, { "B": 0.013597410792435932, "M": 0.002607692307692308, "body": 339, "brain": 6.68, "genus": "Phaner", "genus_id": 51, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Phaner_furcifer_pallescens", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "furcifer", "spp_id": 235, "subspecies": "pallescens", "weaning": null }, { "B": 0.12944002279805403, "M": 0.06373076923076923, "body": 8285, "brain": 63.59, "genus": "Piliocolobus", "genus_id": 52, "gestation": 151.41, "group_size": 34, "longevity": null, "maternal_investment": 935.34, "name": "Piliocolobus_badius", "research_effort": 52, "sex_maturity": 1473.2, "social_learning": 0, "species": "badius", "spp_id": 236, "subspecies": null, "weaning": 783.93 }, { "B": 0.11653469578846663, "M": 0.04330769230769231, "body": 5630, "brain": 57.25, "genus": "Piliocolobus", "genus_id": 52, "gestation": 165, "group_size": 33.6, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_kirkii", "research_effort": 7, "sex_maturity": null, "social_learning": 1, "species": "kirkii", "spp_id": 239, "subspecies": null, "weaning": null }, { "B": null, "M": 0.08381538461538461, "body": 10896, "brain": null, "genus": "Piliocolobus", "genus_id": 52, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_pennantii", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "pennantii", "spp_id": 240, "subspecies": null, "weaning": null }, { "B": null, "M": 0.06819776923076923, "body": 8865.71, "brain": null, "genus": "Piliocolobus", "genus_id": 52, "gestation": 195, "group_size": 40, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_preussi", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "preussi", "spp_id": 241, "subspecies": null, "weaning": null }, { "B": null, "M": 0.061775, "body": 8030.75, "brain": null, "genus": "Piliocolobus", "genus_id": 52, "gestation": 195, "group_size": 24.5, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_rufomitratus", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "rufomitratus", "spp_id": 242, "subspecies": null, "weaning": null }, { "B": 0.14442160115618705, "M": 0.06468461538461538, "body": 8409, "brain": 70.95, "genus": "Piliocolobus", "genus_id": 52, "gestation": null, "group_size": 34, "longevity": null, "maternal_investment": null, "name": "Piliocolobus_tephrosceles", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "tephrosceles", "spp_id": 243, "subspecies": null, "weaning": null }, { "B": null, "M": 0.017755153846153848, "body": 2308.17, "brain": null, "genus": "Pithecia", "genus_id": 53, "gestation": null, "group_size": 4.4, "longevity": null, "maternal_investment": null, "name": "Pithecia_irrorata", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "irrorata", "spp_id": 245, "subspecies": null, "weaning": null }, { "B": 0.06566653774909927, "M": 0.01353846153846154, "body": 1760, "brain": 32.26, "genus": "Pithecia", "genus_id": 53, "gestation": 161.13, "group_size": 2.7, "longevity": 248.4, "maternal_investment": 274.28, "name": "Pithecia_pithecia", "research_effort": 28, "sex_maturity": 1089.37, "social_learning": 0, "species": "pithecia", "spp_id": 246, "subspecies": null, "weaning": 113.15 }, { "B": 0.792843039469131, "M": 0.4831923076923077, "body": 62815, "brain": 389.5, "genus": "Pongo", "genus_id": 54, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Pongo_abelii", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "abelii", "spp_id": 247, "subspecies": null, "weaning": null }, { "B": 0.7681722881511186, "M": 0.45032307692307694, "body": 58542, "brain": 377.38, "genus": "Pongo", "genus_id": 54, "gestation": 259.42, "group_size": 1, "longevity": 720, "maternal_investment": 1348.22, "name": "Pongo_pygmaeus", "research_effort": 321, "sex_maturity": 3318.62, "social_learning": 86, "species": "pygmaeus", "spp_id": 248, "subspecies": null, "weaning": 1088.8 }, { "B": 0.16345390518452174, "M": 0.0515, "body": 6695, "brain": 80.3, "genus": "Presbytis", "genus_id": 55, "gestation": null, "group_size": 7.05, "longevity": null, "maternal_investment": null, "name": "Presbytis_comata", "research_effort": 11, "sex_maturity": null, "social_learning": 0, "species": "comata", "spp_id": 249, "subspecies": null, "weaning": null }, { "B": 0.13200480387566918, "M": 0.05046153846153846, "body": 6560, "brain": 64.85, "genus": "Presbytis", "genus_id": 55, "gestation": null, "group_size": 14, "longevity": 192, "maternal_investment": null, "name": "Presbytis_melalophos", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "melalophos", "spp_id": 250, "subspecies": null, "weaning": null }, { "B": 0.10706943228774402, "M": 0.03423076923076923, "body": 4450, "brain": 52.6, "genus": "Procolobus", "genus_id": 56, "gestation": 167.84, "group_size": 6.3, "longevity": null, "maternal_investment": null, "name": "Procolobus_verus", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "verus", "spp_id": 251, "subspecies": null, "weaning": null }, { "B": 0.06145296883587437, "M": 0.028684615384615385, "body": 3729, "brain": 30.19, "genus": "Propithecus", "genus_id": 57, "gestation": 140.99, "group_size": 5.5, "longevity": null, "maternal_investment": 321.95, "name": "Propithecus_coquereli", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "coquereli", "spp_id": 252, "subspecies": null, "weaning": 180.96 }, { "B": 0.061371547214362776, "M": 0.02716923076923077, "body": 3532, "brain": 30.15, "genus": "Propithecus", "genus_id": 57, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Propithecus_deckenii", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "deckenii", "spp_id": 253, "subspecies": null, "weaning": null }, { "B": 0.08101451340403444, "M": 0.04715384615384616, "body": 6130, "brain": 39.8, "genus": "Propithecus", "genus_id": 57, "gestation": 152.08, "group_size": 4.95, "longevity": null, "maternal_investment": 408.35, "name": "Propithecus_diadema", "research_effort": 28, "sex_maturity": 1683.65, "social_learning": 0, "species": "diadema", "spp_id": 254, "subspecies": null, "weaning": 256.27 }, { "B": 0.0803834958373196, "M": 0.04370769230769231, "body": 5682, "brain": 39.49, "genus": "Propithecus", "genus_id": 57, "gestation": null, "group_size": 6, "longevity": null, "maternal_investment": null, "name": "Propithecus_edwardsi", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "edwardsi", "spp_id": 255, "subspecies": null, "weaning": null }, { "B": null, "M": 0.027164538461538462, "body": 3531.39, "brain": null, "genus": "Propithecus", "genus_id": 57, "gestation": null, "group_size": 4.1, "longevity": null, "maternal_investment": null, "name": "Propithecus_tattersalli", "research_effort": 9, "sex_maturity": null, "social_learning": 0, "species": "tattersalli", "spp_id": 256, "subspecies": null, "weaning": 152.13 }, { "B": 0.05335151749547093, "M": 0.02273076923076923, "body": 2955, "brain": 26.21, "genus": "Propithecus", "genus_id": 57, "gestation": 149.77, "group_size": 6.3, "longevity": 247.2, "maternal_investment": 327.6, "name": "Propithecus_verreauxi", "research_effort": 41, "sex_maturity": 943.94, "social_learning": 1, "species": "verreauxi", "spp_id": 257, "subspecies": null, "weaning": 177.83 }, { "B": 0.18606876055936655, "M": 0.07476923076923077, "body": 9720, "brain": 91.41, "genus": "Pygathrix", "genus_id": 58, "gestation": 182.88, "group_size": 9.3, "longevity": 300, "maternal_investment": null, "name": "Pygathrix_nemaeus", "research_effort": 25, "sex_maturity": null, "social_learning": 0, "species": "nemaeus", "spp_id": 259, "subspecies": null, "weaning": null }, { "B": null, "M": 0.06989376923076923, "body": 9086.19, "brain": null, "genus": "Rhinopithecus", "genus_id": 59, "gestation": 200, "group_size": 30, "longevity": null, "maternal_investment": null, "name": "Rhinopithecus_avunculus", "research_effort": 11, "sex_maturity": null, "social_learning": 0, "species": "avunculus", "spp_id": 260, "subspecies": null, "weaning": null }, { "B": null, "M": 0.08461953846153847, "body": 11000.54, "brain": null, "genus": "Rhinopithecus", "genus_id": 59, "gestation": 170, "group_size": 50, "longevity": null, "maternal_investment": null, "name": "Rhinopithecus_bieti", "research_effort": null, "sex_maturity": 755.15, "social_learning": 0, "species": "bieti", "spp_id": 261, "subspecies": null, "weaning": null }, { "B": null, "M": 0.0943626923076923, "body": 12267.15, "brain": null, "genus": "Rhinopithecus", "genus_id": 59, "gestation": 200, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Rhinopithecus_brelichi", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "brelichi", "spp_id": 262, "subspecies": null, "weaning": null }, { "B": 0.23970525373012805, "M": 0.11346153846153846, "body": 14750, "brain": 117.76, "genus": "Rhinopithecus", "genus_id": 59, "gestation": 199.34, "group_size": 65, "longevity": null, "maternal_investment": null, "name": "Rhinopithecus_roxellana", "research_effort": 36, "sex_maturity": null, "social_learning": 0, "species": "roxellana", "spp_id": 263, "subspecies": null, "weaning": null }, { "B": null, "M": 0.003576923076923077, "body": 465, "brain": null, "genus": "Saguinus", "genus_id": 61, "gestation": 158.16, "group_size": 6.7, "longevity": null, "maternal_investment": null, "name": "Saguinus_bicolor", "research_effort": 9, "sex_maturity": null, "social_learning": 0, "species": "bicolor", "spp_id": 265, "subspecies": null, "weaning": null }, { "B": 0.016162191870051093, "M": 0.0030846153846153844, "body": 401, "brain": 7.94, "genus": "Saguinus", "genus_id": 61, "gestation": 148, "group_size": 6, "longevity": 294, "maternal_investment": 238.1, "name": "Saguinus_fuscicollis", "research_effort": 81, "sex_maturity": 406.61, "social_learning": 2, "species": "fuscicollis", "spp_id": 266, "subspecies": null, "weaning": 90.1 }, { "B": 0.020640381053188675, "M": 0.003976923076923077, "body": 517, "brain": 10.14, "genus": "Saguinus", "genus_id": 61, "gestation": null, "group_size": 6.9, "longevity": null, "maternal_investment": null, "name": "Saguinus_geoffroyi", "research_effort": null, "sex_maturity": null, "social_learning": 0, "species": "geoffroyi", "spp_id": 268, "subspecies": null, "weaning": null }, { "B": null, "M": 0.003137769230769231, "body": 407.91, "brain": null, "genus": "Saguinus", "genus_id": 61, "gestation": null, "group_size": 5, "longevity": 242.4, "maternal_investment": null, "name": "Saguinus_imperator", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "imperator", "spp_id": 269, "subspecies": null, "weaning": null }, { "B": 0.019744743216561157, "M": 0.0040384615384615385, "body": 525, "brain": 9.7, "genus": "Saguinus", "genus_id": 61, "gestation": 142.5, "group_size": 7.5, "longevity": null, "maternal_investment": null, "name": "Saguinus_leucopus", "research_effort": 3, "sex_maturity": null, "social_learning": 0, "species": "leucopus", "spp_id": 270, "subspecies": null, "weaning": null }, { "B": 0.01990758645958434, "M": 0.004330769230769231, "body": 563, "brain": 9.78, "genus": "Saguinus", "genus_id": 61, "gestation": 138.24, "group_size": 5.55, "longevity": 184.8, "maternal_investment": 207.84, "name": "Saguinus_midas", "research_effort": 17, "sex_maturity": 841.82, "social_learning": 0, "species": "midas", "spp_id": 271, "subspecies": null, "weaning": 69.6 }, { "B": 0.022574144564088995, "M": 0.004492307692307692, "body": 584, "brain": 11.09, "genus": "Saguinus", "genus_id": 61, "gestation": 148.28, "group_size": 5.4, "longevity": null, "maternal_investment": null, "name": "Saguinus_mystax", "research_effort": 46, "sex_maturity": 556.85, "social_learning": 0, "species": "mystax", "spp_id": 272, "subspecies": null, "weaning": null }, { "B": 0.019296924298247402, "M": 0.0028846153846153848, "body": 375, "brain": 9.48, "genus": "Saguinus", "genus_id": 61, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Saguinus_niger", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "niger", "spp_id": 273, "subspecies": null, "weaning": null }, { "B": 0.019866875648828546, "M": 0.0033153846153846154, "body": 431, "brain": 9.76, "genus": "Saguinus", "genus_id": 61, "gestation": 166.49, "group_size": 7.05, "longevity": 277.2, "maternal_investment": 216.34, "name": "Saguinus_oedipus", "research_effort": 153, "sex_maturity": 680.38, "social_learning": 0, "species": "oedipus", "spp_id": 274, "subspecies": null, "weaning": 49.85 }, { "B": null, "M": 0.002961923076923077, "body": 385.05, "brain": null, "genus": "Saguinus", "genus_id": 61, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Saguinus_tripartitus", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "tripartitus", "spp_id": 275, "subspecies": null, "weaning": null }, { "B": null, "M": 0.006149615384615385, "body": 799.45, "brain": null, "genus": "Saimiri", "genus_id": 62, "gestation": 157.79, "group_size": 60, "longevity": null, "maternal_investment": null, "name": "Saimiri_boliviensis", "research_effort": 36, "sex_maturity": null, "social_learning": 0, "species": "boliviensis", "spp_id": 276, "subspecies": null, "weaning": null }, { "B": 0.05103100128239054, "M": 0.0060692307692307695, "body": 789, "brain": 25.07, "genus": "Saimiri", "genus_id": 62, "gestation": 161, "group_size": 25.1, "longevity": null, "maternal_investment": 523.93, "name": "Saimiri_oerstedii", "research_effort": 4, "sex_maturity": null, "social_learning": 1, "species": "oerstedii", "spp_id": 277, "subspecies": null, "weaning": 362.93 }, { "B": 0.049137948582246016, "M": 0.006146153846153846, "body": 799, "brain": 24.14, "genus": "Saimiri", "genus_id": 62, "gestation": 164.09, "group_size": 34.85, "longevity": 324, "maternal_investment": 341.5, "name": "Saimiri_sciureus", "research_effort": 89, "sex_maturity": 1399.88, "social_learning": 1, "species": "sciureus", "spp_id": 278, "subspecies": null, "weaning": 177.41 }, { "B": null, "M": 0.006819, "body": 886.47, "brain": null, "genus": "Saimiri", "genus_id": 62, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Saimiri_ustus", "research_effort": 4, "sex_maturity": null, "social_learning": 0, "species": "ustus", "spp_id": 279, "subspecies": null, "weaning": 238.64 }, { "B": 0.22580251185702366, "M": 0.1134, "body": 14742, "brain": 110.93, "genus": "Semnopithecus", "genus_id": 63, "gestation": 197.7, "group_size": 19, "longevity": 300, "maternal_investment": 599.8, "name": "Semnopithecus_entellus", "research_effort": 98, "sex_maturity": 1497.64, "social_learning": 2, "species": "entellus", "spp_id": 280, "subspecies": null, "weaning": 402.1 }, { "B": 0.2513892564170416, "M": 0.08688461538461538, "body": 11295, "brain": 123.5, "genus": "Symphalangus", "genus_id": 64, "gestation": 230.66, "group_size": 3.8, "longevity": 456, "maternal_investment": 866.04, "name": "Symphalangus_syndactylus", "research_effort": 40, "sex_maturity": 3788.23, "social_learning": 0, "species": "syndactylus", "spp_id": 281, "subspecies": null, "weaning": 635.38 }, { "B": 0.0064323080994158005, "M": 0.0009692307692307692, "body": 126, "brain": 3.16, "genus": "Tarsius", "genus_id": 65, "gestation": 125.84, "group_size": 1, "longevity": 144, "maternal_investment": 204.39, "name": "Tarsius_bancanus", "research_effort": 8, "sex_maturity": 658.68, "social_learning": 0, "species": "bancanus", "spp_id": 282, "subspecies": null, "weaning": 78.55 }, { "B": 0.00610662161336943, "M": 0.0008692307692307693, "body": 113, "brain": 3, "genus": "Tarsius", "genus_id": 65, "gestation": null, "group_size": 1, "longevity": null, "maternal_investment": null, "name": "Tarsius_dentatus", "research_effort": 2, "sex_maturity": null, "social_learning": 0, "species": "dentatus", "spp_id": 283, "subspecies": null, "weaning": null }, { "B": 0.006839416206973762, "M": 0.0009692307692307692, "body": 126, "brain": 3.36, "genus": "Tarsius", "genus_id": 65, "gestation": 177.99, "group_size": 1, "longevity": 180, "maternal_investment": 260.48, "name": "Tarsius_syrichta", "research_effort": 10, "sex_maturity": null, "social_learning": 0, "species": "syrichta", "spp_id": 285, "subspecies": null, "weaning": 82.49 }, { "B": 0.27139861990351544, "M": 0.11807692307692308, "body": 15350, "brain": 133.33, "genus": "Theropithecus", "genus_id": 66, "gestation": 178.64, "group_size": 10, "longevity": 336, "maternal_investment": 673.59, "name": "Theropithecus_gelada", "research_effort": 34, "sex_maturity": 1894.11, "social_learning": 0, "species": "gelada", "spp_id": 286, "subspecies": null, "weaning": 494.95 }, { "B": null, "M": 0.07476615384615384, "body": 9719.6, "brain": null, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 11, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_auratus", "research_effort": 2, "sex_maturity": null, "social_learning": 0, "species": "auratus", "spp_id": 287, "subspecies": null, "weaning": null }, { "B": 0.11777637551651841, "M": 0.04918461538461538, "body": 6394, "brain": 57.86, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 27.4, "longevity": 373.2, "maternal_investment": null, "name": "Trachypithecus_cristatus", "research_effort": 8, "sex_maturity": null, "social_learning": 0, "species": "cristatus", "spp_id": 288, "subspecies": null, "weaning": 362.93 }, { "B": null, "M": 0.06261484615384616, "body": 8139.93, "brain": null, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_francoisi", "research_effort": 45, "sex_maturity": null, "social_learning": 0, "species": "francoisi", "spp_id": 290, "subspecies": null, "weaning": 391.76 }, { "B": 0.16548944572231156, "M": 0.07807692307692307, "body": 10150, "brain": 81.3, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 11, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_geei", "research_effort": 7, "sex_maturity": null, "social_learning": 0, "species": "geei", "spp_id": 291, "subspecies": null, "weaning": null }, { "B": 0.17220672949701793, "M": 0.08923076923076922, "body": 11600, "brain": 84.6, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 10, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_johnii", "research_effort": 9, "sex_maturity": null, "social_learning": 1, "species": "johnii", "spp_id": 293, "subspecies": null, "weaning": null }, { "B": 0.126447778207503, "M": 0.05427692307692308, "body": 7056, "brain": 62.12, "genus": "Trachypithecus", "genus_id": 67, "gestation": 146.63, "group_size": 10, "longevity": 300, "maternal_investment": 509.56, "name": "Trachypithecus_obscurus", "research_effort": 6, "sex_maturity": null, "social_learning": 0, "species": "obscurus", "spp_id": 295, "subspecies": null, "weaning": 362.93 }, { "B": 0.14826877277260977, "M": 0.0575, "body": 7475, "brain": 72.84, "genus": "Trachypithecus", "genus_id": 67, "gestation": 180.61, "group_size": 12.9, "longevity": null, "maternal_investment": 486.48, "name": "Trachypithecus_phayrei", "research_effort": 16, "sex_maturity": null, "social_learning": 0, "species": "phayrei", "spp_id": 296, "subspecies": null, "weaning": 305.87 }, { "B": 0.21096342133653592, "M": 0.09072307692307692, "body": 11794, "brain": 103.64, "genus": "Trachypithecus", "genus_id": 67, "gestation": null, "group_size": 8.5, "longevity": null, "maternal_investment": null, "name": "Trachypithecus_pileatus", "research_effort": 5, "sex_maturity": null, "social_learning": 0, "species": "pileatus", "spp_id": 297, "subspecies": null, "weaning": null }, { "B": 0.12475827956113747, "M": 0.04797692307692308, "body": 6237, "brain": 61.29, "genus": "Trachypithecus", "genus_id": 67, "gestation": 204.72, "group_size": 8.35, "longevity": 276, "maternal_investment": 450.5, "name": "Trachypithecus_vetulus", "research_effort": 2, "sex_maturity": 1113.7, "social_learning": 0, "species": "vetulus", "spp_id": 299, "subspecies": null, "weaning": 245.78 }, { "B": 0.0632645999145073, "M": 0.026692307692307692, "body": 3470, "brain": 31.08, "genus": "Varecia", "genus_id": 68, "gestation": null, "group_size": null, "longevity": null, "maternal_investment": null, "name": "Varecia_rubra", "research_effort": null, "sex_maturity": null, "social_learning": null, "species": "rubra", "spp_id": 300, "subspecies": null, "weaning": null }, { "B": 0.0653815620738087, "M": 0.0275, "body": 3575, "brain": 32.12, "genus": "Varecia", "genus_id": 68, "gestation": 102.5, "group_size": 2.8, "longevity": 384, "maternal_investment": 193.23, "name": "Varecia_variegata_variegata", "research_effort": 57, "sex_maturity": 701.52, "social_learning": 0, "species": "variegata", "spp_id": 301, "subspecies": "variegata", "weaning": 90.73 } ], "data-ba9ad9c6de9be31ad925cdb10e11dd2a": [ { "B": 0.004772423490205172, "B_lower_hpdi": 0.003470918320870863, "B_upper_hpdi": 0.005255649018265155, "M": 0.0006006923076923077 }, { "B": 0.029165791444635155, "B_lower_hpdi": 0.020729439931716543, "B_upper_hpdi": 0.03166755205857136, "M": 0.006084846153846153 }, { "B": 0.03415362797586077, "B_lower_hpdi": 0.02380821545995133, "B_upper_hpdi": 0.03628777971744049, "M": 0.007369230769230769 }, { "B": 0.026784082384650982, "B_lower_hpdi": 0.0187567610881988, "B_upper_hpdi": 0.02867605531912064, "M": 0.005407692307692308 }, { "B": 0.22277205228519825, "B_lower_hpdi": 0.16811984537100602, "B_upper_hpdi": 0.24495328248044868, "M": 0.08105623076923077 }, { "B": 0.032736868369250154, "B_lower_hpdi": 0.024587129065800375, "B_upper_hpdi": 0.03631101393453707, "M": 0.006905153846153846 }, { "B": 0.03674180735446419, "B_lower_hpdi": 0.025851747407937314, "B_upper_hpdi": 0.03896847078911064, "M": 0.008212384615384614 }, { "B": 0.03410283387119605, "B_lower_hpdi": 0.023024743283096904, "B_upper_hpdi": 0.03524565813769023, "M": 0.0073702307692307695 }, { "B": 0.045701897245420356, "B_lower_hpdi": 0.033600636983029, "B_upper_hpdi": 0.049823699774785304, "M": 0.010698461538461539 }, { "B": 0.04219812540142461, "B_lower_hpdi": 0.027851573822123655, "B_upper_hpdi": 0.044328452710933955, "M": 0.009576923076923077 }, { "B": 0.01803954874427894, "B_lower_hpdi": 0.012979772888650863, "B_upper_hpdi": 0.019541145741395986, "M": 0.0033 }, { "B": 0.014104132891715868, "B_lower_hpdi": 0.010390857516859002, "B_upper_hpdi": 0.015395180206183261, "M": 0.002381384615384615 }, { "B": 0.01516101849669662, "B_lower_hpdi": 0.010483662479437795, "B_upper_hpdi": 0.01601920311978909, "M": 0.002630769230769231 }, { "B": 0.01610445238351218, "B_lower_hpdi": 0.011196720270675687, "B_upper_hpdi": 0.01708717653836722, "M": 0.0028461538461538463 }, { "B": 0.016373494391502492, "B_lower_hpdi": 0.012052816657856498, "B_upper_hpdi": 0.017978285651451726, "M": 0.002884538461538462 }, { "B": 0.01872846574474155, "B_lower_hpdi": 0.013415219719655482, "B_upper_hpdi": 0.02020802857695141, "M": 0.003413769230769231 }, { "B": 0.09371879739334253, "B_lower_hpdi": 0.06672124780600289, "B_upper_hpdi": 0.1035959705900323, "M": 0.026499076923076924 }, { "B": 0.12837544684754296, "B_lower_hpdi": 0.09051615555448944, "B_upper_hpdi": 0.13650536717468267, "M": 0.03948130769230769 }, { "B": 0.12935360038908655, "B_lower_hpdi": 0.09143682537197502, "B_upper_hpdi": 0.1375605058432513, "M": 0.04043776923076923 }, { "B": 0.07067358289666319, "B_lower_hpdi": 0.051581891655711594, "B_upper_hpdi": 0.07847729336998581, "M": 0.018415615384615384 }, { "B": 0.01187652325209798, "B_lower_hpdi": 0.008293203051874252, "B_upper_hpdi": 0.01241363405837538, "M": 0.0019230769230769232 }, { "B": 0.04974842939301172, "B_lower_hpdi": 0.03719956608465037, "B_upper_hpdi": 0.0549197283764247, "M": 0.012018538461538462 }, { "B": 0.8499401879057672, "B_lower_hpdi": 0.6219211945807513, "B_upper_hpdi": 0.9218857535152926, "M": 0.45031253846153846 }, { "B": 0.14015914132563942, "B_lower_hpdi": 0.10015602110847988, "B_upper_hpdi": 0.15211251058626962, "M": 0.04508315384615385 }, { "B": 0.02511988345580759, "B_lower_hpdi": 0.018803336097123566, "B_upper_hpdi": 0.027852674481238897, "M": 0.005047076923076923 }, { "B": 0.028166676966519238, "B_lower_hpdi": 0.020448767709563033, "B_upper_hpdi": 0.031107357643385736, "M": 0.005813615384615384 }, { "B": 0.16539916585074943, "B_lower_hpdi": 0.1178358791406374, "B_upper_hpdi": 0.17598603611934946, "M": 0.05607923076923077 }, { "B": 0.09155245700037332, "B_lower_hpdi": 0.0703520802940162, "B_upper_hpdi": 0.10267548451912485, "M": 0.026153846153846153 }, { "B": 0.11512274718123564, "B_lower_hpdi": 0.08413178660456387, "B_upper_hpdi": 0.12469011697500389, "M": 0.034881999999999996 }, { "B": 0.2236662029345486, "B_lower_hpdi": 0.16085114651928553, "B_upper_hpdi": 0.24345959981247042, "M": 0.08148507692307692 }, { "B": 0.2180752627548528, "B_lower_hpdi": 0.1503480139841156, "B_upper_hpdi": 0.22941246578934654, "M": 0.07719638461538463 }, { "B": 0.0024698128330121636, "B_lower_hpdi": 0.0018911383270447857, "B_upper_hpdi": 0.0027639599125657013, "M": 0.0002573076923076923 }, { "B": 0.004424800261175372, "B_lower_hpdi": 0.003344195679526951, "B_upper_hpdi": 0.0049342270390630915, "M": 0.0005403076923076923 }, { "B": 0.0023351141993704313, "B_lower_hpdi": 0.0016507952433127639, "B_upper_hpdi": 0.002493915911973118, "M": 0.00024023076923076925 }, { "B": 0.0038321363414504685, "B_lower_hpdi": 0.0026004783770063027, "B_upper_hpdi": 0.004069876011299359, "M": 0.00045076923076923077 }, { "B": 0.0033497618469327424, "B_lower_hpdi": 0.0023204410294636515, "B_upper_hpdi": 0.0035911234990703067, "M": 0.0003773846153846154 }, { "B": 0.004312362273058358, "B_lower_hpdi": 0.0031089908312731795, "B_upper_hpdi": 0.004648611003996455, "M": 0.0005231538461538462 }, { "B": 0.04216256705829852, "B_lower_hpdi": 0.03175922476960673, "B_upper_hpdi": 0.0470210346003585, "M": 0.009606615384615384 }, { "B": 0.15061857745300408, "B_lower_hpdi": 0.11031456179080214, "B_upper_hpdi": 0.1610971266109782, "M": 0.049311307692307696 }, { "B": 0.16985524672511668, "B_lower_hpdi": 0.12170089296637651, "B_upper_hpdi": 0.1826626667739531, "M": 0.05630769230769231 }, { "B": 0.017496999441385244, "B_lower_hpdi": 0.012515341200689457, "B_upper_hpdi": 0.018884633475032653, "M": 0.003152846153846154 }, { "B": 0.2302718410415674, "B_lower_hpdi": 0.15831185114322582, "B_upper_hpdi": 0.24318256889441975, "M": 0.08381538461538461 }, { "B": 0.19374303664209594, "B_lower_hpdi": 0.13884368358118482, "B_upper_hpdi": 0.2084989057466035, "M": 0.06819776923076923 }, { "B": 0.18055842517259052, "B_lower_hpdi": 0.12664841127715543, "B_upper_hpdi": 0.1888187330522224, "M": 0.061775 }, { "B": 0.06782609173407175, "B_lower_hpdi": 0.05207036961721933, "B_upper_hpdi": 0.07710523619879857, "M": 0.017755153846153848 }, { "B": 0.09450692265039615, "B_lower_hpdi": 0.0642644498602692, "B_upper_hpdi": 0.09854487116856424, "M": 0.027164538461538462 }, { "B": 0.19993814402497675, "B_lower_hpdi": 0.14720110103076278, "B_upper_hpdi": 0.22099129493535966, "M": 0.06989376923076923 }, { "B": 0.2319532772720386, "B_lower_hpdi": 0.17390237135636694, "B_upper_hpdi": 0.2567894840542213, "M": 0.08461953846153847 }, { "B": 0.25300788434920973, "B_lower_hpdi": 0.18459686637598513, "B_upper_hpdi": 0.27765484013966707, "M": 0.0943626923076923 }, { "B": 0.01950462067870893, "B_lower_hpdi": 0.01397462658533637, "B_upper_hpdi": 0.02135895821045601, "M": 0.003576923076923077 }, { "B": 0.017574386139653623, "B_lower_hpdi": 0.012541797284925105, "B_upper_hpdi": 0.018781611703831892, "M": 0.003137769230769231 }, { "B": 0.016713007660265518, "B_lower_hpdi": 0.011056992955872206, "B_upper_hpdi": 0.01736786692699858, "M": 0.002961923076923077 }, { "B": 0.029703047802902262, "B_lower_hpdi": 0.021145381766298946, "B_upper_hpdi": 0.03207127913305848, "M": 0.006149615384615385 }, { "B": 0.032232099614467484, "B_lower_hpdi": 0.02281354515062579, "B_upper_hpdi": 0.03472205478312365, "M": 0.006819 }, { "B": 0.21067156048114202, "B_lower_hpdi": 0.15517747901192105, "B_upper_hpdi": 0.23274556417058304, "M": 0.07476615384615384 }, { "B": 0.18310724690721625, "B_lower_hpdi": 0.12536939693424182, "B_upper_hpdi": 0.19266439894507645, "M": 0.06261484615384616 } ] }, "layer": [ { "encoding": { "x": { "field": "M", "scale": { "domain": [ 0, 1 ] }, "title": "body mass M", "type": "quantitative" }, "y": { "field": "B", "scale": { "domain": [ 0, 1 ] }, "title": "brain size B", "type": "quantitative" } }, "mark": { "color": "black", "filled": true, "size": 50, "type": "point" } }, { "encoding": { "x": { "field": "M", "type": "quantitative" }, "y": { "field": "B_lower_hpdi", "title": null, "type": "quantitative" }, "y2": { "field": "B_upper_hpdi" } }, "mark": "errorbar" }, { "data": { "name": "data-b671b0ddfc642a779346876ec2d067a3" }, "encoding": { "x": { "field": "M", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" }, "y": { "field": "B", "scale": { "domain": [ 0, 1 ] }, "type": "quantitative" } }, "mark": { "color": "blue", "filled": true, "opacity": 0.3, "size": 50, "type": "point" } } ] }, "image/png": "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", "text/plain": [ "\n", "\n", "If you see this message, it means the renderer has not been properly enabled\n", "for the frontend that you are using. For more information, see\n", "https://altair-viz.github.io/user_guide/troubleshooting.html\n" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# generate the points\n", "points = alt.Chart(aux).mark_point(\n", " filled=True,\n", " size=50,\n", " color='black'\n", ").encode(\n", " x=alt.X('M', title='body mass M',scale=alt.Scale(domain=(0, 1))),\n", " y=alt.Y('B', title='brain size B',scale=alt.Scale(domain=(0, 1)))\n", ")\n", "\n", "points2 = alt.Chart(d).mark_point(\n", " filled=True,\n", " size=50,\n", " color='blue',\n", " opacity=0.3\n", ").encode(\n", " x=alt.X('M', scale=alt.Scale(domain=(0, 1))),\n", " y=alt.Y('B', scale=alt.Scale(domain=(0, 1)))\n", ")\n", "\n", "# generate the error bars\n", "errorbars = alt.Chart(aux).mark_errorbar().encode(\n", " x=alt.X(\"M\"),\n", " y=alt.Y(\"B_lower_hpdi:Q\", title=None),\n", " y2=\"B_upper_hpdi:Q\"\n", ")\n", "\n", "points + errorbars + points2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Black open points are the imputed values, with 50% compatibility intervals. Imputation hasn't done much, apparently because all but one of the missing values are in a very dense region of the body size range. So almost no information was lost, the missing info is redundant." ] } ], "metadata": { "kernelspec": { "display_name": "py_36_gabi", "language": "python", "name": "py_36_gabi" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.6" } }, "nbformat": 4, "nbformat_minor": 4 }