{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Loop API Example on Hartmann6\n",
"\n",
"The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n",
"\n",
"For more customizability of the optimization procedure, consider the Service or Developer API."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"\n",
"from ax.plot.contour import plot_contour\n",
"from ax.plot.trace import optimization_trace_single_method\n",
"from ax.service.managed_loop import optimize\n",
"from ax.metrics.branin import branin\n",
"from ax.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import render, init_notebook_plotting\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 1. Define evaluation function\n",
"\n",
"First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def hartmann_evaluation_function(parameterization):\n",
" x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n",
" # In our case, standard error is 0, since we are computing a synthetic function.\n",
" return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 2. Run optimization\n",
"The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:47] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:54] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:32:59] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:04] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:10] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:15] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:20] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:25] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:30] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:36] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:41] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:46] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:51] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:33:55] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:34:00] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:34:06] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:34:11] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 02:34:15] ax.service.managed_loop: Running optimization trial 30...\n"
]
}
],
"source": [
"best_parameters, values, experiment, model = optimize(\n",
" parameters=[\n",
" {\n",
" \"name\": \"x1\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n",
" \"log_scale\": False, # Optional, defaults to False.\n",
" },\n",
" {\n",
" \"name\": \"x2\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x3\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x4\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x5\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x6\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" ],\n",
" experiment_name=\"test\",\n",
" objective_name=\"hartmann6\",\n",
" evaluation_function=hartmann_evaluation_function,\n",
" minimize=True, # Optional, defaults to False.\n",
" parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n",
" outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n",
" total_trials=30, # Optional.\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.17175792086072647,\n",
" 'x2': 0.22139587926586693,\n",
" 'x3': 0.48672754738279445,\n",
" 'x4': 0.2939471039831243,\n",
" 'x5': 0.29195961245986535,\n",
" 'x6': 0.6648251581279614}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -3.223408990687509, 'l2norm': 0.9638840331665048}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 3. Plot results\n",
"Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-2.166090430770075,
-2.204402375488777,
-2.2388325274408105,
-2.2689870153317013,
-2.294497468586715,
-2.315030057424156,
-2.3302943578444424,
-2.34005160147816,
-2.344121851924236,
-2.342389674360653,
-2.3348079373240993,
-2.321399500058385,
-2.302256683004841,
-2.2775385742458853,
-2.2474663705284774,
-2.212317069983364,
-2.172415912959187,
-2.1281280032322454,
-2.0798495370248262,
-2.0279990296498274,
-1.9730088696225119,
-1.9153174583819188,
-1.8553621195495547,
-1.7935728918403375,
-1.7303672587772638,
-1.6661458184900995,
-1.60128885862259,
-1.536153774077884,
-1.4710732476495259,
-1.4063541038571203,
-1.3422767428320574,
-1.2790950623057311,
-1.2170367802792361,
-1.1563040776812448,
-1.0970744883672316,
-1.0395019725063663,
-0.9837181182463876,
-0.9298334251862035,
-0.8779386313732452,
-0.8281060531129973,
-0.7803909137249299,
-0.7348326434416445,
-0.6914561378969408,
-0.6502729670802055,
-0.6112825302652025,
-0.5744731552848845,
-0.5398231426687956,
-0.5073017566487528,
-0.4768701659466259,
-0.44848233766914847
],
[
-2.2178615280814538,
-2.258243827850536,
-2.2946084280121477,
-2.3265303476471364,
-2.3536105493131547,
-2.3754860424005444,
-2.3918398832870285,
-2.4024105565213745,
-2.4070001896057454,
-2.4054810767271912,
-2.3978000700739335,
-2.3839805361540853,
-2.364121752329294,
-2.3383958107577127,
-2.3070422757565816,
-2.2703609828097115,
-2.228703458360799,
-2.1824634750118923,
-2.1320672420276874,
-2.07796367762241,
-2.020615131453603,
-1.960488836645339,
-1.8980492816254715,
-1.8337516109103098,
-1.768036095276292,
-1.7013236573816557,
-1.6340123987324944,
-1.5664750465738833,
-1.4990572228352053,
-1.432076429481776,
-1.3658216434227168,
-1.3005534176508438,
-1.2365043920094456,
-1.1738801256822329,
-1.1128601732640258,
-1.053599336415013,
-0.9962290331507593,
-0.940858736443347,
-0.8875774427883238,
-0.8364551395900176,
-0.7875442475540053,
-0.7408810207105747,
-0.6964868922172781,
-0.6543697587131561,
-0.6145251997521605,
-0.5769376317733119,
-0.541581398228622,
-0.508421798958667,
-0.47741606276222837,
-0.44851426744293765
],
[
-2.265228833057863,
-2.3076348149955384,
-2.345898633624511,
-2.3795637370088705,
-2.4081996926589526,
-2.4314134134839986,
-2.4488603787499237,
-2.4602552503741766,
-2.4653812349942745,
-2.4640975598887835,
-2.4563445258910646,
-2.442145767751552,
-2.421607570742893,
-2.394915328682477,
-2.3623274466323854,
-2.324167160890864,
-2.280812851597549,
-2.23268745596588,
-2.180247561697589,
-2.1239726868230084,
-2.0643551526450974,
-2.0018908475868926,
-1.9370710746226774,
-1.870375582155038,
-1.8022668020941874,
-1.7331852606997287,
-1.663546086486509,
-1.5937365129655257,
-1.5241142594600812,
-1.455006667948805,
-1.3867104753408943,
-1.31949210668061,
-1.2535883838305066,
-1.1892075549190773,
-1.126530561324494,
-1.0657124705413263,
-1.0068840144934683,
-0.9501531834190712,
-0.8956068351799314,
-0.8433122886318561,
-0.7933188774809675,
-0.7456594478271872,
-0.7003517883676807,
-0.6573999870278077,
-0.6167957116463579,
-0.5785194153221241,
-0.5425414691972664,
-0.5088232268900985,
-0.4773180255860475,
-0.4479721290500881
],
[
-2.30747018417093,
-2.351821775330163,
-2.3919205344279115,
-2.427278403705525,
-2.4574333221753752,
-2.4819616133686493,
-2.5004904953323246,
-2.512710022511606,
-2.5183836952408045,
-2.517356981389775,
-2.509563101632451,
-2.4950256299912006,
-2.4738577276820184,
-2.4462581173668285,
-2.4125041688478936,
-2.372942666918707,
-2.327978946132984,
-2.278065104011506,
-2.2236879576441044,
-2.165357311214865,
-2.103594977650016,
-2.038924866971476,
-1.9718643319686677,
-1.902916857439784,
-1.832566096403942,
-1.7612711955780107,
-1.6894633109899886,
-1.617543189663725,
-1.5458796813313809,
-1.4748090417720472,
-1.4046348937581528,
-1.335628720389158,
-1.2680307770230292,
-1.2020513207729866,
-1.1378720696993032,
-1.0756478167703316,
-1.015508135986709,
-0.9575591295072967,
-0.90188517503899,
-0.8485506420814681,
-0.7976015538251306,
-0.7490671785898491,
-0.7029615406894972,
-0.6592848455532501,
-0.6180248178836995,
-0.579157954649244,
-0.5426506968715668,
-0.5084605255658713,
-0.47653698792063404,
-0.4468226599710685
],
[
-2.3438636867198532,
-2.39004823386074,
-2.431885363510191,
-2.468856216236805,
-2.5004674892850547,
-2.5262649974588065,
-2.545847513302038,
-2.558880101163858,
-2.5651060554401486,
-2.564356548751481,
-2.5565572139245543,
-2.5417311206761317,
-2.5199979297793984,
-2.491569357612516,
-2.4567414001023216,
-2.4158839976932907,
-2.3694289472021683,
-2.3178568835823823,
-2.2616840854836346,
-2.201449733024911,
-2.137704094454131,
-2.070997964741588,
-2.00187354019187,
-1.9308567978539428,
-1.858451359878571,
-1.7851337599892947,
-1.7113499885702885,
-1.6375131702474595,
-1.5640022189000566,
-1.4911613158935988,
-1.4193000647551761,
-1.348694187022108,
-1.2795866377433645,
-1.2121890337979493,
-1.146683302934492,
-1.0832234756575216,
-1.0219375554327326,
-0.9629294149488163,
-0.9062806772483174,
-0.8520525503797818,
-0.8002875928241919,
-0.7510113943331075,
-0.704234163024302,
-0.6599522146670252,
-0.6181493641178549,
-0.5787982219151546,
-0.5418614011911257,
-0.5072926414117243,
-0.47503785611221383,
-0.44503611187325653
],
[
-2.3737055995308447,
-2.421573446563248,
-2.465017506738025,
-2.50348956515992,
-2.5364662057929923,
-2.5634635212534276,
-2.584052286497619,
-2.5978727151819,
-2.6046477765067113,
-2.6041940273696804,
-2.596429042328978,
-2.581374800679532,
-2.5591567738045864,
-2.5299988744547006,
-2.4942148032034033,
-2.4521965945512676,
-2.4044012978239926,
-2.3513367319072493,
-2.293547157236191,
-2.2315995519762453,
-2.166070998568478,
-2.0975375098399915,
-2.026564468476872,
-1.9536987284258611,
-1.8794623335160403,
-1.8043477447532517,
-1.728814428616063,
-1.6532866388692842,
-1.5781522187635302,
-1.5037622546104625,
-1.430431422125188,
-1.3584388810041907,
-1.2880295891027322,
-1.2194159240268656,
-1.1527795161348695,
-1.0882732123351253,
-1.026023104364793,
-0.9661305682688639,
-0.9086742734936897,
-0.8537121303411627,
-0.8012831535136015,
-0.7514092271529059,
-0.7040967631927653,
-0.6593382500658393,
-0.6171136929130435,
-0.5773919495149712,
-0.5401319683007321,
-0.5052839360918798,
-0.4727903438224835,
-0.44258697846164696
],
[
-2.396331009965409,
-2.445694221645177,
-2.4905773798199022,
-2.5304051828398064,
-2.5646260746077925,
-2.5927280368984373,
-2.6142550514923153,
-2.6288232589663307,
-2.636135658176366,
-2.6359941440111143,
-2.62830781557967,
-2.6130968045379896,
-2.5904913231028592,
-2.560726122975133,
-2.5241309906779215,
-2.481118207055723,
-2.4321680378823283,
-2.377813310309649,
-2.318624005344422,
-2.2551926077310513,
-2.1881207447129016,
-2.118007445574409,
-2.045439183229802,
-1.9709817252627695,
-1.8951737250328047,
-1.8185219195958138,
-1.7414977640848304,
-1.6645353153682938,
-1.5880301753790405,
-1.512339311674491,
-1.4377815858707248,
-1.364638836936134,
-1.2931573841068642,
-1.2235498321903204,
-1.1559970794886762,
-1.0906504450363597,
-1.0276338470359128,
-0.9670459781549605,
-0.9089624356538689,
-0.8534377751420339,
-0.8005074661361011,
-0.7501897355641134,
-0.702487291989193,
-0.657388928690087,
-0.614871007919614,
-0.5748988317607829,
-0.5374279071187664,
-0.5024051136388066,
-0.46976978384818946,
-0.43945470471283643
],
[
-2.4111367069067615,
-2.4617693440336836,
-2.5078873281154275,
-2.548891404567134,
-2.584204761322185,
-2.6132897909311783,
-2.6356657390841827,
-2.650926183659461,
-2.6587550610412327,
-2.658939882587786,
-2.651380922013414,
-2.6360955107328747,
-2.613217093776142,
-2.582989264177875,
-2.545755488646223,
-2.501945573580934,
-2.452060064851384,
-2.396653745485273,
-2.336319242000916,
-2.271671530009088,
-2.203333892322135,
-2.1319256625156244,
-2.0580519027567634,
-1.9822950236067045,
-1.9052082541222415,
-1.8273108071312336,
-1.74908454950793,
-1.6709719731536954,
-1.5933752627252895,
-1.5166562658327112,
-1.4411371866749545,
-1.3671018422505075,
-1.2947973395971,
-1.2244360518372654,
-1.156197789414891,
-1.0902320803690366,
-1.0266604895541598,
-0.9655789212476749,
-0.9070598625313289,
-0.8511545361878659,
-0.7978949416502995,
-0.7472957708323609,
-0.6993561925292486,
-0.6540615045930024,
-0.6113846573544738,
-0.5712876548905267,
-0.5337228428366263,
-0.4986340926454418,
-0.465957892623579,
-0.43562435587797954
],
[
-2.4176052505674237,
-2.469245559152128,
-2.5163594746889792,
-2.558327778853256,
-2.594552208673303,
-2.6244730286201854,
-2.647587701921455,
-2.663469537097771,
-2.6717849148920405,
-2.6723075978196817,
-2.664928761520949,
-2.6496617762730112,
-2.626641341977704,
-2.5961172130922696,
-2.558443301096836,
-2.514063310024145,
-2.4634942100302726,
-2.4073088097298223,
-2.346118509119732,
-2.280557067361003,
-2.211265958426237,
-2.1388816495555067,
-2.0640249419629053,
-1.9872923661666446,
-1.9092495228599182,
-1.8304261970960984,
-1.751313040006986,
-1.6723596000377512,
-1.593973487869903,
-1.5165204705345494,
-1.4403253069024562,
-1.3656731561798947,
-1.2928114115240046,
-1.2219518313121056,
-1.1532728602511115,
-1.086922050957111,
-1.0230185136042003,
-0.9616553365848699,
-0.9029019347722923,
-0.8468062939157972,
-0.7933970899646914,
-0.7426856707633279,
-0.6946678946752455,
-0.6493258263748324,
-0.6066292944034135,
-0.5665373182429331,
-0.5289994147443481,
-0.4939567948951852,
-0.4613434622640632,
-0.43108722416551337
],
[
-2.4153288129647166,
-2.4676835676557234,
-2.515523853452894,
-2.5582152602151664,
-2.5951427381953636,
-2.625728776801946,
-2.649452875038727,
-2.665871131034525,
-2.6746344695549666,
-2.6755038959238364,
-2.668361296449574,
-2.6532147174378795,
-2.6301976757640206,
-2.599562741837011,
-2.5616702338205766,
-2.5169732579841586,
-2.4660004865466423,
-2.4093380107836957,
-2.347611409946922,
-2.281468908418611,
-2.211566213994088,
-2.1385533783363213,
-2.0630638161930146,
-1.9857054679832746,
-1.9070539867892755,
-1.8276477671363767,
-1.74798459960886,
-1.6685197235558569,
-1.5896650527950857,
-1.5117893610257425,
-1.4352192308846445,
-1.360240590683664,
-1.2871006841601318,
-1.2160103399294964,
-1.147146428001795,
-1.0806544102101574,
-1.016650909374732,
-0.955226238290624,
-0.8964468440806012,
-0.8403576360632695,
-0.7869841760820221,
-0.7363347192864552,
-0.6884021007527227,
-0.6431654691886318,
-0.6005918734225022,
-0.5606377105599823,
-0.5232500467562052,
-0.4883678226409143,
-0.45592295570657837,
-0.42584135157955005
],
[
-2.4040310081242837,
-2.456782043342268,
-2.505054630821956,
-2.5482045843734986,
-2.5856054490897042,
-2.616667047614129,
-2.6408554745370854,
-2.6577133410413394,
-2.666878736106666,
-2.6681012176585472,
-2.6612532694386886,
-2.646336080326041,
-2.6234791493619234,
-2.592933941945695,
-2.5550624534511623,
-2.5103219557817242,
-2.459247369658306,
-2.4024326515642844,
-2.340512379472587,
-2.2741444426225614,
-2.203994450447407,
-2.1307222152148246,
-2.0549704522521344,
-1.9773556854742567,
-1.8984612395254226,
-1.8188321340326017,
-1.738971660267786,
-1.6593394070573257,
-1.580350504041621,
-1.5023758612158078,
-1.4257432004353396,
-1.3507386947309579,
-1.277609053095198,
-1.2065639106404433,
-1.1377784058030767,
-1.0713958469492944,
-1.007530389890595,
-0.9462696651635787,
-0.8876773093167282,
-0.8317953678250776,
-0.7786465486465627,
-0.7282363149199353,
-0.6805548129999685,
-0.6355786380702069,
-0.5932724441198945,
-0.5535904082798204,
-0.5164775615463146,
-0.4818709989494362,
-0.4497009824078123,
-0.41989194902474647
],
[
-2.3835847510960475,
-2.4363974418528764,
-2.4847918993642293,
-2.5281200220012323,
-2.565749832404458,
-2.597084127413586,
-2.621580685105438,
-2.6387728314034997,
-2.6482888193756144,
-2.6498683067908217,
-2.643374327301852,
-2.628799564380376,
-2.6062663842489737,
-2.576020814917487,
-2.5384213038405554,
-2.4939235228800776,
-2.4430626718219473,
-2.3864346888488908,
-2.324677577572467,
-2.2584537831841196,
-2.188434259232245,
-2.115284603659016,
-2.039653428902097,
-1.9621629709528827,
-1.8834018315169432,
-1.8039196768598673,
-1.72422367690966,
-1.6447764502975553,
-1.5659952786373932,
-1.488252361564824,
-1.411875899323288,
-1.3371518093874166,
-1.2643259058105984,
-1.1936063931880025,
-1.125166550210138,
-1.0591474999033998,
-0.9956609842187243,
-0.9347920792527096,
-0.8766018038572839,
-0.8211295886408084,
-0.7683955844152164,
-0.7184027990996424,
-0.6711390600965536,
-0.6265788053817096,
-0.5846847111774084,
-0.5454091672957275,
-0.5086956132317118,
-0.4744797490393384,
-0.4426906351168669,
-0.4132516944393487
],
[
-2.354024273648884,
-2.40655744022912,
-2.454756576202728,
-2.4979757266353775,
-2.5355835030978335,
-2.566981562273182,
-2.5916246985012155,
-2.6090413794339726,
-2.618853206014548,
-2.6207916048432,
-2.6147101556252497,
-2.6005913466729687,
-2.5785471728483595,
-2.548813701965769,
-2.5117403750427947,
-2.467775250378901,
-2.417447602812045,
-2.361349269455304,
-2.3001159557367448,
-2.2344094552399723,
-2.164901456824523,
-2.0922593550457633,
-2.0171342664408227,
-1.9401512905686786,
-1.8619019372182088,
-1.7829385623010456,
-1.7037706063341447,
-1.6248624037741324,
-1.5466323229104182,
-1.4694529999798103,
-1.3936524440431979,
-1.3195158080885852,
-1.2472876444527998,
-1.177174487083309,
-1.1093476278894396,
-1.0439459783220943,
-0.9810789295746032,
-0.9208291449058836,
-0.863255235283069,
-0.8083942847392593,
-0.7562642045911669,
-0.7068659060953241,
-0.6601852894258122,
-0.6161950532422223,
-0.5748563338026191,
-0.5361201857805625,
-0.499928918878382,
-0.46621730519450577,
-0.43491367229548394,
-0.4059408962499982
],
[
-2.3155498249466935,
-2.367466296980469,
-2.415156439027306,
-2.457982442417938,
-2.495319549495548,
-2.526574089319517,
-2.5512031350183104,
-2.568734664130586,
-2.5787867703130987,
-2.5810843044187823,
-2.5754714005955113,
-2.561918695712974,
-2.540524622341519,
-2.5115108212702255,
-2.4752123312932834,
-2.4320636559621436,
-2.3825820280784185,
-2.327349206054158,
-2.266992996121764,
-2.2021694675760215,
-2.1335465731739887,
-2.061789643768601,
-1.9875490168922383,
-1.911449890937593,
-1.8340843689847683,
-1.7560055645280424,
-1.6777235796577,
-1.5997031291912327,
-1.5223625669671539,
-1.4460740687239668,
-1.3711647358556043,
-1.2979184024434407,
-1.2265779513227264,
-1.1573479710314993,
-1.0903976123041412,
-1.0258635288081326,
-0.9638528110480877,
-0.9044458441432944,
-0.847699039211342,
-0.7936474042850046,
-0.7423069341379515,
-0.6936768092828927,
-0.6477414029727232,
-0.6044721015415109,
-0.5638289481294976,
-0.5257621229960343,
-0.490213275474081,
-0.4571167233821306,
-0.4264005355923278,
-0.3979875126531647
],
[
-2.2685242603411337,
-2.3195012057774607,
-2.366382233952121,
-2.4085433621765526,
-2.445372147573666,
-2.4762850256573863,
-2.500746238893944,
-2.5182873117018634,
-2.528525720757141,
-2.5311812482483145,
-2.526088565380467,
-2.513204898192871,
-2.492612131590275,
-2.464513304521246,
-2.429224012220774,
-2.3871596572647986,
-2.338819729599064,
-2.284770351090179,
-2.225626233400422,
-2.162033022869488,
-2.0946507913159547,
-2.0241392126064914,
-1.9511447628876941,
-1.8762901082709922,
-1.800165701522107,
-1.7233234992170396,
-1.6462726311725997,
-1.5694768018489478,
-1.4933531751768585,
-1.4182724856875621,
-1.344560125507356,
-1.2724979744070475,
-1.2023267647442086,
-1.1342488014748342,
-1.0684308868171635,
-1.0050073277086682,
-0.9440829306367908,
-0.8857359120079761,
-0.8300206726187391,
-0.7769704019681962,
-0.7265994922512427,
-0.678905753151075,
-0.6338724273142207,
-0.5914700129589222,
-0.5516579047460365,
-0.5143858671187956,
-0.4795953560566718,
-0.44722070583034235,
-0.41719019711011607,
-0.3894270218712128
],
[
-2.21346155639346,
-2.2631996898592597,
-2.308993914183716,
-2.350239208770426,
-2.386340527038998,
-2.416729212682574,
-2.4408809488142467,
-2.4583342907731263,
-2.4687085573190197,
-2.4717197067284515,
-2.467192865863812,
-2.455070431418565,
-2.435415085883763,
-2.4084075809788974,
-2.3743396357424147,
-2.333602691018077,
-2.286673512939241,
-2.234097742604935,
-2.176472471902115,
-2.1144288208400828,
-2.0486153328281875,
-1.979682818070148,
-1.9082710825325666,
-1.8349977965620106,
-1.7604495946611305,
-1.685175363662831,
-1.609681574198257,
-1.5344294401234715,
-1.459833649860341,
-1.386262397934939,
-1.3140384489085866,
-1.2434409837875915,
-1.1747080057274877,
-1.108039113113918,
-1.0435984805952987,
-0.9815179200293278,
-0.9218999221063613,
-0.864820604826446,
-0.8103325167314561,
-0.7584672608607143,
-0.7092379200444339,
-0.6626412757156526,
-0.618659821290572,
-0.577263577718566,
-0.5384117233934204,
-0.5020540535680823,
-0.46813228601553225,
-0.4365812301837767,
-0.4073298367345377,
-0.38030214333997336
],
[
-2.151008132201106,
-2.199239057931883,
-2.2436981816815216,
-2.283803868229116,
-2.318982770385233,
-2.348685134692669,
-2.3724015725910204,
-2.389680456977341,
-2.4001448616955185,
-2.4035078277664907,
-2.3995847643818458,
-2.3883019884991255,
-2.3697007427462173,
-2.343936440869243,
-2.31127329782621,
-2.272074849509746,
-2.226791125038527,
-2.175943395833932,
-2.1201074947711103,
-2.059896683415876,
-1.9959449562717495,
-1.9288915236176867,
-1.8593670299395186,
-1.7879818668449001,
-1.7153167497539274,
-1.6419155634152622,
-1.5682803523912536,
-1.4948682424179482,
-1.4220900250432598,
-1.3503101158158202,
-1.279847598509323,
-1.2109780871408755,
-1.1439361672957482,
-1.0789182131346706,
-1.0160854124358372,
-0.9555668664061785,
-0.8974626621593534,
-0.8418468428999624,
-0.7887702237481516,
-0.738263019926879,
-0.6903372690626578,
-0.6449890410618615,
-0.6022004378817201,
-0.5619413919608837,
-0.5241712765108124,
-0.48884034365042806,
-0.45589100780088765,
-0.4252589921143197,
-0.3968743552257412,
-0.3706624145012367
],
[
-2.0819185651938548,
-2.128409747323736,
-2.1713194075100932,
-2.2100929030555276,
-2.2441820160365715,
-2.2730590008541682,
-2.2962320328454524,
-2.3132613377663156,
-2.3237750721233468,
-2.3274839047796414,
-2.3241932583782487,
-2.313812310641882,
-2.29635910055007,
-2.271961382226505,
-2.2408531742929068,
-2.2033672398515507,
-2.1599239943787674,
-2.111017567172248,
-2.0571999158498753,
-1.9990639850999412,
-1.9372268917957647,
-1.872314011190391,
-1.8049446569664953,
-1.7357198270835932,
-1.6652122635169957,
-1.5939588749606877,
-1.522455413926743,
-1.451153189334026,
-1.3804575305493878,
-1.3107276919425181,
-1.2422778892101065,
-1.1753791807569878,
-1.1102619411528587,
-1.047118712685353,
-0.9861072606928829,
-0.9273536957038286,
-0.8709555587549638,
-0.8169847948843437,
-0.7654905635956103,
-0.7165018543536161,
-0.6700298903712815,
-0.6260703156325835,
-0.5846051688106425,
-0.5456046539850075,
-0.5090287222800031,
-0.4748284811167166,
-0.44294744901845096,
-0.4133226741099406,
-0.3858857338427384,
-0.3605636322712338
],
[
-2.0070277698597208,
-2.051584913510531,
-2.092766591468812,
-2.1300479074022007,
-2.1629083144408225,
-2.190844297757134,
-2.213383406235416,
-2.2300990403012735,
-2.240625222901919,
-2.2446704738467584,
-2.242029900957968,
-2.232594710505671,
-2.2163584909740206,
-2.193419800228829,
-2.163980773378343,
-2.1283416853641057,
-2.0868916714351813,
-2.040096120130079,
-1.9884815527169968,
-1.9326190165467587,
-1.8731070942071535,
-1.8105555566179905,
-1.7455704981131543,
-1.6787415378665733,
-1.6106314072523753,
-1.5417680061987142,
-1.4726388255451752,
-1.403687504061864,
-1.3353122147648329,
-1.2678655461041355,
-1.2016555478645594,
-1.136947637831072,
-1.0739671037726883,
-1.0129019787280342,
-0.953906110864489,
-0.8971022892168438,
-0.8425853217757484,
-0.7904249921147791,
-0.7406688450990369,
-0.6933447716536157,
-0.6484633776995292,
-0.6060201338391114,
-0.5659973108105933,
-0.5283657116844808,
-0.49308621571513533,
-0.46011115108807055,
-0.4293855148488197,
-0.40084805834191073,
-0.374432255764811,
-0.35006717215585703
],
[
-1.9272219184221577,
-1.969688848585092,
-2.0089992577926266,
-2.044659915777517,
-2.0761796523260765,
-2.103080607167569,
-2.124910793630498,
-2.1412575152951,
-2.151761021632622,
-2.156127693077111,
-2.15414202497448,
-2.14567671697018,
-2.1307002285492347,
-2.10928120473967,
-2.0815892327111585,
-2.0478915319899476,
-2.008545468812181,
-1.9639872030275298,
-1.9147172227348515,
-1.86128386631206,
-1.8042660835641953,
-1.744256632715592,
-1.6818466961336727,
-1.617612600333875,
-1.5521050155754785,
-1.4858407367432207,
-1.4192969360173686,
-1.3529076357173329,
-1.2870620707976166,
-1.2221045824297172,
-1.158335692588364,
-1.0960140411618469,
-1.0353589108421901,
-0.9765531128576963,
-0.9197460531679449,
-0.8650568409693995,
-0.812577337816413,
-0.7623750759920367,
-0.7144959992575576,
-0.6689669983889384,
-0.6257982287184359,
-0.584985207983445,
-0.546510700823313,
-0.5103464018456995,
-0.4764544328016752,
-0.4447886714691116,
-0.4152959306815994,
-0.38791700583001476,
-0.36258760833716397,
-0.33923920125876106
],
[
-1.8434103199360417,
-1.883666726716935,
-1.920995079830708,
-1.9549349598884271,
-1.985025540029382,
-2.010815373017248,
-2.0318734724682557,
-2.0478013623838134,
-2.05824564121301,
-2.0629105216161876,
-2.0615697715774735,
-2.0540774654353404,
-2.04037690260264,
-2.0205069500239805,
-1.9946049812956759,
-1.9629056572137056,
-1.9257351211361962,
-1.8835007363580236,
-1.8366771067291514,
-1.785789597093514,
-1.7313967828405927,
-1.6740731990413127,
-1.6143935041565995,
-1.5529188234478648,
-1.4901856807528915,
-1.4266976207682949,
-1.3629193936616284,
-1.2992734237679453,
-1.2361382049608345,
-1.1738482414134328,
-1.1126951669801017,
-1.0529297141689387,
-0.9947642526631482,
-0.9383756691131431,
-0.883908409122202,
-0.8314775460970922,
-0.7811717787582543,
-0.7330562895143968,
-0.687175420118083,
-0.64355513982451,
-0.6022052955368367,
-0.5631216439586975,
-0.5262876733122858,
-0.491676227329651,
-0.4592509474877865,
-0.42896755124152397,
-0.40077496464051676,
-0.3746163274654293,
-0.35042988810501474,
-0.3281498040063613
],
[
-1.7565001616712952,
-1.794457806795792,
-1.8297216061920067,
-1.8618644030033216,
-1.8904560599991642,
-1.9150717913967812,
-1.9353017801925336,
-1.9507618904704564,
-1.9611051819824747,
-1.966033860189099,
-1.9653112434702185,
-1.9587732521820351,
-1.9463387576609636,
-1.928017870871765,
-1.9039170247059736,
-1.8742397207035133,
-1.8392822109731233,
-1.7994241059135643,
-1.7551146911717113,
-1.7068563309621156,
-1.6551865814122333,
-1.60066054883475,
-1.5438347149554343,
-1.4852530447624768,
-1.4254357940529028,
-1.3648711019101392,
-1.3040092116736115,
-1.243259012239376,
-1.1829865164475604,
-1.1235148761346072,
-1.0651255550773975,
-1.008060325058898,
-0.9525238040623405,
-0.8986863105784451,
-0.8466868590391272,
-0.7966361658988038,
-0.7486195730288577,
-0.7026998250702851,
-0.6589196609365418,
-0.617304197717245,
-0.5778630987606654,
-0.5405925275850091,
-0.5054768962350162,
-0.47249042138147335,
-0.44159850435620707,
-0.4127589528229223,
-0.3859230622221157,
-0.3610365747521933,
-0.33804053266756595,
-0.3168720412629926
],
[
-1.6673755015717582,
-1.7029736202905443,
-1.736113769970774,
-1.766401905232757,
-1.7934384236051497,
-1.8168250886800803,
-1.8361732353744542,
-1.8511131991583012,
-1.861304836568542,
-1.8664489420968473,
-1.8662992961807818,
-1.8606749338644204,
-1.8494719307360503,
-1.8326735822393807,
-1.8103574926748733,
-1.7826980767074945,
-1.7499634790054337,
-1.712506823486971,
-1.670752671122346,
-1.625180252020186,
-1.576305286773484,
-1.5246620708870418,
-1.4707871175126555,
-1.4152051938731565,
-1.3584181546928784,
-1.3008966283478587,
-1.2430743663400252,
-1.1853449188076888,
-1.128060230969572,
-1.0715307463185153,
-1.0160266313455275,
-0.961779786300284,
-0.9089863641811848,
-0.8578095773764928,
-0.8083826233443248,
-0.7608116052387982,
-0.715178359973019,
-0.6715431353290422,
-0.629947080307683,
-0.590414530023435,
-0.5529550791196802,
-0.5175654468147426,
-0.48423114305033044,
-0.4529279494154048,
-0.4236232310496334,
-0.3962770969750906,
-0.37084342656590774,
-0.3472707793837393,
-0.3255032045776445,
-0.30548096463232643
],
[
-1.5768812568038335,
-1.6100819172133587,
-1.6410579873300435,
-1.669447872365397,
-1.6948819575557312,
-1.7169882098842937,
-1.735399059454183,
-1.7497596276404825,
-1.7597373234973932,
-1.765032779027669,
-1.7653919999214758,
-1.760619387404133,
-1.7505908638047722,
-1.7352657607969646,
-1.7146956593736369,
-1.6890283569040832,
-1.6585057619440484,
-1.6234556060251257,
-1.584277978275843,
-1.5414284347929226,
-1.4953996605198283,
-1.4467034572805009,
-1.3958543903731297,
-1.3433559230061318,
-1.2896894137613772,
-1.235305998319168,
-1.180621134528451,
-1.1260114494322466,
-1.071813467766567,
-1.0183238005008275,
-0.9658004074939672,
-0.9144646026632781,
-0.8645035304839798,
-0.8160729010668981,
-0.7692998231118494,
-0.7242856179246411,
-0.6811085332535228,
-0.6398263036582476,
-0.600478525554245,
-0.5630888311324381,
-0.5276668571128529,
-0.4942100126699769,
-0.4627050566241747,
-0.43312949772936116,
-0.4054528340736019,
-0.3796376486128119,
-0.35564057796365023,
-0.3334131710154362,
-0.3129026528629062,
-0.2940526081612822
],
[
-1.4858122559943032,
-1.516596345842105,
-1.5453827187790028,
-1.5718411564074126,
-1.595631190814531,
-1.6164065120924505,
-1.6338206524856604,
-1.6475341273317823,
-1.6572231944476867,
-1.6625903501458028,
-1.6633765561995393,
-1.659374892334699,
-1.6504447862451521,
-1.6365252762896723,
-1.6176452223587456,
-1.5939283941733982,
-1.5655921094142111,
-1.532939329049129,
-1.4963453358245504,
-1.4562408924783192,
-1.4130939667471696,
-1.3673918500199223,
-1.319625008021151,
-1.2702734711417256,
-1.2197961077776607,
-1.168622771176508,
-1.1171490748630752,
-1.065733419841737,
-1.01469584596721,
-0.9643182857607204,
-0.9148458393870746,
-0.8664887468604289,
-0.8194247953693097,
-0.7738019582118999,
-0.7297411132361986,
-0.6873387314588263,
-0.6466694607980775,
-0.6077885564948399,
-0.5707341300018228,
-0.5355292031095378,
-0.5021835649381897,
-0.4706954370776759,
-0.44105295734543015,
-0.4132354959373752,
-0.3872148196222147,
-0.36295612042087644,
-0.34041892518947425,
-0.3195579018945067,
-0.3003235773004982,
-0.282662979419009
],
[
-1.3949068137470628,
-1.4232711257737578,
-1.4498545236392393,
-1.4743567823248889,
-1.4964655396743671,
-1.5158596719144237,
-1.5322139424801353,
-1.5452051993668203,
-1.5545203986527814,
-1.559866687972169,
-1.560983624245689,
-1.5576572273187745,
-1.5497349374360352,
-1.537139775152994,
-1.5198814439991508,
-1.4980621749340297,
-1.4718759384244597,
-1.4416009633481228,
-1.4075867600025813,
-1.3702376108713936,
-1.32999465381963,
-1.2873183898987086,
-1.2426729375516257,
-1.1965128151582933,
-1.149272570158245,
-1.1013592259728318,
-1.053147290259671,
-1.0049759436761327,
-0.9571479837187982,
-0.9099301085365682,
-0.8635541687413599,
-0.818219073764168,
-0.7740931011376975,
-0.7313164149123478,
-0.6900036495877403,
-0.6502464572973711,
-0.612115948808454,
-0.5756649841968825,
-0.5409302880816793,
-0.5079343782888637,
-0.4766873068536269,
-0.44718821926852304,
-0.41942674256787926,
-0.39338421576775096,
-0.369034777788376,
-0.34634632860116343,
-0.32528137921666,
-0.30579780545881396,
-0.2878495194079347,
-0.27138707106512117
],
[
-1.3048438364220492,
-1.3307994519140827,
-1.3551780266049238,
-1.377707750082227,
-1.3981032163621547,
-1.4160679538611494,
-1.4312982246204131,
-1.4434884392815568,
-1.4523385476185018,
-1.4575637106427817,
-1.4589063633171748,
-1.4561503481659244,
-1.449136118599826,
-1.4377752308406744,
-1.4220618168495582,
-1.4020788369922255,
-1.3779977654606361,
-1.350071668182439,
-1.3186228641983202,
-1.2840271031476642,
-1.2466963415512111,
-1.2070619098034814,
-1.1655593598746625,
-1.1226157543185524,
-1.0786397035027122,
-1.034014119594581,
-0.9890914349813658,
-0.9441909133185309,
-0.8995976397631413,
-0.8555627885962537,
-0.8123048095975709,
-0.7700112322028627,
-0.7288408469191106,
-0.6889260796596988,
-0.6503754231512908,
-0.6132758293162492,
-0.5776949979115066,
-0.5436835207455206,
-0.5112768587590513,
-0.48049714236908814,
-0.45135479481384666,
-0.4238499846862047,
-0.3979739181067026,
-0.3737099836085278,
-0.35103476420008284,
-0.3299189315494073,
-0.31032803703692724,
-0.2922232137315779,
-0.2755618023035733,
-0.2602979126094844
],
[
-1.216242241542182,
-1.239814120971592,
-1.2619979432531716,
-1.2825486514106679,
-1.301206621072204,
-1.317699539641265,
-1.3317455466879349,
-1.3430580249740565,
-1.351352444384117,
-1.3563555898025148,
-1.3578172743727301,
-1.3555241811089838,
-1.3493147960061276,
-1.3390936632714323,
-1.3248427357690087,
-1.306627736395908,
-1.284598266579139,
-1.2589816179466535,
-1.2300713898504703,
-1.198212717740136,
-1.163786076854444,
-1.1271913704087162,
-1.088833547881366,
-1.0491104992556648,
-1.0084035366110822,
-0.9670704470947429,
-0.9254408858580943,
-0.8838137597636103,
-0.8424562103361689,
-0.8016038139685169,
-0.7614616577537425,
-0.7222060040318439,
-0.6839863143943795,
-0.6469274576180661,
-0.6111319724043144,
-0.5766822938352894,
-0.5436428824387627,
-0.5120622176734069,
-0.4819746347165521,
-0.45340199584401975,
-0.4263551964779826,
-0.4008355120046392,
-0.37683579540883017,
-0.35434153816515823,
-0.3333318080635084,
-0.3137800780332103,
-0.29565495979185585,
-0.27892085545537815,
-0.26353853924012727,
-0.24946568017169946
],
[
-1.1296614922962864,
-1.15088893341724,
-1.1709014256010661,
-1.1894790195030847,
-1.2063867337983063,
-1.2213759680678407,
-1.2341871587299664,
-1.2445540802912913,
-1.252210197283028,
-1.2568973812094084,
-1.258377056709664,
-1.256443383744729,
-1.2509374487298675,
-1.2417607936182302,
-1.228886240320161,
-1.2123641272075536,
-1.1923228114768816,
-1.1689633669324526,
-1.1425494281924833,
-1.1133937832860712,
-1.0818434980153149,
-1.0482651599349968,
-1.0130314286204907,
-0.9765096262294186,
-0.9390526967630538,
-0.900992549534845,
-0.8626355918070157,
-0.8242601369062881,
-0.7861153277966975,
-0.7484212202747187,
-0.7113697047948367,
-0.6751259956440782,
-0.6398304696662518,
-0.605600687175165,
-0.5725334716088358,
-0.5407069606654573,
-0.510182570291784,
-0.4810068348264409,
-0.4532131029451437,
-0.4268230809260567,
-0.40184822314219604,
-0.3782909754205954,
-0.3561458806418887,
-0.3354005582007913,
-0.31603657009510466,
-0.2980301867520292,
-0.28135306545554584,
-0.26597285357478473,
-0.25185372783869386,
-0.23895687975741153
],
[
-1.0456022863501144,
-1.0645397583158696,
-1.0824194470065422,
-1.0990449460257112,
-1.114204839743892,
-1.1276738073036365,
-1.1392149344009272,
-1.1485836202997093,
-1.1555334559257466,
-1.1598243416319725,
-1.1612328591295913,
-1.159564484145019,
-1.154666669202322,
-1.146441289815823,
-1.1348546600096086,
-1.1199434787781035,
-1.1018156937813544,
-1.08064617275634,
-1.0566679489016662,
-1.0301603957666092,
-1.0014358915131676,
-0.9708264069065582,
-0.9386711270961441,
-0.9053058252494384,
-0.8710543389730001,
-0.8362222070349986,
-0.8010923195577087,
-0.7659223142667244,
-0.730943398828654,
-0.6963602756304863,
-0.6623518723734584,
-0.6290726247160816,
-0.5966541051846023,
-0.5652068388692616,
-0.5348221873735871,
-0.5055742166275929,
-0.47752149143238876,
-0.45070876062692067,
-0.425168512514726,
-0.40092239166651167,
-0.3779824763429227,
-0.3563524213431297,
-0.3360284747096345,
-0.3170003789027942,
-0.29925216817848566,
-0.2827628742462871,
-0.26750715206898623,
-0.25345583705054464,
-0.240576443972635,
-0.22883361697666316
],
[
-0.9645068194214919,
-0.9812246553566264,
-0.9970266122339463,
-1.0117383683068368,
-1.0251710441658084,
-1.0371221170719425,
-1.047377485942807,
-1.0557150381858076,
-1.0619100432162736,
-1.0657425818338777,
-1.0670069790748107,
-1.0655228300768333,
-1.0611467424701335,
-1.0537834905422452,
-1.0433950602051787,
-1.0300062003203907,
-1.0137056000643658,
-0.9946425428919274,
-0.9730196149309629,
-0.94908256572294,
-0.923108638404939,
-0.8953946279862545,
-0.8662456827271647,
-0.8359655400538888,
-0.8048485678148514,
-0.7731737136525806,
-0.7412002702729014,
-0.7091652427323767,
-0.6772820444549216,
-0.6457402357768638,
-0.6147060364523348,
-0.5843233781282465,
-0.5547153041296463,
-0.5259855652264166,
-0.4982202975023641,
-0.47148970025042003,
-0.44584965757697426,
-0.4213432675040607,
-0.39800225756525887,
-0.37584827706592594,
-0.3548940641472902,
-0.33514449128107393,
-0.3165974964234466,
-0.2992449092497649,
-0.2830731830437947,
-0.2680640432079049,
-0.25419506320768925,
-0.24144017822598496,
-0.22977014599957424,
-0.21915296334108114
],
[
-0.8867584638633624,
-0.9013429868162237,
-0.9151394626065197,
-0.9279942905060421,
-0.9397401041141873,
-0.950196573985459,
-0.9591722814099108,
-0.966467965330351,
-0.9718814068795243,
-0.9752141009850035,
-0.9762796480638098,
-0.97491348071582,
-0.9709831656424541,
-0.964398188572754,
-0.955117968196351,
-0.9431569542422104,
-0.9285860554028056,
-0.9115302155434746,
-0.8921625449584969,
-0.870695860970974,
-0.8473727140899425,
-0.822454972822069,
-0.7962138717763231,
-0.7689211736792646,
-0.7408418265979196,
-0.7122282604468606,
-0.6833162854589102,
-0.6543224350941037,
-0.6254425306321023,
-0.5968512225428041,
-0.5687022713827481,
-0.541129356426148,
-0.5142472340790423,
-0.48815310376522003,
-0.46292807237575295,
-0.43863863746096166,
-0.41533813338221404,
-0.3930681037193573,
-0.37185957786793544,
-0.3517342406530557,
-0.3327054916445378,
-0.3147793963313983,
-0.29795553495469407,
-0.2822277570572542,
-0.2675848510423746,
-0.2540111385164878,
-0.24148700313299631,
-0.22998936321588204,
-0.21949209674257708,
-0.20996642639932905
],
[
-0.8126810573279534,
-0.8252338864789047,
-0.8371138704025204,
-0.8481868250368917,
-0.8583058285867152,
-0.8673119536300005,
-0.8750359724269082,
-0.8813012838029672,
-0.8859282665607551,
-0.8887401575939624,
-0.8895703684236619,
-0.8882708965517669,
-0.8847211955266064,
-0.8788366139822702,
-0.8705753914860959,
-0.8599432792656341,
-0.8469951463576051,
-0.8318333696158678,
-0.8146032717698304,
-0.795486247731191,
-0.7746914323038102,
-0.7524467992265893,
-0.7289904767360099,
-0.7045628756312075,
-0.6794000085839167,
-0.6537281766376282,
-0.6277600352242837,
-0.6016919367662582,
-0.5757023782367734,
-0.5499513519332169,
-0.5245803958274317,
-0.4997131560973067,
-0.47545630039723485,
-0.451900649881006,
-0.42912242687070656,
-0.40718454104286783,
-0.3861378590287916,
-0.3660224201838975,
-0.3468685752386431,
-0.32869803510276796,
-0.31152482483217936,
-0.29535614324265946,
-0.28019313236407783,
-0.2660315632893788,
-0.25286244632194177,
-0.24067257392910335,
-0.22944500507379195,
-0.21915949917845445,
-0.20979290739547385,
-0.2013195281079616
],
[
-0.7425382153239934,
-0.7531746959529463,
-0.7632423775718314,
-0.7726252056444798,
-0.7811955465059195,
-0.7888148626777807,
-0.7953352519517749,
-0.8006020474064262,
-0.80445763120022,
-0.8067465212806177,
-0.8073216390653087,
-0.8060514640443314,
-0.8028275574098205,
-0.7975717449056625,
-0.7902421546376692,
-0.7808373599668436,
-0.7693980905032306,
-0.7560063024231857,
-0.7407817614350687,
-0.7238766007844423,
-0.7054685118617119,
-0.6857532864813833,
-0.6649373748635047,
-0.6432309902357343,
-0.620842122824133,
-0.597971658728065,
-0.5748096564596873,
-0.5515327271514601,
-0.5283023953215241,
-0.5052642811943073,
-0.48254793546908514,
-0.46026716506634,
-0.4385207065700848,
-0.4173931271809842,
-0.39695585704148484,
-0.37726827932437557,
-0.3583788241854051,
-0.34032602907756493,
-0.32313954102819054,
-0.3068410465935727,
-0.29144512275798484,
-0.27696000749145244,
-0.26338829245200435,
-0.2507275427881419,
-0.2389708504779391,
-0.2281073283846191,
-0.2181225524126018,
-0.20899895896719722,
-0.20071620447315164,
-0.19325149308299294
],
[
-0.6765331418888504,
-0.6853800134299486,
-0.6937523240651015,
-0.7015508445974276,
-0.7086659627500065,
-0.7149782987930455,
-0.7203600719656227,
-0.7246773702773859,
-0.7277934347626198,
-0.7295729905318913,
-0.7298875367794806,
-0.7286213522799736,
-0.7256778035585877,
-0.7209853979856887,
-0.7145029498203639,
-0.7062232609902297,
-0.696174869731436,
-0.6844216622132955,
-0.6710604194343237,
-0.65621662074076,
-0.6400389974378392,
-0.6226934035421648,
-0.6043565515550628,
-0.5852100735353556,
-0.5654352429822674,
-0.5452085599286525,
-0.5246982813328741,
-0.5040618834084725,
-0.4834443760621917,
-0.462977350575006,
-0.44277862527060396,
-0.42295235416215793,
-0.4035894746061115,
-0.3847683869156715,
-0.36655577802133466,
-0.3490075201367142,
-0.33216959252788403,
-0.3160789891797462,
-0.30076458720190336,
-0.2862479603320527,
-0.2725441291549098,
-0.2596622450061292,
-0.24760620832474523,
-0.2363752247783235,
-0.22596430409207047,
-0.21636470739887237,
-0.20756434927860123,
-0.19954816061960745,
-0.1922984181277163,
-0.18579504581699835
],
[
-0.6148093382572576,
-0.6220018678070973,
-0.6288053999295599,
-0.6351361914718558,
-0.6409012766321686,
-0.6459990129615147,
-0.6503202687480926,
-0.6537503681523745,
-0.6561718738705874,
-0.6574682230104589,
-0.6575281380691157,
-0.656250616391128,
-0.6535501739498999,
-0.6493619096371396,
-0.643645897179323,
-0.6363904305274101,
-0.6276137540217798,
-0.6173640846559202,
-0.6057179430393871,
-0.5927770068424408,
-0.5786638475027747,
-0.5635169872472686,
-0.5474857181493524,
-0.5307250721830673,
-0.5133912427115951,
-0.49563765563984097,
-0.4776117903830003,
-0.45945276842052796,
-0.4412896659371005,
-0.42324046746248334,
-0.40541155692334097,
-0.38789763696336177,
-0.37078197227995946,
-0.35413686400059974,
-0.3380242765218444,
-0.322496553407261,
-0.30759717335797676,
-0.2933615100701241,
-0.2798175705970367,
-0.26698669558709254,
-0.25488421160625885,
-0.24352003091401975,
-0.23289919781260138,
-0.2230223832987137,
-0.21388633145597313,
-0.2054842620418924,
-0.1978062342172211,
-0.19083947647546284,
-0.1845686876651127,
-0.17897631364227218
],
[
-0.5574524520437517,
-0.5631313068089283,
-0.568498947250786,
-0.5734857417573275,
-0.5780139108268701,
-0.5819979933178244,
-0.5853458534117635,
-0.587960316710343,
-0.589741492960345,
-0.5905897917810455,
-0.5904095653190773,
-0.5891132218568708,
-0.5866255583156107,
-0.5828879763129392,
-0.577862199148524,
-0.5715331156531305,
-0.5639104490836747,
-0.5550290758283775,
-0.5449479748401697,
-0.5337479423906965,
-0.5215283289654421,
-0.5084031278760403,
-0.4944967641163056,
-0.4799399044633311,
-0.4648655501124589,
-0.44940559744305486,
-0.4336879751351054,
-0.4178343971023126,
-0.4019587164006131,
-0.38616582732282057,
-0.3705510403844334,
-0.35519984526653725,
-0.34018797676639956,
-0.32558170521310226,
-0.31143828288087283,
-0.2978064895519803,
-0.28472723205397066,
-0.2722341633881553,
-0.2603542964775263,
-0.2491085954034129,
-0.23851253328481925,
-0.22857661081521696,
-0.21930683309806187,
-0.2107051450215196,
-0.2027698271833165,
-0.19549585549633774,
-0.18887522822618985,
-0.18289726445826782,
-0.17754887796455132,
-0.1728148302190622
],
[
-0.5044933268412506,
-0.5088014477141313,
-0.5128690313128208,
-0.5166391625426268,
-0.520047739061621,
-0.5230238513033975,
-0.5254906142649645,
-0.5273665186748457,
-0.5285673437169387,
-0.5290086331623076,
-0.5286086809697115,
-0.5272919041285294,
-0.5249924078595456,
-0.5216574847549869,
-0.5172507515192812,
-0.5117546291246147,
-0.5051719209466279,
-0.4975263336148158,
-0.48886190064810375,
-0.479241387090817,
-0.46874385275541786,
-0.45746161733268575,
-0.44549689683412075,
-0.4329583705614435,
-0.41995789996865074,
-0.40660756681691135,
-0.3930171389148107,
-0.3792920161640825,
-0.36553166319098773,
-0.35182850014751654,
-0.3382672005499008,
-0.32492433293949907,
-0.31186827953802965,
-0.2991593675372153,
-0.2868501549971112,
-0.2749858216991332,
-0.26360462433753074,
-0.2527383842021089,
-0.2424129834405102,
-0.23264885280634262,
-0.22346143941654684,
-0.21486164749980885,
-0.20685624853410922,
-0.19944825969259994,
-0.19263729129865337,
-0.18641986517802334,
-0.1807897065180708,
-0.17573801220954266,
-0.17125369874567342,
-0.16732363265851036
],
[
-0.4559121506201488,
-0.458991839925456,
-0.4618950612444016,
-0.46457622430108214,
-0.46698338728310695,
-0.46905854917955736,
-0.47073831770618435,
-0.4719550052713912,
-0.47263818482626363,
-0.4727167057462064,
-0.4721211268369152,
-0.470786471438869,
-0.46865515435763416,
-0.46567988164095075,
-0.46182629382305174,
-0.4570751216494794,
-0.45142365571065346,
-0.4448863951339208,
-0.43749482494829683,
-0.42929636152207784,
-0.4203525848187375,
-0.41073693314600124,
-0.40053206472346714,
-0.38982709116889147,
-0.3787148660853308,
-0.36728947505194776,
-0.355644029616929,
-0.3438688243350292,
-0.3320498774728373,
-0.32026784554644383,
-0.3085972802956878,
-0.29710618358248353,
-0.2858558097277595,
-0.2749006642989118,
-0.2642886516335461,
-0.25406132893417444,
-0.244254231395157,
-0.234897239650673,
-0.22601496728199355,
-0.21762715185747128,
-0.2097490378451481,
-0.2023917437085132,
-0.19556260862215158,
-0.18926551661992663,
-0.18350119772619733,
-0.17826750683301862,
-0.17355968187744386,
-0.1693705833347412,
-0.16569091725195606,
-0.16250944406576662
],
[
-0.41164348743028145,
-0.41363385796392704,
-0.4155055961365606,
-0.41722307525499447,
-0.4187450297539962,
-0.4200247631438382,
-0.42101066779623275,
-0.42164709805465594,
-0.42187562155738245,
-0.42163664870087514,
-0.42087140676535684,
-0.41952418518349355,
-0.41754473615347854,
-0.41489067726423123,
-0.4115297184341169,
-0.40744153184559107,
-0.4026191047623675,
-0.3970694598349922,
-0.3908136889243663,
-0.3838863140589863,
-0.3763340515371649,
-0.36821410309936775,
-0.3595921261623958,
-0.35054004235954794,
-0.34113383278117015,
-0.3314514443692369,
-0.3215709006963987,
-0.3115686772413131,
-0.30151837045810326,
-0.2914896641426492,
-0.28154757710780687,
-0.2717519631286811,
-0.2621572268559884,
-0.2528122168358451,
-0.2437602576894009,
-0.23503928672285523,
-0.22668206475922137,
-0.2187164360314069,
-0.21116561700007375,
-0.20404849860616836,
-0.19737995054139734,
-0.19117111954260713,
-0.18542971648846396,
-0.18016028924733374,
-0.17536447986695536,
-0.1710412658903655,
-0.16718718640825236,
-0.16379655398784942,
-0.16086165391561758,
-0.15837293230865757
],
[
-0.37158191772460936,
-0.37261678432838674,
-0.3735849188717937,
-0.3744593532011873,
-0.37520807979157955,
-0.3757941822600743,
-0.3761762252283116,
-0.3763089370424426,
-0.37614420548735383,
-0.3756323868705267,
-0.37472390274872613,
-0.37337106758108285,
-0.3715300580123808,
-0.3691629054038428,
-0.3662393736806273,
-0.36273858002603476,
-0.3586502295374505,
-0.35397536613848146,
-0.348726586451817,
-0.34292771382241694,
-0.3366129781562852,
-0.32982578665874596,
-0.3226171963282445,
-0.315044209610029,
-0.30716801110009095,
-0.29905224870033376,
-0.29076144116533587,
-0.2823595695656924,
-0.2739088862048742,
-0.265468953380831,
-0.25709590746584277,
-0.24884193156795353,
-0.24075491233597623,
-0.23287825264714024,
-0.22525081113576295,
-0.21790694091038976,
-0.21087660257253749,
-0.20418553013828777,
-0.19785543218000323,
-0.19190421410803538,
-0.18634621079066926,
-0.18119242155549076,
-0.17645074199098154,
-0.17212618888532183,
-0.1682211161394085,
-0.1647354206259224,
-0.16166673779136542,
-0.15901062736757776,
-0.15676074992121958,
-0.15490903516685628
],
[
-0.33558800138623246,
-0.3357942407788084,
-0.33597997470805074,
-0.3361256660341607,
-0.3362072386249375,
-0.3361961397266746,
-0.33605961891086955,
-0.33576125120953937,
-0.33526172122938513,
-0.33451986928069033,
-0.3334939800052301,
-0.3321432698208404,
-0.3304295042160297,
-0.32831865324740406,
-0.3257824778717717,
-0.32279993493133374,
-0.31935829705804375,
-0.3154539053527001,
-0.3110925046460451,
-0.306289148629163,
-0.3010676994421382,
-0.2954599781779734,
-0.2895046454366641,
-0.28324590281613693,
-0.2767321072983564,
-0.2700143826597792,
-0.26314529796768404,
-0.25617766581520884,
-0.24916349482085942,
-0.2421531141057487,
-0.2351944732883915,
-0.22833261064648225,
-0.22160927457829516,
-0.2150626790524266,
-0.2087273718385123,
-0.20263419434912655,
-0.19681031329353083,
-0.19127930652218472,
-0.18606128800655575,
-0.18117305954363672,
-0.17662827929209723,
-0.1724376395145093,
-0.16860904785870656,
-0.16514780814619767,
-0.1620567979593308,
-0.15933664136009784,
-0.15698587586637291,
-0.15500111339241407,
-0.15337719526349725,
-0.15210734167103457
],
[
-0.3034943007574611,
-0.30299066442595146,
-0.3025073282008903,
-0.3020310514818061,
-0.3015444713578901,
-0.3010261072450271,
-0.3004505474348407,
-0.2997888407083802,
-0.2990091073488701,
-0.29807737123343814,
-0.2969585983785725,
-0.2956179083267607,
-0.2940219049952608,
-0.2921400558022482,
-0.2899460351921743,
-0.287418943956141,
-0.2845443207514986,
-0.28131487705228064,
-0.2777309096472649,
-0.2738003724917317,
-0.26953861820841096,
-0.2649678449537547,
-0.2601163037362024,
-0.25501733294076057,
-0.24970829052952803,
-0.2442294510762837,
-0.23862292615464997,
-0.232931654658187,
-0.2271984963543272,
-0.22146544899988707,
-0.21577299784883652,
-0.21015959704715237,
-0.20466127548936552,
-0.19931135512989862,
-0.1941402672066841,
-0.1891754509411694,
-0.18444131959556476,
-0.17995927989340244,
-0.1757477924040196,
-0.17182246229260767,
-0.16819615165734714,
-0.16487910639169612,
-0.1618790920529498,
-0.15920153455589015,
-0.15684966263546118,
-0.15482464994377443,
-0.15312575538107276,
-0.1517504608275244,
-0.15069460586410566,
-0.14995251936690757
],
[
-0.2751112441609602,
-0.2740075827832289,
-0.2729598669773945,
-0.27196012083598986,
-0.2709965941387871,
-0.2700537198254769,
-0.26911222533220047,
-0.26814941747884213,
-0.26713965335534096,
-0.26605499941508004,
-0.26486606795226963,
-0.2635430051120651,
-0.2620565890131117,
-0.2603793824809286,
-0.258486874587726,
-0.2563585407426945,
-0.25397875380209056,
-0.25133748874274753,
-0.24843077976047168,
-0.2452609090286244,
-0.24183632798662646,
-0.23817133209960706,
-0.2342855262255057,
-0.23020312858672343,
-0.22595216638785542,
-0.22156361574180927,
-0.2170705337948884,
-0.21250722314683013,
-0.20790845927403745,
-0.20330880195574075,
-0.19874200265974573,
-0.19424051211485427,
-0.18983508620946488,
-0.18555448397167984,
-0.18142524857804276,
-0.1774715608630264,
-0.17371515436797758,
-0.17017528128539583,
-0.16686871946182458,
-0.1638098117090261,
-0.16101052987815234,
-0.15848055736391142,
-0.15622738485344412,
-0.15425641517682398,
-0.1525710740325361,
-0.15117292414615235,
-0.1500617810757745,
-0.14923582941059288,
-0.14869173852839634,
-0.1484247773948011
],
[
-0.2502326614886523,
-0.24862950526454464,
-0.24711305770457503,
-0.24567968258892026,
-0.2443222622820933,
-0.24303011810564423,
-0.24178906184334825,
-0.24058159529955603,
-0.23938726884571526,
-0.23818320154563377,
-0.23694475496236556,
-0.2356463407682916,
-0.2342623299233022,
-0.23276801996312924,
-0.23114060852563578,
-0.2293601171509716,
-0.22741021061631028,
-0.22527886381040263,
-0.22295883972828467,
-0.2204479571064173,
-0.2177491425746949,
-0.21487027792921864,
-0.21182386645967655,
-0.20862655197203894,
-0.2052985296714538,
-0.2018628894887915,
-0.19834493032996892,
-0.19477147899238045,
-0.1911702411360503,
-0.18756920467479543,
-0.18399610905787545,
-0.18047798771639956,
-0.17704078579336202,
-0.1737090512992998,
-0.17050569501842205,
-0.16745181270815768,
-0.1645665622069632,
-0.1618670877937738,
-0.15936848433892203,
-0.15708379429065888,
-0.15502403122504527,
-0.15319822445527986,
-0.1516134799835125,
-0.15027505383945083,
-0.14918643455932368,
-0.14834943219901953,
-0.1477642718385972,
-0.14742969001751627,
-0.14734303294073858,
-0.14750035561736996
],
[
-0.22864087397186394,
-0.22662930825911953,
-0.22473062870270133,
-0.22294472041739555,
-0.2212682365918075,
-0.2196944909116414,
-0.21821346261752805,
-0.21681192885588518,
-0.21547373399809766,
-0.2141801987589318,
-0.21291066344815635,
-0.2116431500676994,
-0.21035511808402396,
-0.2090242796879287,
-0.20762943343633222,
-0.20615127146419798,
-0.20457311570974546,
-0.20288154301451877,
-0.20106686711933786,
-0.19912345649663998,
-0.1970498792842923,
-0.1948488788400473,
-0.19252719428342857,
-0.19009524883364692,
-0.18756673423672154,
-0.18495812200641626,
-0.18228813187234105,
-0.17957718529127242,
-0.1768468678220536,
-0.17411941928818964,
-0.17141726556955894,
-0.16876260105333718,
-0.16617702655380007,
-0.1636812440517592,
-0.16129480695373433,
-0.15903592268560174,
-0.156921303217467,
-0.15496605844290712,
-0.15318362708051825,
-0.15158573981506862,
-0.15018240965357532,
-0.14898194486380878,
-0.14799098033220348,
-0.14721452368389332,
-0.14665601301944808,
-0.14631738361916602,
-0.14619914143013069,
-0.14630044157209854,
-0.1466191704673192,
-0.1471520305118159
],
[
-0.2101112652838315,
-0.20777304205606906,
-0.20556961073607116,
-0.20350366254201768,
-0.20157487254499817,
-0.1997797721707384,
-0.19811171919227233,
-0.19656097798374095,
-0.1951149186310599,
-0.19375833784732066,
-0.19247389771129186,
-0.19124267046641075,
-0.19004476965100658,
-0.18886004052652883,
-0.18766877704366336,
-0.18645242925979244,
-0.18519426476496226,
-0.18387995047363925,
-0.18249802684415872,
-0.18104025454223693,
-0.17950182282737948,
-0.1778814184509514,
-0.1761811626103147,
-0.17440643070748152,
-0.17256557481232848,
-0.1706695716491029,
-0.16873161971917106,
-0.1667667081677653,
-0.1647911776501223,
-0.16282229024559158,
-0.16087782186729704,
-0.15897568700253717,
-0.15713360227377193,
-0.15536879240678747,
-0.15369773981239598,
-0.15213597714120053,
-0.15069792081837075,
-0.14939674264182035,
-0.148244275957087,
-0.14725095263221943,
-0.1464257669806508,
-0.1457762628650896,
-0.14530854041629793,
-0.1450272790817957,
-0.14493577405150093,
-0.14503598346597002,
-0.14532858417753536,
-0.14581303418792402,
-0.1464876402141546,
-0.14734962912712746
],
[
-0.19441629841328156,
-0.19182412882936317,
-0.1893847117095484,
-0.18710292638839143,
-0.18498082592800658,
-0.18301749653700083,
-0.18120900199015155,
-0.17954842421663275,
-0.1780260077080944,
-0.17662941071015648,
-0.17534406047442785,
-0.17415360351078646,
-0.17304043530812052,
-0.17198628802765858,
-0.17097284989940076,
-0.16998238708464553,
-0.16899833804110687,
-0.1680058521080583,
-0.16699224797346446,
-0.1659473734575836,
-0.164863854994721,
-0.16373723255543182,
-0.16256598277863143,
-0.16135143915021244,
-0.1600976227380566,
-0.15881100006099436,
-0.15750018613166694,
-0.15617561074040354,
-0.1548491649229229,
-0.15353384261408198,
-0.15224339006756105,
-0.1509919730115492,
-0.14979386894495628,
-0.14866318961855574,
-0.14761363668621286,
-0.14665829179373002,
-0.14580944099802395,
-0.1450784323541523,
-0.14447556473547163,
-0.1440100054233029,
-0.14368973367788218,
-0.14352150734669222,
-0.1435108495482511,
-0.14366205256031184,
-0.14397819621529906,
-0.14446117833833227,
-0.1451117550315768,
-0.1459295888926797,
-0.1469133035367609,
-0.14806054305649985
],
[
-0.1813289718376898,
-0.17854695183039793,
-0.1759320333399601,
-0.17349075570050032,
-0.1712270020691542,
-0.16914185143881255,
-0.16723350526232195,
-0.16549729847868733,
-0.1639258017544043,
-0.162509017840758,
-0.1612346702526568,
-0.16008857727735193,
-0.15905509902432313,
-0.15811764031937225,
-0.15725918824128482,
-0.1564628604618663,
-0.1557124396157823,
-0.1549928698400489,
-0.15429069430884312,
-0.1535944167596941,
-0.15289477520918338,
-0.15218492174434894,
-0.15146050789559218,
-0.15071968015995751,
-0.14996299438654792,
-0.14919326074503836,
-0.14841533281452657,
-0.14763585502273413,
-0.1468629824009231,
-0.14610608561574012,
-0.14537545273034214,
-0.14468199735142795,
-0.14403698092176231,
-0.14345175505766838,
-0.14293752810470894,
-0.1425051585477939,
-0.14216497659131289,
-0.1419266341255243,
-0.14179898241086386,
-0.14178997612742372,
-0.1419066019365096,
-0.14215482936557367,
-0.1425395816384889,
-0.14306472400887738,
-0.14373306719390477,
-0.1445463836267331,
-0.1455054344253639,
-0.14661000519162504,
-0.14785894898691243,
-0.1492502350638676
],
[
-0.1706257300052345,
-0.16770985804468785,
-0.16497216020790018,
-0.16242038939340198,
-0.1600597973344018,
-0.157892983802854,
-0.15591981170400881,
-0.1541373966568329,
-0.15254017712255363,
-0.1511200678612914,
-0.14986669559661037,
-0.14876771147672652,
-0.14780917055366327,
-0.14697596443231165,
-0.14625228986112027,
-0.1456221336982979,
-0.14506975365283115,
-0.1445801345933937,
-0.14413940200737052,
-0.14373517718834572,
-0.14335686262042713,
-0.1429958504206672,
-0.1426456511855585,
-0.14230194478781533,
-0.1419625582846744,
-0.14162737893165578,
-0.14129821225566497,
-0.1409785962368535,
-0.14067358296420407,
-0.1403894987997334,
-0.140133693266846,
-0.13991428572698772,
-0.13973991756575477,
-0.1396195161908036,
-0.13956207573683121,
-0.13957645803960217,
-0.13967121622157896,
-0.13985444215081966,
-0.14013363810523471,
-0.14051561220222952,
-0.1410063965387598,
-0.1416111865250127,
-0.14233429957765797,
-0.1431791511528886,
-0.1441482460293606,
-0.14524318277644754,
-0.14646466944315972,
-0.14781254865528282,
-0.1492858304924658,
-0.15088273171422673
]
],
"zauto": true,
"zmax": 2.6755038959238364,
"zmin": -2.6755038959238364
},
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 1,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(255,247,251)"
],
[
0.14285714285714285,
"rgb(236,231,242)"
],
[
0.2857142857142857,
"rgb(208,209,230)"
],
[
0.42857142857142855,
"rgb(166,189,219)"
],
[
0.5714285714285714,
"rgb(116,169,207)"
],
[
0.7142857142857143,
"rgb(54,144,192)"
],
[
0.8571428571428571,
"rgb(5,112,176)"
],
[
1.0,
"rgb(3,78,123)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x2",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y2",
"z": [
[
0.4366749114656259,
0.4281993527156627,
0.4203960761955245,
0.41337280824504774,
0.40723509898647137,
0.4020828241843974,
0.3980059615240075,
0.39507985112522254,
0.3933603391593367,
0.3928793632700242,
0.39364160766394896,
0.39562278815214136,
0.3987699176464843,
0.40300359615138504,
0.40822204864612227,
0.41430638600187264,
0.4211264447884855,
0.4285465808547801,
0.43643091675554413,
0.44464772163743976,
0.4530727830910918,
0.46159177875555785,
0.47010175574703483,
0.47851187860972727,
0.4867436208422684,
0.4947305635765558,
0.5024179392549978,
0.5097620270698067,
0.5167294763737005,
0.5232966075329533,
0.5294487181657654,
0.5351794065771439,
0.5404899129855286,
0.545388472068203,
0.5498896666105934,
0.5540137708782573,
0.5577860731107318,
0.5612361687599857,
0.5643972193637664,
0.567305175928059,
0.5699979701034561,
0.5725146809968942,
0.5748946898730659,
0.5771768389632076,
0.579398613799733,
0.5815953706331853,
0.5837996313077095,
0.5860404672976747,
0.5883429923810607,
0.5907279797236501
],
[
0.42186342949749484,
0.41262672975915426,
0.404085352242255,
0.39636057825753723,
0.38957331206514045,
0.3838400834292826,
0.37926795423985254,
0.37594855363206675,
0.37395175465424946,
0.37331976687079227,
0.3740625512488047,
0.3761553835987122,
0.37953908491106164,
0.38412297424437425,
0.3897901203662722,
0.3964041143790429,
0.4038164423172047,
0.4118736059257912,
0.42042335668355946,
0.429319682465199,
0.4384264408590199,
0.4476197231846948,
0.4567891462103028,
0.4658383139027369,
0.4746846884630339,
0.48325907838968657,
0.49150490750129355,
0.4993773836483143,
0.506842645472231,
0.5138769327729716,
0.5204658013436134,
0.52660338582787,
0.5322917030277998,
0.5375399818120081,
0.5423640031456591,
0.546785433795452,
0.5508311391953595,
0.5545324642302446,
0.5579244748908693,
0.5610451585567642,
0.563934585800319,
0.5666340418110306,
0.5691851405299594,
0.5716289390514493,
0.5740050734637145,
0.5763509397390326,
0.5787009442666922,
0.581085847950416,
0.5835322253949349,
0.5860620566666332
],
[
0.40741634556843415,
0.39739631200613934,
0.3880878316786876,
0.3796263020266014,
0.37214919458489576,
0.36579159623348795,
0.36068015926652186,
0.35692566994037117,
0.3546148754144879,
0.3538026275830505,
0.35450564267458584,
0.3566990907096769,
0.36031677980455734,
0.3652550025143884,
0.37137939529337666,
0.3785336613216317,
0.3865488480313912,
0.395252033874029,
0.4044736401760181,
0.4140529940204691,
0.423842115017852,
0.43370793068051966,
0.4435332402544085,
0.45321677140917926,
0.46267264188592433,
0.47182947846293505,
0.48062937909618497,
0.4890268429099302,
0.49698774241737387,
0.5044883743117,
0.5115145984585758,
0.5180610574215989,
0.5241304588279196,
0.5297328981906653,
0.5348851988661116,
0.5396102474426857,
0.5439363061855861,
0.5478962886136712,
0.5515269894707621,
0.5548682659889289,
0.5579621731917863,
0.5608520618151188,
0.563581652963495,
0.5661941085660772,
0.5687311207015499,
0.5712320455848093,
0.5737331091382627,
0.5762667103869346,
0.5788608463334622,
0.5815386775724667
],
[
0.3935123610622666,
0.3826981557542796,
0.3726039697993329,
0.36337947984778407,
0.35517959386757453,
0.34815963077116235,
0.3424682740624663,
0.33823844094291555,
0.33557683107227954,
0.33455357346592324,
0.335193811369986,
0.33747299640490475,
0.3413170163047103,
0.34660723378388963,
0.35318944941119634,
0.3608851008378449,
0.36950285860876114,
0.37884910618897655,
0.38873637191591887,
0.3989893745525432,
0.4094487983689799,
0.41997317858473615,
0.43043937635419,
0.44074210728825436,
0.4507929119590494,
0.46051886065426384,
0.46986119192804815,
0.47877400684395915,
0.4872230816936076,
0.49518482040597694,
0.5026453408872307,
0.5095996737276283,
0.5160510439429125,
0.5220102041322373,
0.5274947887244831,
0.53252866251417,
0.5371412415775078,
0.5413667703588723,
0.5452435448935473,
0.5488130785656052,
0.5521192133123841,
0.5552071855849559,
0.5581226624141523,
0.5609107683101914,
0.5636151280879022,
0.5662769536891533,
0.568934204331616,
0.571620848600599,
0.574366254316921,
0.5771947272460421
],
[
0.38032839158910975,
0.3687229831157268,
0.357837798112872,
0.3478364592174944,
0.3388916726975162,
0.331180219501393,
0.3248749469630226,
0.3201337502170002,
0.31708640159075635,
0.315821078840276,
0.3163731544080802,
0.31871879984879414,
0.3227750455112031,
0.3284063817560905,
0.3354364194888294,
0.34366216316655007,
0.35286834975840575,
0.3628399041436106,
0.3733714579610688,
0.3842737084143457,
0.39537696023347557,
0.40653247009793286,
0.41761226578355337,
0.4285080339510652,
0.4391295371879851,
0.4494028816491036,
0.45926883631601406,
0.4686813121785696,
0.4776060441850698,
0.4860194762622307,
0.4939078246353482,
0.5012662820193857,
0.5080983208826215,
0.5144150548361962,
0.5202346211431885,
0.5255815529867919,
0.5304861166550234,
0.5349835957275849,
0.5391135114518524,
0.5429187756417312,
0.5464447795200849,
0.5497384288101337,
0.552847141848949,
0.5558178332500096,
0.5586959103171903,
0.5615243126147363,
0.5643426264579869,
0.5671863053312926,
0.5700860242433387,
0.5730671908833019
],
[
0.3680308277954095,
0.3556528859562025,
0.3439872494903495,
0.33321060681780096,
0.3235131744884963,
0.31509374376921373,
0.30815084157528694,
0.3028697264541279,
0.2994061013960527,
0.2978688770678166,
0.29830547174229083,
0.30069326719194006,
0.3049395836789772,
0.310890269693501,
0.31834472471152153,
0.3270738714629495,
0.3368376253959522,
0.34739942185207795,
0.3585366917639249,
0.3700472879561242,
0.3817525311058035,
0.3934977941458557,
0.40515151449979075,
0.4166033570217814,
0.42776204711152654,
0.4385532077813266,
0.44891738808009735,
0.45880836596749064,
0.4681917406116835,
0.4770437886755742,
0.4853505383125637,
0.49310700665101653,
0.500316546550541,
0.5069902529364306,
0.5131463858486968,
0.51880977515886,
0.5240111800023131,
0.5287865840254746,
0.5331764154488531,
0.53722468868138,
0.5409780717662795,
0.5444848912082029,
0.5477940925411213,
0.5509541810564408,
0.5540121720438771,
0.5570125832826889,
0.5599965039564561,
0.5630007733438126,
0.5660572994214011,
0.5691925419896261
],
[
0.3567660553213484,
0.34365082586037216,
0.33123273775743645,
0.31970014359123794,
0.3092597525702086,
0.30013202347759793,
0.2925417280013642,
0.2867029990821819,
0.28279965205399554,
0.2809635991223945,
0.28125596092689237,
0.28365588111921414,
0.28806038630653735,
0.29429540489923733,
0.3021348205377647,
0.31132272118193943,
0.32159428376455823,
0.33269234639714723,
0.344378608928094,
0.3564398243993586,
0.3686900763485704,
0.3809704084162148,
0.3931469203242391,
0.40510816752923956,
0.4167624211060307,
0.4280351135339561,
0.43886662831751067,
0.44921048065872754,
0.45903187000341633,
0.46830655022630874,
0.4770199487224644,
0.48516646370602196,
0.4927488740438658,
0.49977780440052316,
0.5062711982081267,
0.512253760853953,
0.5177563449844523,
0.5228152588193805,
0.5274714868997601,
0.5317698208604726,
0.5357579056876145,
0.539485214462542,
0.5430019716534017,
0.5463580513061355,
0.5496018816191711,
0.5527793909108452,
0.555933031471081,
0.559100916890786,
0.5623161050244733,
0.5656060528465928
],
[
0.34665130612025075,
0.33285004364982107,
0.3197250784467842,
0.30747461742427534,
0.29632013590877704,
0.2865024062873996,
0.278271776150471,
0.2718714695002619,
0.26751444849779366,
0.2653570796549706,
0.26547546516171383,
0.26785114854019476,
0.27237080150615833,
0.2788400493904078,
0.28700711673714163,
0.29658977739794634,
0.3072997681753526,
0.318861237520386,
0.33102235927452384,
0.3435609737177706,
0.35628585938272167,
0.36903527368880623,
0.38167408842072476,
0.3940904448726388,
0.4061924952732048,
0.41790552698878053,
0.42916958400490496,
0.43993758911072933,
0.45017390989094325,
0.4598532847042097,
0.46896001824800515,
0.4774873610650273,
0.4854369976245436,
0.4928185799242277,
0.49964925599913207,
0.5059531544109297,
0.5117607964547597,
0.5171084175295565,
0.5220371880790926,
0.5265923329463273,
0.5308221560411686,
0.5347769849232646,
0.5385080571165023,
0.5420663764182521,
0.5455015727374517,
0.5488608026154426,
0.5521877290839703,
0.5555216185271763,
0.5588965885588142,
0.5623410346815237
],
[
0.3377671797493962,
0.32334491217032724,
0.309574438916779,
0.29666178306728547,
0.28484088243868233,
0.2743704803482619,
0.2655244583094876,
0.258573746176541,
0.2537599299459427,
0.25126408597608185,
0.25117799163769994,
0.253486364064187,
0.25806626907306685,
0.26470395746488895,
0.2731234133537331,
0.2830181618276671,
0.29407910629252565,
0.3060145592666519,
0.31856193138041994,
0.33149255426086816,
0.3446117950180266,
0.357756464825075,
0.37079102822089666,
0.38360359121097914,
0.3961022177128711,
0.4082118239814307,
0.41987171250209404,
0.4310337011439014,
0.4416607526596202,
0.4517259927133895,
0.4612120067455038,
0.47011031759486266,
0.4784209611187323,
0.4861520928682383,
0.4933195736362471,
0.499946494832053,
0.5060626161567456,
0.5117036982302354,
0.5169107220189018,
0.5217289954618284,
0.5262071558147283,
0.5303960839888077,
0.5343477544462795,
0.5381140507423781,
0.5417455821535496,
0.5452905405006987,
0.5487936377662508,
0.5522951640169231,
0.5558302012814952,
0.5594280224694517
],
[
0.33015314203387636,
0.3151848824765009,
0.3008423361900068,
0.2873372670671612,
0.27491340499608935,
0.26384431047250534,
0.2544240640113502,
0.2469482520642992,
0.24168481712489392,
0.2388383887172339,
0.2385164184836481,
0.24070779065266928,
0.24528177823591263,
0.25200780147058194,
0.26058879811873553,
0.27069769274179656,
0.2820083305731418,
0.2942167266715599,
0.3070525409290082,
0.32028292517047297,
0.33371145091723753,
0.34717444809426157,
0.36053639926075565,
0.373685386615736,
0.38652910253361006,
0.3989916153524419,
0.411010895243021,
0.42253700904805463,
0.4335308540517791,
0.4439632944882234,
0.4538145753606309,
0.4630739061468303,
0.47173912672966584,
0.4798163866344417,
0.4873197852293966,
0.49427093473478645,
0.5006984199575971,
0.5066371390903546,
0.5121275191811238,
0.5172146084184699,
0.521947055458695,
0.5263759937516009,
0.5305538560984409,
0.534533151217313,
0.5383652394609171,
0.5420991485042297,
0.5457804712701624,
0.5494503871677376,
0.5531448436640818,
0.5568939283694874
],
[
0.3238068665890177,
0.3083727892864524,
0.29353845715283905,
0.2795193963199844,
0.2665663107942391,
0.2549639012715042,
0.24502212777136456,
0.23705678415587575,
0.2313583340700395,
0.22815249364226223,
0.22756178387069806,
0.2295805958126274,
0.23407342332336847,
0.24079707253117655,
0.24943830052790697,
0.2596543841556354,
0.2711066575053041,
0.28348263213887487,
0.2965070917102927,
0.30994495885731654,
0.3235991420181864,
0.3373059641315181,
0.35092991233700116,
0.36435869864645337,
0.3774990912940324,
0.39027364782033375,
0.4026183006233252,
0.41448066188976906,
0.4258188882060931,
0.4366009493078005,
0.446804163956796,
0.45641488936872193,
0.4654282739476441,
0.4738480040415533,
0.481685993287424,
0.48896197797791663,
0.49570299424954295,
0.5019427233884186,
0.5077207007747548,
0.5130813924280869,
0.5180731510921563,
0.5227470714336159,
0.5271557711353533,
0.5313521311577484,
0.5353880337730927,
0.5393131406078331,
0.5431737543092272,
0.5470118061469823,
0.5508640076378561,
0.5547611972095229
],
[
0.3186874758062635,
0.3028678705340869,
0.2876231140977762,
0.27317064552147924,
0.2597653340570707,
0.24769913109208644,
0.23729303158063803,
0.22887774244879203,
0.22276140562046476,
0.21918752489708782,
0.2182928191325129,
0.22007903821464725,
0.22441007699543777,
0.23103576204163737,
0.23963275415872193,
0.24984836598009041,
0.2613361494720417,
0.27377864616881475,
0.2868981079555676,
0.3004585433020631,
0.31426270909355647,
0.3281468606125233,
0.3419750590608705,
0.3556340054534303,
0.36902880841121505,
0.3820797616999215,
0.39472003614751866,
0.4068941190487844,
0.4185568188402401,
0.42967266581660324,
0.44021556444403476,
0.45016858037524177,
0.45952377115145937,
0.46828199201063053,
0.476452626872167,
0.484053209810092,
0.4911089148247146,
0.4976519022076287,
0.503720518930197,
0.5093583587991487,
0.5146131959604873,
0.519535812833201,
0.5241787506392644,
0.5285950170828874,
0.5328367909696047,
0.5369541670943175,
0.5409939860105761,
0.5449987918697766,
0.5490059571518715,
0.5530470058636139
],
[
0.3147218072295629,
0.2985926677703474,
0.2830146785315054,
0.26820541117127783,
0.2544211631106686,
0.2419572846119477,
0.23114091368688602,
0.22231221651393834,
0.215791956457948,
0.21183803272652796,
0.21060074005906276,
0.21209173020160152,
0.21617945783967238,
0.22261332551013108,
0.23106651712071813,
0.24118207121031685,
0.25261002584694997,
0.265030732802482,
0.2781654001848031,
0.29177762312280975,
0.3056698335048081,
0.3196776393141892,
0.33366389455410345,
0.3475134480318736,
0.36112893594286816,
0.3744276514082429,
0.3873393616891902,
0.3998048827022669,
0.4117752140351459,
0.42321105713621915,
0.43408256839969167,
0.4443692290119251,
0.4540597407928605,
0.4631518805179345,
0.4716522642909599,
0.4795759889978313,
0.4869461304589429,
0.49379308838792846,
0.5001537773429409,
0.5060706710674091,
0.5115907153198404,
0.5167641316389232,
0.5216431414146796,
0.5262806458647522,
0.5307289026025168,
0.5350382428824505,
0.5392558747612529,
0.5434248158669679,
0.5475829949837242,
0.551762554300267
],
[
0.31181214920493644,
0.29544198387202697,
0.2795999360670885,
0.2645019052766316,
0.250402947114262,
0.23759815079683455,
0.22641623203163444,
0.21720180780963314,
0.2102837499203847,
0.20593160606982833,
0.20430938554308417,
0.2054420105506383,
0.20920837014951496,
0.21536436197710293,
0.22358616126850536,
0.23351756957187814,
0.24480838488569376,
0.25713842488557176,
0.2702282671683195,
0.28384068436992216,
0.29777691657476546,
0.3118708740367492,
0.32598315235593595,
0.33999580258991535,
0.3538081978116857,
0.3673340049333741,
0.3804991139378355,
0.39324032226959077,
0.40550457100544074,
0.4172485523235318,
0.42843853876134913,
0.43905031588127064,
0.4490691278387168,
0.4584895689182329,
0.46731537344933344,
0.47555907221033233,
0.48324149621602236,
0.49039111941267266,
0.49704324094211705,
0.5032390158254026,
0.5090243505240656,
0.5144486870319701,
0.5195637058864149,
0.5244219845098425,
0.5290756521762058,
0.5335750861055842,
0.5379676941813477,
0.5422968281098782,
0.5466008662682093,
0.5509124980733947
],
[
0.30984376926275436,
0.2932917511954402,
0.2772446548015242,
0.26191482577996994,
0.24755346599903347,
0.23445201558981166,
0.22293674459403798,
0.21335252725712836,
0.2060328530214012,
0.20125728191798228,
0.19920473210883854,
0.19991760740972672,
0.2032915638702149,
0.20909584554522107,
0.21701546170295552,
0.22669894456481152,
0.23779782226122131,
0.24999171409002025,
0.26299980757272534,
0.2765827087410336,
0.2905389308147509,
0.3046992213612368,
0.3189206692964998,
0.33308155683055046,
0.347077302556745,
0.36081750382344663,
0.3742239299112849,
0.3872292642736728,
0.3997763934531773,
0.4118180628781756,
0.42331675003834346,
0.4342446360565843,
0.4445835842560501,
0.4543250579533675,
0.46346992938853443,
0.4720281478665195,
0.48001824844872076,
0.4874666935512717,
0.49440704920322076,
0.5008790060172128,
0.5069272625089942,
0.5126002954646833,
0.5179490485828957,
0.5230255763926517,
0.5278816850729686,
0.5325676147716071,
0.5371308088165405,
0.54161481340567,
0.5460583467224839,
0.5504945690224361
],
[
0.30869107414050906,
0.2920061918890082,
0.27580212702313067,
0.26028575216153715,
0.24570190688655041,
0.23233532547158003,
0.22050643390372893,
0.2105570927787668,
0.20282305116102137,
0.19759341894331256,
0.19506423407484408,
0.19530027950271348,
0.19822053936181244,
0.20361415534360056,
0.21118000443657486,
0.2205741286093343,
0.23145039040369153,
0.24348720748931724,
0.2564004575607763,
0.2699463365446325,
0.2839184787532733,
0.29814264986437333,
0.3124710498108128,
0.3267772558310712,
0.3409521941321502,
0.3549011767953664,
0.3685418753082125,
0.38180304228355083,
0.3946237866674504,
0.4069532256565758,
0.4187503634033696,
0.4299840750399566,
0.4406331013126121,
0.450685982869301,
0.4601408836109805,
0.46900526960858696,
0.4772954242686259,
0.48503579220659776,
0.4922581542112074,
0.4990006442691604,
0.5053066272762887,
0.511223463024838,
0.5168011883666453,
0.5220911549390456,
0.5271446641584379,
0.5320116438738091,
0.5367394116432694,
0.5413715676491365,
0.5459470555913054,
0.550499422561519
],
[
0.30822217178580485,
0.29144280589190064,
0.27511883348788296,
0.25944983201473476,
0.24467199758654945,
0.23106072125994154,
0.2189278366858164,
0.20860978013676446,
0.2004431690244683,
0.19472710662895887,
0.1916776425695334,
0.1913871915858364,
0.1938046139646645,
0.19874509666579976,
0.2059256289106458,
0.21501144348167361,
0.22565808857569106,
0.23754054860706666,
0.2503684141729703,
0.26389042433675236,
0.2778926558357855,
0.29219380179585586,
0.30663972886175606,
0.32109846653319013,
0.3354561075652983,
0.34961371952451326,
0.36348518138987834,
0.37699578266253536,
0.39008140319200135,
0.4026881003396069,
0.41477195080311835,
0.42629901966112094,
0.4372453550005387,
0.44759693078312046,
0.4573494823162987,
0.4665081973861294,
0.4750872417951175,
0.48310911103719884,
0.49060381061565517,
0.49760787658909383,
0.5041632557711787,
0.5103160719188695,
0.5161153103320899,
0.5216114584566346,
0.526855144049901,
0.5318958148309827,
0.5367805038545946,
0.5415527227563406,
0.5462515203259254,
0.5509107366451559
],
[
0.30830254734873774,
0.2914559794925351,
0.2750380346812193,
0.259239465317823,
0.24428595678741533,
0.23044147672931578,
0.21800721062888273,
0.20731252549905477,
0.19869423043442472,
0.19246237788441875,
0.18885613091303582,
0.1880007010445745,
0.18988105219295487,
0.19434403889662547,
0.20112825463328254,
0.20990883337942123,
0.22034126868574244,
0.23209382098750084,
0.2448659285843008,
0.2583951895255758,
0.27245707279552445,
0.2868609723621064,
0.301445023920343,
0.3160710381949964,
0.3306201791721535,
0.3449895905680363,
0.3590899502307309,
0.37284382685184786,
0.38618467289446207,
0.3990562817181215,
0.41141254913250336,
0.42321740101148025,
0.43444477380425517,
0.4450785604198392,
0.45511245792745764,
0.46454967464653546,
0.4734024720670826,
0.4816915317458851,
0.4894451492901446,
0.496698267326193,
0.5034913674931112,
0.5098692484033943,
0.5158797223819571,
0.5215722686215395,
0.5269966839749027,
0.532201774606942,
0.53723413177266,
0.5421370327473686,
0.5469495032496354,
0.5517055706396289
],
[
0.3087991227823374,
0.29190082242878923,
0.2754032652711077,
0.25948734235927934,
0.24436698157672787,
0.23029337839670183,
0.2175558040900242,
0.20647565600174797,
0.19738980733057382,
0.19062041916636155,
0.18643266451903645,
0.1849891802657603,
0.18631654948768778,
0.19029812506959537,
0.19669671909715658,
0.2051971016786188,
0.21545197079861875,
0.22711868120141088,
0.2398819900535793,
0.253464284225937,
0.2676272492792148,
0.28216883094755424,
0.29691824759470153,
0.3117307030355987,
0.3264826450002113,
0.3410679164398637,
0.3553948656382545,
0.3693843334541339,
0.3829683664273461,
0.39608948028315394,
0.4087003008265943,
0.42076342694893565,
0.4322513859682734,
0.44314657963966764,
0.45344114647094136,
0.4631366904488254,
0.4722438470149507,
0.48078167403735506,
0.48877686900522344,
0.4962628243658002,
0.5032785414753347,
0.5098674305791825,
0.5160760298944506,
0.5219526813385699,
0.5275462036195434,
0.5329046050233023,
0.5380738779862605,
0.543096915153536,
0.5480125819603776,
0.552854973914978
],
[
0.30958592915331673,
0.29263889286190575,
0.27606391926718055,
0.2600316533212266,
0.24474381654450703,
0.23043838844732853,
0.21739239099304697,
0.20591917693880327,
0.19635610202185227,
0.18903869077484964,
0.1842605848774744,
0.18222557998085606,
0.1830062347992064,
0.1865259828830429,
0.19257321569773328,
0.20084087735201103,
0.21097510006407516,
0.22261741806536114,
0.2354330097249894,
0.24912495309954172,
0.26343820093695147,
0.27815747464997964,
0.29310231591581143,
0.30812135075694796,
0.3230868957402042,
0.33789043117005907,
0.3524391056363544,
0.3666532342808983,
0.38046464877000585,
0.3938157126321959,
0.40665880845052493,
0.4189561185418161,
0.4306795479002026,
0.4418106700488848,
0.4523406081420101,
0.46226979227750953,
0.4716075581681308,
0.48037157182439566,
0.48858708015997804,
0.49628599918515365,
0.5035058605071209,
0.5102886438832567,
0.516679529034416,
0.5227256040349249,
0.5284745703471235,
0.5339734857934108,
0.5392675862152565,
0.5443992240368847,
0.5494069573273157,
0.5543248163225604
],
[
0.3105520137263797,
0.293546764952045,
0.27688432611506236,
0.2607254470281595,
0.24526010133613343,
0.23071364186773827,
0.21735157555922943,
0.20548010051965632,
0.19543814444666568,
0.18757602054730277,
0.18221781800647938,
0.17961109070126316,
0.17987710515125485,
0.18298109431651347,
0.18873654098532439,
0.19684151144792103,
0.2069306897961233,
0.21862435967020297,
0.23156327221799763,
0.24542755880083195,
0.2599431644664413,
0.2748805306216035,
0.2900494184550533,
0.3052924431766218,
0.3204787851247846,
0.3354987960644018,
0.3502597611558526,
0.36468281389178747,
0.3787008610024612,
0.39225731112118134,
0.4053053861435131,
0.4178078086396832,
0.4297366890015155,
0.4410734727731095,
0.45180884552383715,
0.4619425259470551,
0.47148290587540476,
0.4804465182521996,
0.4888573312862387,
0.49674587993641184,
0.5041482554879965,
0.5111049811310261,
0.5176598067352843,
0.5238584597756509,
0.52974739169609,
0.5353725598342365,
0.5407782841940554,
0.5460062156876142,
0.5510944478974706,
0.5560767980288768
],
[
0.3116112658659968,
0.29452722220617683,
0.27775627976898326,
0.2614503825365925,
0.2457891440510409,
0.23098696001308525,
0.21729970524738393,
0.2050283944295411,
0.19451543458980397,
0.18612766178384244,
0.1802211505921214,
0.17708849299334437,
0.1769002876384839,
0.1796627220083017,
0.18521135894576435,
0.19324436711129606,
0.2033790400201146,
0.21520888837581448,
0.228346049922021,
0.24244514638753986,
0.2572120094593637,
0.27240279396214667,
0.2878182042225464,
0.3032959999043414,
0.3187035995486575,
0.33393168037913856,
0.3488891106150481,
0.3634992285344224,
0.3776973112974501,
0.39142899906568,
0.40464942078769295,
0.41732278390033917,
0.42942222495250804,
0.4409297604947604,
0.45183622002166945,
0.46214108092864503,
0.4718521573380437,
0.48098511987627224,
0.4895628426331226,
0.4976145876495316,
0.5051750474915638,
0.5122832737710233,
0.5189815246107418,
0.5253140674880553,
0.5313259758309068,
0.5370619582032989,
0.5425652578093267,
0.5478766572608146,
0.5530336190551821,
0.5580695860944627
],
[
0.3127129078573217,
0.29552164850200396,
0.27861343942610406,
0.2621331786059153,
0.24625237117856222,
0.23117715418094145,
0.2171567777778008,
0.2044901389766143,
0.19352589564590847,
0.18464948989264704,
0.17825002137413692,
0.17466480374325224,
0.1741117319954637,
0.17663384325106316,
0.18208271758716182,
0.19014957190786028,
0.20042776307745055,
0.2124792030250461,
0.22588473213449622,
0.24027265512118298,
0.255329190651724,
0.27079745542298633,
0.28647068148950816,
0.3021834427143998,
0.317803021464031,
0.3332219475312215,
0.34835208501138454,
0.3631202756021287,
0.3774653554501614,
0.39133627792184766,
0.40469105503082503,
0.4174962492917122,
0.4297267874372084,
0.44136591521259355,
0.45240516009308945,
0.4628442114352038,
0.47269066306809254,
0.48195959125021737,
0.4906729619294295,
0.49885887652238303,
0.50655067624623,
0.5137859325255619,
0.5206053560326784,
0.5270516600772799,
0.5331684156527342,
0.5389989355756881,
0.5445852238077525,
0.549967023172047,
0.5551809902697946,
0.5602600205673138
],
[
0.31385076052986344,
0.2965213354139051,
0.2794448919675713,
0.26276159480025146,
0.24663781712275254,
0.23127501403858,
0.21691979162840197,
0.20387294231826994,
0.1924928557004472,
0.18318580821706784,
0.17637413837142568,
0.1724374497261735,
0.17163557237566496,
0.1740404687546471,
0.1795105368884496,
0.18772154042107347,
0.1982368449744049,
0.21058384209808623,
0.2243118646340958,
0.23902443506471205,
0.25439049366942346,
0.270142599392285,
0.28606879488666953,
0.3020024335956069,
0.317812314099059,
0.3333942142824577,
0.3486641977455597,
0.36355367505642333,
0.3780060049831283,
0.39197433608449717,
0.405420371853509,
0.41831376528755854,
0.43063189265597107,
0.4423598083720411,
0.4534902346321236,
0.46402348577646285,
0.4739672658063089,
0.48333630771309577,
0.4921518459387925,
0.5004409296394762,
0.5082355958390571,
0.5155719292757666,
0.5224890407370741,
0.529027998626941,
0.5352307498160774,
0.5411390656811498,
0.546793547698386,
0.5522327240258676,
0.5574922642167999,
0.562604333666045
],
[
0.315069234519073,
0.297575165065399,
0.2803047671699774,
0.2633961904425445,
0.24701418151896556,
0.2313597260359278,
0.2166814512751624,
0.20328666327876974,
0.19154725288468827,
0.18189216220004037,
0.17477565665020872,
0.17061426910265726,
0.1697003809849664,
0.1721229715108633,
0.17773562813624422,
0.18619020173864967,
0.1970162482987841,
0.20970704537528234,
0.22378350192958565,
0.23882848788914118,
0.2544977103145834,
0.27051657763291553,
0.2866705728222417,
0.30279376347983156,
0.3187578692544394,
0.3344629609848598,
0.34983012519432616,
0.364796040821504,
0.37930922442532056,
0.39332762056769827,
0.4068172003076774,
0.4197512559535812,
0.4321101264528303,
0.4438811423380758,
0.45505863334804025,
0.4656438904793992,
0.4756450148053982,
0.4850766173660531,
0.4939593584451237,
0.502319331847159,
0.5101873117811796,
0.517597887943533,
0.5245885194201458,
0.5311985408548051,
0.5374681554391013,
0.5434374489378833,
0.549145457294942,
0.554629317425186,
0.5599235266547921,
0.5650593310418986
],
[
0.31646432977959854,
0.2987914860077526,
0.2813151669186276,
0.26417446710786974,
0.24753629927103027,
0.23160569821960095,
0.2166382304084912,
0.20295238071306057,
0.19093688196859537,
0.18104387589376786,
0.17375568147044237,
0.16951652593062178,
0.168637540932144,
0.17120948616239814,
0.17706886693784749,
0.18583752787137373,
0.19701162193867747,
0.2100551681495092,
0.22446728809998515,
0.2398166297245188,
0.25575090242524257,
0.2719921658880095,
0.28832587298691154,
0.3045883702768574,
0.3206552123732917,
0.3364312861727095,
0.35184302337949563,
0.3668326169166539,
0.3813539811934233,
0.3953701236701946,
0.4088515835348537,
0.4217756185317191,
0.4341258667666732,
0.4458922647086688,
0.4570710571777915,
0.46766478454600485,
0.4776821739909163,
0.48713789469112945,
0.49605216183681916,
0.5044501924065895,
0.5123615282008035,
0.5198192499241636,
0.5268591112599844,
0.5335186246865181,
0.5398361318003269,
0.5458498904665607,
0.5515972093963023,
0.5571136578647129,
0.5624323743256746,
0.56758349278144
],
[
0.31817863462029,
0.3003328338440584,
0.2826606351903939,
0.2653050978704575,
0.2484390925525617,
0.23227610803728843,
0.21708323773363053,
0.20319407826447344,
0.1910161211027436,
0.18102277866219776,
0.17371686397062294,
0.16955657315207198,
0.16885407734455626,
0.17168527304058234,
0.17785946808288558,
0.18696731010481588,
0.19847757528097312,
0.2118344914200182,
0.2265249726060873,
0.2421113143987904,
0.2582388660570056,
0.2746299434711169,
0.2910720079169348,
0.3074046452351263,
0.3235075381160502,
0.3392903237937388,
0.35468456661613235,
0.36963774683890716,
0.3841090085067491,
0.39806634226854776,
0.4114848666365156,
0.424345893199259,
0.4366365035102357,
0.44834941690419533,
0.4594829812379116,
0.4700411671357661,
0.4800334878175019,
0.48947479997102483,
0.4983849666649868,
0.5067883819483645,
0.5147133698138588,
0.522191478857401,
0.5292566993244996,
0.5359446321328184,
0.5422916404937064,
0.5483340143118365,
0.5541071758611361,
0.5596449524701264,
0.564978938226084,
0.5701379621683899
],
[
0.32039023576903386,
0.30240325732917184,
0.28457371536605974,
0.26705149833560143,
0.2500188798760674,
0.23370157691027219,
0.2183817404043493,
0.20441031999027182,
0.19221290757177725,
0.1822786461906914,
0.17511890170507585,
0.1711880474843181,
0.17077968304504565,
0.17393998489869122,
0.1804461469545582,
0.18986293239165053,
0.20164328192004996,
0.2152245516132433,
0.23009256260883335,
0.24581139722881593,
0.2620293001251435,
0.27847181154999984,
0.2949297522459518,
0.31124625502533426,
0.32730483239532315,
0.3430192787026656,
0.3583256102948075,
0.37317595440139323,
0.387534153284226,
0.40137278536732784,
0.41467128874370657,
0.42741488812967915,
0.43959406212859004,
0.4512043338346532,
0.46224621666126625,
0.47272519340924574,
0.4826516468073799,
0.4920406926978319,
0.5009118926384095,
0.5092888416686228,
0.5171986404122213,
0.524671269706257,
0.531738891584415,
0.5384351035337315,
0.5447941741083306,
0.5508502876506054,
0.5566368243235879,
0.5621856990911707,
0.5675267798481746,
0.5726874007539213
],
[
0.3232964315583259,
0.30522922271739417,
0.28731262760527837,
0.26970580491557383,
0.2526031145127694,
0.23624504383786188,
0.2209304630714717,
0.20702723406920343,
0.19497481457751495,
0.18526831958601728,
0.17841178626080068,
0.17483598206802828,
0.1747979325812196,
0.1783045784137982,
0.18510315031697866,
0.1947439210359254,
0.2066791456870459,
0.22035349873434246,
0.2352626500581994,
0.2509798279545354,
0.26716053937351164,
0.2835357302141162,
0.29990029444749006,
0.31610071156196873,
0.3320236098200726,
0.3475859914295751,
0.36272732626129595,
0.3774034570378231,
0.3915821240693769,
0.4052398514969034,
0.4183599141151357,
0.4309311109417282,
0.44294709895480416,
0.4544060792649204,
0.4653106712191298,
0.47566785217995544,
0.4854888785514784,
0.4947891353225644,
0.5035878865367914,
0.5119079180842963,
0.5197750778826725,
0.5272177278564099,
0.5342661280782007,
0.5409517767993135,
0.5473067314919656,
0.5533629359073691,
0.5591515768363858,
0.5647024919704584,
0.5700436471745557,
0.5752006977643455
],
[
0.3270940565240663,
0.3090362490559464,
0.2911336147470776,
0.27355627007442324,
0.2565121186363731,
0.24025711511058068,
0.22510590830102573,
0.21143943637686935,
0.1997028536216673,
0.19038383066558853,
0.18396132220468447,
0.180824291988023,
0.18118068471148302,
0.1849962673452536,
0.19199701658825438,
0.2017336361661346,
0.21367344300231314,
0.22728155140838546,
0.2420728748838803,
0.25763576851809666,
0.2736363624100512,
0.28981253513043015,
0.30596357010596026,
0.32193885409412704,
0.33762725987642483,
0.35294792241983874,
0.3678426435666559,
0.3822699173334918,
0.3962004375524222,
0.40961387979262537,
0.4224967187197361,
0.43484083949427393,
0.4466427193863639,
0.45790298604804064,
0.4686261952254128,
0.47882070788058767,
0.4884985811409688,
0.4976754171691279,
0.5063701381609513,
0.5146046743025485,
0.5224035652177675,
0.5297934850085821,
0.5368027072486871,
0.5434605299709402,
0.5497966823919754,
0.5558407353012,
0.5616215360432297,
0.5671666870896135,
0.5725020845200917,
0.5776515294848835
],
[
0.33195894306582147,
0.31402440667385556,
0.29626184106462994,
0.27885290062624074,
0.2620188355210635,
0.24602945520347985,
0.23121126858677035,
0.21795103479333267,
0.2066882602163255,
0.19788811230710582,
0.19198818224357023,
0.18932279170714517,
0.19004619741196593,
0.1940882785220428,
0.20116625688803866,
0.21084619547334385,
0.22262399477573389,
0.23599561224805454,
0.2505023696781767,
0.26575225016197984,
0.2814245414750666,
0.2972652129812895,
0.3130781619426438,
0.3287152936863563,
0.34406695757214284,
0.3590534474043707,
0.37361784558693134,
0.38772026121239833,
0.40133338321670486,
0.4144391953106541,
0.42702666071911916,
0.43909017265196454,
0.4506285741562177,
0.46164457218266947,
0.4721443994106999,
0.48213760866325356,
0.4916369149870809,
0.500658027405496,
0.5092194348626199,
0.5173421287135144,
0.5250492575630747,
0.5323657198923509,
0.5393177064040944,
0.5459322080141555,
0.5522365074672289,
0.5582576731090123,
0.5640220727423039,
0.5695549239890152,
0.574879895374597,
0.5800187696167812
],
[
0.3380273897305379,
0.32034632983753963,
0.302865494347452,
0.2857772675208493,
0.2693141537758174,
0.253755807950597,
0.23943397351394372,
0.22673149328268175,
0.21606962730326548,
0.20787727594727615,
0.20253913451314942,
0.2003295668544039,
0.20135215247713786,
0.20551073473427145,
0.21252653157643756,
0.22199301877834804,
0.2334443256446543,
0.24641430203657,
0.26047556136403177,
0.2752589405664705,
0.29045887292916217,
0.30583048556927417,
0.32118267360310143,
0.3363697454308142,
0.3512830592082133,
0.3658433694019646,
0.3799942118199811,
0.3936964367443172,
0.4069238708159533,
0.4196600096132164,
0.4318955972869264,
0.44362692896000355,
0.45485471012111645,
0.46558331953570264,
0.4758203430719449,
0.4855762707561713,
0.4948642748117602,
0.5037000100110278,
0.5121013980268306,
0.5200883740696313,
0.5276825869581231,
0.5349070532505484,
0.5417857726654751,
0.5483433162791651,
0.5546044013912241,
0.5605934679118338,
0.5663342709691882,
0.5718495034181724,
0.5771604602503627,
0.5822867547268964
],
[
0.34538230065106335,
0.3280911621288878,
0.3110374673850586,
0.29442205568364205,
0.27848480417036237,
0.2635092547599855,
0.24982405209500722,
0.2377976416333564,
0.22782163329500935,
0.22027882258434794,
0.21549592706714535,
0.21368920331818067,
0.21491968179214319,
0.21907622626975026,
0.22589438837849848,
0.2350028972223008,
0.24597956813437988,
0.25840001156829,
0.271871031559629,
0.286048542231731,
0.30064377841906054,
0.31542216522105204,
0.33019826981508876,
0.3448290727304555,
0.3592068753161391,
0.3732525680017196,
0.3869096318326737,
0.4001390374633795,
0.4129150775850041,
0.425222087053799,
0.43705195411886383,
0.4484022985058101,
0.45927518265052003,
0.4696762265246885,
0.479614009808466,
0.48909966361482965,
0.49814657426719733,
0.5067701413918358,
0.5149875503089609,
0.5228175336320963,
0.5302801089041627,
0.5373962881565335,
0.5441877618130575,
0.550676563786673,
0.5568847273385208,
0.5628339426474286,
0.5685452273672248,
0.5740386209655968,
0.5793329125273939,
0.584445410120433
],
[
0.35404584547003765,
0.3372767491566332,
0.32078747093876675,
0.30478377324424916,
0.2895077386435316,
0.2752398195285483,
0.2622969767556624,
0.2510239530654582,
0.2417744817684757,
0.23488057995032963,
0.23061196068164208,
0.22913354912968512,
0.23047393642304517,
0.23451673058416403,
0.2410186333935217,
0.2496473437338317,
0.26002622524688696,
0.27177391864827877,
0.28453272116749617,
0.2979850495369298,
0.3118603516737185,
0.32593559153192325,
0.3400319768355487,
0.35400981523239955,
0.36776269694900743,
0.3812117181140244,
0.3943001487413612,
0.40698875461187645,
0.41925185710703533,
0.43107413228176317,
0.44244809622416253,
0.4533721909380906,
0.46384936907881275,
0.4738860729946557,
0.48349150994047785,
0.49267713755561543,
0.50145628878252,
0.5098438810752598,
0.5178561694656112,
0.5255105159212562,
0.5328251580575536,
0.5398189686188241,
0.5465112034098426,
0.5529212398201377,
0.5590683110558513,
0.5649712429685201,
0.5706482011964393,
0.5761164564140612,
0.5813921749789562,
0.5864902413053816
],
[
0.36397922417070216,
0.3478506554021681,
0.3320450287828502,
0.31676871631406706,
0.30226033368574995,
0.2887903772012978,
0.276656692303471,
0.26617358419954057,
0.2576526969307646,
0.25137539996972474,
0.24755961276949934,
0.24632791611683186,
0.24768613440160683,
0.2515198435288997,
0.2576103454569333,
0.2656647777821464,
0.2753512677315478,
0.2863308334229924,
0.2982813241574436,
0.31091240223433875,
0.3239728781440875,
0.33725252140045603,
0.35058035470294907,
0.3638209738999144,
0.37686995351803,
0.3896490195325336,
0.4021014075722926,
0.41418764823344584,
0.42588190231514134,
0.4371688873782504,
0.44804138146174544,
0.4584982536865909,
0.4685429507852573,
0.47818236001894043,
0.48742596937930466,
0.4962852524953072,
0.5047732157119093,
0.5129040563175338,
0.5206928923809351,
0.5281555351647393,
0.5353082841103289,
0.5421677317678316,
0.5487505718242334,
0.5550734077302829,
0.5611525625579993,
0.5670038928496975,
0.5726426105353257,
0.5780831176520836,
0.5833388587218966,
0.5884221953281067
],
[
0.3750887741719627,
0.35969877562620634,
0.34467140480143615,
0.3302091555677296,
0.31654181877911103,
0.3039241434180967,
0.29262949590047044,
0.28293809173963597,
0.27511897727856455,
0.269406450946618,
0.26597395391158485,
0.2649108067183142,
0.2662080481324542,
0.2697578611417305,
0.2753670030175101,
0.2827803381139764,
0.2917082551787486,
0.3018521831747806,
0.3129246309149008,
0.3246626313998313,
0.33683518002592344,
0.3492460226090908,
0.36173324280404495,
0.37416686767619056,
0.3864453975629699,
0.39849188727141555,
0.4102499920869499,
0.42168023847996217,
0.4327566705444125,
0.4434639457823896,
0.4537948990344566,
0.46374855578485186,
0.4733285522322463,
0.482541906631603,
0.4913980819340586,
0.49990828128125836,
0.508084923295575,
0.5159412515601037,
0.5234910408460586,
0.5307483705948033,
0.537727443348216,
0.5444424319877093,
0.5509073447337257,
0.5571359009378964,
0.5631414138884647,
0.5689366792765894,
0.5745338697543034,
0.5799444372493379,
0.5851790254616643,
0.5902473953107475
],
[
0.38723663957272114,
0.372659043929635,
0.35847699438910574,
0.34488501221766166,
0.33209965074456826,
0.32035575883388745,
0.3098992048858851,
0.3009752757929509,
0.29381263718930334,
0.28860397019247935,
0.28548597298941353,
0.2845227031464298,
0.2856963866612249,
0.28890833441866304,
0.2939898982976617,
0.300720701579821,
0.30884992410701045,
0.3181166167597175,
0.3282663486360677,
0.33906308752884,
0.35029644762198453,
0.36178510525210844,
0.37337738275734783,
0.38494992761199215,
0.39640523368949326,
0.40766855955783654,
0.41868463500951913,
0.42941441969891353,
0.43983208222005377,
0.4499222970905661,
0.4596779050504126,
0.4690979447639351,
0.4781860385712859,
0.48694909909560785,
0.49539631522662336,
0.5035383733502893,
0.511386870934607,
0.5189538832306766,
0.526251648742039,
0.5332923444216987,
0.5400879267416162,
0.5466500195502121,
0.5529898338656135,
0.5591181084259437,
0.5650450629635857,
0.5707803588330128,
0.5763330638403631,
0.5817116199233238,
0.5869238137269311,
0.5919767511252237
],
[
0.40025378757546487,
0.38653733714856264,
0.37324044794284095,
0.36054636538395846,
0.34865526684301507,
0.33777971262266615,
0.3281371654213222,
0.3199392585569284,
0.31337810196492194,
0.30861082249423394,
0.30574452227921345,
0.30482448243949967,
0.3058282820983843,
0.30866736988892374,
0.3131958511316226,
0.31922456280038036,
0.3265375768156544,
0.3349083292124355,
0.3441133549426717,
0.3539426322599188,
0.3642064114415302,
0.37473894799492596,
0.38539979497782645,
0.39607333208335554,
0.4066671243255199,
0.41710958286994493,
0.42734728309183156,
0.43734219501884625,
0.44706900137154204,
0.4565126162304612,
0.4656659698409165,
0.4745280895396009,
0.483102481136154,
0.4913957975441997,
0.49941677043718186,
0.5071753747185807,
0.5146821932896696,
0.5219479498051671,
0.5289831788950173,
0.5357980060112559,
0.5424020121688334,
0.5488041621050804,
0.5550127776276347,
0.5610355410740732,
0.5668795168217569,
0.5725511816249205,
0.5780564571741268,
0.5834007406202707,
0.5885889308293903,
0.5936254497908529
],
[
0.4139533024895513,
0.4011230427300251,
0.3887265366939039,
0.37693342595905865,
0.3659256884422956,
0.355892775926926,
0.34702444968726964,
0.33950129228309095,
0.3334833641733516,
0.32909809952508445,
0.3264291208011969,
0.32550793452921845,
0.3263102204504913,
0.32875760448204366,
0.33272464981069605,
0.3380497303736641,
0.3445478423571748,
0.3520233967977108,
0.36028148848940816,
0.36913678569363206,
0.3784197884598627,
0.38798062929093896,
0.39769081768845166,
0.4074434031528676,
0.417152009888997,
0.42674913100035144,
0.43618399228640675,
0.4454202220985638,
0.4544335002652388,
0.4632093070041323,
0.4717408511521055,
0.4800272245989659,
0.48807180515467885,
0.49588091195525186,
0.5034627047488561,
0.5108263099052295,
0.5179811507646039,
0.5249364571353271,
0.5317009276799896,
0.5382825190913865,
0.5446883370008805,
0.5509246052506656,
0.5569966923423196,
0.5629091764282662,
0.568665933030182,
0.5742702326317846,
0.579724838275472,
0.5850320961616498,
0.5901940148820496,
0.5952123312089386
],
[
0.4281424136866786,
0.4162025703749738,
0.40470095644646836,
0.39379225500965753,
0.38363957765238665,
0.3744096599108951,
0.3662663274051644,
0.3593623758197236,
0.35383037418569857,
0.3497733107891451,
0.3472563301076841,
0.34630090456822926,
0.3468825367321195,
0.34893250671595205,
0.35234342427156,
0.35697765910252904,
0.3626773182523866,
0.3692743972552132,
0.3765999883980199,
0.38449183747392984,
0.39279995212636726,
0.401390286223229,
0.41014672486395143,
0.41897168704545357,
0.42778567979932886,
0.43652611106158173,
0.44514562273385067,
0.4536101550441556,
0.4618969058961162,
0.46999230743424175,
0.47789010726794084,
0.4855896133919713,
0.49309413914332706,
0.5004096667611159,
0.5075437344760543,
0.5145045418023209,
0.5213002601712985,
0.5279385306818837,
0.534426127120607,
0.5407687602230222,
0.5469709981978539,
0.5530362786689533,
0.5589669882808885,
0.5647645881274913,
0.5704297657387576,
0.5759625974110972,
0.5813627079795983,
0.5866294184950048,
0.5917618754832581,
0.5967591583638329
],
[
0.4426323635703067,
0.43156995988818364,
0.4209413853442942,
0.41088585941598094,
0.4015478633457861,
0.39307263622697486,
0.38560042049122434,
0.37925967390000753,
0.37415972439913836,
0.3703836020115378,
0.3679819565595155,
0.3669689757949878,
0.367321006563024,
0.3689781759403293,
0.3718488119966033,
0.37581601774203127,
0.38074547837961126,
0.38649353161837924,
0.3929146735675513,
0.39986792749315664,
0.4072217805387596,
0.41485762982748725,
0.42267184464129104,
0.430576644801285,
0.438500031908866,
0.44638500899485006,
0.4541883021125251,
0.4618787663424273,
0.4694356257148889,
0.47684666543552895,
0.4841064671235365,
0.4912147539798867,
0.4981748927548559,
0.5049925826950337,
0.51167474785608,
0.5182286378230124,
0.5246611326112335,
0.530978240054595,
0.5371847681490207,
0.5432841505205315,
0.5492784003797697,
0.5551681669700469,
0.5609528685380579,
0.5666308771237233,
0.5721997327809363,
0.5776563679511434,
0.5829973263286277,
0.5882189643849415,
0.593317627485556,
0.5982897960032898
],
[
0.45724579773475127,
0.44703443381531505,
0.43724490408572303,
0.4280011280434665,
0.4194298264735448,
0.41165645322186567,
0.40480025379519663,
0.39896868602416147,
0.39425161448384205,
0.3907158469435312,
0.388400666605564,
0.3873149818918398,
0.3874365464964559,
0.3887134198687168,
0.39106750738910073,
0.3943997248137019,
0.39859614416198463,
0.40353442987831023,
0.4090899514229867,
0.41514111677798043,
0.42157365737136737,
0.42828376554244824,
0.43518011662002615,
0.4421848925468019,
0.44923396812312255,
0.45627643486345243,
0.46327363199081767,
0.47019783797795395,
0.4770307553016428,
0.48376189935417024,
0.49038698168041095,
0.49690635871688665,
0.5033236002153014,
0.5096442164449552,
0.5158745698821591,
0.5220209852145186,
0.5280890609916286,
0.5340831771179967,
0.5400061846751698,
0.5458592583992176,
0.5516418876530571,
0.5573519790006444,
0.5629860425048642,
0.5685394345177694,
0.5740066317879424,
0.5793815148657822,
0.5846576426822642,
0.5898285044366391,
0.5948877392059723,
0.5998293176915989
],
[
0.47182176750084737,
0.46242518116908743,
0.45343231446946614,
0.44495243084317204,
0.4370957569424942,
0.4299699058931694,
0.4236757123357976,
0.418302702374338,
0.41392453806137053,
0.4105948678704734,
0.4083440507136916,
0.4071771770660299,
0.4070736805356442,
0.4079886358720473,
0.40985561643115337,
0.4125907863334617,
0.41609777239627266,
0.4202728186973697,
0.42500976686473685,
0.43020450324876935,
0.43575863810573284,
0.4415823035605138,
0.4475960579993578,
0.4537319569669642,
0.45993389510373495,
0.4661573452216692,
0.47236862579115363,
0.4785438228893244,
0.48466748165839574,
0.4907311686518098,
0.49673199196326184,
0.5026711516943643,
0.5085525795109714,
0.5143817128553076,
0.5201644368014319,
0.5259062145631739,
0.5316114163726816,
0.5372828460396504,
0.5429214552609027,
0.5485262280008221,
0.5540942113022796,
0.5596206649220183,
0.5650993002837928,
0.5705225793185223,
0.5758820455745285,
0.5811686631754163,
0.5863731433503182,
0.5914862429148836,
0.596499023824978,
0.6014030674080268
],
[
0.48621866605560976,
0.4775938649975911,
0.4693500393729404,
0.4615827528055654,
0.4543872133730929,
0.44785519153018916,
0.44207155789228386,
0.4371106380882161,
0.43303265685513936,
0.4298805951916603,
0.42767779434698616,
0.4264265963163979,
0.4261082119219906,
0.42668386883545373,
0.428097139583543,
0.43027721471402813,
0.433142794738347,
0.43660623935916326,
0.44057763202246086,
0.4449684783861693,
0.4496948397453056,
0.4546797884916382,
0.45985514896081847,
0.46516254645094124,
0.4705538281346662,
0.47599094395445346,
0.481445386973911,
0.486897294889697,
0.4923343107582651,
0.4977502938658826,
0.50314396262498,
0.5085175412929042,
0.5138754715994002,
0.5192232392057385,
0.5245663533923225,
0.5299095066187163,
0.5352559288700739,
0.5406069403761455,
0.5459616958406015,
0.5513171042583705,
0.556667901186293,
0.562006845299572,
0.5673250083628398,
0.572612127314951,
0.5778569887638892,
0.5830478194156821,
0.5881726603324032,
0.5932197079175872,
0.5981776096837856,
0.6030357077636602
],
[
0.5003155107200993,
0.49241539239357746,
0.48487026596098076,
0.47776312840973645,
0.4711757183532396,
0.46518590036156915,
0.45986481701922666,
0.4552739757861838,
0.4514624848083827,
0.44846467916740435,
0.44629837602293315,
0.4449639576885586,
0.44444440759558645,
0.44470632573149255,
0.4457018446000918,
0.44737127333868276,
0.44964623239972173,
0.4524530127918875,
0.4557159020662,
0.4593602564883761,
0.4633151536661643,
0.4675155205110026,
0.47190368840603464,
0.47643037501311086,
0.481055127942127,
0.4857462897804874,
0.4904805584756927,
0.49524222404427376,
0.5000221641918654,
0.5048166793705197,
0.5096262432310459,
0.5144542380348683,
0.5193057367175906,
0.5241863841131653,
0.529101419491716,
0.534054871257996,
0.5390489427712795,
0.5440835963074666,
0.5491563308299043,
0.5542621391384853,
0.5593936217328667,
0.5645412288038013,
0.5696935983838202,
0.5748379578258083,
0.5799605571866732,
0.5850471063455991,
0.5900831922466545,
0.5950546579558806,
0.5999479307305529,
0.6047502915646057
],
[
0.5140119847500955,
0.5067874411443167,
0.4998898943981753,
0.4933909836663707,
0.48736050935097175,
0.4818642393248256,
0.4769615854578202,
0.4727032882393677,
0.46912927605449445,
0.46626687867826283,
0.4641295657319617,
0.4627163475196114,
0.46201192007303327,
0.4619875657677295,
0.4626027466805489,
0.4638072621530297,
0.4655437949684757,
0.46775064788577164,
0.47036447442155077,
0.4733228305668884,
0.4765664106358139,
0.48004087310305266,
0.48369820460261587,
0.4874976077386514,
0.49140592868379984,
0.49539766317543504,
0.49945459510627366,
0.5035651316410917,
0.5077234039595949,
0.5119282044077617,
0.51618182979501,
0.5204888972457138,
0.5248551936164559,
0.5292866121376166,
0.5337882207673278,
0.5383634960234592,
0.5430137442361921,
0.5477377198769828,
0.5525314386386516,
0.5573881720727645,
0.5622986015659598,
0.5672511028081318,
0.5722321279710954,
0.5772266515939318,
0.5822186474158222,
0.5871915666591937,
0.5921287929713934,
0.597014054768606,
0.6018317815142186,
0.6065673960193201
],
[
0.5272276050301478,
0.5206291543287941,
0.5143287334968042,
0.5083878370820648,
0.502865783624251,
0.4978178929752479,
0.4932936034115399,
0.48933464020480655,
0.4859733642883269,
0.4832314344431257,
0.4811189056374896,
0.4796338587872214,
0.4787626153927593,
0.47848053947030006,
0.4787533762818795,
0.4795390304440497,
0.4807896516161647,
0.4824538780066882,
0.48447908700703246,
0.4868135160790481,
0.48940814139485195,
0.49221823180645763,
0.4952045270769929,
0.4983340185997153,
0.5015803360504287,
0.5049237637378614,
0.5083509258691411,
0.5118541910466547,
0.515430853721331,
0.519082154633385,
0.5228122038757224,
0.5266268693192827,
0.5305326898075015,
0.5345358667872323,
0.5386413800020867,
0.5428522628081943,
0.5471690610803132,
0.5515894872714883,
0.5561082688378137,
0.560717178852903,
0.5654052270467947,
0.5701589823484471,
0.5749629936503612,
0.5798002740006347,
0.5846528145258267,
0.5895020976355713,
0.594329583856329,
0.5991171523407065,
0.6038474810899855,
0.6085043586961187
],
[
0.539900316513553,
0.5338793240201434,
0.5281272717223353,
0.5226966802147908,
0.5176377354485238,
0.5129967861452334,
0.5088148268469492,
0.5051260560549237,
0.5019566084108528,
0.49932356012463536,
0.49723429601111296,
0.49568630437246985,
0.49466743436195176,
0.494156613067887,
0.49412498127772414,
0.494537372867814,
0.49535403732642014,
0.49653249070107536,
0.49802937789178214,
0.49980223745425345,
0.5018110763978036,
0.504019683757142,
0.5063966349915535,
0.5089159621025107,
0.5115574851319561,
0.514306818544535,
0.5171550806396206,
0.5200983456788973,
0.5231368870918666,
0.5262742661534338,
0.5295163240239988,
0.5328701359912043,
0.5363429850706906,
0.5399414077473165,
0.5436703576266274,
0.5475325233850482,
0.5515278261747832,
0.5556531093145791,
0.5599020206094284,
0.5642650759757991,
0.5687298831099005,
0.5732814964274164,
0.5779028698351718,
0.5825753721527529,
0.5872793309627655,
0.5919945738679102,
0.5967009409572328,
0.6013787480665265,
0.6060091865271017,
0.6105746509986274
],
[
0.5519847475748524,
0.5464943034319639,
0.541244258114572,
0.5362792575875848,
0.5316415822863815,
0.5273699167831588,
0.5234981343279846,
0.5200541673835464,
0.5170590401170172,
0.5145261367109003,
0.5124607693431777,
0.51086009193449,
0.5097133817201036,
0.509002682979366,
0.5087037791704765,
0.508787434702526,
0.5092208285133041,
0.5099690903475694,
0.5109968477075715,
0.5122696962349046,
0.5137555172522315,
0.5154255813644646,
0.5172553943833771,
0.5192252596787599,
0.5213205481104854,
0.52353168217324,
0.525853854494592,
0.5282865122248508,
0.5308326481080622,
0.5334979460848528,
0.5362898340377592,
0.5392164985635222,
0.5422859162357553,
0.5455049525565285,
0.5488785736934692,
0.5524092074023859,
0.5560962787619393,
0.5599359342733751,
0.563920955466329,
0.5680408514276016,
0.5722821095848848,
0.5766285763780673,
0.5810619345856655,
0.5855622421559201,
0.5901084982165158,
0.5946792050472827,
0.5992528995819232,
0.603808633785461,
0.6083263893925609,
0.6127874184436557
],
[
0.563450301034576,
0.55844581915325,
0.5536542547505554,
0.5491133914769105,
0.5448587051131423,
0.540922362422424,
0.5373322526339105,
0.534111107822211,
0.5312757704498405,
0.528836663152031,
0.5267975069950203,
0.5251553202336271,
0.5239007111669568,
0.5230184578922632,
0.5224883468669852,
0.5222862235293083,
0.5223851937616022,
0.5227569060045124,
0.5233728408217575,
0.5242055373711848,
0.5252296936449456,
0.5264230882440197,
0.5277672845135952,
0.5292480918811128,
0.5308557732568792,
0.5325850007109699,
0.5344345739045416,
0.5364069266607912,
0.5385074564060928,
0.5407437187780763,
0.5431245352161049,
0.5456590645083437,
0.5483558897623236,
0.5512221698742582,
0.5542628992561891,
0.5574803115524039,
0.5608734528395452,
0.5644379381304625,
0.5681658928558259,
0.5720460694180218,
0.5760641188681909,
0.5802029900180071,
0.5844434233360725,
0.5887645049313791,
0.5931442466101539,
0.5975601609685013,
0.6019898051494478,
0.6064112725842575,
0.6108036181159128,
0.615147207822208
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.621769 (SEM: 0)
x1: 0.402881
x2: 0.519896
x3: 0.808794
x4: 0.263642
x5: 0.483005
x6: 0.479485",
"Arm 10_0
hartmann6: -0.00556795 (SEM: 0)
x1: 0.710347
x2: 0.827351
x3: 0.717838
x4: 0.86011
x5: 0.805492
x6: 0.5756",
"Arm 11_0
hartmann6: -0.145675 (SEM: 0)
x1: 0.17197
x2: 0.753671
x3: 0.547094
x4: 0.882289
x5: 0.0988043
x6: 0.325281",
"Arm 12_0
hartmann6: -0.870246 (SEM: 0)
x1: 0.310816
x2: 0.5599
x3: 0.66414
x4: 0.262765
x5: 0.450429
x6: 0.435467",
"Arm 13_0
hartmann6: -0.754096 (SEM: 0)
x1: 0.288017
x2: 0.598047
x3: 0.549521
x4: 0.22857
x5: 0.468538
x6: 0.393348",
"Arm 14_0
hartmann6: -1.18978 (SEM: 0)
x1: 0.259128
x2: 0.511634
x3: 0.677838
x4: 0.237766
x5: 0.385871
x6: 0.444856",
"Arm 15_0
hartmann6: -1.31751 (SEM: 0)
x1: 0.21997
x2: 0.471755
x3: 0.687636
x4: 0.211149
x5: 0.348144
x6: 0.440441",
"Arm 16_0
hartmann6: -1.54781 (SEM: 0)
x1: 0.180569
x2: 0.457815
x3: 0.697414
x4: 0.169267
x5: 0.324673
x6: 0.507178",
"Arm 17_0
hartmann6: -1.62434 (SEM: 0)
x1: 0.150211
x2: 0.461165
x3: 0.690977
x4: 0.135457
x5: 0.313988
x6: 0.563768",
"Arm 18_0
hartmann6: -2.15402 (SEM: 0)
x1: 0.17356
x2: 0.392335
x3: 0.670103
x4: 0.162717
x5: 0.316122
x6: 0.615742",
"Arm 19_0
hartmann6: -2.56685 (SEM: 0)
x1: 0.191686
x2: 0.34264
x3: 0.636114
x4: 0.187703
x5: 0.319315
x6: 0.671735",
"Arm 1_0
hartmann6: -0.467627 (SEM: 0)
x1: 0.217183
x2: 0.639794
x3: 0.754175
x4: 0.55655
x5: 0.38913
x6: 0.517743",
"Arm 20_0
hartmann6: -2.82445 (SEM: 0)
x1: 0.212492
x2: 0.277217
x3: 0.588966
x4: 0.217566
x5: 0.32787
x6: 0.738716",
"Arm 21_0
hartmann6: -2.52891 (SEM: 0)
x1: 0.21652
x2: 0.226635
x3: 0.640087
x4: 0.20377
x5: 0.259812
x6: 0.78795",
"Arm 22_0
hartmann6: -2.6932 (SEM: 0)
x1: 0.187797
x2: 0.263158
x3: 0.532839
x4: 0.229975
x5: 0.393136
x6: 0.739475",
"Arm 23_0
hartmann6: -2.74372 (SEM: 0)
x1: 0.264919
x2: 0.295277
x3: 0.528557
x4: 0.213041
x5: 0.327328
x6: 0.749514",
"Arm 24_0
hartmann6: -2.87355 (SEM: 0)
x1: 0.206811
x2: 0.285102
x3: 0.572345
x4: 0.28981
x5: 0.326301
x6: 0.747905",
"Arm 25_0
hartmann6: -2.59102 (SEM: 0)
x1: 0.234144
x2: 0.291138
x3: 0.618627
x4: 0.293995
x5: 0.353906
x6: 0.779104",
"Arm 26_0
hartmann6: -3.10765 (SEM: 0)
x1: 0.184217
x2: 0.26031
x3: 0.525743
x4: 0.279585
x5: 0.299749
x6: 0.706335",
"Arm 27_0
hartmann6: -3.22343 (SEM: 0)
x1: 0.171758
x2: 0.221396
x3: 0.486728
x4: 0.293947
x5: 0.29196
x6: 0.664825",
"Arm 28_0
hartmann6: -3.14229 (SEM: 0)
x1: 0.120226
x2: 0.191247
x3: 0.420524
x4: 0.302147
x5: 0.290187
x6: 0.674094",
"Arm 2_0
hartmann6: -0.0771752 (SEM: 0)
x1: 0.996231
x2: 0.646439
x3: 0.849897
x4: 0.995196
x5: 0.13908
x6: 0.609664",
"Arm 3_0
hartmann6: -0.514438 (SEM: 0)
x1: 0.178761
x2: 0.685732
x3: 0.242967
x4: 0.375803
x5: 0.617229
x6: 0.183017",
"Arm 4_0
hartmann6: -0.588432 (SEM: 0)
x1: 0.500038
x2: 0.89515
x3: 0.509177
x4: 0.945664
x5: 0.473796
x6: 0.138033",
"Arm 5_0
hartmann6: -0.0279137 (SEM: 0)
x1: 0.396702
x2: 0.278378
x3: 0.848153
x4: 0.090392
x5: 0.825946
x6: 0.0588912",
"Arm 6_0
hartmann6: -0.350053 (SEM: 0)
x1: 0.167041
x2: 0.67031
x3: 0.203851
x4: 0.285772
x5: 0.0959202
x6: 0.374928",
"Arm 7_0
hartmann6: -0.061582 (SEM: 0)
x1: 0.966608
x2: 0.0530629
x3: 0.397511
x4: 0.105723
x5: 0.0545739
x6: 0.338692",
"Arm 8_0
hartmann6: -0.175442 (SEM: 0)
x1: 0.959177
x2: 0.30908
x3: 0.926258
x4: 0.657565
x5: 0.500267
x6: 0.794314",
"Arm 9_0
hartmann6: -0.0145184 (SEM: 0)
x1: 0.699031
x2: 0.946268
x3: 0.655471
x4: 0.624671
x5: 0.592031
x6: 0.775368"
],
"type": "scatter",
"x": [
0.4028814136981964,
0.7103469995781779,
0.17196986265480518,
0.31081594275321706,
0.2880174433319766,
0.25912830594012753,
0.21996989583144566,
0.18056858335304043,
0.1502106931535988,
0.17356030059917155,
0.19168646137496248,
0.2171827182173729,
0.21249192338150685,
0.21651961499690775,
0.18779735542569903,
0.2649191242857035,
0.20681076889446282,
0.2341444678511272,
0.18421697687132885,
0.17175792086072647,
0.1202259250188612,
0.9962308257818222,
0.17876088339835405,
0.5000381646677852,
0.39670159202069044,
0.16704079788178205,
0.9666077196598053,
0.9591769743710756,
0.6990306936204433
],
"xaxis": "x",
"y": [
0.5198963284492493,
0.8273508353158832,
0.7536710789427161,
0.5598996695791404,
0.5980472172088396,
0.5116341307688471,
0.471754799267041,
0.4578145898717286,
0.4611653165202281,
0.39233537103354466,
0.34263973501808237,
0.6397942434996367,
0.2772171768112323,
0.22663465985530845,
0.26315849501645494,
0.295276850392257,
0.2851018693466092,
0.29113817867428476,
0.2603103544421217,
0.22139587926586693,
0.19124677264883938,
0.6464394517242908,
0.6857324400916696,
0.8951499769464135,
0.2783780237659812,
0.6703095184639096,
0.053062873892486095,
0.3090796750038862,
0.9462682828307152
],
"yaxis": "y"
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"showlegend": false,
"text": [
"Arm 0_0
hartmann6: -0.621769 (SEM: 0)
x1: 0.402881
x2: 0.519896
x3: 0.808794
x4: 0.263642
x5: 0.483005
x6: 0.479485",
"Arm 10_0
hartmann6: -0.00556795 (SEM: 0)
x1: 0.710347
x2: 0.827351
x3: 0.717838
x4: 0.86011
x5: 0.805492
x6: 0.5756",
"Arm 11_0
hartmann6: -0.145675 (SEM: 0)
x1: 0.17197
x2: 0.753671
x3: 0.547094
x4: 0.882289
x5: 0.0988043
x6: 0.325281",
"Arm 12_0
hartmann6: -0.870246 (SEM: 0)
x1: 0.310816
x2: 0.5599
x3: 0.66414
x4: 0.262765
x5: 0.450429
x6: 0.435467",
"Arm 13_0
hartmann6: -0.754096 (SEM: 0)
x1: 0.288017
x2: 0.598047
x3: 0.549521
x4: 0.22857
x5: 0.468538
x6: 0.393348",
"Arm 14_0
hartmann6: -1.18978 (SEM: 0)
x1: 0.259128
x2: 0.511634
x3: 0.677838
x4: 0.237766
x5: 0.385871
x6: 0.444856",
"Arm 15_0
hartmann6: -1.31751 (SEM: 0)
x1: 0.21997
x2: 0.471755
x3: 0.687636
x4: 0.211149
x5: 0.348144
x6: 0.440441",
"Arm 16_0
hartmann6: -1.54781 (SEM: 0)
x1: 0.180569
x2: 0.457815
x3: 0.697414
x4: 0.169267
x5: 0.324673
x6: 0.507178",
"Arm 17_0
hartmann6: -1.62434 (SEM: 0)
x1: 0.150211
x2: 0.461165
x3: 0.690977
x4: 0.135457
x5: 0.313988
x6: 0.563768",
"Arm 18_0
hartmann6: -2.15402 (SEM: 0)
x1: 0.17356
x2: 0.392335
x3: 0.670103
x4: 0.162717
x5: 0.316122
x6: 0.615742",
"Arm 19_0
hartmann6: -2.56685 (SEM: 0)
x1: 0.191686
x2: 0.34264
x3: 0.636114
x4: 0.187703
x5: 0.319315
x6: 0.671735",
"Arm 1_0
hartmann6: -0.467627 (SEM: 0)
x1: 0.217183
x2: 0.639794
x3: 0.754175
x4: 0.55655
x5: 0.38913
x6: 0.517743",
"Arm 20_0
hartmann6: -2.82445 (SEM: 0)
x1: 0.212492
x2: 0.277217
x3: 0.588966
x4: 0.217566
x5: 0.32787
x6: 0.738716",
"Arm 21_0
hartmann6: -2.52891 (SEM: 0)
x1: 0.21652
x2: 0.226635
x3: 0.640087
x4: 0.20377
x5: 0.259812
x6: 0.78795",
"Arm 22_0
hartmann6: -2.6932 (SEM: 0)
x1: 0.187797
x2: 0.263158
x3: 0.532839
x4: 0.229975
x5: 0.393136
x6: 0.739475",
"Arm 23_0
hartmann6: -2.74372 (SEM: 0)
x1: 0.264919
x2: 0.295277
x3: 0.528557
x4: 0.213041
x5: 0.327328
x6: 0.749514",
"Arm 24_0
hartmann6: -2.87355 (SEM: 0)
x1: 0.206811
x2: 0.285102
x3: 0.572345
x4: 0.28981
x5: 0.326301
x6: 0.747905",
"Arm 25_0
hartmann6: -2.59102 (SEM: 0)
x1: 0.234144
x2: 0.291138
x3: 0.618627
x4: 0.293995
x5: 0.353906
x6: 0.779104",
"Arm 26_0
hartmann6: -3.10765 (SEM: 0)
x1: 0.184217
x2: 0.26031
x3: 0.525743
x4: 0.279585
x5: 0.299749
x6: 0.706335",
"Arm 27_0
hartmann6: -3.22343 (SEM: 0)
x1: 0.171758
x2: 0.221396
x3: 0.486728
x4: 0.293947
x5: 0.29196
x6: 0.664825",
"Arm 28_0
hartmann6: -3.14229 (SEM: 0)
x1: 0.120226
x2: 0.191247
x3: 0.420524
x4: 0.302147
x5: 0.290187
x6: 0.674094",
"Arm 2_0
hartmann6: -0.0771752 (SEM: 0)
x1: 0.996231
x2: 0.646439
x3: 0.849897
x4: 0.995196
x5: 0.13908
x6: 0.609664",
"Arm 3_0
hartmann6: -0.514438 (SEM: 0)
x1: 0.178761
x2: 0.685732
x3: 0.242967
x4: 0.375803
x5: 0.617229
x6: 0.183017",
"Arm 4_0
hartmann6: -0.588432 (SEM: 0)
x1: 0.500038
x2: 0.89515
x3: 0.509177
x4: 0.945664
x5: 0.473796
x6: 0.138033",
"Arm 5_0
hartmann6: -0.0279137 (SEM: 0)
x1: 0.396702
x2: 0.278378
x3: 0.848153
x4: 0.090392
x5: 0.825946
x6: 0.0588912",
"Arm 6_0
hartmann6: -0.350053 (SEM: 0)
x1: 0.167041
x2: 0.67031
x3: 0.203851
x4: 0.285772
x5: 0.0959202
x6: 0.374928",
"Arm 7_0
hartmann6: -0.061582 (SEM: 0)
x1: 0.966608
x2: 0.0530629
x3: 0.397511
x4: 0.105723
x5: 0.0545739
x6: 0.338692",
"Arm 8_0
hartmann6: -0.175442 (SEM: 0)
x1: 0.959177
x2: 0.30908
x3: 0.926258
x4: 0.657565
x5: 0.500267
x6: 0.794314",
"Arm 9_0
hartmann6: -0.0145184 (SEM: 0)
x1: 0.699031
x2: 0.946268
x3: 0.655471
x4: 0.624671
x5: 0.592031
x6: 0.775368"
],
"type": "scatter",
"x": [
0.4028814136981964,
0.7103469995781779,
0.17196986265480518,
0.31081594275321706,
0.2880174433319766,
0.25912830594012753,
0.21996989583144566,
0.18056858335304043,
0.1502106931535988,
0.17356030059917155,
0.19168646137496248,
0.2171827182173729,
0.21249192338150685,
0.21651961499690775,
0.18779735542569903,
0.2649191242857035,
0.20681076889446282,
0.2341444678511272,
0.18421697687132885,
0.17175792086072647,
0.1202259250188612,
0.9962308257818222,
0.17876088339835405,
0.5000381646677852,
0.39670159202069044,
0.16704079788178205,
0.9666077196598053,
0.9591769743710756,
0.6990306936204433
],
"xaxis": "x2",
"y": [
0.5198963284492493,
0.8273508353158832,
0.7536710789427161,
0.5598996695791404,
0.5980472172088396,
0.5116341307688471,
0.471754799267041,
0.4578145898717286,
0.4611653165202281,
0.39233537103354466,
0.34263973501808237,
0.6397942434996367,
0.2772171768112323,
0.22663465985530845,
0.26315849501645494,
0.295276850392257,
0.2851018693466092,
0.29113817867428476,
0.2603103544421217,
0.22139587926586693,
0.19124677264883938,
0.6464394517242908,
0.6857324400916696,
0.8951499769464135,
0.2783780237659812,
0.6703095184639096,
0.053062873892486095,
0.3090796750038862,
0.9462682828307152
],
"yaxis": "y2"
}
],
"layout": {
"annotations": [
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Mean",
"x": 0.25,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
},
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Standard Error",
"x": 0.8,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
}
],
"autosize": false,
"height": 450,
"hovermode": "closest",
"legend": {
"orientation": "h",
"x": 0,
"y": -0.25
},
"margin": {
"b": 100,
"l": 35,
"pad": 0,
"r": 35,
"t": 35
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"width": 950,
"xaxis": {
"anchor": "y",
"autorange": false,
"domain": [
0.05,
0.45
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x1"
},
"type": "linear"
},
"xaxis2": {
"anchor": "y2",
"autorange": false,
"domain": [
0.6,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x1"
},
"type": "linear"
},
"yaxis": {
"anchor": "x",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x2"
},
"type": "linear"
},
"yaxis2": {
"anchor": "x2",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"type": "linear"
}
}
},
"text/html": [
"