{
"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 12-16 16:39:14] 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 12-16 16:39:14] 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 12-16 16:39:14] 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 12-16 16:39:14] 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 12-16 16:39:14] 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 12-16 16:39:14] 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 12-16 16:39:14] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] 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 12-16 16:39:14] 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 12-16 16:39:14] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:20] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:26] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:32] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:37] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:43] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:49] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:39:55] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:02] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:08] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:14] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:20] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:26] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:32] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:38] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:44] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:50] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-16 16:40:55] 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.40515050898441496,\n",
" 'x2': 0.8764179218174042,\n",
" 'x3': 0.43999128612860505,\n",
" 'x4': 0.526927536356219,\n",
" 'x5': 0.33013261711814934,\n",
" 'x6': 0.0}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 1.2298333498022433, 'hartmann6': -3.029742536290433}"
]
},
"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": [
[
-0.07851770466540653,
-0.07476885637331387,
-0.07119736905796292,
-0.06781107495585947,
-0.06461581614360312,
-0.061615308085778975,
-0.05881104364368617,
-0.056202244329062956,
-0.053785864999391975,
-0.05155665731435033,
-0.049507296082573315,
-0.047628571104735395,
-0.045909645251984155,
-0.04433837730713852,
-0.042901705558769265,
-0.04158608532224306,
-0.04037797054677894,
-0.0392643265789383,
-0.03823315815904871,
-0.03727403404140861,
-0.03637858749873357,
-0.035540970656810944,
-0.0347582403577541,
-0.034030654276939964,
-0.03336185844840989,
-0.03275895121112171,
-0.032232413764495815,
-0.03179590377407271,
-0.031465915419052304,
-0.03126131644508712,
-0.031202779634877942,
-0.03131213208491468,
-0.031611650281335946,
-0.03212333181097604,
-0.032868175394917154,
-0.03386549974428266,
-0.0351323286589692,
-0.03668286513639263,
-0.03852807147905091,
-0.04067536600649091,
-0.04312844052100995,
-0.04588719662688956,
-0.048947793745849455,
-0.05230279746751343,
-0.05594141385410056,
-0.0598497934918224,
-0.06401138836051057,
-0.06840734481938626,
-0.07301691698710533,
-0.07781788632135933
],
[
-0.08383564514128317,
-0.08031912067284519,
-0.07698266732280934,
-0.07383305266328655,
-0.07087488671358644,
-0.06811047760345701,
-0.06553973053211848,
-0.06316009757504326,
-0.060966585337509094,
-0.05895182658483711,
-0.057106220762381255,
-0.05541814672644996,
-0.05387424901777749,
-0.05245979661157851,
-0.05115911028249864,
-0.04995605156875438,
-0.04883456288772059,
-0.047779244778594965,
-0.04677595271530299,
-0.04581239269225401,
-0.044878692128758835,
-0.04396792088447643,
-0.04307653663940447,
-0.042204729833139054,
-0.04135664595722044,
-0.04054046729902905,
-0.03976834213860658,
-0.039056156621778304,
-0.03842315263511664,
-0.03789140341871411,
-0.037485166720914065,
-0.03723014235909139,
-0.03715266649932525,
-0.03727887833147825,
-0.037633895815586293,
-0.03824103575609861,
-0.039121109802382814,
-0.040291822468524474,
-0.041767290456841355,
-0.04355769509063123,
-0.04566907214778637,
-0.04810323640835945,
-0.05085783223232743,
-0.05392649676201866,
-0.05729911903007645,
-0.060962176336790685,
-0.06489912861534675,
-0.06909085193021247,
-0.07351609351202837,
-0.07815193257841402
],
[
-0.09025559054028132,
-0.08701784559182346,
-0.08396307111666879,
-0.0810967857934154,
-0.07842216560902182,
-0.07593989107317789,
-0.07364804075190856,
-0.07154203951494242,
-0.06961466938362704,
-0.06785615001444056,
-0.06625429461829346,
-0.06479474545933162,
-0.06346129096532727,
-0.0622362638921834,
-0.06110101691502334,
-0.06003646849792199,
-0.0590237080017052,
-0.05804464486299865,
-0.05708268252861182,
-0.05612339394081034,
-0.055155172087562154,
-0.054169826843573854,
-0.053163098418421484,
-0.05213505853626821,
-0.05109037323278576,
-0.050038405952504306,
-0.048993146356235306,
-0.047972958588257675,
-0.04700015218972631,
-0.04610038870019517,
-0.045301946480271416,
-0.0446348746152736,
-0.044130073190772445,
-0.04381834119548389,
-0.043729434467218,
-0.04389117439042001,
-0.04432864370457357,
-0.04506349926694764,
-0.046113423597065384,
-0.047491728275919964,
-0.04920711354234775,
-0.051263580395539354,
-0.05366048469163576,
-0.05639271744052465,
-0.0594509918959909,
-0.0628222160486509,
-0.06648992860413883,
-0.07043477720750813,
-0.07463501926495897,
-0.07906702792873221
],
[
-0.09784396577830434,
-0.09493536484590925,
-0.0922129016373261,
-0.08968064544127319,
-0.0873401177512515,
-0.08519013040029944,
-0.08322667325541655,
-0.08144286079148044,
-0.07982894641246185,
-0.0783724125635541,
-0.077058143432015,
-0.07586868531803848,
-0.07478459752402855,
-0.07378489382269371,
-0.07284757120447771,
-0.07195021868976548,
-0.07107069459185167,
-0.07018785587534582,
-0.06928231840306709,
-0.06833722222426997,
-0.06733897203843653,
-0.0662779200344148,
-0.06514895693271006,
-0.06395197767451144,
-0.06269219111493551,
-0.06138024841841139,
-0.06003217251615811,
-0.05866908061171838,
-0.0573167027060264,
-0.056004710647290956,
-0.05476588336049404,
-0.053635143709611977,
-0.05264851001492976,
-0.05184200989883381,
-0.051250605462511256,
-0.05090717673244449,
-0.05084160513816982,
-0.051079991074769904,
-0.05164403017343033,
-0.052550562671467405,
-0.05381130014799451,
-0.05543272466671623,
-0.05741614763449521,
-0.05975790980251239,
-0.0624496999266535,
-0.06547896758536476,
-0.06882940529717685,
-0.07248147606942101,
-0.07641296449268187,
-0.08059953213305437
],
[
-0.10666637557769465,
-0.10414129992389332,
-0.10180588748744346,
-0.0996625407606605,
-0.09771088687710894,
-0.09594760595265339,
-0.0943663124795937,
-0.09295750011092119,
-0.09170855978761683,
-0.09060388037344858,
-0.08962503971173286,
-0.0887510922457746,
-0.08795895698919065,
-0.08722390664021706,
-0.08652015496824106,
-0.08582153526204839,
-0.08510225767568724,
-0.0843377278818993,
-0.08350540379462157,
-0.08258566161657,
-0.0815626375830284,
-0.08042500806659814,
-0.07916666876398337,
-0.07778727404105679,
-0.07629260056650389,
-0.07469470530353983,
-0.07301185665592591,
-0.0712682286717945,
-0.06949336098513592,
-0.06772140065785126,
-0.0659901551560329,
-0.06433999719576056,
-0.06281267107061539,
-0.06145005550114002,
-0.0602929395443752,
-0.05937986559467212,
-0.058746087339700215,
-0.058422681423318745,
-0.058435840487808255,
-0.05880636333073752,
-0.05954934619699559,
-0.060674068664180125,
-0.062184058845614065,
-0.0640773161188537,
-0.06634666539022005,
-0.06898021489633,
-0.07196188941953785,
-0.07527201216334023,
-0.07888791097549563,
-0.08278452772551892
],
[
-0.116787007435326,
-0.1147039375602803,
-0.11281451705532586,
-0.11111924673977536,
-0.10961559925624875,
-0.10829783679900462,
-0.10715688568473747,
-0.10618027922580764,
-0.10535218005964431,
-0.10465349234421717,
-0.10406207297897141,
-0.103553049183155,
-0.10309924728297581,
-0.10267173435380084,
-0.10224047037604189,
-0.10177506377069467,
-0.10124561762375928,
-0.10062364772490529,
-0.09988304699953388,
-0.09900106441556034,
-0.09795926055210658,
-0.09674439739385177,
-0.09534921727586143,
-0.09377306591744838,
-0.09202231766438729,
-0.0901105676615157,
-0.08805856561954217,
-0.08589387865247256,
-0.08365028550929643,
-0.08136692026095405,
-0.07908719879284754,
-0.07685757491309508,
-0.0747261832541467,
-0.07274143244106712,
-0.07095061365523014,
-0.06939858666154264,
-0.06812659802025889,
-0.06717127544238866,
-0.06656382925457305,
-0.06632947804395017,
-0.06648710203729702,
-0.0670491157152453,
-0.06802154133901006,
-0.06940425788807791,
-0.07119139544454145,
-0.07337184311302536,
-0.07592983874551196,
-0.07884561056593975,
-0.08209604376168922,
-0.08565534877107794
],
[
-0.12826797544324253,
-0.12668954263337906,
-0.12530932067769196,
-0.12412565592334224,
-0.12313358535527297,
-0.12232464275954857,
-0.12168672586643514,
-0.12120403717747985,
-0.12085711096409535,
-0.12062293823105752,
-0.12047520018990876,
-0.12038461890183494,
-0.12031943113730414,
-0.12024598807066422,
-0.12012947909881033,
-0.11993477279570264,
-0.11962736180386602,
-0.11917439144488229,
-0.11854574427910503,
-0.11771514521562054,
-0.11666124471039596,
-0.11536863188707325,
-0.11382872593914628,
-0.11204049375475,
-0.11001094499715425,
-0.10775536322067625,
-0.10529724293249143,
-0.10266791728961111,
-0.09990587835877807,
-0.09705581020340104,
-0.0941673728998983,
-0.09129379128073234,
-0.08849031425175602,
-0.0858126177801708,
-0.08331522643259226,
-0.08105002459207089,
-0.07906491973121366,
-0.07740270742710731,
-0.07610017260061952,
-0.0751874453317789,
-0.07468761405960234,
-0.0746165852713242,
-0.07498316778950831,
-0.075789351905581,
-0.07703074891396855,
-0.0786971547842581,
-0.08077320227605134,
-0.08323906816765747,
-0.08607120584935402,
-0.08924307780146268
],
[
-0.14116860414549293,
-0.14016160510968867,
-0.13935808057862742,
-0.1387539513866517,
-0.1383415160065785,
-0.13810924402733282,
-0.13804163515632883,
-0.13811915783770257,
-0.13831828146063485,
-0.13861161549259537,
-0.13896816762285025,
-0.13935373105016835,
-0.1397314082918797,
-0.1400622752206535,
-0.14030618434203523,
-0.14042270052918604,
-0.140372155513677,
-0.14011679949654265,
-0.13962201957050113,
-0.13885758573353935,
-0.1377988768655809,
-0.13642803207306764,
-0.13473496833701037,
-0.13271820445030247,
-0.13038543462279806,
-0.12775380331955388,
-0.12484984582539815,
-0.12170907607692127,
-0.11837522329913075,
-0.11489914030596926,
-0.11133742707436112,
-0.1077508314260377,
-0.1042025025788762,
-0.10075618160369504,
-0.09747441467916473,
-0.0944168704255578,
-0.09163883218006852,
-0.08918992113994828,
-0.0871130885594874,
-0.08544389652288586,
-0.0842100890066122,
-0.08343143943495468,
-0.0831198486848066,
-0.08327965895022216,
-0.08390814399945556,
-0.08499613474980117,
-0.0865287401329714,
-0.08848612622204077,
-0.09084432085857286,
-0.0935760159616601
],
[
-0.15554465238372917,
-0.1551800204322331,
-0.15502496735364557,
-0.15507269902933674,
-0.15531245037966457,
-0.15572926482417015,
-0.15630384428674282,
-0.15701248539206658,
-0.15782711749467415,
-0.15871545759870986,
-0.1596412959690252,
-0.16056492420042512,
-0.16144371458860962,
-0.1622328557077275,
-0.16288624401100382,
-0.16335752491519362,
-0.16360126914883188,
-0.1635742612087978,
-0.16323686685302496,
-0.16255443620251753,
-0.16149868907755693,
-0.1600490207627009,
-0.15819366075628982,
-0.15593061547227383,
-0.1532683293527468,
-0.15022600799878882,
-0.1468335617014721,
-0.14313114742561184,
-0.13916831047048417,
-0.13500275177136734,
-0.13069877085979476,
-0.12632545556090125,
-0.12195470549815146,
-0.1176591858230509,
-0.11351030942999873,
-0.10957634023001894,
-0.10592069767068035,
-0.10260052515629337,
-0.09966556438931995,
-0.09715735614338494,
-0.0951087676626976,
-0.09354382941294359,
-0.09247785034588085,
-0.0919177716192473,
-0.09186271371503596,
-0.09230467059454661,
-0.09322930615780589,
-0.09461681200175032,
-0.09644279050991411,
-0.09867913298950792
],
[
-0.1714474780552161,
-0.17180020375236893,
-0.17236960279277458,
-0.17314585829419193,
-0.17411479409045416,
-0.175257638581223,
-0.17655086469581371,
-0.17796612337338036,
-0.17947028808147836,
-0.18102562736915995,
-0.18259012117147866,
-0.1841179344401953,
-0.18556005855155921,
-0.1868651266956327,
-0.18798040392546067,
-0.1888529455813045,
-0.18943090929764306,
-0.18966499577499263,
-0.18950998220845006,
-0.18892630029254387,
-0.1878815990235313,
-0.1863522224062888,
-0.1843245251755009,
-0.18179594730604376,
-0.17877577168666436,
-0.17528549960222728,
-0.17135879559066303,
-0.16704097594950484,
-0.16238804199029888,
-0.15746528777296165,
-0.1523455398256519,
-0.14710711055936054,
-0.1418315653063995,
-0.13660141334603382,
-0.13149783497025436,
-0.12659854962339823,
-0.12197591544650455,
-0.11769533004077082,
-0.11381397836158513,
-0.1103799489734204,
-0.1074317168349549,
-0.10499797121243348,
-0.10309775239490437,
-0.10174085101735253,
-0.1009284187580678,
-0.10065373827952673,
-0.10090310260194191,
-0.10165675865427148,
-0.10288987564003804,
-0.10457350534393528
],
[
-0.18892314591203085,
-0.19007213967195902,
-0.19144605015847227,
-0.19303171178433276,
-0.19481116718742997,
-0.19676141355923726,
-0.19885423128321422,
-0.201056114280311,
-0.2033283217209534,
-0.20562707029372662,
-0.2079038849002266,
-0.21010612335844192,
-0.21217768732052766,
-0.21405992699960996,
-0.21569274127581717,
-0.2170158671179897,
-0.217970342850906,
-0.21850011858336682,
-0.21855377431233491,
-0.21808629244158007,
-0.21706081777972241,
-0.21545032604637637,
-0.21323911336086399,
-0.21042401599847238,
-0.20701527344684678,
-0.20303695939236777,
-0.1985269247033148,
-0.19353622270915405,
-0.18812801809262147,
-0.18237601375912704,
-0.17636246197253802,
-0.17017585368434618,
-0.16390840055846667,
-0.1576534356684397,
-0.15150286018524117,
-0.14554475470355455,
-0.1398612564427858,
-0.1345267796417473,
-0.1296066289022677,
-0.12515602706320128,
-0.12121955315313027,
-0.11783096417766725,
-0.11501335818567493,
-0.11277962559413834,
-0.11113313076540465,
-0.1100685654562702,
-0.10957291888342868,
-0.10962651463482698,
-0.11020407148543476,
-0.11127575253403776
],
[
-0.20801148199852937,
-0.21003937073139078,
-0.21230173470005775,
-0.21478171600829743,
-0.2174571835909861,
-0.22030045973142176,
-0.22327813578984745,
-0.22635099882027554,
-0.2294740911797465,
-0.23259692482345662,
-0.2356638705920704,
-0.2386147403135661,
-0.24138557584344633,
-0.24390965410690146,
-0.24611871060033308,
-0.24794437541930225,
-0.24931980548549482,
-0.2501814841324428,
-0.25047114475190635,
-0.2501377594243781,
-0.24913951756749952,
-0.24744570542742683,
-0.24503838692128266,
-0.24191378220263582,
-0.2380832442939812,
-0.2335737473257804,
-0.22842782232458214,
-0.22270290682313476,
-0.2164701103873813,
-0.2098124361785776,
-0.20282253517731152,
-0.1956001010257905,
-0.1882490364371805,
-0.18087453451526447,
-0.17358021904495868,
-0.16646547711120385,
-0.1596230968442398,
-0.1531372953307666,
-0.14708219011304746,
-0.14152073572313717,
-0.1365041174948487,
-0.1320715707901856,
-0.12825057608263346,
-0.1250573693489745,
-0.12249770239991098,
-0.12056778805057289,
-0.11925536907803491,
-0.11854085642713841,
-0.11839848996968116,
-0.1187974834094736
],
[
-0.22874508008136119,
-0.23173792978318564,
-0.23497629923815988,
-0.23843927768079876,
-0.24210014590199735,
-0.24592608022354712,
-0.2498779533677209,
-0.2539102565145607,
-0.2579711674655579,
-0.26200278948440525,
-0.26594158390362077,
-0.2697190168407758,
-0.27326243625125224,
-0.2764961899237365,
-0.27934298771500543,
-0.2817255020605395,
-0.28356818929816385,
-0.2847993004047684,
-0.2853530334686455,
-0.2851717622306642,
-0.2842082566676345,
-0.2824277949507641,
-0.2798100538298399,
-0.2763506593464228,
-0.2720622841082605,
-0.2669751925097813,
-0.2611371612064066,
-0.254612737251539,
-0.2474818376186304,
-0.23983773742283243,
-0.23178453566605617,
-0.22343422254634293,
-0.21490349775319062,
-0.2063105022596452,
-0.1977716258469875,
-0.18939853940414697,
-0.1812955768566239,
-0.17355755952602459,
-0.16626811967050492,
-0.15949854390534568,
-0.15330712466486984,
-0.14773898139805708,
-0.14282629414832082,
-0.13858888074719777,
-0.1350350443172833,
-0.1321626188225663,
-0.12996014548606616,
-0.12840812053088735,
-0.127480263634147,
-0.1271447657541781
],
[
-0.25114826748794905,
-0.2551952236523183,
-0.2595004021223527,
-0.26403846269005016,
-0.26877766239387635,
-0.27367953371804754,
-0.2786986682240373,
-0.28378263291565087,
-0.2888720475102241,
-0.29390085051797843,
-0.2987967804239877,
-0.30348209518428126,
-0.30787454859038044,
-0.31188863572363246,
-0.315437111544732,
-0.3184327763738093,
-0.3207905092612834,
-0.3224295147328028,
-0.32327573011393274,
-0.3232643202156388,
-0.32234216506914215,
-0.3204702270634151,
-0.31762566940722614,
-0.31380359165753113,
-0.3090182529575868,
-0.30330367120816015,
-0.2967135165175646,
-0.2893202579361317,
-0.2812135700487399,
-0.2724980557728005,
-0.26329038859410026,
-0.25371601667966426,
-0.24390559892134378,
-0.2339913563931495,
-0.22410352095251085,
-0.21436704649926508,
-0.20489872006901488,
-0.19580477313969524,
-0.18717905269939017,
-0.17910177127072902,
-0.17163881911286027,
-0.16484159298838674,
-0.1587472755691114,
-0.1533794878211323,
-0.1487492325961982,
-0.1448560495975001,
-0.14168930811294378,
-0.13922957275442527,
-0.13744998752887472,
-0.13631763387126428
],
[
-0.2752360401377749,
-0.28042887811270967,
-0.28589446776953253,
-0.29160264803755,
-0.2975161965001575,
-0.3035904780357268,
-0.30977320834292466,
-0.316004363114499,
-0.32221626480359566,
-0.3283338787615756,
-0.3342753487679615,
-0.33995279846257487,
-0.345273419843957,
-0.350140862755677,
-0.35445693002140677,
-0.35812357135120954,
-0.36104515492663136,
-0.36313097827858964,
-0.3642979595861908,
-0.3644734274222664,
-0.3635979028765892,
-0.36162774570484313,
-0.3585375194191006,
-0.3543219230738396,
-0.3489971433026735,
-0.3426015007810874,
-0.33519530044427426,
-0.3268598419222213,
-0.3176956013122144,
-0.3078196519765556,
-0.2973624446149684,
-0.28646411002563577,
-0.27527047750177336,
-0.2639290150617488,
-0.252584893868539,
-0.24137735933559412,
-0.2304365583844391,
-0.2198809303470618,
-0.2098152231054473,
-0.20032915125552742,
-0.19149667364122502,
-0.18337583646678657,
-0.17600910672751546,
-0.1694241087941032,
-0.1636346734320554,
-0.15864211149876517,
-0.1544366320270737,
-0.15099883453307972,
-0.14830121668217755,
-0.14630964982788575
],
[
-0.30101297921338244,
-0.30744555719294264,
-0.31416740332257287,
-0.32114313076364176,
-0.3283295632171863,
-0.33567534963832557,
-0.3431207042545703,
-0.35059730662810273,
-0.35802839808018794,
-0.36532911078259966,
-0.37240706389665534,
-0.37916325710849785,
-0.38549328569642316,
-0.3912888928687336,
-0.3964398644784285,
-0.40083625814063806,
-0.40437094282795294,
-0.40694240569313556,
-0.4084577599236555,
-0.408835861388683,
-0.4080104144682313,
-0.4059329219941237,
-0.4025753151057797,
-0.3979320908361871,
-0.39202179241962154,
-0.38488769176613913,
-0.37659757474135946,
-0.36724258454582304,
-0.3569351411342727,
-0.3458060185580156,
-0.3340007205362213,
-0.32167534147656207,
-0.3089921310954358,
-0.29611499315767487,
-0.2832051421643289,
-0.27041711761932374,
-0.25789531721985204,
-0.24577116278313826,
-0.23416096154405586,
-0.22316447614533907,
-0.21286417379428801,
-0.20332509175032665,
-0.19459523384697575,
-0.1867064008379351,
-0.1796753545033245,
-0.1735052195454173,
-0.168187036093563,
-0.16370138711009152,
-0.1600200375374322,
-0.15710753451632042
],
[
-0.3284721648386637,
-0.33623977312803377,
-0.34431529869471067,
-0.3526577120605652,
-0.3612173915322884,
-0.3699356990274433,
-0.378744692630818,
-0.3875670151712757,
-0.3963160001980556,
-0.40489603694823717,
-0.41320323381017476,
-0.42112641513941884,
-0.4285484790045775,
-0.4353481335886161,
-0.4414020176036514,
-0.4465871950671046,
-0.45078399672969705,
-0.4538791587499623,
-0.45576918349658035,
-0.4563638180782175,
-0.45558951528333236,
-0.453392712784662,
-0.4497427449417217,
-0.4446341930214634,
-0.43808848888071433,
-0.43015461645262,
-0.4209088038206761,
-0.4104531620316858,
-0.3989132983675584,
-0.3864350036265597,
-0.3731801772652954,
-0.3593222044817178,
-0.3450410308851074,
-0.33051819096759993,
-0.3159320361424385,
-0.30145337880911793,
-0.287241724811534,
-0.27344221324959195,
-0.2601833260485522,
-0.24757537593561352,
-0.23570973538565754,
-0.22465873382732304,
-0.21447612715813758,
-0.2051980318728196,
-0.19684421409513553,
-0.18941962912540522,
-0.1829161172952587,
-0.1773141747771355,
-0.17258473182618683,
-0.16869088455276526
],
[
-0.3575941052518635,
-0.366792706833296,
-0.3763201313141845,
-0.38612927936806485,
-0.3961635771853128,
-0.40635650787546285,
-0.41663129206711236,
-0.4269007621717862,
-0.4370674775218796,
-0.4470241281363278,
-0.45665427264680336,
-0.4658334505702438,
-0.47443070054885794,
-0.48231050452196056,
-0.4893351632398301,
-0.49536759109119305,
-0.5002744975592046,
-0.5039298981096515,
-0.5062188684394275,
-0.5070414231581954,
-0.5063163652466515,
-0.5039849203157794,
-0.5000139459052965,
-0.494398497520637,
-0.4871635452994074,
-0.47836467061381666,
-0.46808762903537393,
-0.4564467394824373,
-0.4435821408022941,
-0.4296560371452737,
-0.4148481234585897,
-0.3993504352584428,
-0.3833618979994702,
-0.36708285898155657,
-0.35070986946870264,
-0.3344309494586153,
-0.3184215171205137,
-0.30284110542279363,
-0.287830926573744,
-0.2735122869055594,
-0.25998580579039676,
-0.24733135524281225,
-0.23560861309431724,
-0.22485811124764143,
-0.2151026594742973,
-0.20634903184875808,
-0.19858981452199653,
-0.1918053277978543,
-0.18596555059917497,
-0.18103199017164573
],
[
-0.3883457031958505,
-0.39907106249669444,
-0.41014850115007606,
-0.4215244141286687,
-0.4331347556426086,
-0.44490452006732095,
-0.4567473856092313,
-0.4685655710244182,
-0.48024995927485387,
-0.49168054302406905,
-0.5027272445808492,
-0.5132511567909219,
-0.5231062412996881,
-0.5321415067497792,
-0.5402036721932477,
-0.5471403005042856,
-0.5528033626849312,
-0.5570531660413718,
-0.5597625466716434,
-0.560821189880627,
-0.5601399033463805,
-0.5576546320210134,
-0.5533299780099621,
-0.5471619808697561,
-0.5391799301532516,
-0.5294470251367814,
-0.5180597641221363,
-0.5051460305468478,
-0.4908619353193157,
-0.47538756337174454,
-0.4589218475669541,
-0.441676847483148,
-0.42387174001548833,
-0.4057268320231022,
-0.3874578839812779,
-0.3692709915797945,
-0.35135821500457,
-0.3338940799662681,
-0.3170330074913603,
-0.3009076676183352,
-0.28562820056135607,
-0.2712822106874201,
-0.25793541466337233,
-0.24563281432293127,
-0.23440026485223653,
-0.22424631688433005,
-0.21516422414933467,
-0.20713402398942438,
-0.20012461445582053,
-0.19409576760317127
],
[
-0.42067928448452196,
-0.4330259836382754,
-0.44575042593735553,
-0.4587920578794169,
-0.47207883091644354,
-0.48552662543844904,
-0.4990388521525402,
-0.5125062877255665,
-0.5258072061574572,
-0.5388078690179633,
-0.5513634354171298,
-0.56331934567525,
-0.5745132208451025,
-0.5847773037416684,
-0.5939414464859396,
-0.6018366252550474,
-0.6082989349923951,
-0.6131739847537778,
-0.6163215775292321,
-0.6176205171202676,
-0.6169733415647296,
-0.6143107433403503,
-0.6095954094378235,
-0.6028250084158167,
-0.5940340737352423,
-0.5832945853747664,
-0.5707151314127743,
-0.5564386290262819,
-0.5406386880624494,
-0.5235147973100014,
-0.5052865930571375,
-0.4861875240553645,
-0.46645825301386995,
-0.4463401321111907,
-0.42606906144517376,
-0.4058699897020266,
-0.38595225198359384,
-0.36650586794922635,
-0.34769885159932834,
-0.32967551879689694,
-0.31255572504718043,
-0.2964349270262153,
-0.28138493748290183,
-0.26745523312200337,
-0.2546746763211978,
-0.2430535209214686,
-0.2325855868204485,
-0.2232505051330521,
-0.21501595334780965,
-0.2078398169195571
],
[
-0.45453171680567145,
-0.46859206161218553,
-0.483058230743026,
-0.49786227426257207,
-0.5129236015468008,
-0.528148341572162,
-0.5434288964400308,
-0.5586437522896083,
-0.5736576176002641,
-0.5883219614096405,
-0.6024760218843144,
-0.6159483479800127,
-0.6285589231724392,
-0.6401219006373849,
-0.6504489545299396,
-0.6593532229659848,
-0.6666537853300012,
-0.6721805793352376,
-0.6757796213212732,
-0.6773183470266857,
-0.6766908424907818,
-0.6738226923286288,
-0.6686751449411064,
-0.6612482915635713,
-0.6515829860615279,
-0.6397612969546522,
-0.6259053771409493,
-0.6101747489581582,
-0.5927621180046697,
-0.5738879340753812,
-0.5537940000628143,
-0.5327364825365157,
-0.5109786983361283,
-0.48878404116336405,
-0.4664093749515706,
-0.4440991627504853,
-0.4220805281694988,
-0.40055936878082565,
-0.37971756482753094,
-0.3597112586797171,
-0.3406701255747667,
-0.3226975168821363,
-0.30587133377132014,
-0.29024548015326856,
-0.2758517462977187,
-0.26270198531377453,
-0.25079046056305243,
-0.24009626042516485,
-0.2305856957015351,
-0.222214613029313
],
[
-0.48982364962229996,
-0.5056864708407335,
-0.5219855699105849,
-0.5386451490947798,
-0.55557553038009,
-0.5726724452108911,
-0.5898165345881421,
-0.6068731317176921,
-0.6236924067239165,
-0.6401099565643159,
-0.6559479215401565,
-0.6710167013435884,
-0.685117327695415,
-0.698044527441819,
-0.709590480378878,
-0.7195492412449593,
-0.7277217561091773,
-0.7339213598907679,
-0.7379795937071099,
-0.7397521288658512,
-0.7391245320848897,
-0.7360175614546609,
-0.7303916556670472,
-0.7222502816657359,
-0.7116418461937833,
-0.6986599557771308,
-0.6834419202155249,
-0.6661655225894247,
-0.647044206902603,
-0.6263209464899357,
-0.6042611400908666,
-0.5811449314552777,
-0.5572593613322429,
-0.5328907407167682,
-0.5083175870509795,
-0.4838043979729555,
-0.45959645812612476,
-0.4359157914915343,
-0.41295829216607627,
-0.39089199677456,
-0.36985640624133764,
-0.3499627256945167,
-0.33129486882699066,
-0.31391106525515666,
-0.29784591330704735,
-0.28311273282962834,
-0.269706089807224,
-0.25760438416329934,
-0.24677241210802925,
-0.23716383349046977
],
[
-0.5264589083533493,
-0.5442082678598736,
-0.5624266227409617,
-0.5810298745580702,
-0.5999187093889667,
-0.6189778102377472,
-0.6380752983882733,
-0.6570624846773547,
-0.6757740207127394,
-0.6940285450197612,
-0.711629917910308,
-0.7283691297256429,
-0.7440269489271191,
-0.7583773492553431,
-0.7711917198598128,
-0.7822438205155305,
-0.7913153972152032,
-0.7982023222425016,
-0.8027210675158409,
-0.8047152617355168,
-0.8040620249128444,
-0.8006777268884891,
-0.7945227918280263,
-0.7856051810982061,
-0.7739822405523604,
-0.7597606947516437,
-0.7430947000162418,
-0.7241820130721284,
-0.7032584723076148,
-0.6805911063235814,
-0.6564702672350543,
-0.6312012286282584,
-0.605095690945667,
-0.5784636055072512,
-0.5516056699871172,
-0.5248067715210205,
-0.49833056733967407,
-0.47241530502874945,
-0.44727090241580547,
-0.4230772364886759,
-0.3999835355926177,
-0.37810873119869437,
-0.35754260441995867,
-0.33834755610327394,
-0.3205608346226507,
-0.3041970689790279,
-0.2892509732316849,
-0.2757001089832235,
-0.26350761364914,
-0.2526248222662931
],
[
-0.564324077643326,
-0.5840378932886883,
-0.6042555067520337,
-0.6248840665602454,
-0.6458140743244827,
-0.6669185133678629,
-0.6880522265489575,
-0.7090516338253166,
-0.7297348910887135,
-0.7499025983395115,
-0.7693391648291722,
-0.7878149290556924,
-0.805089110878574,
-0.8209136412152933,
-0.8350378728526091,
-0.8472141258832958,
-0.8572039652872179,
-0.8647850477053235,
-0.8697583105058628,
-0.8719552108108787,
-0.8712446605125552,
-0.8675392555249019,
-0.8608003774415731,
-0.8510417670271561,
-0.8383312393598141,
-0.8227903275607881,
-0.8045917924860067,
-0.7839550983670913,
-0.7611401060440984,
-0.7364393567442165,
-0.7101693983451419,
-0.682661639024212,
-0.6542532033317066,
-0.6252782206649339,
-0.5960599054636081,
-0.5669037020341171,
-0.5380916738661158,
-0.509878225647225,
-0.482487162602418,
-0.45611002140101503,
-0.4309055529372744,
-0.40700020100676326,
-0.384489401534417,
-0.36343952228842014,
-0.3438902697431264,
-0.32585740447552225,
-0.3093356259879254,
-0.2943015095215791,
-0.28071639932556136,
-0.26852918368959033
],
[
-0.6032883092493131,
-0.6250369168619521,
-0.6473259537199464,
-0.6700533660360182,
-0.6930989261033258,
-0.71632327122251,
-0.7395672140428478,
-0.7626514252340397,
-0.7853766025236553,
-0.807524248458058,
-0.8288581797381608,
-0.8491268807030246,
-0.8680667903251492,
-0.885406575228353,
-0.9008723917791133,
-0.9141940806832769,
-0.9251121706890992,
-0.933385496491164,
-0.9387991618729801,
-0.9411725057140532,
-0.9403666623880431,
-0.9362912609552029,
-0.9289097947312485,
-0.9182432285188769,
-0.904371501797721,
-0.8874327272099838,
-0.867620057199589,
-0.8451763723247481,
-0.8203871064441133,
-0.7935716462780934,
-0.7650738147711746,
-0.7352519679398238,
-0.7044692096664832,
-0.6730841686012372,
-0.6414426976331454,
-0.6098707602882772,
-0.5786686693151761,
-0.5481067482808524,
-0.5184224031516427,
-0.489818521797973,
-0.4624630675737074,
-0.436489699171397,
-0.41199923173112063,
-0.3890617512503022,
-0.3677192025008854,
-0.3479882865169671,
-0.32986352415839415,
-0.31332036473825675,
-0.29831824134208873,
-0.28480349600537147
],
[
-0.6432033896436333,
-0.6670480654180713,
-0.6914712936509677,
-0.7163613750922024,
-0.7415868161397581,
-0.7669952729179854,
-0.7924127913105565,
-0.8176434550826469,
-0.8424695696333917,
-0.8666525191901376,
-0.8899344368076149,
-0.9120408157433721,
-0.932684164787191,
-0.9515687676967909,
-0.9683965489415901,
-0.9828739773340504,
-0.994719859708902,
-1.0036737924437027,
-1.0095049529496782,
-1.012020831160099,
-1.0110754309774435,
-1.0065764271038513,
-0.9984907603616997,
-0.9868482088497278,
-0.9717425880237689,
-0.9533304009761325,
-0.9318269583884902,
-0.90750018599382,
-0.8806625069850443,
-0.8516613068228338,
-0.8208685490915206,
-0.7886701152699651,
-0.75545539819589,
-0.7216076020257828,
-0.6874951043448911,
-0.6534641307148938,
-0.6198328877895742,
-0.5868872051731846,
-0.5548776533709581,
-0.5240180386421824,
-0.49448512682902734,
-0.4664194172352722,
-0.4399267728983008,
-0.4150807125862437,
-0.3919251794088616,
-0.37047761779399224,
-0.35073221178339176,
-0.3326631607111523,
-0.3162278915402119,
-0.3013701292227996
],
[
-0.6839041006077764,
-0.7098955719373443,
-0.7365047900468397,
-0.7636099770982001,
-0.791067850957239,
-0.8187124702764427,
-0.8463544027961257,
-0.873780341122777,
-0.9007533080512882,
-0.9270136058102842,
-0.9522806662623666,
-0.976255947714793,
-0.998626994943123,
-1.0190727304367033,
-1.0372699774300136,
-1.052901132219535,
-1.0656628095009442,
-1.0752751854392864,
-1.0814916645227293,
-1.084108404988066,
-1.0829731644642009,
-1.0779928879652585,
-1.0691394723159322,
-1.056453218301801,
-1.0400436264713973,
-1.0200873907430432,
-0.9968236678051576,
-0.9705469152155024,
-0.9415977657586401,
-0.9103525195204718,
-0.8772118816838071,
-0.8425895589405115,
-0.8069012642586502,
-0.7705545850760062,
-0.7339400594399759,
-0.6974236907994257,
-0.6613410241879139,
-0.625992810465096,
-0.5916422048029042,
-0.5585133826693188,
-0.5267914117016438,
-0.4966231903542539,
-0.4681192522495228,
-0.4413562361488374,
-0.4163798323513044,
-0.3932080340489623,
-0.3718345439380609,
-0.35223220992871584,
-0.3343563873978993,
-0.3181481479202337
],
[
-0.725208902633744,
-0.7533858800948527,
-0.7822203659967849,
-0.8115800857344831,
-0.8413094669779031,
-0.8712283828476718,
-0.9011312487125547,
-0.9307866099740661,
-0.9599373784809718,
-0.9883018895863555,
-1.0155759555481012,
-1.041436078813134,
-1.0655439562011362,
-1.0875523495347104,
-1.1071123202396906,
-1.1238817284776148,
-1.1375347875589026,
-1.1477723490686367,
-1.1543324813671552,
-1.1570008036580877,
-1.155619963032646,
-1.1500976104127605,
-1.1404122617440464,
-1.1266165355623459,
-1.1088374354959702,
-1.0872735768038744,
-1.0621895056057,
-1.0339074888719597,
-1.0027973293367358,
-0.969264863021535,
-0.9337398249679573,
-0.8966637313196416,
-0.8584783409316177,
-0.8196151468661302,
-0.7804862247278415,
-0.741476643724861,
-0.7029385360481964,
-0.6651868254491546,
-0.6284965390523585,
-0.5931015681224141,
-0.5591947032281643,
-0.5269287456632756,
-0.49641848800051785,
-0.4677433596679649,
-0.44095054556677427,
-0.4160584041616189,
-0.39306003361886377,
-0.3719268583419847,
-0.35261213206319064,
-0.33505427637699514
],
[
-0.7669209656288505,
-0.7973087330629947,
-0.8283937544398865,
-0.8600328612854364,
-0.892057719003958,
-0.924273466714111,
-0.9564577446446295,
-0.9883602606247173,
-1.0197030699757441,
-1.0501817594733462,
-1.0794677305817606,
-1.1072117638547103,
-1.1330490098133779,
-1.1566054883899384,
-1.1775060892296318,
-1.195383952806131,
-1.2098909848575838,
-1.22070912368273,
-1.227561852322072,
-1.2302253385605748,
-1.2285385114038005,
-1.2224113628484994,
-1.2118308172187142,
-1.196863647160682,
-1.177656128962304,
-1.1544303940298954,
-1.127477707611597,
-1.0971491467157222,
-1.0638443224295342,
-1.0279988805008327,
-0.9900715195133396,
-0.9505312036471893,
-0.9098451391578916,
-0.8684679529180842,
-0.8268323761861862,
-0.7853416099946805,
-0.7443634375738819,
-0.7042260573612232,
-0.6652155381341016,
-0.6275747449607731,
-0.5915035495291957,
-0.5571601190463282,
-0.5246630719960277,
-0.49409429404238964,
-0.4655022206093083,
-0.43890541159404434,
-0.4142962659909255,
-0.39164474800999904,
-0.3709020201092481,
-0.3520039011624472
],
[
-0.8088295640698062,
-0.8414386672475354,
-0.8747840971236328,
-0.9087114227790805,
-0.9430391152112435,
-0.9775570841423855,
-1.0120256401892864,
-1.0461750492286002,
-1.0797058710483758,
-1.112290292588104,
-1.1435746711279244,
-1.1731834877945964,
-1.2007248703078188,
-1.2257977718337751,
-1.248000789894087,
-1.2669424800581475,
-1.2822528726358067,
-1.2935957490178456,
-1.300681092071451,
-1.303277008724824,
-1.3012203520986585,
-1.2944252666464011,
-1.28288896097387,
-1.266694185967225,
-1.2460081479401681,
-1.221077884334257,
-1.1922224261446308,
-1.159822319488102,
-1.1243072443500468,
-1.0861425378475988,
-1.0458154090231044,
-1.0038215431466082,
-0.9606526624586269,
-0.9167854624151335,
-0.872672197135951,
-0.8287330571196866,
-0.7853503723550215,
-0.7428645863546897,
-0.7015718804865813,
-0.6617232812736724,
-0.6235250537063834,
-0.5871401686087365,
-0.5526906292701494,
-0.5202604494438514,
-0.4898990890169757,
-0.46162517291739363,
-0.4354303411236356,
-0.41128310130087464,
-0.38913257926936995,
-0.3689120852385267
],
[
-0.8507118442888651,
-0.8855369211458317,
-0.921136005160668,
-0.957343071703855,
-0.9939630171936367,
-1.030770095232286,
-1.06750681998483,
-1.1038835200968053,
-1.1395787541462756,
-1.1742408184784308,
-1.2074905834189777,
-1.2389258764733653,
-1.2681275838000374,
-1.2946675590450254,
-1.318118311059382,
-1.3380642943669052,
-1.354114459436059,
-1.3659155491779096,
-1.3731654719553104,
-1.3756259603829233,
-1.3731336619394114,
-1.3656088243816873,
-1.3530608526907444,
-1.3355902267476436,
-1.3133865605877704,
-1.2867229140024339,
-1.2559467825074286,
-1.221468442306624,
-1.1837474797379812,
-1.143278380444415,
-1.1005760047791429,
-1.0561616593459426,
-1.0105503209503033,
-0.9642394058949547,
-0.917699324065929,
-0.8713659247811251,
-0.8256348341986192,
-0.7808576020011604,
-0.7373395155916329,
-0.6953388999080676,
-0.655067697008835,
-0.6166931089351224,
-0.5803400874982261,
-0.5460944632641416,
-0.5140065209988629,
-0.4840948482488731,
-0.45635030583805564,
-0.43073999239595784,
-0.4072110984072561,
-0.38569456777913547
],
[
-0.8923349600641226,
-0.9293537566044647,
-0.9671820796488956,
-1.0056420269232447,
-1.0445246056360564,
-1.08358807267228,
-1.122556788057323,
-1.1611207825775987,
-1.1989362705214393,
-1.2356273597381509,
-1.2707892159221357,
-1.3039929173940055,
-1.3347921822562192,
-1.3627320559387945,
-1.3873595132450367,
-1.408235761324955,
-1.4249498418449962,
-1.437132941003801,
-1.444472647727808,
-1.4467262782192605,
-1.4437323343515778,
-1.435419206794906,
-1.421810384644906,
-1.4030256876937965,
-1.3792783681291003,
-1.3508682870910145,
-1.3181717001099444,
-1.2816284325507978,
-1.2417273611063704,
-1.1989911360014378,
-1.1539609998078182,
-1.1071824148072933,
-1.0591920362070812,
-1.0105063919801265,
-0.9616124708962273,
-0.9129602881137435,
-0.8649573948808866,
-0.8179652233719328,
-0.7722971054201203,
-0.7282177705453277,
-0.6859441103485298,
-0.6456469899052695,
-0.6074538897008153,
-0.571452171811375,
-0.5376927796222482,
-0.5061941997643551,
-0.47694653670240267,
-0.44991557326974396,
-0.4250467133728697,
-0.4022687252483955
],
[
-0.9334585593768546,
-0.9726311746791234,
-1.0126458738136317,
-1.0533126512955064,
-1.0944083907774695,
-1.1356751167651553,
-1.1768188096607082,
-1.217509003613034,
-1.2573794190222134,
-1.2960299038603595,
-1.333029961661729,
-1.3679241192142755,
-1.4002393241990168,
-1.4294944558445457,
-1.4552118796063414,
-1.4769307875599487,
-1.494221855846522,
-1.5067025424997877,
-1.5140521710853747,
-1.5160258269463234,
-1.5124660608441878,
-1.5033114706624484,
-1.4886014241867342,
-1.4684764833971884,
-1.4431744579445511,
-1.4130223975554914,
-1.3784251683162887,
-1.339851494885029,
-1.297818462705746,
-1.252875463083176,
-1.2055884547764573,
-1.1565252458607267,
-1.1062423064619076,
-1.055273436101794,
-1.0041204470944836,
-0.9532458955822842,
-0.9030677947152366,
-0.853956176264759,
-0.8062313221752507,
-0.760163460897731,
-0.7159737104263284,
-0.6738360474354683,
-0.6338800873221424,
-0.596194471416308,
-0.5608306736125195,
-0.5278070578846078,
-0.49711303940447854,
-0.46871322425170736,
-0.4425514250657494,
-0.4185544716952756
],
[
-0.973837590569435,
-1.0151059915833307,
-1.0572452591242658,
-1.10005312900263,
-1.1432922226192,
-1.1866882207657867,
-1.2299286545244599,
-1.2726625521036792,
-1.3145012149837485,
-1.355020419820159,
-1.3937643446230923,
-1.430251487780885,
-1.463982775980884,
-1.494451934914533,
-1.5211580246165677,
-1.543619828770294,
-1.5613915541202283,
-1.5740790707835224,
-1.581355740122194,
-1.5829767673604636,
-1.5787910097520395,
-1.568749285894904,
-1.552908469412563,
-1.5314309904875656,
-1.5045797682356192,
-1.4727089952402883,
-1.4362515293961404,
-1.395703868461084,
-1.3516097674502972,
-1.3045435163968926,
-1.2550937572848586,
-1.2038485256836438,
-1.1513819942763728,
-1.098243201527875,
-1.0449468860475442,
-0.9919664215853065,
-0.9397287573462384,
-0.8886112078409456,
-0.8389398991565692,
-0.7909896582882647,
-0.7449851242602137,
-0.7011028607681893,
-0.659474257645319,
-0.6201890209504464,
-0.5832990676797232,
-0.5488226599865915,
-0.5167486344482992,
-0.48704060348747896,
-0.45964102776696103,
-0.4344750795309743
],
[
-1.013225380896216,
-1.0565132226665201,
-1.1006961377525137,
-1.145559529744824,
-1.1908517300181316,
-1.2362821076107133,
-1.2815198531677936,
-1.3261936955510203,
-1.369892846243602,
-1.4121694901735882,
-1.4525431414520429,
-1.49050714656412,
-1.5255375340920643,
-1.5571042713617413,
-1.5846847947190108,
-1.6077794430290129,
-1.6259281675325967,
-1.6387276498967247,
-1.6458477738094246,
-1.6470463014391123,
-1.6421806328243693,
-1.631215686490553,
-1.6142272256495107,
-1.5914003358244664,
-1.5630231853661094,
-1.5294766061074188,
-1.4912203549440526,
-1.4487771137221426,
-1.4027153387065143,
-1.3536319966487163,
-1.3021360584852377,
-1.248833408681861,
-1.1943136086415818,
-1.1391387550409808,
-1.0838345134623097,
-1.028883287926742,
-0.9747194042709905,
-0.9217261327040083,
-0.8702343447171408,
-0.8205225852155195,
-0.7728183373210131,
-0.7273002613638625,
-0.684101198945772,
-0.6433117462287533,
-0.604984216834831,
-0.5691368331797099,
-0.5357580050202997,
-0.5048105747977341,
-0.4762359303395348,
-0.4499579060213314
],
[
-1.051376925522574,
-1.0965897050590123,
-1.142716423826604,
-1.1895301732135803,
-1.2367650920497508,
-1.2841144302367746,
-1.3312293458942226,
-1.3777187143107357,
-1.4231502652633101,
-1.4670533888120643,
-1.508923946831414,
-1.5482313848468952,
-1.5844283433790294,
-1.6169628115880603,
-1.6452926493735516,
-1.6689020413139193,
-1.6873191659468172,
-1.700134108260145,
-1.7070158585061903,
-1.7077271683589386,
-1.7021361028940416,
-1.6902233387964438,
-1.672084596041966,
-1.6479280100238438,
-1.6180666951549103,
-1.5829071541994113,
-1.542934491504678,
-1.4986955548841945,
-1.4507811515197222,
-1.3998083784434807,
-1.3464039183520071,
-1.2911889231829567,
-1.2347658813190128,
-1.177707666575147,
-1.1205488111652566,
-1.063778932203496,
-1.00783816663336,
-0.9531144245599517,
-0.8999422474681049,
-0.8486030488236052,
-0.7993265150316229,
-0.752292951354854,
-0.7076363681770564,
-0.6654481167839892,
-0.6257808999298093,
-0.5886530003452137,
-0.5540525895396051,
-0.5219419992287043,
-0.49226185792377714,
-0.46493501508122703
],
[
-1.0880523114462666,
-1.135077873812182,
-1.1830301976744535,
-1.2316701863526494,
-1.2807180213559874,
-1.329851201219474,
-1.3787033749247748,
-1.4268642672210894,
-1.4738810328389937,
-1.5192613997849354,
-1.5624789558823715,
-1.602980882789578,
-1.6401983338610076,
-1.673559477418208,
-1.7025049866935085,
-1.7265054687775194,
-1.74508002181514,
-1.75781484146265,
-1.7643806185329525,
-1.7645474257441567,
-1.758195906723413,
-1.7453238495592616,
-1.7260476161576852,
-1.7005983524587927,
-1.6693133583118562,
-1.6326233859098012,
-1.5910369108390165,
-1.545122550916359,
-1.4954907941690365,
-1.44277606430766,
-1.3876199427897338,
-1.3306561278536497,
-1.2724974817156378,
-1.2137253224863942,
-1.1548809679134568,
-1.096459433424421,
-1.0389051203659017,
-0.982609292689416,
-0.9279091228577746,
-0.8750880833757642,
-0.824377464082718,
-0.7759588040248722,
-0.7299670385570929,
-0.6864941763835721,
-0.6455933370621938,
-0.6072829967565366,
-0.5715513084072419,
-0.5383603816180618,
-0.5076504269448926,
-0.47934368842460906
],
[
-1.123020189674812,
-1.1717295933510896,
-1.22137192219027,
-1.27169612868303,
-1.3224088197371409,
-1.3731722958636465,
-1.4236034466394818,
-1.473273817474014,
-1.521711203331396,
-1.5684031474551985,
-1.6128027135607184,
-1.6543368425188962,
-1.6924174840789123,
-1.7264555009958422,
-1.755877079078246,
-1.7801420618670585,
-1.7987633031309314,
-1.8113258513447235,
-1.8175046103692183,
-1.8170791098049226,
-1.8099441873253077,
-1.7961157158570582,
-1.775730949691534,
-1.7490435464094174,
-1.7164137757580882,
-1.6782947932937344,
-1.635216094759469,
-1.587765358670993,
-1.536569836505138,
-1.4822782920623823,
-1.4255442678118073,
-1.367011211915906,
-1.3072997719401886,
-1.2469973725028622,
-1.186650052719281,
-1.1267564431805237,
-1.067763703512944,
-1.01006521060442,
-0.9539997753753058,
-0.8998521654794591,
-0.8478547176787725,
-0.7981898338763245,
-0.7509931673311386,
-0.7063573196942166,
-0.6643358849183976,
-0.6249476926630686,
-0.5881811213649073,
-0.5539983693963304,
-0.5223395912929265,
-0.49312682443710615
],
[
-1.156061201295213,
-1.206309937046247,
-1.2574906000351744,
-1.3093405490850323,
-1.3615533529509949,
-1.4137768583522006,
-1.46561217551602,
-1.5166139119883917,
-1.56629202644974,
-1.6141156953572628,
-1.6595195717705993,
-1.7019127507584948,
-1.7406906230875583,
-1.775249588127451,
-1.8050043106281706,
-1.829406866667321,
-1.8479667776174218,
-1.8602706431161846,
-1.8659999259510793,
-1.864945467935825,
-1.8570175420904445,
-1.842250640653635,
-1.8208026906251238,
-1.7929488946752548,
-1.7590708412397251,
-1.719641861713106,
-1.6752098071931327,
-1.626378466566533,
-1.5737887668038342,
-1.5181007177429438,
-1.4599768304307306,
-1.4000674933165609,
-1.33899856801489,
-1.2773612857774488,
-1.2157043935383804,
-1.1545284109604748,
-1.0942818086984656,
-1.035358893117456,
-0.9780991749916219,
-0.9227880023699364,
-0.8696582461810518,
-0.81889283850453,
-0.7706279763763222,
-0.7249568179826011,
-0.6819335130092962,
-0.6415774247487845,
-0.603877418262946,
-0.5687961062710798,
-0.5362739621483101,
-0.5062332270632777
],
[
-1.1869712596114814,
-1.2386008036558427,
-1.2911537457220024,
-1.3443563322088168,
-1.397889786030467,
-1.4513884347345245,
-1.504438815793941,
-1.5565801029229456,
-1.6073062379076222,
-1.6560701716267634,
-1.702290600308344,
-1.7453615108050273,
-1.784664704632136,
-1.819585243763779,
-1.8495294546851357,
-1.873944765816728,
-1.8923402885426457,
-1.9043067575585733,
-1.9095343019609479,
-1.9078265832145982,
-1.899110120847184,
-1.8834380841879017,
-1.8609883686132647,
-1.8320562983812252,
-1.797042728244512,
-1.756438610484473,
-1.7108072405195276,
-1.6607654006522656,
-1.6069645101761243,
-1.5500726950355501,
-1.4907584523458461,
-1.4296763437713873,
-1.3674549372569602,
-1.3046870458895412,
-1.2419221901394797,
-1.1796611308550746,
-1.1183522760941913,
-1.0583897451416986,
-1.0001128690853702,
-0.9438069124691415,
-0.8897048104198345,
-0.8379897277210193,
-0.788798259392128,
-0.7422241060372613,
-0.6983220715649683,
-0.6571122459543421,
-0.6185842515828989,
-0.5827014481232515,
-0.5494050078856099,
-0.5186177903525631
],
[
-1.215564591795029,
-1.2684042608749568,
-1.3221510484178938,
-1.376520694893839,
-1.4311829232556361,
-1.4857596602610135,
-1.5398242919318847,
-1.5929023069056067,
-1.6444737209194957,
-1.6939776923109688,
-1.740819716358443,
-1.7843817071141963,
-1.824035121291838,
-1.8591570383790657,
-1.8891487877118633,
-1.9134563336504669,
-1.9315912503035022,
-1.943150818734285,
-1.9478356501655316,
-1.945463341348045,
-1.9359770092515172,
-1.9194480693563958,
-1.8960732050766447,
-1.86616601119889,
-1.8301442028074384,
-1.7885135317440495,
-1.7418496494099747,
-1.6907791192175052,
-1.6359606433880802,
-1.5780673615135572,
-1.5177708398602334,
-1.4557271358786221,
-1.3925651181362142,
-1.3288770621203947,
-1.2652114297984434,
-1.2020676701589734,
-1.1398928399461474,
-1.0790798285684309,
-1.0199669702221055,
-0.962838833308097,
-0.9079279881283654,
-0.8554175663241533,
-0.8054444385388202,
-0.7581028500970233,
-0.7134483682032768,
-0.6715020084617949,
-0.6322544235105428,
-0.5956700521818157,
-0.5616911436300038,
-0.5302415869546961
],
[
-1.241676449625336,
-1.2955455134040184,
-1.3502976096848562,
-1.4056387027652815,
-1.4612280083263325,
-1.5166763418600053,
-1.5715455544016828,
-1.625349415596749,
-1.6775563415858872,
-1.727594378601445,
-1.774858826436765,
-1.8187228003772176,
-1.8585508676493188,
-1.893715643334248,
-1.9236168945358467,
-1.9477023088040148,
-1.965488693138755,
-1.9765820706688557,
-1.9806950280434235,
-1.9776598043053917,
-1.9674360036159642,
-1.9501123838560606,
-1.925902792577484,
-1.895136863462072,
-1.8582464702878276,
-1.8157491412066409,
-1.7682296842993965,
-1.7163212006671023,
-1.6606864990144246,
-1.6020007098761586,
-1.54093566191045,
-1.478146357350659,
-1.4142596911254581,
-1.3498654098566012,
-1.285509204224358,
-1.221687765221137,
-1.1588456023921523,
-1.0973734107336115,
-1.0376077743871768,
-0.9798320036915987,
-0.9242779137143333,
-0.8711283650022658,
-0.8205204000899373,
-0.7725488221353611,
-0.7272700751089425,
-0.6847062984879291,
-0.644849443562037,
-0.6076653532202343,
-0.5730977222807585,
-0.541071870731441
],
[
-1.2651654096476204,
-1.3198754055118551,
-1.3754366549914734,
-1.431546194075996,
-1.4878538596921946,
-1.5439607986695119,
-1.5994191123357255,
-1.6537329991283152,
-1.7063617921323697,
-1.7567252979380226,
-1.8042118115781793,
-1.8481890909269625,
-1.8880184047590158,
-1.9230715101669684,
-1.952750071058801,
-1.9765066294842022,
-1.993865847798162,
-2.004444443704243,
-2.007968141647626,
-2.0042841320710334,
-1.9933679633223655,
-1.9753244026423467,
-1.9503824493616277,
-1.9188852264316245,
-1.8812758348324055,
-1.8380804189215314,
-1.7898896943347786,
-1.73734008034044,
-1.6810953963301385,
-1.6218298608918298,
-1.560212901194899,
-1.4968960657279513,
-1.4325021531795334,
-1.3676165334429071,
-1.302780543432203,
-1.2384867844798093,
-1.1751761205522697,
-1.1132361682433844,
-1.0530010728365589,
-0.9947523741142807,
-0.9387207775111202,
-0.8850886587712882,
-0.8339931427396732,
-0.7855296092238737,
-0.7397554912553547,
-0.6966942438473345,
-0.6563393746847437,
-0.6186584421100542,
-0.583596940137068,
-0.5510820047495402
],
[
-1.2859151978456598,
-1.341272385302506,
-1.397441637815859,
-1.4541120208696525,
-1.5109252422409707,
-1.567474353144923,
-1.6233036275156605,
-1.6779099801194208,
-1.730746314929534,
-1.7812272000955418,
-1.8287372291226414,
-1.8726423313293914,
-1.9123041207124563,
-1.947097109964528,
-1.976428269883888,
-1.9997580138953053,
-2.0166212963060803,
-2.0266472248186993,
-2.029575504733437,
-2.025268224487444,
-2.013715955629584,
-1.9950377805224706,
-1.9694755242823963,
-1.93738300702443,
-1.8992114669888263,
-1.8554924318339208,
-1.806819280782229,
-1.7538286010847184,
-1.6971822440161857,
-1.6375507613990496,
-1.5755986793356156,
-1.5119718623868366,
-1.4472870535288442,
-1.3821235494967468,
-1.3170168866102472,
-1.2524543625802138,
-1.188872196451445,
-1.1266541231119809,
-1.0661312235264149,
-1.0075828018628183,
-0.9512381327286744,
-0.8972789141108393,
-0.8458422736859311,
-0.7970241879333195,
-0.7508831852232019,
-0.7074442160887954,
-0.6667025864446388,
-0.6286278626300821,
-0.5931676707194267,
-0.5602513262902034
],
[
-1.3038359918308298,
-1.3596438787413387,
-1.4162176792777248,
-1.473239545221508,
-1.5303444080046296,
-1.587118900590545,
-1.643101493287245,
-1.6977841984858026,
-1.7506162254874271,
-1.8010099663433394,
-1.848349651727102,
-1.8920029148326798,
-1.9313353244906049,
-1.9657276859536243,
-1.99459556410463,
-2.0174100896010945,
-2.0337187270591577,
-2.0431644090829546,
-2.045501372353127,
-2.040606241538123,
-2.028483387416076,
-2.0092642390648656,
-1.9832008977034876,
-1.9506549311988874,
-1.9120825418145417,
-1.8680173972792917,
-1.8190523508720988,
-1.7658211140169489,
-1.7089807346120685,
-1.6491955090836212,
-1.5871227388794886,
-1.5234005498135856,
-1.458637836574702,
-1.393406279326573,
-1.3282343027616852,
-1.2636028039027052,
-1.199942455102041,
-1.1376323849685137,
-1.0770000456685245,
-1.0183220854102166,
-0.9618260569271373,
-0.9076928048825561,
-0.8560593867615974,
-0.8070223930499412,
-0.7606415436144461,
-0.7169434485447639,
-0.6759254335183624,
-0.6375593420898882,
-0.6017952400825256,
-0.5685649602479967
],
[
-1.3188651734857462,
-1.3749270446545894,
-1.4317023129682651,
-1.4888673589275663,
-1.5460517732744785,
-1.602837523910809,
-1.6587593650507138,
-1.7133068340616384,
-1.7659282024174192,
-1.8160367413874305,
-1.86301961600718,
-1.906249616120364,
-1.945099755487627,
-1.978960510229708,
-2.0072591320858697,
-2.0294800905586414,
-2.0451853331166485,
-2.0540327949900945,
-2.055791538029148,
-2.0503521181152142,
-2.0377312651528925,
-2.0180706106428916,
-1.9916298575551687,
-1.958775305721581,
-1.9199649420440186,
-1.8757313817129768,
-1.8266638619080537,
-1.773390311557918,
-1.7165603026809921,
-1.6568294642878918,
-1.5948457297457672,
-1.5312376067004791,
-1.4666045134156258,
-1.4015091193110387,
-1.3364715579051187,
-1.2719653409842562,
-1.208414785803548,
-1.1461937648963667,
-1.0856255944246922,
-1.0269838874877821,
-0.9704942106523181,
-0.9163363937431257,
-0.8646473541534051,
-0.8155243076549041,
-0.7690282482264823,
-0.7251875901146727,
-0.6840018764403557,
-0.6454454702604238,
-0.609471156013496,
-0.5760135915230244
],
[
-1.3309675257589018,
-1.3870889059543343,
-1.4438655323210021,
-1.5009692266521122,
-1.558025735381312,
-1.6146141606202136,
-1.670267653580435,
-1.7244757027610906,
-1.776688364583979,
-1.8263227725615856,
-1.8727722090000367,
-1.9154179155886522,
-1.9536436422493062,
-1.9868526800278863,
-2.0144868005474383,
-2.0360461618205914,
-2.051108897904805,
-2.0593488741967145,
-2.0605500535587558,
-2.0546161426041674,
-2.041574663598925,
-2.0215752310566875,
-1.994882451730334,
-1.9618643673153926,
-1.922977640829421,
-1.878750752329505,
-1.8297663741761534,
-1.776643910120318,
-1.720022961149501,
-1.6605482589115197,
-1.5988564045862628,
-1.5355645788360333,
-1.47126125286281,
-1.4064988326274868,
-1.341788104634979,
-1.2775943161324355,
-1.2143347077099813,
-1.1523773150838872,
-1.0920408635135659,
-1.033595588722801,
-0.9772648297786007,
-0.9232272508026715,
-0.8716195591930229,
-0.8225395982874771,
-0.7760497024083124,
-0.7321802123306298,
-0.6909330596623099,
-0.6522853395190851,
-0.6161928021736476,
-0.5825932058796979
],
[
-1.340134887652416,
-1.3961258758039214,
-1.4527091647871675,
-1.509553283246138,
-1.5662816671724653,
-1.6224723682204818,
-1.6776590359040051,
-1.7313334898424317,
-1.7829502075900727,
-1.8319330361551578,
-1.8776843785811117,
-1.919596997347754,
-1.9570684019380842,
-1.9895175432572123,
-2.016403230798509,
-2.0372433492658253,
-2.051633636510455,
-2.0592645742011575,
-2.059934921175867,
-2.0535606421702326,
-2.04017844190243,
-2.019943718017449,
-1.9931233552001935,
-1.9600842605444067,
-1.9212788095209312,
-1.8772284315606742,
-1.8285064669643591,
-1.7757212404147742,
-1.71950007645782,
-1.6604747645597668,
-1.599268785531236,
-1.5364864474258793,
-1.4727039517156233,
-1.408462319378692,
-1.344262047709712,
-1.2805593360616196,
-1.217763705386628,
-1.156236835797823,
-1.0962924530661828,
-1.038197105144467,
-0.9821716810493383,
-0.9283935354758988,
-0.8769990929272693,
-0.8280868149695956,
-0.7817204237577503,
-0.7379322845431939,
-0.6967268597221001,
-0.658084157224019,
-0.6219631066502054,
-0.5883048074001129
],
[
-1.3463853002297888,
-1.4020627189682604,
-1.4582656216496046,
-1.5146605438588692,
-1.570870158752785,
-1.6264732694839932,
-1.6810060780246996,
-1.7339650276768888,
-1.7848115199218149,
-1.8329787831901254,
-1.8778811102892146,
-1.9189255706833621,
-1.955526133646146,
-1.9871199050022348,
-2.0131848930207528,
-2.033258407006186,
-2.046954908153288,
-2.0539819490601343,
-2.054152831221296,
-2.0473948267124586,
-2.033752240684712,
-2.013384154906314,
-1.9865572619364547,
-1.953634649862804,
-1.9150616551750432,
-1.8713499612909792,
-1.82306102849759,
-1.770789761009814,
-1.7151491030928259,
-1.6567560450047814,
-1.5962193310860862,
-1.5341290063285198,
-1.4710478174642514,
-1.4075043989742078,
-1.343988119327648,
-1.280945432274475,
-1.2187775655650732,
-1.1578393789576078,
-1.098439229806026,
-1.040839694290377,
-0.9852590031639831,
-0.9318730615361938,
-0.8808179322384919,
-0.8321926717662859,
-0.7860624169024668,
-0.7424616292167674,
-0.7013974139378518,
-0.6628528393338051,
-0.626790192701955,
-0.5931541192377143
],
[
-1.3497616927032707,
-1.4049510070220586,
-1.4605960931544217,
-1.5163628089569996,
-1.571874602442511,
-1.626712788715952,
-1.680418096724985,
-1.7324937620839047,
-1.782410439734102,
-1.829613181878845,
-1.873530662400292,
-1.9135867186199014,
-1.9492141168972204,
-1.9798702286285481,
-2.005054038019322,
-2.0243236205003927,
-2.0373129793872664,
-2.0437469731266176,
-2.043453071596084,
-2.0363688875248656,
-2.022544827173139,
-2.002141721557929,
-1.9754238232955137,
-1.9427479731921182,
-1.9045499863912831,
-1.861329371303599,
-1.813633413781769,
-1.7620414910595978,
-1.7071502767826305,
-1.6495602962469167,
-1.5898641105181728,
-1.528636259233223,
-1.4664249775203546,
-1.4037456212041661,
-1.3410756821030116,
-1.278851246056651,
-1.217464734185727,
-1.15726376709382,
-1.0985509976231889,
-1.0415847669692684,
-0.9865804492567871,
-0.9337123598926872,
-0.8831161126686069,
-0.8348913196782175,
-0.789104536854084,
-0.7457923665924868,
-0.7049646377467271,
-0.6666075923570878,
-0.6306870178512725,
-0.5971512729954513
]
],
"zauto": true,
"zmax": 2.0605500535587558,
"zmin": -2.0605500535587558
},
{
"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.5697049414200269,
0.5657046549960358,
0.5617542445296045,
0.5578772932482388,
0.5540973937420004,
0.550437753244829,
0.5469207844642844,
0.543567695704963,
0.5403980961166069,
0.5374296333380926,
0.5346776813277445,
0.5321550955256098,
0.5298720505148171,
0.5278359719808529,
0.5260515700963905,
0.5245209757266716,
0.5232439744412655,
0.5222183267260688,
0.5214401565654762,
0.5209043852553807,
0.5206051833980296,
0.5205364118968937,
0.5206920226550733,
0.5210663916799292,
0.52165456136029,
0.5224523746239673,
0.5234564911824892,
0.5246642846760934,
0.5260736286654086,
0.5276825883814185,
0.529489043164104,
0.5314902707951763,
0.5336825287370337,
0.5360606680880606,
0.5386178136060916,
0.5413451375613589,
0.5442317469771063,
0.5472646938685597,
0.5504291075013071,
0.5537084376310166,
0.557084789223614,
0.5605393230923967,
0.5640526936681242,
0.5676054947899217,
0.5711786866657865,
0.5747539814360338,
0.5783141703705232,
0.5818433819028663,
0.5853272657846628,
0.5887531040996575
],
[
0.5656253388759926,
0.5613884827138024,
0.5572001650602644,
0.5530853076944834,
0.5490688843008894,
0.5451754972143227,
0.5414289367541383,
0.5378517381624605,
0.5344647536300876,
0.5312867586562303,
0.528334112715947,
0.5256204936056982,
0.5231567226914703,
0.5209506945179428,
0.519007418945502,
0.5173291774450789,
0.5159157878520844,
0.5147649643426684,
0.5138727522945525,
0.5132340116660822,
0.5128429181249622,
0.5126934488028887,
0.5127798195036057,
0.5130968425429029,
0.5136401790862536,
0.5144064666650093,
0.51539331114796,
0.5165991423313392,
0.5180229428455481,
0.5196638704713173,
0.5215208033032114,
0.5235918445375293,
0.525873828102852,
0.5283618672113553,
0.5310489848576462,
0.533925858462272,
0.5369807008818581,
0.5401992879634022,
0.5435651300779544,
0.5470597730827712,
0.5506632042373562,
0.5543543316986154,
0.5581115028373392,
0.5619130267499769,
0.5657376695492753,
0.5695650965583888,
0.5733762425041322,
0.5771535982986916,
0.5808814102198991,
0.5845457936394057
],
[
0.5614995711073286,
0.5570204328412482,
0.5525882096489398,
0.5482291887585521,
0.543969753908928,
0.5398359319225682,
0.5358529186338782,
0.5320446005703291,
0.5284330916860404,
0.5250383065783294,
0.5218775925855555,
0.5189654426106778,
0.5163133081782221,
0.5139295280102515,
0.5118193814030951,
0.5099852682296374,
0.5084270090177048,
0.5071422499525109,
0.506126949579061,
0.5053759171746898,
0.5048833678502875,
0.5046434568821194,
0.5046507558431915,
0.5049006358744642,
0.5053895288265994,
0.506115044781504,
0.5070759342603633,
0.5082718947197268,
0.509703233033106,
0.5113704076662978,
0.5132734851257916,
0.5154115538445995,
0.5177821438694308,
0.5203807016603417,
0.5232001655680648,
0.526230679251224,
0.5294594682045393,
0.5328708900237185,
0.5364466537393549,
0.5401661893127072,
0.5440071367988573,
0.547945916891013,
0.5519583411039645,
0.5560202206502362,
0.5601079374925627,
0.5641989481444084,
0.5682721994014284,
0.5723084442144103,
0.5762904544203101,
0.5802031343443876
],
[
0.5573368861282024,
0.5526104000746417,
0.5479289554826735,
0.5433202314537915,
0.5388120491967577,
0.5344318865474297,
0.530206368346714,
0.5261607505918331,
0.5223184196671808,
0.5187004305096226,
0.5153251088028964,
0.5122077417953382,
0.5093603797744424,
0.506791765479398,
0.5045074019049899,
0.502509760434978,
0.5007986216778393,
0.4993715315792898,
0.4982243462463165,
0.49735183128597105,
0.49674827604375305,
0.4964080804147364,
0.49632627215859704,
0.4964989159296046,
0.4969233814157476,
0.49759844681273413,
0.4985242249554206,
0.49970191225414134,
0.5011333743977959,
0.5028205966098191,
0.5047650388610732,
0.5069669464842699,
0.5094246727413841,
0.5121340709666266,
0.5150880093538571,
0.5182760514089974,
0.5216843304783512,
0.525295629245141,
0.5290896567818637,
0.5330434988859722,
0.5371322039615594,
0.5413294579923669,
0.5456082987576965,
0.5499418211636843,
0.5543038315431232,
0.5586694177508582,
0.5630154124311966,
0.567320737621654,
0.5715666287906227,
0.5757367447210284
],
[
0.5531464204534952,
0.5481682153515661,
0.5432329770891176,
0.5383698039292826,
0.5336079815392012,
0.5289764632420492,
0.5245033223799545,
0.520215196385393,
0.5161367461006472,
0.5122901569036302,
0.5086947097417776,
0.5053664497262015,
0.5023179771070476,
0.4995583800735136,
0.4970933210322348,
0.49492527827836397,
0.4930539340473999,
0.49147668879533957,
0.4901892712496274,
0.489186405282202,
0.48846248876136855,
0.48801223675446387,
0.48783124201272854,
0.4879164095726922,
0.4882662293861651,
0.48888086086258614,
0.48976201568875455,
0.4909126397519666,
0.492336410675214,
0.4940370833132337,
0.49601773016455125,
0.4982799353905756,
0.5008230083246505,
0.5036432835991955,
0.5067335695317892,
0.5100827943032458,
0.5136758818632443,
0.5174938684592967,
0.5215142488419156,
0.525711521310571,
0.530057885204551,
0.5345240347971552,
0.5390799904117524,
0.5436959105547039,
0.5483428367863765,
0.5529933342990705,
0.5576220039846778,
0.5622058545562035,
0.5667245347794263,
0.5711604352432821
],
[
0.5489370385584924,
0.5437034712559704,
0.5385106580280612,
0.5333891461680542,
0.528369713887936,
0.5234828136489424,
0.5187579836182172,
0.5142232487352547,
0.5099045374335294,
0.5058251436084215,
0.5020052652998955,
0.49846165114863356,
0.495207382518335,
0.49225181305271715,
0.48960067851261935,
0.48725637857389004,
0.4852184197791506,
0.4834839961898388,
0.4820486727171806,
0.4809071267467534,
0.4800538973696954,
0.4794840888060737,
0.4791939756241997,
0.47918146203492157,
0.4794463556300697,
0.4799904271277223,
0.48081724161745465,
0.4819317629768366,
0.48333975081313346,
0.48504698734197765,
0.48705838846928673,
0.4893770670459276,
0.49200342475108866,
0.4949343505458216,
0.4981625970779355,
0.5016763918902233,
0.5054593191555152,
0.5094904824700811,
0.5137449332598285,
0.5181943259932095,
0.5228077435264816,
0.5275526253753261,
0.5323957290841641,
0.5373040595057434,
0.5422457111394584,
0.5471905826338485,
0.5521109379851107,
0.5569818039689344,
0.5617812065058336,
0.566490259100578
],
[
0.544717170804019,
0.5392253422364554,
0.533771993084761,
0.5283891542179839,
0.5231091275346867,
0.5179638891586628,
0.5129844565459352,
0.5082002431254335,
0.5036384293553082,
0.4993233832115857,
0.49527616536576513,
0.4915141539157536,
0.488050819947059,
0.484895678175189,
0.4820544266502999,
0.4795292766696998,
0.47731945975690665,
0.4754218842273045,
0.47383190093445615,
0.4725441275693668,
0.4715532742962755,
0.470854911031377,
0.470446118366796,
0.4703259697844997,
0.470495802044382,
0.4709592431200405,
0.47172198247107555,
0.47279128638003076,
0.47417528086793037,
0.47588204517010296,
0.47791857813150285,
0.48028971585545466,
0.48299708896503635,
0.4860382096453977,
0.4894057708471653,
0.49308722266545857,
0.49706466562513574,
0.5013150705400166,
0.5058108038380129,
0.5105204099391971,
0.5154095819058905,
0.5204422402712268,
0.5255816381969256,
0.5307914179144532,
0.5360365566839103,
0.5412841576486827,
0.5465040593612039,
0.5516692552006747,
0.5567561288176537,
0.5617445232213948
],
[
0.5404946554015035,
0.5347424051748941,
0.5290263862992739,
0.5233801548942891,
0.5178375731323944,
0.5124321683943832,
0.5071964518880903,
0.5021612228042404,
0.49735489013087236,
0.49280284904022725,
0.4885269513911236,
0.4845451094793229,
0.48087106804495433,
0.47751437142182795,
0.4744805408316827,
0.4717714620206433,
0.46938596706481117,
0.4673205779290685,
0.4655703649866132,
0.4641298626781872,
0.46299397779819973,
0.46215882394141294,
0.4616224183136334,
0.46138518397136435,
0.461450211106021,
0.46182324483621245,
0.4625123838687791,
0.46352749408413935,
0.4648793630510838,
0.46657864452736325,
0.46863466418702854,
0.471054176397084,
0.47384017370938536,
0.476990852966724,
0.48049883273230165,
0.4843506960759141,
0.48852690259944914,
0.4930020778424255,
0.49774565190662606,
0.5027227874034135,
0.5078955138078448,
0.5132239733975633,
0.5186676835167631,
0.5241867294626308,
0.5297428191175555,
0.535300151288325,
0.5408260714356462,
0.5462915085483485,
0.5516712036185878,
0.5569437526222112
],
[
0.5362765910094012,
0.5302624670812047,
0.5242824516370693,
0.5183716776000302,
0.5125656122424839,
0.5068993675657457,
0.5014069654407229,
0.4961205864201483,
0.49106983807369115,
0.4862810842247416,
0.4817768795109983,
0.47757555320970396,
0.47369098146156274,
0.4701325775582119,
0.4669055161375132,
0.4640111899896547,
0.4614478793837899,
0.4592115954341698,
0.4572970431094611,
0.4556986377487902,
0.45441150241610745,
0.4534323723657643,
0.4527603369269827,
0.4523973575178828,
0.45234851255308295,
0.452621935264427,
0.45322842878219305,
0.4541807642053858,
0.45549269150794364,
0.45717771890522285,
0.45924774158353143,
0.4617116222464464,
0.4645738399052651,
0.4678333261117216,
0.471482597042213,
0.4755072653178297,
0.4798859796256696,
0.4845907978922346,
0.48958795715587794,
0.49483896664060983,
0.500301924776148,
0.5059329487014155,
0.5116876062343095,
0.5175222532874566,
0.523395200738742,
0.5292676598172381,
0.5351044404410138,
0.5408743997771185,
0.5465506567640447,
0.5521106016254886
],
[
0.5320692075500759,
0.5257924079725949,
0.5195478247007248,
0.5133722318399018,
0.5073027579550298,
0.5013761419713024,
0.49562793883413725,
0.49009170714426253,
0.48479821894320424,
0.47977473817567856,
0.4750444178361445,
0.4706258651835032,
0.4665329187308274,
0.46277466959803143,
0.4593557436555845,
0.4562768409693852,
0.4535355074359862,
0.4511270926787669,
0.4490458307386902,
0.4472859677893111,
0.4458428550899394,
0.44471392571359525,
0.44389947949016173,
0.4434032109545673,
0.443232428873142,
0.4433979326169802,
0.4439135303009268,
0.44479520652898813,
0.4460599738092143,
0.4477244703062068,
0.4498033952511137,
0.45230789823224316,
0.45524405503097676,
0.45861156609613923,
0.4624028011320048,
0.4666022842919391,
0.4711866720923528,
0.4761252263067198,
0.48138073439113654,
0.4869107879988174,
0.49266930165544603,
0.49860814157703415,
0.5046787386283434,
0.510833576629838,
0.5170274731472403,
0.5232185996697305,
0.529369217391638,
0.5354461304788192,
0.5414208788512034,
0.5472697064596406
],
[
0.5278777637474943,
0.5213380482510317,
0.5148289955287686,
0.5083891010833459,
0.5020572256830533,
0.49587178998939696,
0.4898699135621549,
0.48408653432840093,
0.4785535537289191,
0.47329906003377287,
0.4683466862590058,
0.4637151582580161,
0.4594180817818032,
0.45546400416050525,
0.45185676727630963,
0.4485961452745741,
0.44567873553389603,
0.44309904784882603,
0.4408507175444997,
0.4389277555831861,
0.43732574368597943,
0.4360428848157205,
0.4350808277712673,
0.4344451974382923,
0.4341457780219394,
0.4341963147367999,
0.43461392022797385,
0.43541809622829636,
0.43662940913825904,
0.4382678896962735,
0.44035125919408924,
0.4428931133389697,
0.44590121412395195,
0.4493760442651059,
0.4533097640435818,
0.45768567626398166,
0.4624782551330369,
0.46765373644916397,
0.47317120888818215,
0.47898409846663,
0.48504190719223206,
0.49129205550442673,
0.49768168550477665,
0.5041593042418443,
0.5106761778381456,
0.5171874221987263,
0.5236527694838212,
0.5300370180103661,
0.5363101949135662,
0.542447475265969
],
[
0.5237064806218266,
0.5169040510202362,
0.5101311741141783,
0.5034281657459095,
0.49683570793706316,
0.4903939742558875,
0.4841416936782558,
0.4781151935704217,
0.47234747289568574,
0.4668673650741214,
0.46169885434562763,
0.4568606082746934,
0.4523657808695608,
0.44822212517471877,
0.44443243181393993,
0.44099528280908934,
0.43790608121243574,
0.43515829041206694,
0.4327447959728312,
0.4306592901374876,
0.4288975756351239,
0.4274586905294653,
0.42634576751289543,
0.4255665568926558,
0.4251335606017876,
0.425063744166038,
0.42537781526296137,
0.4260990827264978,
0.427251939760126,
0.4288600494664254,
0.4309443469561639,
0.43352100507251085,
0.436599533184873,
0.4401811835536638,
0.4442578226079707,
0.4488113844451493,
0.4538139653873517,
0.45922855042592203,
0.46501029615083406,
0.47110824111970234,
0.47746728127431115,
0.4840302380173099,
0.49073985825909483,
0.4975406139426808,
0.5043802063388713,
0.5112107209095834,
0.51798941620798,
0.5246791614632661,
0.5312485604365822,
0.5376718136314544
],
[
0.5195585206254859,
0.512493870650557,
0.5054582016475524,
0.49849377002628253,
0.4916431895431617,
0.48494847816522985,
0.4784500368677388,
0.4721856063200828,
0.46618925945296813,
0.4604904974194473,
0.45511352138565525,
0.4500767508745529,
0.4453926494906771,
0.44106790023306,
0.4371039461448439,
0.4334978802432428,
0.4302436353888188,
0.4273333945623309,
0.42475911920851844,
0.4225140808421979,
0.42059427989838694,
0.4189996445669618,
0.4177349182043183,
0.41681016350010697,
0.4162408323193366,
0.4160473711602232,
0.4162543544705896,
0.4168891638568271,
0.4179802625422904,
0.4195551515641743,
0.4216381344112411,
0.4242480540523668,
0.4273961921826978,
0.4310845264266606,
0.4353045212208599,
0.4400365813185639,
0.44525022874478365,
0.45090498544522795,
0.45695186840677327,
0.46333534440923096,
0.4699955564656523,
0.47687062631715,
0.48389885434849145,
0.4910206732885562,
0.49818025668249766,
0.5053267294257738,
0.5124149695072593,
0.5194060237527487,
0.5262671842500928,
0.5329717864377408
],
[
0.5154360221354215,
0.5081097593452966,
0.5008125214529684,
0.4935886489279111,
0.4864828221042877,
0.47953901903268253,
0.47279939779257635,
0.4663031554518038,
0.46008542972281524,
0.45417632025000804,
0.44860011190945237,
0.44337478010828024,
0.438511846035111,
0.4340166275553011,
0.4298889001241112,
0.4261239448078202,
0.4227139220110733,
0.4196494753743115,
0.4169214456622594,
0.41452256270900617,
0.4124489853657385,
0.41070157288368214,
0.40928679223489406,
0.4082171899935143,
0.4075113811812305,
0.40719352987411156,
0.40729231889910883,
0.407839431827686,
0.408867602823334,
0.4104083296824145,
0.41248938981342914,
0.41513234090696594,
0.4183502175957139,
0.4221456420895983,
0.42650954336990665,
0.4314206250821619,
0.4368456434526864,
0.4427404665105322,
0.44905180080710616,
0.4557194064557064,
0.46267858521079214,
0.4698627219649698,
0.47720568338325103,
0.4846439199848158,
0.49211816987269147,
0.4995747144834028,
0.5069661825731198,
0.5142519344181615,
0.5213980826627075,
0.5283772200025969
],
[
0.5113401984853613,
0.5037528433025327,
0.4961952239097155,
0.4887139327277709,
0.48135587817959535,
0.4741671418129101,
0.4671917511908616,
0.4604704279917256,
0.45403938676450134,
0.44792927224293366,
0.4421643291146943,
0.4367618948477288,
0.43173229151065223,
0.42707916589577255,
0.4228002901729737,
0.4188887916195371,
0.41533473550060673,
0.412126946654646,
0.409254928881087,
0.4067107307055123,
0.4044906120227011,
0.402596385512684,
0.40103633415843665,
0.39982563570285223,
0.39898625210387195,
0.39854626574432267,
0.3985386665016722,
0.39899961921600563,
0.3999662740388712,
0.4014742243926872,
0.40355476593376577,
0.4062321568582842,
0.4095211131759215,
0.4134247797790238,
0.41793339068126145,
0.42302376872129827,
0.4286597245173128,
0.4347933122906603,
0.4413668053795529,
0.4483151836898658,
0.45556888923833194,
0.46305660611605826,
0.47070785189099745,
0.47845521829470744,
0.4862361584146816,
0.4939942755120698,
0.5016801180477329,
0.5092515229227694,
0.5166735735271766,
0.5239182520559252
],
[
0.5072715094847644,
0.49942327911131573,
0.49160617909449533,
0.48386924612077203,
0.47626180628629816,
0.4688322187117183,
0.4616265246224723,
0.45468706972608747,
0.4480511862480823,
0.441750035265879,
0.4358077165498591,
0.430240748662517,
0.4250580041961299,
0.4202611531805608,
0.4158456238396824,
0.41180203878094634,
0.40811803344237785,
0.40478032028810473,
0.40177683405747033,
0.3990987847068379,
0.3967424557110282,
0.39471061196935164,
0.39301341656741634,
0.3916687914246518,
0.3907021879153984,
0.3901457584645902,
0.3900369418577657,
0.3904164994528191,
0.39132607258413415,
0.39280537594670384,
0.39488919465183353,
0.3976044045575694,
0.4009672723555008,
0.40498129913284453,
0.40963583878756715,
0.41490564995976903,
0.42075143709740703,
0.42712132163563915,
0.4339530800878751,
0.44117691099998557,
0.4487184578985693,
0.45650182127920264,
0.46445233161371313,
0.47249891482954687,
0.4805759485247813,
0.4886245704268083,
0.4965934531465921,
0.5044390978211305,
0.5121257235045648,
0.5196248408256952
],
[
0.503229911298186,
0.4951204990900913,
0.4870442691964071,
0.47905291795502225,
0.4711984070160707,
0.46353157985737836,
0.4561006713728805,
0.4489497879835806,
0.4421174572391727,
0.435635362286437,
0.429527383766131,
0.4238090657705314,
0.4184876007427055,
0.4135623901526721,
0.40902618602609764,
0.40486675880923756,
0.40106897817991755,
0.3976171448934548,
0.3944973820175711,
0.3916998878296721,
0.38922086992646476,
0.3870640151807643,
0.385241393972534,
0.383773740022345,
0.38269008241019975,
0.382026732386195,
0.3818256483009801,
0.3821322249579167,
0.38299258656451424,
0.384450508992321,
0.3865441540857059,
0.3893028554542961,
0.3927442352194736,
0.3968719376805299,
0.40167422761565696,
0.4071236175940277,
0.41317757250558057,
0.4197802124973513,
0.42686482276816495,
0.4343569009026112,
0.442177440355028,
0.45024616156186265,
0.4584844500191972,
0.46681782888360845,
0.4751778675324985,
0.48350349547977056,
0.4917417459759152,
0.4998479926759484,
0.5077857662658664,
0.5155262481234725
],
[
0.4992151875521732,
0.4908435512218688,
0.48250772974531625,
0.4742623146045389,
0.4661621479434694,
0.45826079795495117,
0.45060891227669975,
0.4432525377502524,
0.43623151996589465,
0.4295781149395064,
0.42331595313554576,
0.4174594882990512,
0.41201403714727364,
0.40697647061165965,
0.4023365563961612,
0.39807888337491054,
0.3941852310599666,
0.3906371933796969,
0.38741883503527214,
0.3845191560530892,
0.38193416488403814,
0.3796684053053642,
0.37773583610128636,
0.37616001327876386,
0.374973564312709,
0.37421697093297496,
0.3739366963282987,
0.3741827137739811,
0.37500552606506127,
0.3764528135186575,
0.3785659092417891,
0.3813763613871342,
0.38490288450704097,
0.38914900674102704,
0.39410167419850745,
0.3997309790239192,
0.40599104811101866,
0.412821990684975,
0.4201526830824602,
0.4279040901337162,
0.435992794863967,
0.44433442914476645,
0.45284675508542205,
0.4614522236462067,
0.4700799171937522,
0.4786668545239105,
0.48715869338632145,
0.49550990448610277,
0.5036835132875649,
0.5116505144708453
],
[
0.49522736055290306,
0.4865915350784309,
0.4779946042146058,
0.4694943054013176,
0.46114863031313946,
0.45301414517052174,
0.4451441706374992,
0.43758692185365283,
0.43038373844672206,
0.42356755629804343,
0.41716178150178945,
0.41117971700800204,
0.40562466047876544,
0.40049073794641166,
0.39576446637920654,
0.3914269581545569,
0.38745660397074727,
0.3838320111229766,
0.3805349423351887,
0.37755300209273446,
0.3748818508493996,
0.372526783442239,
0.3705035726822211,
0.3688385383333426,
0.3675678460872667,
0.3667360690353317,
0.36639406192188206,
0.3665962175775313,
0.3673972067116854,
0.36884835235165975,
0.3709938546917222,
0.37386714669419,
0.3774877042810543,
0.38185863619036947,
0.3869653246905278,
0.39277528118461313,
0.3992392381182296,
0.4062933494261639,
0.4138622467287189,
0.4218626205542631,
0.43020697425285737,
0.43880722809089084,
0.4475779174613885,
0.45643881361311,
0.4653168808584486,
0.47414755879437975,
0.4828754152634306,
0.49145425400020254,
0.4998467817761128,
0.5080239466278422
],
[
0.4912671765672307,
0.4823641296541896,
0.4735033105725994,
0.46474586208353147,
0.45615321358944727,
0.4477852331874196,
0.4396982167382945,
0.4319428279012257,
0.42456213742751675,
0.4175899355618134,
0.41104950107657323,
0.40495299794140405,
0.3993016321410499,
0.39408663721381215,
0.38929107350148523,
0.3848923338603139,
0.38086516224133404,
0.3771849263497741,
0.37383085377261777,
0.3707889482254974,
0.3680543459322329,
0.36563294025333776,
0.36354217897164437,
0.3618110066928372,
0.36047897389431605,
0.3595945628224037,
0.3592127965917308,
0.3593922150305271,
0.36019133214482935,
0.3616647418645471,
0.3638591062379548,
0.36680932721168064,
0.37053524600909843,
0.375039210051407,
0.3803047834782519,
0.3862967573896052,
0.39296246104888727,
0.40023421768819945,
0.4080326609996336,
0.4162705538876782,
0.4248567371482122,
0.43369987501000073,
0.44271173973989775,
0.4518098686452879,
0.4609195163415725,
0.46997490126862407,
0.4789198023984111,
0.4877075990183211,
0.49630086562912606,
0.5046706390227126
],
[
0.48733665336722587,
0.47816220245824187,
0.4690333109522582,
0.4600147859776452,
0.45117179488056447,
0.44256783746674855,
0.43426252766487716,
0.42630931297039176,
0.4187533003880407,
0.4116293875779888,
0.40496090895450426,
0.39875899107635976,
0.39302276562036687,
0.38774051272225696,
0.38289171009458123,
0.3784498576006188,
0.37438585011037645,
0.37067160087126205,
0.3672835866069558,
0.3642059995673575,
0.361433246255393,
0.3589716136821769,
0.35684001237733526,
0.3550697822710619,
0.35370360117445054,
0.35279356495098013,
0.3523985231770126,
0.35258076977005615,
0.3534022193581533,
0.35492025367084645,
0.35718349205894795,
0.36022780803192406,
0.3640729537321304,
0.3687201426257085,
0.37415086527978353,
0.3803270802757735,
0.3871927566600761,
0.39467658102641434,
0.4026955153365773,
0.4111588230805088,
0.4199721765948475,
0.42904150718974615,
0.4382763428881979,
0.4475924748851268,
0.45691388577411096,
0.4661739489388644,
0.47531596434026463,
0.4842931311296761,
0.49306807483656684,
0.5016120502621678
],
[
0.48343967189683673,
0.4739884817780321,
0.46458586702551397,
0.45530054686206256,
0.4462017292613473,
0.4373568945041399,
0.42882935461530464,
0.4206757320994033,
0.4129435488938675,
0.4056691519049314,
0.3988762144850195,
0.39257503475307776,
0.38676279703989835,
0.38142487399753516,
0.3765371338834873,
0.37206909684272393,
0.3679876760213959,
0.3642611637051054,
0.36086309354277646,
0.35777563203307094,
0.3549922192438448,
0.35251927351249884,
0.35037687539609336,
0.34859843156709136,
0.34722937717333513,
0.3463250052343688,
0.34594752534763396,
0.34616246891978586,
0.34703459009026455,
0.3486234668271471,
0.35097907789574506,
0.35413769798050565,
0.35811848774741145,
0.3629211339103475,
0.36852480603685506,
0.3748885515062389,
0.3819530758051565,
0.389643689670874,
0.3978740816113789,
0.4065505143688807,
0.41557604932679687,
0.4248544608956151,
0.43429359258784034,
0.4438080061732258,
0.4533208679451245,
0.46276509139997246,
0.4720838095289395,
0.48123028302143445,
0.4901673661417169,
0.4988666539708945
],
[
0.4795825873391307,
0.46984826610667485,
0.4601648543090208,
0.4506052065897628,
0.44124286458598766,
0.43214964683274676,
0.4233929741621103,
0.41503308916716003,
0.4071203842140005,
0.3996930946801275,
0.3927756299415043,
0.38637779324208693,
0.3804950775191321,
0.37511012057967347,
0.3701952723287109,
0.36571608947187195,
0.3616354532973463,
0.35791792586612825,
0.35453393391829174,
0.35146340146928556,
0.34869853222643454,
0.3462455517512602,
0.3441253316534538,
0.3423729114362708,
0.3410359951766775,
0.3401725310411803,
0.3398474950650643,
0.34012901593652695,
0.3410840110604261,
0.34277356137956383,
0.34524832385588866,
0.348544343473385,
0.35267965258097606,
0.3576520109948934,
0.3634380379331211,
0.3699938300027386,
0.37725697950235,
0.3851497430659408,
0.39358299524716134,
0.4024605525198014,
0.41168346945277506,
0.4211539752234396,
0.4307788130995031,
0.44047184660076105,
0.45015588765679,
0.45976377503448795,
0.46923878257707874,
0.4785344675595019,
0.48761408314795485,
0.49644967968497283
],
[
0.4757748285106461,
0.46575013683521727,
0.45577759905797177,
0.44593438919455314,
0.43629865118135264,
0.42694689544185455,
0.4179510829514346,
0.40937556983098217,
0.4012741511912063,
0.3936874934637609,
0.38664126446918073,
0.38014524670725053,
0.37419364530849825,
0.3687666818817798,
0.36383341501299216,
0.3593555724479704,
0.35529204745596266,
0.35160362728795197,
0.34825749997002925,
0.3452311283452792,
0.3425151747746434,
0.3401152828491679,
0.338052646043664,
0.33636339358856127,
0.33509688857635456,
0.334313065097746,
0.3340789453515517,
0.334464494747618,
0.33553800919766996,
0.33736128787791364,
0.3399849149006462,
0.34344402991844447,
0.34775498189322657,
0.3529132107470712,
0.35889258463047574,
0.3656462537899519,
0.3731088997330273,
0.3812000996318913,
0.3898284214202713,
0.39889582860289785,
0.408302001026834,
0.41794825136725655,
0.42774081436549577,
0.43759338631083766,
0.4474288811797211,
0.4571804394014547,
0.4667917733134609,
0.47621696167436456,
0.4854198176611857,
0.49437295460951114
],
[
0.47202944895642773,
0.4617066330975054,
0.45143569234239306,
0.44129824815811364,
0.4313772737071113,
0.4217543041120644,
0.4125062781382166,
0.40370219706202504,
0.39539986333755167,
0.3876430223375156,
0.3804592564521008,
0.3738589558740228,
0.3678356063857702,
0.3623674964691784,
0.3574207736745726,
0.352953603905619,
0.34892104076682684,
0.345280123251393,
0.3419947037685277,
0.3390395635379399,
0.3364034820795211,
0.3340910645705111,
0.3321232648160136,
0.3305366479036728,
0.32938150396312477,
0.3287189575308426,
0.3286172331041736,
0.32914725785215687,
0.33037782232543095,
0.33237058078639203,
0.33517523990091624,
0.3388253317927902,
0.343334966793669,
0.34869689456642017,
0.35488207071456673,
0.36184075162355106,
0.369504959453218,
0.37779200990504214,
0.3866087047849236,
0.3958557688594023,
0.4054321482109669,
0.4152388662736014,
0.4251822317580315,
0.4351762905663902,
0.4451444985758182,
0.45502065743730546,
0.4647492000750624,
0.47428493840510927,
0.48359239643240537,
0.4926448511291406
],
[
0.46836358901491776,
0.4577348418692555,
0.4471557281904126,
0.43671237170198524,
0.4264927404643825,
0.4165836859931404,
0.4070675496413965,
0.3980185317791211,
0.38949910852540104,
0.3815568536187663,
0.37422205737922626,
0.3675065105770648,
0.36140372793294295,
0.355890729552426,
0.35093130239484427,
0.3464804646689906,
0.3424896937686934,
0.33891238462233064,
0.33570899501799933,
0.33285140290187226,
0.33032612625789776,
0.3281362072007043,
0.3263017054351246,
0.3248588575434145,
0.3238580280702125,
0.32336061325687104,
0.32343507762529133,
0.3241523288438388,
0.3255806807600373,
0.3277807164679789,
0.3308004253552406,
0.33467102304358487,
0.339403844822722,
0.3449886180534684,
0.3513932737233977,
0.358565278240586,
0.36643429109520204,
0.37491581778932975,
0.3839154529542755,
0.39333330043988507,
0.4030682043304272,
0.4130215074285306,
0.4231001504910574,
0.43321901910949695,
0.4433025245775543,
0.4532854654188312,
0.4631132570173162,
0.4727416402309358,
0.4821359893291499,
0.4912703385527356
],
[
0.4647988061504321,
0.4538568528765297,
0.442959907255655,
0.4321985594186699,
0.4216658556317861,
0.41145419071716544,
0.40165169623604086,
0.3923383253470171,
0.38358193773385285,
0.3754347750130086,
0.36793076264135804,
0.36108405400226895,
0.3548891322652286,
0.34932261117313407,
0.34434665449447427,
0.33991370923281744,
0.3359720671431854,
0.3324716689775484,
0.3293695612542675,
0.326634497676414,
0.3242503193127292,
0.32221791255576143,
0.32055569627324537,
0.3192987051185193,
0.3184964074310293,
0.3182094335018596,
0.31850541392336107,
0.31945415916143194,
0.3211224610470742,
0.3235688592275444,
0.3268387704872366,
0.3309603987990024,
0.33594180590406014,
0.3417694182372314,
0.34840808871604106,
0.35580265140818923,
0.3638807407549928,
0.37255652678600987,
0.3817349607282329,
0.3913161313415449,
0.4011993874577171,
0.4112869664403969,
0.4214869618957609,
0.4317155518931537,
0.44189848221428,
0.4519718541511682,
0.46188230331784086,
0.47158667712913066,
0.4810513271264273,
0.49025113127629477
],
[
0.4613612316727012,
0.4501000273750957,
0.43887644527712505,
0.4277853993410312,
0.4169249934495724,
0.4063933016036746,
0.39628456668914397,
0.3866850182845994,
0.37766862598123846,
0.3692932076509732,
0.36159737217365273,
0.35459876359687353,
0.34829397022246605,
0.34266027158583234,
0.33765914927263657,
0.33324123504450465,
0.32935216769975484,
0.3259387207968047,
0.32295456285428026,
0.32036510742757973,
0.31815106889910366,
0.3163105185737364,
0.31485939666422086,
0.31383055527223497,
0.31327148106958297,
0.3132408870062714,
0.3138043921130384,
0.31502954703400055,
0.3169805176325639,
0.31971280051232187,
0.3232683897984316,
0.3276718172407078,
0.3329274287458683,
0.3390181383140679,
0.3459057335951379,
0.3535326288997064,
0.361824807550814,
0.37069559318411305,
0.38004985032159433,
0.38978823343865737,
0.3998111650266672,
0.4100223071329767,
0.42033137979589547,
0.4306562610315803,
0.4409243695880285,
0.45107338121416224,
0.46105136239768,
0.470816424662957,
0.48033601034812146,
0.4895859199494879
],
[
0.4580815161355994,
0.44649703315417183,
0.43493972755456556,
0.4235085747160508,
0.41230659138698345,
0.40143754819351724,
0.391002020587634,
0.3810929711756135,
0.37179118523020616,
0.36316100122721423,
0.3552468560177164,
0.3480711644315679,
0.34163395154956255,
0.3359144532474519,
0.3308746292372642,
0.32646425075208513,
0.32262699762328034,
0.31930687674800295,
0.3164542742242753,
0.31403106085305965,
0.3120143449917707,
0.3103986593643498,
0.3091965382330207,
0.3084375652011504,
0.30816604831476474,
0.3084375240025531,
0.30931432791363506,
0.3108605169019094,
0.3131364857774618,
0.31619368161893247,
0.3200698526425477,
0.3247852526806708,
0.33034014249986865,
0.3367137907453188,
0.3438650042663674,
0.35173404475443587,
0.3602456495555392,
0.36931279106841114,
0.37884078686621986,
0.38873140278070495,
0.3988866565687286,
0.4092121117610959,
0.41961953438130856,
0.4300288591736821,
0.44036947167118373,
0.45058085658772407,
0.46061269269153454,
0.47042449163393746,
0.4799848855514899,
0.48927066783632384
],
[
0.45499453359540554,
0.4430856057509183,
0.4311901575167756,
0.4194108352354053,
0.4078552828704142,
0.3966328405013304,
0.38585050209505134,
0.3756083100195798,
0.36599450365412106,
0.3570808765824367,
0.34891889504136236,
0.34153714865198204,
0.33494061186018204,
0.3291119862519221,
0.3240151018360106,
0.3196000433020746,
0.315809410499494,
0.3125849803692461,
0.30987403315950207,
0.3076347210784008,
0.305840045962207,
0.30448021885309456,
0.3035633536797,
0.3031145765247653,
0.30317371238982177,
0.30379176164460786,
0.3050264224051136,
0.30693696889400707,
0.3095788589519167,
0.31299849915505623,
0.3172286174434395,
0.322284658156973,
0.3281625149535771,
0.33483776516958347,
0.34226639341525555,
0.35038682792801923,
0.35912299049908714,
0.3683879958517226,
0.3780881294082523,
0.3881267714425046,
0.398408003023115,
0.40883970767354477,
0.4193360591573144,
0.429819352265648,
0.44022118645270464,
0.4504830512252847,
0.460556388629168,
0.4704022239197845,
0.479990462549789,
0.48929895172474036
],
[
0.452138826587514,
0.43990800810199493,
0.4276736597092844,
0.4155415790110847,
0.40362360014045046,
0.39203433899759255,
0.38088712447975726,
0.3702892695822503,
0.36033698396700603,
0.351110382284868,
0.34266916265182285,
0.3350495715030464,
0.3282631958026628,
0.32229791890621834,
0.3171210704798118,
0.31268446083173557,
0.30893070057060534,
0.3058000382253411,
0.3032369315227364,
0.30119568501000377,
0.2996446858265709,
0.29856898860733694,
0.29797119020155555,
0.29787067131954453,
0.29830136848581956,
0.2993082967853086,
0.3009430961534845,
0.3032589351110162,
0.30630517160446336,
0.31012222067213724,
0.3147370866435575,
0.32015996424163456,
0.3263821963478786,
0.3333757143416525,
0.34109391190925814,
0.3494737497367101,
0.3584387824888123,
0.36790275163594194,
0.3777733936628399,
0.38795615869872957,
0.3983576021021889,
0.40888828548843625,
0.4194650932186685,
0.43001292951997505,
0.4404658080504117,
0.45076738012850426,
0.4608709714051541,
0.47073921118015216,
0.48034334546432667,
0.48966232563489015
],
[
0.449555788843196,
0.4370101775696326,
0.4244408152783329,
0.41195600957481515,
0.3996711949570178,
0.38770578936779154,
0.37617917488109065,
0.3652059254459579,
0.3548905556185391,
0.34532222900481246,
0.33657000672954396,
0.32867928568678234,
0.32167002736556904,
0.31553718866932023,
0.3102534571571026,
0.30577403088552957,
0.3020428596569059,
0.29899956261785593,
0.2965861975470921,
0.29475316656919154,
0.29346374681412973,
0.29269696427511227,
0.29244872976148795,
0.29273130145147314,
0.293571233023345,
0.2950060321501623,
0.2970798155192556,
0.29983831487991847,
0.3033236561915745,
0.3075693780176478,
0.3125961500798382,
0.31840858303711256,
0.32499339001547106,
0.33231899240218715,
0.3403364911545942,
0.34898178339826524,
0.3581785139525607,
0.3678415183472118,
0.377880429895587,
0.3882031727989124,
0.39871912915929586,
0.4093418364487917,
0.41999113459199244,
0.43059473410338417,
0.44108921763542036,
0.45142051757621215,
0.4615439334118449,
0.47142376591280316,
0.481032652077214,
0.4903506861812911
],
[
0.44728860065933695,
0.43444056982070184,
0.42154563086839253,
0.4087138565671855,
0.3960635495818208,
0.3837182744366056,
0.37180296871115903,
0.3604392198557607,
0.3497399426812671,
0.33980386400738105,
0.33071038095222693,
0.3225154582133576,
0.315249215124291,
0.30891569256813073,
0.3034949924697893,
0.29894760887931066,
0.29522041500732604,
0.2922535290788156,
0.2899872078934697,
0.28836800617552455,
0.28735363864474883,
0.286916217077693,
0.28704374543229066,
0.2877399127345363,
0.2890223289335121,
0.29091942602643134,
0.2934663189085553,
0.2966999965500678,
0.3006542834721006,
0.3053550497893166,
0.31081613089532506,
0.3170363341607303,
0.3239977691535452,
0.33166556717561724,
0.33998889050737324,
0.34890300235385124,
0.35833209238375685,
0.368192531495964,
0.37839625243554803,
0.38885400384290914,
0.3994782883215941,
0.4101858581592624,
0.42089969836375485,
0.4315504727592661,
0.4420774447785645,
0.4524289113337999,
0.46256220714188134,
0.4724433493681077,
0.48204639938877464,
0.4913526205700473
],
[
0.4453809512222327,
0.4322487321902241,
0.41904396872590743,
0.4058776788766126,
0.39287018264290086,
0.3801483680059133,
0.36784201297295804,
0.3560792106144342,
0.3449810842622511,
0.3346561509236972,
0.32519486336824116,
0.31666498798677356,
0.3091085008955452,
0.30254056604684226,
0.29695089139362313,
0.29230739051969495,
0.2885616998453596,
0.28565581795527695,
0.2835290134980282,
0.2821242013283695,
0.2813931663391833,
0.2813002462905503,
0.28182430244814183,
0.28295897529575437,
0.28471134224150546,
0.28709918631468634,
0.2901471709198837,
0.29388230183000197,
0.29832913022004126,
0.3035051845167522,
0.3094170918461283,
0.31605775533325087,
0.3234048056698846,
0.3314203745573216,
0.3400520790328919,
0.34923498731929997,
0.3588942721770967,
0.36894824508095536,
0.3793114916069522,
0.3898978789483468,
0.40062326567867773,
0.4114078013147899,
0.42217775324487505,
0.4328668392554058,
0.4434170755141492,
0.45377917366556264,
0.4639125379880594,
0.4737849253903686,
0.4833718380861051,
0.49265572154110754
],
[
0.4438756013990691,
0.4304836631137308,
0.41699169492075167,
0.4035108032780256,
0.390162393261664,
0.3770757169583782,
0.3643844793619102,
0.3522225097969321,
0.34071863274373415,
0.3299910341339983,
0.3201415953411464,
0.3112508157144646,
0.3033740109950539,
0.29653940908537646,
0.2907485459574311,
0.2859790229815681,
0.28218930334804326,
0.2793249037095924,
0.27732516176202526,
0.276129759912815,
0.27568432664718945,
0.2759446507760883,
0.27687926011351516,
0.2784702950662552,
0.2807127445258165,
0.28361222372669515,
0.2871815791458157,
0.29143670613653055,
0.29639204430432736,
0.302056248080962,
0.3084284958874806,
0.31549579874704475,
0.32323151686069584,
0.33159512311770295,
0.34053310040262486,
0.34998075026140013,
0.3598646342796382,
0.37010536232319285,
0.3806204704114623,
0.3913271795789711,
0.4021448819887506,
0.4129972526568165,
0.423813929849301,
0.43453174329627703,
0.4450954974645577,
0.4554583385382918,
0.46558174969487126,
0.4754352305970026,
0.4849957242444373,
0.49424685770261145
],
[
0.44281285755108046,
0.42919203662956984,
0.4154426314039614,
0.4016749875934711,
0.3880106301746435,
0.3745801279421558,
0.3615200423905018,
0.34896893384861416,
0.33706250455452547,
0.325928103893334,
0.3156789906075652,
0.3064089076423297,
0.2981876284464266,
0.2910581262127445,
0.2850358654736769,
0.2801104267167468,
0.2762493093114689,
0.27340341193296985,
0.2715134558738833,
0.27051654490008314,
0.27035213454245516,
0.27096685722448677,
0.2723178507858467,
0.27437442246990845,
0.27711803719295924,
0.2805407584266719,
0.2846424031915108,
0.28942679533853655,
0.2948975930222344,
0.301054201171204,
0.3078882414280726,
0.31538094351309864,
0.3235016662581919,
0.33220758823340657,
0.341444460846856,
0.3511482140340708,
0.3612471538773777,
0.37166448698079396,
0.38232093460856914,
0.3931372452203249,
0.4040364645086384,
0.41494586926260163,
0.4257985115279657,
0.43653435182856093,
0.44710098546841404,
0.45745398544030036,
0.4675569003469589,
0.47738095671160335,
0.48690452245206656,
0.49611239223038467
],
[
0.4422290396769277,
0.4284163891581095,
0.4144464228979646,
0.400427931455089,
0.386481616932715,
0.3727382904438177,
0.35933620395380594,
0.3464174610226732,
0.33412353571210873,
0.32259005125183043,
0.31194112269048685,
0.30228372837053724,
0.29370270475291244,
0.2862570086951863,
0.2799778177722588,
0.2748688284798449,
0.2709087959733208,
0.2680560125658613,
0.26625413698952166,
0.26543863060704326,
0.2655430474123894,
0.26650452925902696,
0.2682680219696438,
0.2707889080342232,
0.2740339294186178,
0.27798044953128104,
0.28261427598490413,
0.28792642129078494,
0.29390929062734145,
0.30055282792843957,
0.30784111130516373,
0.31574977513025965,
0.3242444767477895,
0.33328045736292106,
0.3428031025203143,
0.35274930864605,
0.3630494140782489,
0.3736294489743589,
0.38441348481999116,
0.3953259063638684,
0.4062934749607119,
0.41724709519231407,
0.42812323295644883,
0.43886496243373724,
0.4494226423405514,
0.45975423989465874,
0.4698253349821601,
0.4796088477190076,
0.4890845401693236,
0.49823834742060014
],
[
0.4421550337243249,
0.42819337706700106,
0.4140464477752228,
0.3998207853592034,
0.38563540428407467,
0.37162032348498414,
0.3579142989501378,
0.3446616838575903,
0.3320084027429766,
0.32009712121910217,
0.30906181980315073,
0.2990221277924652,
0.29007791500964886,
0.28230473625869174,
0.2757507312574695,
0.2704354696156491,
0.2663509960911994,
0.26346501830795316,
0.26172586219955224,
0.26106857718293924,
0.2614214508408077,
0.26271219484808583,
0.2648731615516162,
0.26784510976311876,
0.27157923573187925,
0.27603740637883645,
0.28119075815972927,
0.28701702661470013,
0.2934971133449439,
0.3006114514467972,
0.30833668994631974,
0.3166430985604555,
0.3254929296286402,
0.33483980348006487,
0.3446290398074675,
0.3547987600288735,
0.36528153811272773,
0.37600637219187266,
0.38690077290474567,
0.397892802758986,
0.40891294292572195,
0.4198957029822497,
0.4307809222531872,
0.44151473814284825,
0.45205021806712575,
0.46234766844875963,
0.4723746476648713,
0.48210572033918797,
0.4915219980931403,
0.5006105167405068
],
[
0.4426150167881402,
0.42855221566214435,
0.4142779096827639,
0.3998958248975017,
0.3855225497845762,
0.371286379959765,
0.3573254468739427,
0.34378504360251466,
0.3308141013847317,
0.31856083722580586,
0.3071676889184524,
0.29676577702779455,
0.2874692718183392,
0.27937017187580776,
0.27253408293955556,
0.26699757853659956,
0.2627675988675123,
0.2598231026145692,
0.25811886979662074,
0.2575910337621565,
0.25816366971393856,
0.25975563316859274,
0.262286837795332,
0.26568327714004397,
0.26988030580596933,
0.2748239705816552,
0.28047047684925763,
0.2867841378453484,
0.293734335587896,
0.3012920935511948,
0.30942682146813677,
0.31810366686004893,
0.3272817363771229,
0.3369132750708478,
0.34694374626889685,
0.35731265648728205,
0.36795492127632456,
0.37880256060022066,
0.3897865327634785,
0.4008385505064817,
0.41189276127687874,
0.4228872094950854,
0.43376502909176073,
0.4444753393202829,
0.4549738366370086,
0.46522309137283924,
0.47519257083435207,
0.4848584208103593,
0.4942030453044509,
0.5032145295482402
],
[
0.44362543456537923,
0.42951340185934495,
0.41516624113599276,
0.40068445738449526,
0.38618163540950023,
0.3717835701399895,
0.35762676694591544,
0.343856221275987,
0.3306224089078549,
0.3180774580745417,
0.30637053834889716,
0.29564259329140247,
0.2860206653255204,
0.2776122035250308,
0.27049988403322794,
0.264737567257818,
0.2603480147669801,
0.2573228517135923,
0.2556249836582946,
0.25519330599042805,
0.25594916504614207,
0.2578037356608932,
0.26066533959538396,
0.26444577203366376,
0.26906491593645443,
0.2744532561280171,
0.2805522802529415,
0.2873130892121864,
0.29469376949092035,
0.3026561724799362,
0.3111627080530553,
0.32017362660740356,
0.32964508378757174,
0.3395281011525328,
0.34976838727226095,
0.3603068835048326,
0.3710808481132151,
0.38202528231525834,
0.39307451883899464,
0.40416382448846117,
0.4152309031521861,
0.42621721856241346,
0.4370690842708601,
0.44773849133652377,
0.458183662830383,
0.46836933942629355,
0.47826681282898165,
0.48785373397203835,
0.49711373084776417,
0.5060358763604722
],
[
0.4451942933607184,
0.43108780391378976,
0.41672593068361247,
0.4022057098525501,
0.38763732080413044,
0.3731434638943136,
0.35885819257930407,
0.34492511104671325,
0.33149485556635055,
0.31872179486800484,
0.30675991833124694,
0.2957579400155439,
0.28585374236244515,
0.2771684224744035,
0.26980037883327496,
0.263820054550191,
0.25926607347932334,
0.2561434926409559,
0.2544246938988732,
0.25405305429627634,
0.25494904695961496,
0.25701796369170965,
0.2601581485789578,
0.26426857376470614,
0.269254783600172,
0.2750326171384275,
0.281529578772864,
0.2886841431171115,
0.29644356521752163,
0.3047608854903512,
0.3135917848906682,
0.3228918062599757,
0.33261426937130345,
0.3427090198100235,
0.35312199907927827,
0.36379552037403795,
0.37466908122817383,
0.3856805310221171,
0.39676742473182414,
0.40786842159754166,
0.41892461902480554,
0.4298807421915387,
0.44068613591668737,
0.45129552687549646,
0.46166954182128433,
0.4717749819613022,
0.4815848657181831,
0.49107826212408684,
0.50023994506302,
0.5090599043357076
],
[
0.44732080575862376,
0.43327617383202216,
0.41895985278244585,
0.4044653107404197,
0.3898990907251917,
0.375380393408272,
0.36104019141410654,
0.3470197914449583,
0.33346875647676466,
0.32054209941062073,
0.3083966679184841,
0.2971866694345385,
0.28705835271578767,
0.2781439868511201,
0.2705554685587618,
0.2643781250937916,
0.2596655024933006,
0.2564360397231281,
0.2546724291729333,
0.25432410799777744,
0.25531276731290375,
0.2575401579159275,
0.2608970022448822,
0.26527164143857257,
0.2705571996594968,
0.27665646598330845,
0.2834842306012357,
0.2909673082179922,
0.2990428244145676,
0.3076554886509072,
0.31675455160171606,
0.32629100168343983,
0.3362153609661923,
0.34647624804217175,
0.3570197190612026,
0.36778929237072633,
0.37872650600748053,
0.38977184063682113,
0.40086585016906207,
0.41195036588809614,
0.42296966829920907,
0.4338715484295765,
0.444608204414281,
0.45513693931622323,
0.46542064273096734,
0.47542805257108467,
0.4851338051116308,
0.49451829120000257,
0.5035673444912154,
0.5122717934934019
],
[
0.44999540237740515,
0.43606910457864373,
0.4218591377829666,
0.40745542626070325,
0.39296079327894695,
0.37849070562463266,
0.3641726159393926,
0.3501448254992086,
0.3365547783730814,
0.32355668424058137,
0.31130835682406655,
0.2999671602129977,
0.2896849972020198,
0.280602378579038,
0.27284180088625914,
0.2665009275390762,
0.2616463618423198,
0.25830901459780997,
0.2564820733631525,
0.25612228443241025,
0.25715467983109985,
0.2594801690609981,
0.2629847993006794,
0.2675491773614657,
0.2730566336401253,
0.2793991323200851,
0.286480522882175,
0.29421729194459606,
0.30253737249839646,
0.31137774845359684,
0.3206815803074103,
0.3303954376550699,
0.3404670280172251,
0.3508436164934688,
0.3614711721803508,
0.3722941691051268,
0.38325591020031097,
0.39429922250817706,
0.4053673774381588,
0.41640510964556254,
0.4273596331133203,
0.43818157786546075,
0.44882579284392576,
0.4592519791786442,
0.46942513370756217,
0.47931579578944056,
0.48890010171550885,
0.49815966061216593,
0.5070812736199743,
0.5156565241597797
],
[
0.4532000950217072,
0.43944741905420853,
0.42540357381520594,
0.4111550532851595,
0.39680098919607587,
0.3824530159014151,
0.3682347865501284,
0.3542810692334548,
0.3407363353058316,
0.3277527304073466,
0.3154872963931033,
0.30409830148063005,
0.29374055836533686,
0.2845596957880098,
0.2766855260983149,
0.2702249256148387,
0.26525497460564035,
0.26181738712914776,
0.2599153542318344,
0.25951370454905404,
0.26054273359567554,
0.26290529518372563,
0.26648602977786773,
0.2711611775862647,
0.2768074268020573,
0.2833086425481319,
0.29055993269974767,
0.29846911522887803,
0.30695609558873915,
0.31595087794438353,
0.3253909429332058,
0.33521859554059513,
0.3453786956396972,
0.3558169909149437,
0.36647911349257345,
0.3773101919421942,
0.3882549681951466,
0.39925828471106084,
0.4102658085825735,
0.42122487490619215,
0.4320853532132667,
0.4428004627874607,
0.45332748270626183,
0.46362831965627305,
0.47366991116869844,
0.4834244544014828,
0.49286946138521076,
0.5019876509472988,
0.5107666952990048,
0.5191988453346845
],
[
0.4569091521873308,
0.44338294546649387,
0.42956248908567385,
0.4155310123598529,
0.40138405377207187,
0.3872294082201895,
0.37318676606277323,
0.3593869775637842,
0.3459708574180904,
0.33308741841521183,
0.32089139504143666,
0.3095398983428512,
0.29918805391897363,
0.28998354551009764,
0.282060147554279,
0.27553059334998065,
0.2704794600053094,
0.2669570656964739,
0.2649755283183253,
0.2645079911876328,
0.265491530352719,
0.2678335155349113,
0.27142043462620713,
0.2761276798441737,
0.2818287067329946,
0.28840231087710666,
0.29573735707615373,
0.30373491682881415,
0.3123082435690453,
0.32138126285787194,
0.33088629098686295,
0.3407615863818836,
0.3509491604212649,
0.36139308922476454,
0.37203841299133494,
0.3828305998280806,
0.39371548646105775,
0.40463958008341927,
0.4155506024540012,
0.42639816863536906,
0.43713451045333496,
0.44771517379495573,
0.45809963663775016,
0.46825181031687396,
0.4781404000141931,
0.48773911215299204,
0.4970267066339572,
0.5059869007941599,
0.514608139555237,
0.5228832522679979
],
[
0.4610900288446939,
0.44783960797438477,
0.43429602785413096,
0.42053943571442615,
0.40666190512124617,
0.39276743198523145,
0.37897165095059826,
0.3654012094486741,
0.3521927171692618,
0.3394911623961158,
0.3274476574262334,
0.3162163537185062,
0.30595037300389905,
0.29679666096109764,
0.2888898137785727,
0.28234516865988585,
0.2772517639142961,
0.2736660854631887,
0.2716076983867647,
0.271057781736102,
0.27196117447232554,
0.2742318624160251,
0.27776109021802825,
0.2824267290820186,
0.2881023642620503,
0.2946648164112875,
0.3019993422071139,
0.31000235840044066,
0.3185820153316522,
0.3276572195666753,
0.3371557724798764,
0.3470122104606292,
0.3571657759122399,
0.36755877703938095,
0.3781354467182351,
0.38884130317672516,
0.3996229491006617,
0.4104282139584785,
0.42120653663129165,
0.43190949217658214,
0.44249138027986024,
0.45290980880450815,
0.4631262212329931,
0.47310633067646113,
0.48282043537870434,
0.49224360146923823,
0.5013557083555252,
0.5101413606688607,
0.5185896780112053,
0.5266939797029283
],
[
0.4657044803869241,
0.45277474491695235,
0.4395567101916435,
0.42612761227573276,
0.4125761852837144,
0.39900267738993017,
0.38551860584804293,
0.37224619106190254,
0.3593173910548867,
0.34687243317605815,
0.3350577133614932,
0.32402291436115366,
0.3139172001675496,
0.3048843981690363,
0.2970572076138663,
0.2905506848981824,
0.28545553509201715,
0.28183202246066275,
0.2797054952556348,
0.2790644842929995,
0.2798620088335866,
0.2820201403473254,
0.28543719294450676,
0.28999635899422066,
0.2955743836530552,
0.3020490312662476,
0.309304542240423,
0.31723482380076856,
0.3257445846767448,
0.3347489120527198,
0.34417188638642354,
0.3539447813701777,
0.3640042675867454,
0.37429088684529005,
0.3847479278267637,
0.3953207306586846,
0.4059563816980063,
0.4166037248955339,
0.42721360404916026,
0.43773925246043754,
0.4481367561736688,
0.45836552952400217,
0.4683887545753815,
0.4781737480556722,
0.4876922303045157,
0.4969204806104162,
0.5058393722478826,
0.5144342885540197,
0.5226949283959422,
0.5306150151789422
],
[
0.4707097860962688,
0.4581405604906709,
0.44529115621261856,
0.4322360377183703,
0.41906069970947785,
0.405861679522526,
0.39274631964458273,
0.379832222765218,
0.3672463250396271,
0.3551234922643326,
0.34360452223320276,
0.332833423200654,
0.322953847511191,
0.31410461019350944,
0.30641433358474934,
0.29999543969081727,
0.29493794751871094,
0.29130377412610853,
0.28912240262221445,
0.28838877159050486,
0.2890639916037288,
0.29107901791484825,
0.2943408201247165,
0.2987400788192108,
0.3041591835149011,
0.3104793817906304,
0.31758627693409475,
0.32537333977720384,
0.3337435301308993,
0.34260941214445556,
0.3518922698593962,
0.3615207145488945,
0.3714291783455792,
0.38155656113441017,
0.3918451764224783,
0.402240046129495,
0.41268852938922923,
0.4231402334671149,
0.4335471390019909,
0.4438638696881529,
0.45404804218089295,
0.4640606412144013,
0.47386637516623414,
0.483433977373571,
0.49273642797468015,
0.5017510798496037,
0.5104596803850255,
0.518848288245433,
0.5269070909550303,
0.5346301346730203
],
[
0.476060009909892,
0.4638856187598787,
0.4514418591146299,
0.4388005218009659,
0.42604392526600615,
0.4132649060166978,
0.40056656533789675,
0.38806171722987265,
0.3758719685357813,
0.36412634583929027,
0.3529593685626412,
0.34250846113585026,
0.3329106106530821,
0.32429822455737145,
0.31679423906401766,
0.3105066785297582,
0.30552305672491425,
0.3019052059241068,
0.2996852566220761,
0.29886349533644163,
0.29940864381824356,
0.3012607291621429,
0.3043362305400109,
0.3085347404170146,
0.31374611757021675,
0.31985711784410364,
0.32675673954520323,
0.3343399013351183,
0.34250944718748283,
0.3511767482218554,
0.36026130901316494,
0.36968980168607407,
0.3793948862462793,
0.38931407456892747,
0.399388792157271,
0.40956370577797435,
0.41978632363055335,
0.4300068369693909,
0.44017815321452447,
0.4502560646916332,
0.4601994990638713,
0.46997080347888837,
0.4795360220933782,
0.48886513470538895,
0.4979322321829524,
0.5067156120423318,
0.5151977848224473,
0.5233653887183063,
0.5312090161022449,
0.5387229608556867
],
[
0.48170723429478945,
0.4699562995134676,
0.4579489054674413,
0.4457542240393734,
0.4334514220925247,
0.42112961691276884,
0.40888759148415643,
0.39683321764101803,
0.38508252442334473,
0.3737583375802088,
0.36298840751096134,
0.35290294304695535,
0.3436314860836519,
0.33529910737512814,
0.3280219854633818,
0.3219025509798638,
0.31702452738782533,
0.31344834949902406,
0.3112075480898919,
0.3103066982606075,
0.31072139593838455,
0.31240044333525446,
0.3152700417048075,
0.3192394150511507,
0.32420704309583515,
0.33006664401650204,
0.33671221394470996,
0.3440417239594197,
0.35195939026053585,
0.3603766828838416,
0.36921238169983395,
0.37839202818597034,
0.38784708633005327,
0.3975140516631676,
0.4073336636330809,
0.4172503022630278,
0.4272115938474293,
0.4371682134342147,
0.4470738510623849,
0.4568852997508742,
0.4665626218553642,
0.47606935336456296,
0.4853727108425727,
0.4944437718080931,
0.5032576057632548,
0.5117933395654284,
0.5200341472143192,
0.5279671602430274,
0.5355833005522644,
0.542877042476897
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.00198612 (SEM: 0)
x1: 0.889652
x2: 0.428703
x3: 0.0620403
x4: 0.477204
x5: 0.860003
x6: 0.721345",
"Arm 10_0
hartmann6: -0.0167531 (SEM: 0)
x1: 0.10483
x2: 0.210858
x3: 0.868591
x4: 0.831949
x5: 0.233748
x6: 0.0911825",
"Arm 11_0
hartmann6: -0.0218554 (SEM: 0)
x1: 0.987825
x2: 0.589285
x3: 0.458667
x4: 0.608483
x5: 0.609408
x6: 0.65044",
"Arm 12_0
hartmann6: -0.273918 (SEM: 0)
x1: 0.385464
x2: 0.455468
x3: 0.459117
x4: 0.250578
x5: 0.778737
x6: 0.138175",
"Arm 13_0
hartmann6: -0.462499 (SEM: 0)
x1: 0.401178
x2: 0.514379
x3: 0.556813
x4: 0.284481
x5: 0.814183
x6: 0.0889996",
"Arm 14_0
hartmann6: -0.767672 (SEM: 0)
x1: 0.335496
x2: 0.585843
x3: 0.690025
x4: 0.327102
x5: 0.704439
x6: 0.00724161",
"Arm 15_0
hartmann6: -0.965303 (SEM: 0)
x1: 0.265306
x2: 0.662688
x3: 0.790957
x4: 0.369588
x5: 0.800351
x6: 3.42291e-18",
"Arm 16_0
hartmann6: -0.952352 (SEM: 0)
x1: 0.386881
x2: 0.609455
x3: 0.796518
x4: 0.335159
x5: 0.620741
x6: 0",
"Arm 17_0
hartmann6: -0.790919 (SEM: 0)
x1: 0.365473
x2: 0.584339
x3: 0.750171
x4: 0.323595
x5: 0.621966
x6: 0",
"Arm 18_0
hartmann6: -1.04434 (SEM: 0)
x1: 0.378463
x2: 0.651943
x3: 0.693635
x4: 0.317981
x5: 0.582421
x6: 0.00419118",
"Arm 19_0
hartmann6: -1.16621 (SEM: 0)
x1: 0.395947
x2: 0.675556
x3: 0.698173
x4: 0.321622
x5: 0.580696
x6: 0.00601455",
"Arm 1_0
hartmann6: -0.000851153 (SEM: 0)
x1: 0.642945
x2: 0.955892
x3: 0.121558
x4: 0.813211
x5: 0.637652
x6: 0.952821",
"Arm 20_0
hartmann6: -1.29132 (SEM: 0)
x1: 0.410966
x2: 0.719219
x3: 0.647227
x4: 0.316184
x5: 0.564306
x6: 0.00619903",
"Arm 21_0
hartmann6: -1.38608 (SEM: 0)
x1: 0.433214
x2: 0.762062
x3: 0.609672
x4: 0.313902
x5: 0.552675
x6: 0.00639606",
"Arm 22_0
hartmann6: -1.43805 (SEM: 0)
x1: 0.443549
x2: 0.792513
x3: 0.578673
x4: 0.313974
x5: 0.540079
x6: 0.00398552",
"Arm 23_0
hartmann6: -1.79343 (SEM: 0)
x1: 0.424673
x2: 0.843107
x3: 0.51404
x4: 0.34521
x5: 0.486941
x6: 3.32876e-12",
"Arm 24_0
hartmann6: -2.14874 (SEM: 0)
x1: 0.41128
x2: 0.869695
x3: 0.49797
x4: 0.381492
x5: 0.451377
x6: 0.00979608",
"Arm 25_0
hartmann6: -2.49969 (SEM: 0)
x1: 0.397336
x2: 0.886032
x3: 0.480676
x4: 0.422592
x5: 0.413807
x6: 0.0212643",
"Arm 26_0
hartmann6: -2.86378 (SEM: 0)
x1: 0.371223
x2: 0.903814
x3: 0.436524
x4: 0.488533
x5: 0.353269
x6: 0.022968",
"Arm 27_0
hartmann6: -2.88611 (SEM: 0)
x1: 0.356998
x2: 0.929707
x3: 0.410984
x4: 0.526385
x5: 0.316892
x6: 0.00940525",
"Arm 28_0
hartmann6: -2.80937 (SEM: 0)
x1: 0.3424
x2: 0.909796
x3: 0.400853
x4: 0.517529
x5: 0.310354
x6: 0.0725171",
"Arm 2_0
hartmann6: -1.14588 (SEM: 0)
x1: 0.505535
x2: 0.656055
x3: 0.81197
x4: 0.379333
x5: 0.877803
x6: 0.0189884",
"Arm 3_0
hartmann6: -0.0450205 (SEM: 0)
x1: 0.757186
x2: 0.781214
x3: 0.882771
x4: 0.598411
x5: 0.517964
x6: 0.569161",
"Arm 4_0
hartmann6: -0.0370313 (SEM: 0)
x1: 0.693038
x2: 0.414121
x3: 0.134982
x4: 0.467462
x5: 0.974968
x6: 0.316927",
"Arm 5_0
hartmann6: -0.00927357 (SEM: 0)
x1: 0.95205
x2: 0.491435
x3: 0.186161
x4: 0.826572
x5: 0.391467
x6: 0.341686",
"Arm 6_0
hartmann6: -0.0970133 (SEM: 0)
x1: 0.372392
x2: 0.231501
x3: 0.17215
x4: 0.167916
x5: 0.726338
x6: 0.402787",
"Arm 7_0
hartmann6: -0.028271 (SEM: 0)
x1: 0.916148
x2: 0.26941
x3: 0.896762
x4: 0.96937
x5: 0.538139
x6: 0.627427",
"Arm 8_0
hartmann6: -0.073061 (SEM: 0)
x1: 0.291749
x2: 0.22287
x3: 0.911979
x4: 0.233576
x5: 0.981372
x6: 0.546906",
"Arm 9_0
hartmann6: -0.0801835 (SEM: 0)
x1: 0.54797
x2: 0.432769
x3: 0.755362
x4: 0.829773
x5: 0.772336
x6: 0.315621"
],
"type": "scatter",
"x": [
0.8896524310112,
0.10482953954488039,
0.9878246989101171,
0.38546449440903524,
0.40117805349666225,
0.3354962016605869,
0.26530616565735116,
0.38688147506327175,
0.36547301726471426,
0.37846334018774036,
0.3959473404707403,
0.6429451778531075,
0.41096568373163905,
0.4332139356434659,
0.4435493305774755,
0.424672647124038,
0.41127975389430343,
0.3973356343409779,
0.3712233340227339,
0.3569982097373157,
0.34239969319932223,
0.5055354433134198,
0.7571856500580907,
0.6930381068959832,
0.9520503673702478,
0.37239226419478655,
0.9161479901522398,
0.29174890276044607,
0.5479696039110422
],
"xaxis": "x",
"y": [
0.4287032186985016,
0.21085828077048063,
0.5892851976677775,
0.45546817228355596,
0.5143787794757867,
0.5858426249624872,
0.6626882991305368,
0.6094551087539309,
0.5843389578642224,
0.6519428599673566,
0.6755564350633103,
0.9558922983705997,
0.7192190934586816,
0.7620619950489326,
0.7925128695124121,
0.8431066340576738,
0.8696951243178704,
0.8860315183591488,
0.903814152470661,
0.9297067126208302,
0.9097956082238563,
0.656055317260325,
0.7812144905328751,
0.41412073373794556,
0.49143460113555193,
0.23150083795189857,
0.2694101454690099,
0.222869542427361,
0.4327690191566944
],
"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.00198612 (SEM: 0)
x1: 0.889652
x2: 0.428703
x3: 0.0620403
x4: 0.477204
x5: 0.860003
x6: 0.721345",
"Arm 10_0
hartmann6: -0.0167531 (SEM: 0)
x1: 0.10483
x2: 0.210858
x3: 0.868591
x4: 0.831949
x5: 0.233748
x6: 0.0911825",
"Arm 11_0
hartmann6: -0.0218554 (SEM: 0)
x1: 0.987825
x2: 0.589285
x3: 0.458667
x4: 0.608483
x5: 0.609408
x6: 0.65044",
"Arm 12_0
hartmann6: -0.273918 (SEM: 0)
x1: 0.385464
x2: 0.455468
x3: 0.459117
x4: 0.250578
x5: 0.778737
x6: 0.138175",
"Arm 13_0
hartmann6: -0.462499 (SEM: 0)
x1: 0.401178
x2: 0.514379
x3: 0.556813
x4: 0.284481
x5: 0.814183
x6: 0.0889996",
"Arm 14_0
hartmann6: -0.767672 (SEM: 0)
x1: 0.335496
x2: 0.585843
x3: 0.690025
x4: 0.327102
x5: 0.704439
x6: 0.00724161",
"Arm 15_0
hartmann6: -0.965303 (SEM: 0)
x1: 0.265306
x2: 0.662688
x3: 0.790957
x4: 0.369588
x5: 0.800351
x6: 3.42291e-18",
"Arm 16_0
hartmann6: -0.952352 (SEM: 0)
x1: 0.386881
x2: 0.609455
x3: 0.796518
x4: 0.335159
x5: 0.620741
x6: 0",
"Arm 17_0
hartmann6: -0.790919 (SEM: 0)
x1: 0.365473
x2: 0.584339
x3: 0.750171
x4: 0.323595
x5: 0.621966
x6: 0",
"Arm 18_0
hartmann6: -1.04434 (SEM: 0)
x1: 0.378463
x2: 0.651943
x3: 0.693635
x4: 0.317981
x5: 0.582421
x6: 0.00419118",
"Arm 19_0
hartmann6: -1.16621 (SEM: 0)
x1: 0.395947
x2: 0.675556
x3: 0.698173
x4: 0.321622
x5: 0.580696
x6: 0.00601455",
"Arm 1_0
hartmann6: -0.000851153 (SEM: 0)
x1: 0.642945
x2: 0.955892
x3: 0.121558
x4: 0.813211
x5: 0.637652
x6: 0.952821",
"Arm 20_0
hartmann6: -1.29132 (SEM: 0)
x1: 0.410966
x2: 0.719219
x3: 0.647227
x4: 0.316184
x5: 0.564306
x6: 0.00619903",
"Arm 21_0
hartmann6: -1.38608 (SEM: 0)
x1: 0.433214
x2: 0.762062
x3: 0.609672
x4: 0.313902
x5: 0.552675
x6: 0.00639606",
"Arm 22_0
hartmann6: -1.43805 (SEM: 0)
x1: 0.443549
x2: 0.792513
x3: 0.578673
x4: 0.313974
x5: 0.540079
x6: 0.00398552",
"Arm 23_0
hartmann6: -1.79343 (SEM: 0)
x1: 0.424673
x2: 0.843107
x3: 0.51404
x4: 0.34521
x5: 0.486941
x6: 3.32876e-12",
"Arm 24_0
hartmann6: -2.14874 (SEM: 0)
x1: 0.41128
x2: 0.869695
x3: 0.49797
x4: 0.381492
x5: 0.451377
x6: 0.00979608",
"Arm 25_0
hartmann6: -2.49969 (SEM: 0)
x1: 0.397336
x2: 0.886032
x3: 0.480676
x4: 0.422592
x5: 0.413807
x6: 0.0212643",
"Arm 26_0
hartmann6: -2.86378 (SEM: 0)
x1: 0.371223
x2: 0.903814
x3: 0.436524
x4: 0.488533
x5: 0.353269
x6: 0.022968",
"Arm 27_0
hartmann6: -2.88611 (SEM: 0)
x1: 0.356998
x2: 0.929707
x3: 0.410984
x4: 0.526385
x5: 0.316892
x6: 0.00940525",
"Arm 28_0
hartmann6: -2.80937 (SEM: 0)
x1: 0.3424
x2: 0.909796
x3: 0.400853
x4: 0.517529
x5: 0.310354
x6: 0.0725171",
"Arm 2_0
hartmann6: -1.14588 (SEM: 0)
x1: 0.505535
x2: 0.656055
x3: 0.81197
x4: 0.379333
x5: 0.877803
x6: 0.0189884",
"Arm 3_0
hartmann6: -0.0450205 (SEM: 0)
x1: 0.757186
x2: 0.781214
x3: 0.882771
x4: 0.598411
x5: 0.517964
x6: 0.569161",
"Arm 4_0
hartmann6: -0.0370313 (SEM: 0)
x1: 0.693038
x2: 0.414121
x3: 0.134982
x4: 0.467462
x5: 0.974968
x6: 0.316927",
"Arm 5_0
hartmann6: -0.00927357 (SEM: 0)
x1: 0.95205
x2: 0.491435
x3: 0.186161
x4: 0.826572
x5: 0.391467
x6: 0.341686",
"Arm 6_0
hartmann6: -0.0970133 (SEM: 0)
x1: 0.372392
x2: 0.231501
x3: 0.17215
x4: 0.167916
x5: 0.726338
x6: 0.402787",
"Arm 7_0
hartmann6: -0.028271 (SEM: 0)
x1: 0.916148
x2: 0.26941
x3: 0.896762
x4: 0.96937
x5: 0.538139
x6: 0.627427",
"Arm 8_0
hartmann6: -0.073061 (SEM: 0)
x1: 0.291749
x2: 0.22287
x3: 0.911979
x4: 0.233576
x5: 0.981372
x6: 0.546906",
"Arm 9_0
hartmann6: -0.0801835 (SEM: 0)
x1: 0.54797
x2: 0.432769
x3: 0.755362
x4: 0.829773
x5: 0.772336
x6: 0.315621"
],
"type": "scatter",
"x": [
0.8896524310112,
0.10482953954488039,
0.9878246989101171,
0.38546449440903524,
0.40117805349666225,
0.3354962016605869,
0.26530616565735116,
0.38688147506327175,
0.36547301726471426,
0.37846334018774036,
0.3959473404707403,
0.6429451778531075,
0.41096568373163905,
0.4332139356434659,
0.4435493305774755,
0.424672647124038,
0.41127975389430343,
0.3973356343409779,
0.3712233340227339,
0.3569982097373157,
0.34239969319932223,
0.5055354433134198,
0.7571856500580907,
0.6930381068959832,
0.9520503673702478,
0.37239226419478655,
0.9161479901522398,
0.29174890276044607,
0.5479696039110422
],
"xaxis": "x2",
"y": [
0.4287032186985016,
0.21085828077048063,
0.5892851976677775,
0.45546817228355596,
0.5143787794757867,
0.5858426249624872,
0.6626882991305368,
0.6094551087539309,
0.5843389578642224,
0.6519428599673566,
0.6755564350633103,
0.9558922983705997,
0.7192190934586816,
0.7620619950489326,
0.7925128695124121,
0.8431066340576738,
0.8696951243178704,
0.8860315183591488,
0.903814152470661,
0.9297067126208302,
0.9097956082238563,
0.656055317260325,
0.7812144905328751,
0.41412073373794556,
0.49143460113555193,
0.23150083795189857,
0.2694101454690099,
0.222869542427361,
0.4327690191566944
],
"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": [
"