{
"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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/gpytorch/lazy/lazy_tensor.py:1741: UserWarning:\n",
"\n",
"torch.triangular_solve is deprecated in favor of torch.linalg.solve_triangularand will be removed in a future PyTorch release.\n",
"torch.linalg.solve_triangular has its arguments reversed and does not return a copy of one of the inputs.\n",
"X = torch.triangular_solve(B, A).solution\n",
"should be replaced with\n",
"X = torch.linalg.solve_triangular(A, B). (Triggered internally at ../aten/src/ATen/native/BatchLinearAlgebra.cpp:1672.)\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:44] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:50] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:18:57] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:02] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:08] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:14] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:20] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:26] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:31] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:37] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:42] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:48] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:19:54] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:20:00] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:20:04] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:20:09] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:20:13] 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.22637613467008277,\n",
" 'x2': 0.07548106422379,\n",
" 'x3': 0.5462105765393369,\n",
" 'x4': 0.24757068559356862,\n",
" 'x5': 0.3199846305494837,\n",
" 'x6': 0.6463687042752487}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 0.9678762491691202, 'hartmann6': -3.1728447965223836}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 3. Plot results\n",
"Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-2.3409929290721014,
-2.4042580624276417,
-2.4640741084827757,
-2.519783349692516,
-2.570710864816692,
-2.616175856834907,
-2.6555059838133293,
-2.688054908360143,
-2.713222987203823,
-2.7304805450879726,
-2.739392528089664,
-2.739642600474883,
-2.7310541217585174,
-2.71360517031898,
-2.687435100050756,
-2.6528411121292486,
-2.6102648316869246,
-2.560270498545714,
-2.5035176272580406,
-2.4407315169640484,
-2.372674736728516,
-2.3001218942112436,
-2.2238389624313664,
-2.1445675008124696,
-2.0630134374222053,
-1.979839713650947,
-1.8956619742540866,
-1.8110465264034592,
-1.7265099106264727,
-1.642519567995405,
-1.5594952201398504,
-1.4778106883229636,
-1.3977959625572332,
-1.3197393943550235,
-1.2438899317456982,
-1.170459347084717,
-1.0996244305615799,
-1.0315291378470222,
-0.9662866908211527,
-0.903981636963009,
-0.844671876498237,
-0.7883906673012462,
-0.7351486162540972,
-0.6849356627245571,
-0.6377230555648549,
-0.5934653201543946,
-0.5521022071503269,
-0.5135606103709335,
-0.47775643810326973,
-0.4445964204102093
],
[
-2.346866258969275,
-2.4106045679930546,
-2.4708987924703276,
-2.527085324738196,
-2.578481835871667,
-2.6243983864610962,
-2.6641516167138595,
-2.697082306185107,
-2.7225763136743257,
-2.7400884271320742,
-2.749167969793971,
-2.7494842022687287,
-2.7408488209357946,
-2.7232324639040075,
-2.696772384519485,
-2.66176947977085,
-2.6186745199813704,
-2.5680652662562142,
-2.51061760190332,
-2.447074413050199,
-2.3782156539019534,
-2.304832086376118,
-2.2277040097093894,
-2.1475852545835266,
-2.065192000012315,
-1.9811956038108174,
-1.8962185422329039,
-1.8108326250228437,
-1.7255587975470077,
-1.6408680017175943,
-1.5571827107717031,
-1.4748788682122644,
-1.3942880480004844,
-1.315699715842647,
-1.2393635157285967,
-1.1654915368082084,
-1.0942605371631573,
-1.0258141158227587,
-0.9602648343080123,
-0.897696295198246,
-0.8381651883836837,
-0.7817033162465504,
-0.7283196073866807,
-0.6780021251042937,
-0.6307200722017491,
-0.5864257883942614,
-0.5450567314017858,
-0.5065374282693118,
-0.4707813801505152,
-0.43769290201643174
],
[
-2.3499597207488265,
-2.414034579426343,
-2.4746731038209466,
-2.53120771146455,
-2.5829508119032036,
-2.6292056614613593,
-2.669280343255075,
-2.7025052326954384,
-2.728254048451255,
-2.745968113614081,
-2.755182744910492,
-2.7555538153995034,
-2.746881686172797,
-2.729129182929253,
-2.702430448330292,
-2.6670885389396988,
-2.6235614385054564,
-2.5724382289630787,
-2.5144088089524796,
-2.4502312515071902,
-2.3807005473919283,
-2.306621401904154,
-2.228786434685158,
-2.147959990025595,
-2.06486700624032,
-1.9801860280026833,
-1.894545376024249,
-1.8085215895465587,
-1.7226394276976427,
-1.6373728927331856,
-1.5531468910622224,
-1.470339267511113,
-1.389283036265321,
-1.3102686943236557,
-1.2335465466585975,
-1.1593290021644043,
-1.0877928200494982,
-1.0190813004339616,
-0.9533064223531373,
-0.8905509382216971,
-0.8308704366992186,
-0.7742953862157697,
-0.7208331695060227,
-0.6704701157752286,
-0.6231735321138147,
-0.5788937301410552,
-0.5375660383047522,
-0.49911278547364557,
-0.4634452379845253,
-0.4304654704920179
],
[
-2.3502291199179357,
-2.4144986364369565,
-2.4753418675289502,
-2.5320891912213437,
-2.5840499525286393,
-2.630523034054252,
-2.6708105672184774,
-2.7042352070772493,
-2.730161156946366,
-2.748018667473967,
-2.757331016617205,
-2.757742051070746,
-2.7490414155233758,
-2.7311839396503625,
-2.704299695006762,
-2.668692259675195,
-2.6248246614386677,
-2.5732947692123416,
-2.5148037671680505,
-2.450122147309826,
-2.380057268080589,
-2.3054253159829052,
-2.227029047756567,
-2.1456414528125034,
-2.061994679541588,
-1.976773210698806,
-1.8906102301872298,
-1.8040862538941784,
-1.7177292908128083,
-1.632015992317255,
-1.5473734080453538,
-1.4641810894617382,
-1.3827733706323642,
-1.3034417174257318,
-1.2264370786418752,
-1.1519722014313984,
-1.0802238931188128,
-1.0113352250544634,
-0.9454176831566916,
-0.882553275384353,
-0.8227966090569265,
-0.7661769510554386,
-0.7127002817969416,
-0.6623513498738871,
-0.6150957289258916,
-0.5708818723443726,
-0.5296431555493687,
-0.49129989054643153,
-0.45576129385337705,
-0.42292738704779853
],
[
-2.3476467190126185,
-2.4119650919887348,
-2.472869103856306,
-2.529689020467387,
-2.5817333342579447,
-2.628299033478881,
-2.668684998111619,
-2.7022089989908222,
-2.7282285660720107,
-2.7461655507546485,
-2.7555334892940815,
-2.7559659090664956,
-2.747242672067676,
-2.7293106575657573,
-2.7022950025777686,
-2.6664981106066485,
-2.6223856812219344,
-2.570561529105698,
-2.5117350390105253,
-2.4466860066377474,
-2.3762311906784603,
-2.3011955678221603,
-2.2223896923134,
-2.1405932372707834,
-2.056543967696646,
-1.9709310448985182,
-1.8843915445213806,
-1.797509226989047,
-1.710814812443051,
-1.6247872158172258,
-1.539855364050452,
-1.4564003419736602,
-1.374757701765285,
-1.2952198316408214,
-1.2180383206573941,
-1.1434262844445233,
-1.0715606357267906,
-1.0025842965437135,
-0.9366083578129755,
-0.8737141972777677,
-0.8139555694194136,
-0.757360680894642,
-0.7039342627397641,
-0.6536596463545048,
-0.6065008446811047,
-0.5624046337344273,
-0.5213026235043885,
-0.48311330200575764,
-0.44774403251226347,
-0.41509298216276647
],
[
-2.3422018318456748,
-2.406420821054194,
-2.467238871944077,
-2.523988031632671,
-2.5759781321681476,
-2.6225067516460605,
-2.662872261140155,
-2.696390477049365,
-2.722415255190289,
-2.7403629475436584,
-2.749739935161346,
-2.7501714606965733,
-2.741428858584662,
-2.723451361472273,
-2.696358449126717,
-2.660449645885668,
-2.6161907968498093,
-2.564188559469722,
-2.505157121387798,
-2.4398821591301436,
-2.369186602188396,
-2.2939013293978556,
-2.2148422221315194,
-2.132793601170172,
-2.048497221603912,
-1.9626456580174065,
-1.87587891638012,
-1.7887832871693656,
-1.701891682979915,
-1.6156849162187013,
-1.530593542696492,
-1.4470000223717085,
-1.3652410363649967,
-1.2856098591698868,
-1.2083587252403045,
-1.1337011563019392,
-1.0618142342586467,
-0.9928408172781722,
-0.9268917052035734,
-0.8640477657385729,
-0.8043620353345335,
-0.7478618086076312,
-0.6945507276774711,
-0.6444108784110533,
-0.5974048947334226,
-0.5534780656575613,
-0.512560433316642,
-0.474568864853554,
-0.4394090771874517,
-0.40697759183481286
],
[
-2.333901149585643,
-2.3978716243341096,
-2.4584557688453854,
-2.514989248187175,
-2.5667853745068987,
-2.6131447626921736,
-2.6533680073283237,
-2.6867719324950077,
-2.712709809638607,
-2.7305955518549005,
-2.739931203915754,
-2.7403360464354396,
-2.7315744474731227,
-2.7135785659438305,
-2.686461676932528,
-2.650518764677785,
-2.6062132022855,
-2.554151192255069,
-2.4950480808677815,
-2.4296917559112536,
-2.3589078783048683,
-2.28353018490746,
-2.2043773120599885,
-2.122236135288218,
-2.037850748499702,
-1.951915869688519,
-1.8650734800400395,
-1.7779116965775508,
-1.6909651175821971,
-1.6047160978115822,
-1.5195965827399396,
-1.4359902565604032,
-1.3542348458326674,
-1.2746244795805777,
-1.1974120461406166,
-1.1228115136831,
-1.0510001995184706,
-0.9821209858442049,
-0.916284488091975,
-0.853571187335536,
-0.7940335407098076,
-0.7376980836761731,
-0.6845675354665278,
-0.6346229145066848,
-0.5878256646233275,
-0.5441197861308558,
-0.503433959333478,
-0.46568364240421956,
-0.43077312169723436,
-0.3985974907306016
],
[
-2.3227687874149807,
-2.386342311970625,
-2.446545064135109,
-2.502718087759152,
-2.554180236012172,
-2.600237532137351,
-2.640195467177657,
-2.673374806919309,
-2.699131349238316,
-2.716879715333774,
-2.7261205930304926,
-2.726469850905562,
-2.717686717878836,
-2.6996971096699562,
-2.672607745338726,
-2.6367075031432634,
-2.592454650486135,
-2.5404515307921653,
-2.481410848250868,
-2.4161188675454297,
-2.345400398700881,
-2.2700888855249177,
-2.1910030770183146,
-2.1089302703551693,
-2.024615227534717,
-1.9387535329785979,
-1.8519881870210857,
-1.76490843101027,
-1.678050043559168,
-1.5918965672682244,
-1.5068810976557312,
-1.4233883909432377,
-1.3417571336754697,
-1.2622822753687888,
-1.1852173643791597,
-1.1107768535110663,
-1.0391383599547042,
-0.9704448766749492,
-0.9048069409403569,
-0.8423047710686024,
-0.7829903850330263,
-0.7268897145026275,
-0.6740047253737478,
-0.6243155512514345,
-0.5777826402240779,
-0.5343489084216346,
-0.4939418871457226,
-0.4564758446805959,
-0.42185385994804103,
-0.3899698233891602
],
[
-2.308846050101012,
-2.3718764638787295,
-2.431552464126833,
-2.4872221435031063,
-2.5382118546342483,
-2.583835292602405,
-2.6234054142886745,
-2.6562497766139606,
-2.6817297669898483,
-2.69926386943686,
-2.708354470981323,
-2.708616725717822,
-2.699806752777842,
-2.6818452780056967,
-2.6548323139043415,
-2.619049209481726,
-2.574946560566771,
-2.5231194470754517,
-2.464274084522929,
-2.3991912151974493,
-2.3286911524618024,
-2.253603844831763,
-2.174745475116279,
-2.0929016045465003,
-2.0088159758760042,
-1.923183750515089,
-1.8366479810508287,
-1.7497983203940017,
-1.663171211397411,
-1.5772510190724234,
-1.4924717384831343,
-1.4092190351269487,
-1.3278324601264588,
-1.2486077402976556,
-1.1717990819461963,
-1.0976214535482385,
-1.0262528306269725,
-0.9578363988225584,
-0.8924827198933541,
-0.8302718709440307,
-0.7712555698868747,
-0.7154593001685637,
-0.6628844453241729,
-0.6135104393084118,
-0.5672969323812166,
-0.5241859653862948,
-0.48410413847166267,
-0.4469647545619255,
-0.4126699139363603,
-0.3811125345430091
],
[
-2.29219092419909,
-2.354535874728204,
-2.4135435134615695,
-2.4685705502416466,
-2.518952675428129,
-2.5640133848661164,
-2.6030755296551504,
-2.6354761722231785,
-2.660585239987367,
-2.6778281629224487,
-2.686712069719058,
-2.6868541514132263,
-2.6780095656290097,
-2.6600950693421943,
-2.633204007913691,
-2.5976089614158653,
-2.553750443428128,
-2.502212982288853,
-2.4436925363792295,
-2.378960473333051,
-2.308828988712392,
-2.2341213428207127,
-2.1556484721178144,
-2.0741920352335814,
-1.9904930534449767,
-1.9052449565918206,
-1.819089860751834,
-1.7326170943768855,
-1.6463632249632556,
-1.560813051644449,
-1.4764011969531392,
-1.393514053007242,
-1.3124919220896336,
-1.233631249090342,
-1.1571868821412759,
-1.083374324307114,
-1.0123719576408199,
-0.9443232338984929,
-0.8793388352283652,
-0.8174988139523056,
-0.7588547234707589,
-0.703431752498731,
-0.6512308724683472,
-0.6022310033682989,
-0.5563911971232477,
-0.5136528306552165,
-0.473941793951947,
-0.43717065271576505,
-0.40324076123521646,
-0.3720442994705866
],
[
-2.272877313303412,
-2.3343997022205585,
-2.3926026546920847,
-2.446852957352318,
-2.496497343738551,
-2.54087108457765,
-2.5793091822420022,
-2.6111607407216293,
-2.6358070063379513,
-2.6526832904376043,
-2.661304400458192,
-2.6612922696192953,
-2.6524032671475766,
-2.6345515014796743,
-2.6078238568340675,
-2.572483120275866,
-2.528957550922046,
-2.4778180707819843,
-2.4197468177048806,
-2.3555020952007593,
-2.2858844759722112,
-2.2117074114496442,
-2.133773947116272,
-2.052859679737166,
-1.969701194458035,
-1.8849888558501104,
-1.7993628224267928,
-1.7134113267678457,
-1.627670485693253,
-1.5426251098723207,
-1.458710145375355,
-1.3763124993841251,
-1.2957730861510395,
-1.2173889867437366,
-1.1414156552902983,
-1.068069131427261,
-0.9975282375665879,
-0.9299367530154936,
-0.8654055663774746,
-0.8040148137802342,
-0.7458160136446959,
-0.6908342090874449,
-0.6390701268285428,
-0.5905023570189595,
-0.5450895523049142,
-0.5027726375317113,
-0.4634770147068006,
-0.4271147421307966,
-0.3935866627335636,
-0.36278445509105994
],
[
-2.2509940404049233,
-2.3115633466821643,
-2.3688319779645686,
-2.4221781443843655,
-2.470961186875141,
-2.514529955714945,
-2.552233666724336,
-2.583435787458523,
-2.6075314391352804,
-2.623968532859168,
-2.632272299962141,
-2.6320719775334345,
-2.6231272497867533,
-2.605350923814514,
-2.578823764086033,
-2.5437979773920025,
-2.500687705726852,
-2.4500475488776075,
-2.392542583837656,
-2.328914633422554,
-2.25994934744225,
-2.1864473829589373,
-2.109201323817483,
-2.028978571996158,
-1.9465095547045936,
-1.8624802091398585,
-1.7775276749615319,
-1.6922382720669298,
-1.6071470450883845,
-1.5227383493077664,
-1.4394471093741454,
-1.3576604989282854,
-1.2777198721200336,
-1.1999228354903493,
-1.1245253883575916,
-1.051744087462374,
-0.9817582111531924,
-0.9147119123543896,
-0.8507163594061734,
-0.7898518703577703,
-0.7321700497672236,
-0.677695937689706,
-0.6264301785200886,
-0.5783512130660741,
-0.533417491270053,
-0.4915696961984749,
-0.45273296323572043,
-0.4168190728021799,
-0.3837285911417583,
-0.35335293226976283
],
[
-2.2266436477553704,
-2.2861370978353417,
-2.342349702637583,
-2.3946723275598636,
-2.4424783387967515,
-2.4851317913373627,
-2.521997964173947,
-2.5524567680459116,
-2.575919489643561,
-2.5918490820868865,
-2.5997836786395574,
-2.599362152679989,
-2.590349452436959,
-2.5726583903132934,
-2.5463640537122565,
-2.511707527825733,
-2.4690873362461114,
-2.4190394629659386,
-2.3622091048096743,
-2.2993185555611686,
-2.2311355276736524,
-2.1584450936528823,
-2.0820269187067484,
-2.00263812597575,
-1.921001265594726,
-1.8377964582089494,
-1.7536567193309192,
-1.6691655874980196,
-1.5848563598521506,
-1.5012124172492,
-1.4186682695032433,
-1.3376110642490286,
-1.2583823844850561,
-1.181280217342985,
-1.1065610168613,
-1.0344418118891916,
-0.9651023304897356,
-0.8986871267938343,
-0.8353077066215878,
-0.7750446551012511,
-0.7179497733368445,
-0.6640482320981711,
-0.6133407487471779,
-0.5658057895546291,
-0.5214017938098263,
-0.48006940951399957,
-0.4417337239339876,
-0.40630646682516613,
-0.3736881604934368,
-0.34377018953613137
],
[
-2.1999410295042874,
-2.2582445906873385,
-2.3132884403720033,
-2.364477215199557,
-2.411199575227008,
-2.452836219251932,
-2.4887701142616687,
-2.518399430282545,
-2.5411536120117875,
-2.556512774800143,
-2.5640301062244144,
-2.563356152322445,
-2.554262853418244,
-2.536664238063312,
-2.5106302275995396,
-2.4763904870762508,
-2.434326809846999,
-2.384954746827298,
-2.328897285923948,
-2.2668545850229656,
-2.1995737572269296,
-2.1278217500540624,
-2.052363006693282,
-1.9739423626647807,
-1.8932727898925212,
-1.8110271833928953,
-1.7278332868627575,
-1.644270935089749,
-1.5608709448078812,
-1.478115146504481,
-1.3964371881830657,
-1.316223850113014,
-1.2378166893733609,
-1.1615138902818964,
-1.0875722375534773,
-1.0162091581383677,
-0.9476047986961826,
-0.8819041209148123,
-0.81921900780795,
-0.7596303814976119,
-0.703190337194449,
-0.6499242993460855,
-0.5998332044712577,
-0.5528957114257864,
-0.5090704343708895,
-0.46829818736058637,
-0.4305042231854248,
-0.3956004438487888,
-0.36348755658565324,
-0.3340571481461183
],
[
-2.171011935655379,
-2.2280211166130544,
-2.281793294568693,
-2.3317478771889624,
-2.377289936187826,
-2.4178180633116035,
-2.452734305522873,
-2.4814566307351447,
-2.503434314304099,
-2.518166401407025,
-2.525222922160842,
-2.524267792025988,
-2.5150814064724654,
-2.4975800859383064,
-2.471829135804347,
-2.4380467306451763,
-2.3965972144213623,
-2.3479743855668893,
-2.2927772219296,
-2.2316816267652237,
-2.1654118535953955,
-2.094714480107445,
-2.020336616150846,
-1.9430089056078004,
-1.8634330798534797,
-1.7822733926695595,
-1.700151133482354,
-1.617641460624933,
-1.5352719204370726,
-1.4535221589184057,
-1.3728244593851617,
-1.293564841601444,
-1.2160845351503526,
-1.1406816965327442,
-1.0676132805831429,
-0.9970970065915445,
-0.9293133812726537,
-0.86440775665726,
-0.8024924124822149,
-0.7436486605104469,
-0.6879289728321111,
-0.6353591378276415,
-0.5859404463739932,
-0.5396519074504749,
-0.49645248716575974,
-0.4562833592020237,
-0.41907014869337456,
-0.3847251465555461,
-0.35314946802904834,
-0.32423512817002775
],
[
-2.1399913875108805,
-2.195611837752768,
-2.2480198537370035,
-2.296650497325377,
-2.340926218190636,
-2.3802645585119633,
-2.414087800659929,
-2.441834964793083,
-2.4629764992064462,
-2.4770317796060626,
-2.48358908536362,
-2.4823270390684833,
-2.473035668358868,
-2.455634503497011,
-2.4301847987814504,
-2.3968933721800836,
-2.3561067724975193,
-2.3082962150451762,
-2.254035398909199,
-2.1939743609961955,
-2.128812666219994,
-2.0592746078147224,
-1.9860880776430752,
-1.909967759535634,
-1.8316025459078322,
-1.751646646156113,
-1.6707136915540686,
-1.5893731496639885,
-1.5081484544934851,
-1.4275163777676636,
-1.3479072800441696,
-1.2697059751868627,
-1.1932530156981578,
-1.1188462620542206,
-1.046742640339981,
-0.9771600228106643,
-0.9102791884267074,
-0.8462458369868612,
-0.7851726425531619,
-0.7271413402051352,
-0.6722048452114298,
-0.6203894057389772,
-0.5716967895157391,
-0.5261065018381221,
-0.4835780275830297,
-0.4440530842517538,
-0.4074578674585341,
-0.37370526558932937,
-0.34269701735039093,
-0.3143257850743981
],
[
-2.1070220447262926,
-2.161169952736195,
-2.212132136267603,
-2.2593600773874356,
-2.3022944185792493,
-2.340372518699658,
-2.3730378149607105,
-2.39975135047173,
-2.420005759234156,
-2.433341782892152,
-2.4393669778289593,
-2.4377756549196397,
-2.4283683644530827,
-2.411068598636752,
-2.385934121029541,
-2.3531607003253647,
-2.3130770807254466,
-2.2661315179342414,
-2.212871672630504,
-2.1539206035923173,
-2.089951798553528,
-2.0216657035059376,
-1.9497693626755366,
-1.874959896810229,
-1.7979118523732374,
-1.7192680268616034,
-1.639633186314343,
-1.5595700651077582,
-1.479597100504526,
-1.400187450760712,
-1.3217689442365406,
-1.2447246933101845,
-1.1693941766455147,
-1.0960746472905827,
-1.025022764873177,
-0.9564563807668764,
-0.890556428039998,
-0.8274688851412144,
-0.7673067948712161,
-0.7101523290083761,
-0.656058894444305,
-0.6050532791413386,
-0.5571378359506615,
-0.5122926997532391,
-0.4704780291146028,
-0.4316362584652571,
-0.3956943416262275,
-0.36256596317475087,
-0.33215369142140916,
-0.30435104611170494
],
[
-2.072252562448734,
-2.124854859532339,
-2.1743005411851524,
-2.220058158018346,
-2.261587209677432,
-2.2983455494064606,
-2.3297984575934843,
-2.3554296951139664,
-2.3747547763811134,
-2.3873364948041984,
-2.392802351963013,
-2.390862991852172,
-2.381330106817838,
-2.3641317407065268,
-2.3393227073302745,
-2.307088172462332,
-2.2677393536633716,
-2.2217015717863635,
-2.1694961533043817,
-2.1117185381353876,
-2.0490151792412727,
-1.9820614722545953,
-1.9115422590625726,
-1.838135685841502,
-1.762500564956953,
-1.6852669755221448,
-1.607029629695789,
-1.5283434754931766,
-1.4497210397788178,
-1.3716310884205172,
-1.2944982635779592,
-1.218703434941115,
-1.1445845663104852,
-1.0724379504001906,
-1.002519704665135,
-0.9350474515023481,
-0.8702021294229699,
-0.8081298993669065,
-0.7489441233822794,
-0.6927274021496421,
-0.6395336637478541,
-0.5893902989494136,
-0.5423003385192818,
-0.4982446659030799,
-0.4571842549284246,
-0.41906241747183737,
-0.38380704132433663,
-0.35133279457143773,
-0.32154327039404307,
-0.2943330457458726
],
[
-2.035835973926672,
-2.0868303571274365,
-2.1346998540542974,
-2.178930614417936,
-2.21900151106866,
-2.2543913860479714,
-2.2845878293874042,
-2.309097753024207,
-2.327459948985597,
-2.339259625730247,
-2.3441445706747235,
-2.34184210219279,
-2.332175429303545,
-2.3150775859281865,
-2.290600946755331,
-2.2589206247288263,
-2.220330821386078,
-2.1752342851033597,
-2.124126116484813,
-2.067573921668156,
-2.0061965669142494,
-1.9406435485524192,
-1.8715764366378904,
-1.7996532031452879,
-1.7255156819721886,
-1.6497800137859586,
-1.5730297099112922,
-1.4958108879072791,
-1.418629237420256,
-1.3419483257980895,
-1.2661889198556682,
-1.1917290666643845,
-1.1189047347603063,
-1.0480108654729,
-0.9793027225636979,
-0.9129974584557029,
-0.8492758386200997,
-0.7882840835240412,
-0.7301358009430216,
-0.674913991080449,
-0.6226731132573563,
-0.573441206261607,
-0.5272220551084591,
-0.48399739539637054,
-0.44372914322984514,
-0.406361634561603,
-0.37182385360509707,
-0.34003162649555696,
-0.3108897543104565,
-0.2842940593309997
],
[
-1.9979281297180498,
-2.047262922121793,
-2.093507349848904,
-2.1361655751931474,
-2.174736215728114,
-2.208719421305644,
-2.2376253494835665,
-2.2609842550140593,
-2.2783583348501284,
-2.289355288283639,
-2.293643241813115,
-2.290966265979684,
-2.281159248581531,
-2.2641605164722165,
-2.240020477570555,
-2.208904812095466,
-2.1710913933849714,
-2.126961029862346,
-2.0769830415761747,
-2.0216973560398905,
-1.9616950691492638,
-1.8975992658316778,
-1.8300474602548182,
-1.7596764753633845,
-1.6871100863577757,
-1.6129493851093657,
-1.537765599864505,
-1.462095003554779,
-1.386435526412329,
-1.3112447184655704,
-1.2369387584041034,
-1.1638922608835482,
-1.0924386860660524,
-1.0228711996075242,
-0.9554438677739433,
-0.89037310156478,
-0.8278392867353278,
-0.76798855449896,
-0.7109346613045034,
-0.6567609560233727,
-0.6055224195633041,
-0.5572477656729553,
-0.5119415928474232,
-0.46958657621748856,
-0.43014568567351597,
-0.3935644129427811,
-0.35977298669039315,
-0.3286885517172171,
-0.30021728662519465,
-0.27425643432436786
],
[
-1.9586862195286436,
-2.006320089701302,
-2.0509010259790723,
-2.0919515015683383,
-2.1289901113669636,
-2.1615384671580395,
-2.189129360075032,
-2.211316362128591,
-2.2276849649458517,
-2.237865186593795,
-2.2415453025682996,
-2.2384859928828615,
-2.2285338080576436,
-2.211632552787189,
-2.1878310969712924,
-2.1572863478064934,
-2.120260663223223,
-2.0771137484768207,
-2.028289856727305,
-1.9743017013132929,
-1.9157127469572504,
-1.8531194650710585,
-1.7871348061219934,
-1.7183736989001588,
-1.6474409581988938,
-1.5749216459183306,
-1.5013737107770453,
-1.4273226171984874,
-1.3532576367364142,
-1.2796294862937707,
-1.2068490329377852,
-1.1352868296090686,
-1.065273290407439,
-0.9970993540398836,
-0.9310175179095249,
-0.8672431531742465,
-0.8059560335077135,
-0.7473020279997553,
-0.6913949223000448,
-0.6383183422478134,
-0.5881277612152596,
-0.5408525765326321,
-0.4964982419861338,
-0.45504844290249014,
-0.4164672983013593,
-0.38070157167596075,
-0.3476828688922049,
-0.31732979919885396,
-0.2895500740196646,
-0.2642425184445141
],
[
-1.918267397162336,
-1.9641689613222533,
-2.007057989579266,
-2.046475452602153,
-2.0819600237768356,
-2.1130547788543144,
-2.1393150361516136,
-2.1603174690278353,
-2.1756705506794813,
-2.1850262392678386,
-2.1880925703655554,
-2.184646512714682,
-2.1745461189014392,
-2.1577407562092934,
-2.13427813847701,
-2.1043070731523117,
-2.068075294043537,
-2.0259223837717495,
-1.978268445069356,
-1.9255996895758853,
-1.868452363353556,
-1.8073963984866062,
-1.7430199329219072,
-1.67591548290987,
-1.606668187349792,
-1.5358462406305786,
-1.4639934190900454,
-1.391623483631819,
-1.3192161884748037,
-1.2472146204199914,
-1.176023614298864,
-1.106009023854965,
-1.0374976640515934,
-0.9707777757018294,
-0.9060998941326078,
-0.8436780296637365,
-0.783691089134391,
-0.7262844849736504,
-0.6715718918530841,
-0.6196371211776582,
-0.5705360908841851,
-0.5242988725080281,
-0.4809317995602068,
-0.4404196213267757,
-0.4027276847754524,
-0.36780412495843207,
-0.3355820418235318,
-0.305981639361794,
-0.27891230209098916,
-0.2542745843687413
],
[
-1.8768275234376195,
-1.9209748543716976,
-1.9621530143108314,
-1.9999215510738226,
-2.03383919547083,
-2.063470351790929,
-2.0883926077654156,
-2.1082053599881525,
-2.1225395822814166,
-2.1310686278972724,
-2.1335197470587652,
-2.1296857379697975,
-2.119435880992012,
-2.1027251074243134,
-2.0796003088265547,
-2.0502028585790004,
-2.0147667967877823,
-1.9736126548368844,
-1.9271374448204335,
-1.8758017788791563,
-1.8201153199448454,
-1.7606217735161305,
-1.6978844517344387,
-1.6324731566976303,
-1.564952823194091,
-1.4958740930771428,
-1.4257657946552802,
-1.3551291749338519,
-1.284433668797141,
-1.2141139699273806,
-1.144568176738896,
-1.0761568098041314,
-1.0092025262989601,
-0.9439903865761005,
-0.880768555305705,
-0.8197493435196977,
-0.7611105180656212,
-0.7049968215420569,
-0.6515216590145125,
-0.6007689179756548,
-0.5527948953671169,
-0.5076303102676593,
-0.46528238336061656,
-0.42573696489444357,
-0.38896069202453654,
-0.35490315475362966,
-0.32349904780994354,
-0.2946702843375024,
-0.26832804674255906,
-0.24437475078568505
],
[
-1.8345200365518122,
-1.8769001024705911,
-1.9163572739007604,
-1.9524696550198102,
-1.984815901406587,
-2.012981488806484,
-2.0365658869688894,
-2.0551907033792243,
-2.0685087973454457,
-2.0762142434602566,
-2.0780528431301413,
-2.07383266145864,
-2.0634338460443997,
-2.046816825605112,
-2.024027955164301,
-1.9952018158225875,
-1.9605596916911658,
-1.9204041809113443,
-1.8751103563866396,
-1.825114269676254,
-1.7708998106940521,
-1.7129849703637468,
-1.6519084296340474,
-1.5882171759615276,
-1.5224555940590534,
-1.4551562440166366,
-1.3868323566393306,
-1.317971951558009,
-1.2490334126347906,
-1.1804423250522165,
-1.1125893758830316,
-1.045829133557196,
-0.9804795432002233,
-0.9168219989344354,
-0.8551018777878138,
-0.7955294412548212,
-0.7382810291427858,
-0.6835004859584514,
-0.6313007728118911,
-0.5817657277867531,
-0.5349519451220146,
-0.490890748567526,
-0.44959023716756596,
-0.41103738283103697,
-0.37520015880504776,
-0.34202967711345855,
-0.3114623117360251,
-0.28342178335618895,
-0.257821181371914,
-0.23456489986073192
],
[
-1.791494954516466,
-1.8321030092960813,
-1.8698372528105027,
-1.904294231965129,
-1.935072294514179,
-1.9617776252893786,
-1.9840310805720474,
-2.0014758588554815,
-2.0137859866588186,
-2.020675491121915,
-2.0219079769977726,
-2.0173061407358612,
-2.0067605738340717,
-1.9902370813282917,
-1.9677817207957633,
-1.9395228871733905,
-1.9056700289628228,
-1.8665089400639325,
-1.8223939540705842,
-1.773737691214281,
-1.7209992084012498,
-1.6646714545404429,
-1.6052688520494045,
-1.5433156545926563,
-1.4793355229966738,
-1.4138425602705822,
-1.3473338807305524,
-1.280283668504203,
-1.2131386058158422,
-1.1463145132558423,
-1.0801940324286619,
-1.0151251864413922,
-0.9514206681759195,
-0.8893577249765741,
-0.8291785279955534,
-0.7710909330971913,
-0.7152695569790065,
-0.6618571066211096,
-0.6109659122103914,
-0.562679623325883,
-0.5170550355057062,
-0.47412401948906013,
-0.43389552864833525,
-0.39635766169606823,
-0.3614797580654239,
-0.3292145029015294,
-0.2995000178926561,
-0.27226191372806685,
-0.24741528022592219,
-0.22486659141832566
],
[
-1.747898010116658,
-1.7867369540012907,
-1.8227538289973124,
-1.8555634268657528,
-1.8847834672275174,
-1.9100403926457865,
-1.9309758629385885,
-1.9472539647827518,
-1.9585690982257342,
-1.9646544083662478,
-1.965290499647635,
-1.9603140166215314,
-1.9496255281058703,
-1.933196051569061,
-1.9110715419569226,
-1.8833747706846051,
-1.8503042356420802,
-1.8121300390229336,
-1.7691869885343068,
-1.7218654534506042,
-1.6706006878127726,
-1.6158613950755008,
-1.5581382595030244,
-1.4979330407911677,
-1.4357486602358538,
-1.3720805360509778,
-1.3074092775512915,
-1.2421947351922313,
-1.176871327641616,
-1.1118445233543452,
-1.0474883349722965,
-0.984143682552099,
-0.9221174896206537,
-0.8616823895158292,
-0.8030769351006405,
-0.7465062207032228,
-0.6921428398667194,
-0.6401281155895482,
-0.5905735509190548,
-0.5435624569345578,
-0.49915172232361804,
-0.4573736940035771,
-0.41823814173047125,
-0.38173428162456347,
-0.3478328343727264,
-0.31648809397035804,
-0.2876399827093341,
-0.2612160681633502,
-0.2371335185562129,
-0.21530097438140428
],
[
-1.7038699154492034,
-1.7409496425733313,
-1.7752615197170083,
-1.80643831060121,
-1.8341167110415746,
-1.857942896717406,
-1.8775786795531544,
-1.8927082706496219,
-1.9030455985194406,
-1.908342050489887,
-1.9083943947525905,
-1.9030525136025738,
-1.8922264593124587,
-1.8758922651296486,
-1.8540959370222152,
-1.8269551375811732,
-1.7946582512620146,
-1.757460764352082,
-1.7156791584742028,
-1.6696827513185775,
-1.6198840800611645,
-1.56672848998226,
-1.5106835658662092,
-1.4522289487227786,
-1.391846946202731,
-1.3300142018082894,
-1.267194558036782,
-1.2038331444916581,
-1.1403516475522801,
-1.0771446712413073,
-1.0145770742358096,
-0.952982159491344,
-0.8926605951791167,
-0.8338799541967022,
-0.7768747712466186,
-0.7218470292851831,
-0.6689669997217524,
-0.6183743723401205,
-0.5701796211028451,
-0.5244655605824385,
-0.48128905466392957,
-0.44068284440379,
-0.4026574656222952,
-0.3672032291551621,
-0.3342922379921536,
-0.30388041615668304,
-0.2759095245437786,
-0.25030913944061806,
-0.22699857044651361,
-0.20588869622188177
],
[
-1.6595457504808873,
-1.6948824967591396,
-1.7275078786173426,
-1.757072293317149,
-1.7832309539288436,
-1.8056491861164008,
-1.8240082512545943,
-1.8380116793436527,
-1.8473920511934623,
-1.8519180997180555,
-1.8514019075209762,
-1.8457058734915381,
-1.8347490249664546,
-1.8185121900205505,
-1.7970415417482855,
-1.7704500988692307,
-1.7389169139802672,
-1.7026838823904462,
-1.6620503255037957,
-1.617365702340972,
-1.5690209463976887,
-1.5174389934111803,
-1.463065058176186,
-1.406357150292988,
-1.3477772130594525,
-1.2877831508193425,
-1.2268218973067422,
-1.165323582962113,
-1.103696787877837,
-1.0423248187337966,
-0.9815629194952292,
-0.9217363122341272,
-0.8631389616926695,
-0.8060329613097121,
-0.7506484464540408,
-0.6971839504860909,
-0.6458071296322777,
-0.5966557926399745,
-0.5498391802656535,
-0.5054394475360509,
-0.46351330826110626,
-0.42409380642962735,
-0.38719218294252267,
-0.35279980878849027,
-0.3208901574861731,
-0.29142079072051996,
-0.26433533194490444,
-0.23956540365706291,
-0.21703250538652408,
-0.1966498113587003
],
[
-1.6150544681910317,
-1.6486701704012952,
-1.6796330308016458,
-1.7076106857249957,
-1.732276354813212,
-1.7533138855556512,
-1.770423250056403,
-1.7833264662289738,
-1.7917738765976723,
-1.7955506582886724,
-1.794483360361981,
-1.7884461790008095,
-1.7773666037049634,
-1.7612300192214125,
-1.7400828482203108,
-1.7140338810003992,
-1.6832535601961274,
-1.6479711550966054,
-1.608469944343392,
-1.5650806952528704,
-1.5181738547135526,
-1.4681509337184395,
-1.4154355725247918,
-1.360464726113782,
-1.3036803275316726,
-1.2455216890714456,
-1.1864188045128854,
-1.1267866309667387,
-1.0670203619081216,
-1.0074916548809916,
-0.9485457463239166,
-0.8904993687845209,
-0.8336393788943083,
-0.7782220046298604,
-0.7244726249681196,
-0.6725860020952739,
-0.6227268944766854,
-0.5750309874176344,
-0.529606085645301,
-0.4865335195480822,
-0.4458697228029693,
-0.40764794410862004,
-0.37188005962797166,
-0.3385584556313015,
-0.3076579529093437,
-0.27913774605556485,
-0.25294333199530716,
-0.22900840347059925,
-0.2072566848280597,
-0.187603689584658
],
[
-1.570518507636516,
-1.6024401820192629,
-1.6317693318829503,
-1.6581903913012201,
-1.6813940347861804,
-1.7010819705379132,
-1.7169721196752459,
-1.7288041451349112,
-1.736345259568819,
-1.7393961908127462,
-1.737797119050904,
-1.7314333298416194,
-1.720240265144081,
-1.7042076169078402,
-1.6833821101661157,
-1.6578686744766575,
-1.627829803489622,
-1.5934830403740883,
-1.555096680420451,
-1.5129839259375197,
-1.4674958398118796,
-1.4190135082437012,
-1.367939836513705,
-1.314691370461094,
-1.2596904735364953,
-1.2033581099735255,
-1.1461074024988114,
-1.0883380581321038,
-1.030431693809517,
-0.9727480468399543,
-0.9156220229608034,
-0.8593615148665272,
-0.8042459138427693,
-0.7505252338931971,
-0.6984197692178573,
-0.6481202102959457,
-0.5997881498181638,
-0.5535569163660299,
-0.5095326804065501,
-0.46779578343197015,
-0.42840224665545423,
-0.3913854204258467,
-0.3567577394049748,
-0.32451255161109094,
-0.2946259918098779,
-0.2670588716329272,
-0.24175856047020328,
-0.21866083286661264,
-0.1976916600727836,
-0.17876892570681413
],
[
-1.5260535055979414,
-1.5563126520872999,
-1.5840411370771734,
-1.608939712893658,
-1.6307159259744821,
-1.649088661755697,
-1.663793016709763,
-1.6745854550358406,
-1.6812491774366136,
-1.6835995863734015,
-1.6814896787360611,
-1.6748151398961664,
-1.6635188635702995,
-1.6475945929705995,
-1.6270893825604011,
-1.6021046238144188,
-1.5727954623143525,
-1.5393685479538175,
-1.5020781882902112,
-1.461221097086189,
-1.4171300273899956,
-1.3701666386505096,
-1.3207139661244085,
-1.2691688419238818,
-1.2159345698188184,
-1.161414092126526,
-1.1060038179765936,
-1.0500882167707988,
-0.9940352243946546,
-0.9381924652595883,
-0.8828842608032106,
-0.8284093734106835,
-0.7750394218953254,
-0.7230178985906174,
-0.6725597168363129,
-0.6238512195966198,
-0.577050583891842,
-0.5322885607408233,
-0.48966949573987617,
-0.44927258078156274,
-0.41115329243058274,
-0.37534497693131974,
-0.3418605456332955,
-0.31069424779069066,
-0.28182349030679177,
-0.2552106762060098,
-0.23080503561755616,
-0.20854442505024728,
-0.18835707290593007,
-0.1701632516457945
],
[
-1.4817680972212883,
-1.5104001335455943,
-1.5365646668949984,
-1.5599782582779582,
-1.5803647206159517,
-1.597459419879918,
-1.6110138514494827,
-1.620800444939158,
-1.6266175245616088,
-1.628294315732296,
-1.6256958444226082,
-1.6187275295231487,
-1.6073392290652888,
-1.5915284790565387,
-1.5713426685141143,
-1.5468799318494912,
-1.518288609759967,
-1.485765224960646,
-1.449551026394091,
-1.4099272591032008,
-1.367209401820721,
-1.3217406699217693,
-1.2738851033503298,
-1.2240205493934169,
-1.1725318154023312,
-1.1198042158209915,
-1.066217680355227,
-1.0121415334300992,
-0.9579300044966953,
-0.9039184871036177,
-0.8504205327767155,
-0.797725543112943,
-0.746097108781704,
-0.6957719357435087,
-0.6469592953740366,
-0.5998409349498831,
-0.5545713869941424,
-0.5112786194284219,
-0.47006497268144,
-0.4310083343815714,
-0.39416350667064814,
-0.3595637252886241,
-0.32722229326509433,
-0.29713429527329294,
-0.2692783614936354,
-0.24361845230051649,
-0.2201056373711101,
-0.19867984507755532,
-0.17927156040676295,
-0.1618034522572227
],
[
-1.4377637961552234,
-1.4648075244980745,
-1.4894479568157897,
-1.5114169305066791,
-1.5304539047335721,
-1.5463100238184324,
-1.5587524102726458,
-1.5675686380264613,
-1.5725713137365414,
-1.5736026634254854,
-1.570538985269427,
-1.5632947919255595,
-1.5518264345744308,
-1.536134984197119,
-1.5162681510773721,
-1.4923210556654294,
-1.464435722532333,
-1.432799248525593,
-1.3976406861945931,
-1.3592267715046775,
-1.317856698726367,
-1.273856196213447,
-1.2275711803404892,
-1.1793612618632145,
-1.1295933540528091,
-1.0786355920471766,
-1.0268517253437623,
-0.9745960967065431,
-0.9222092757552827,
-0.8700143770409332,
-0.818314061710371,
-0.7673881989116674,
-0.7174921471050805,
-0.6688556052756213,
-0.6216819784571896,
-0.5761481998323075,
-0.5324049519860435,
-0.49057723187319957,
-0.4507652070798305,
-0.4130453145427564,
-0.377471556675006,
-0.3440769535751478,
-0.3128751135095915,
-0.28386188707140003,
-0.25701707332916635,
-0.2323061489447693,
-0.2096819937551888,
-0.18908658879956852,
-0.17045266533630543,
-0.15370528611548662
],
[
-1.3941349450068254,
-1.4196320526834727,
-1.4427908793244244,
-1.4633579903027942,
-1.4810878626505406,
-1.495746717834599,
-1.507116544347154,
-1.514999259259903,
-1.5192209383065467,
-1.5196360183400552,
-1.5161313460523769,
-1.5086299166557007,
-1.497094121626549,
-1.4815283122614884,
-1.4619804916493133,
-1.4385429752957546,
-1.4113519098705283,
-1.380585605968445,
-1.3464617163735015,
-1.3092333661037885,
-1.2691844047212641,
-1.2266239974780753,
-1.1818807958730067,
-1.1352969300149813,
-1.0872220480011556,
-1.038007596518339,
-0.9880014979518353,
-0.9375433378604995,
-0.8869601370005284,
-0.8365627469629074,
-0.7866428793766865,
-0.7374707558888034,
-0.6892933493995999,
-0.6423331755435737,
-0.5967875862300499,
-0.5528285132778249,
-0.5106026089578667,
-0.4702317308923103,
-0.43181372066390167,
-0.3954234282023841,
-0.36111393716776696,
-0.32891794987094114,
-0.29884929356833045,
-0.2709045131254857,
-0.24506451802055795,
-0.22129625446717305,
-0.1995543761341274,
-0.17978288960481015,
-0.16191675342988843,
-0.1458834124392181
],
[
-1.350968727420124,
-1.374963322064961,
-1.3966852277636692,
-1.4158951791601266,
-1.4323620403528081,
-1.4458664150303164,
-1.4562044117940638,
-1.4631915134074087,
-1.466666481854689,
-1.4664952095515473,
-1.4625744024812248,
-1.4548349567630627,
-1.4432448708965258,
-1.42781152696608,
-1.4085831801463295,
-1.3856495197130045,
-1.3591412063114081,
-1.3292283460091634,
-1.296117925362011,
-1.260050295414577,
-1.2212948483272843,
-1.1801450718481623,
-1.136913190504682,
-1.0919246075816027,
-1.0455123507423751,
-0.9980117004171222,
-0.9497551484577049,
-0.9010677995426769,
-0.8522632931121947,
-0.8036402918610416,
-0.7554795555639785,
-0.7080415968801208,
-0.661564898745568,
-0.6162646605658397,
-0.5723320320076608,
-0.5299337880491303,
-0.4892123963954841,
-0.4502864277913754,
-0.41325126063365136,
-0.3781800331712828,
-0.3451247991099764,
-0.31411784533509923,
-0.285173133515495,
-0.2582878304102485,
-0.23344389469256477,
-0.2106096910067381,
-0.18974160480510904,
-0.17078563431510485,
-0.1536789388105484,
-0.13835132524296911
],
[
-1.3083452336588686,
-1.3308834126988536,
-1.3512148525285552,
-1.3691138931573064,
-1.3843631573200588,
-1.3967569465708596,
-1.406104762581017,
-1.4122349027505514,
-1.4149980647750233,
-1.4142708768070318,
-1.4099592497597149,
-1.402001428865382,
-1.3903706066296357,
-1.3750769530333957,
-1.3561689249497255,
-1.3337337374606024,
-1.3078969149776667,
-1.278820887085353,
-1.24670264786355,
-1.211770551791851,
-1.1742803677714084,
-1.134510750041918,
-1.092758307559633,
-1.049332460845432,
-1.0045502686822199,
-0.9587313891775628,
-0.9121933142331116,
-0.8652469870568653,
-0.8181928822097978,
-0.771317599205376,
-0.7248909954368853,
-0.6791638629891299,
-0.6343661369037505,
-0.5907056095187637,
-0.5483671161719472,
-0.5075121513221763,
-0.46827887046107675,
-0.43078243154613216,
-0.395115629621972,
-0.3613497794023264,
-0.3295358025149606,
-0.2997054785783846,
-0.27187282205737673,
-0.24603554976947883,
-0.22217660687835394,
-0.2002657221592028,
-0.18026096623987353,
-0.16211028942237804,
-0.1457530185953766,
-0.13112129567575148
],
[
-1.2663375722015229,
-1.2874670258662593,
-1.3064558411587084,
-1.3230913987287187,
-1.3371694578820275,
-1.3484973476470803,
-1.3568972571894014,
-1.3622095756458796,
-1.364296219065059,
-1.363043867126932,
-1.358367015928343,
-1.3502107376257015,
-1.3385530261970722,
-1.3234066043889856,
-1.3048200729881199,
-1.2828783016357028,
-1.2577019904011475,
-1.2294463711220205,
-1.1982990631686203,
-1.164477144760148,
-1.1282235430388041,
-1.0898028793900094,
-1.0494969280905302,
-1.0075998552240355,
-0.9644134016324375,
-0.9202421605133887,
-0.8753890799325726,
-0.8301512959787971,
-0.7848163762608149,
-0.7396590280887427,
-0.6949383025081313,
-0.6508953052489005,
-0.6077514089932314,
-0.5657069481671516,
-0.524940367494952,
-0.4856077884692753,
-0.4478429532760482,
-0.41175750315522475,
-0.3774415472787769,
-0.3449644786199708,
-0.3143759946469866,
-0.2857072827155107,
-0.2589723325279578,
-0.23416934078753893,
-0.21128217607428135,
-0.1902818749238604,
-0.1711281430557221,
-0.15377083865836383,
-0.1381514175967744,
-0.12420432335943254
],
[
-1.225012020496132,
-1.2447816672506025,
-1.2624767348436194,
-1.2778970827485256,
-1.2908509944107012,
-1.3011581725462171,
-1.308652811574247,
-1.3131866986619483,
-1.314632284276762,
-1.312885650648109,
-1.3078692932141427,
-1.2995346178392588,
-1.2878640478161685,
-1.2728726320987753,
-1.2546090521747486,
-1.233155940841384,
-1.2086294518271044,
-1.1811780530213336,
-1.1509805549195122,
-1.1182434257210225,
-1.083197481106742,
-1.0460940663930904,
-1.0072008689740768,
-0.9667975086155899,
-0.925171052564371,
-0.8826115930168625,
-0.8394080084028912,
-0.7958440095760982,
-0.7521945496441302,
-0.7087226537228695,
-0.6656767037796733,
-0.6232881948644892,
-0.5817699629100054,
-0.5413148710788498,
-0.5020949312814686,
-0.46426082977442085,
-0.42794182038972206,
-0.39324594561673165,
-0.36026054412978614,
-0.32905300310410013,
-0.29967171448853325,
-0.27214719603422344,
-0.24649334007723334,
-0.22270875564829407,
-0.20077817228394435,
-0.18067387683575564,
-0.1623571575492022,
-0.14577973267183642,
-0.13088514383062932,
-0.11761009737464811
],
[
-1.1844282086527056,
-1.2028878616983614,
-1.2193387747302225,
-1.2335927302681422,
-1.245469935737819,
-1.2548018323573948,
-1.2614339621468127,
-1.2652288462630896,
-1.2660688188380174,
-1.2638587501195566,
-1.2585285819172574,
-1.2500355886634877,
-1.2383662708337262,
-1.223537786162464,
-1.2055988298905431,
-1.1846298892544498,
-1.1607428195200575,
-1.1340797177370145,
-1.104811103563406,
-1.0731334507447636,
-1.0392661446843439,
-1.0034479679506096,
-0.9659332343203799,
-0.9269877019511811,
-0.8868843975472843,
-0.845899476912596,
-0.804308234690297,
-0.7623813592844788,
-0.7203815098383386,
-0.6785602723657338,
-0.6371555330036258,
-0.5963892887929166,
-0.5564659009707582,
-0.5175707827471127,
-0.4798695030045449,
-0.44350727921703736,
-0.40860882695109346,
-0.37527852935336314,
-0.3436008877772001,
-0.3136412138807021,
-0.28544652386593095,
-0.25904659676713093,
-0.23445516060093285,
-0.21167117256473555,
-0.19068016214719985,
-0.17145560887422806,
-0.1539603293651699,
-0.1381478513582246,
-0.12396375534105264,
-0.11134696736413541
],
[
-1.1446393304550377,
-1.161839393799773,
-1.1770961722086735,
-1.190232824109244,
-1.2010808951081104,
-1.2094829498011177,
-1.2152952454982489,
-1.2183904030103403,
-1.218660021957526,
-1.2160171794623758,
-1.2103987423678928,
-1.2017674155422935,
-1.190113444017121,
-1.1754558863685216,
-1.1578433823500967,
-1.1373543501637662,
-1.1140965678581285,
-1.088206118106346,
-1.059845704056006,
-1.0292023734531281,
-0.9964847160163479,
-0.9619196225225058,
-0.9257487113424159,
-0.8882245381802178,
-0.849606707369621,
-0.8101579989076884,
-0.7701406156690196,
-0.7298126414482429,
-0.6894247841891752,
-0.6492174614042237,
-0.6094182675478809,
-0.5702398468727147,
-0.5318781806679781,
-0.49451128511711584,
-0.45829830547034467,
-0.4233789838288897,
-0.3898734714874579,
-0.3578824523239843,
-0.327487540954184,
-0.2987519180529832,
-0.2717211651416376,
-0.24642426200946876,
-0.2228747115552987,
-0.20107175899537522,
-0.1810016749188399,
-0.16263907444152936,
-0.14594824760880232,
-0.13088447915051216,
-0.11739533864286944,
-0.10542192504014158
],
[
-1.105692376642794,
-1.1216835691661151,
-1.1357963980532881,
-1.1478648612632516,
-1.157731272761527,
-1.1652487264732307,
-1.1702835883883322,
-1.1727179740488871,
-1.1724521621128003,
-1.1694068875802661,
-1.1635254512563247,
-1.154775576150848,
-1.1431509380948972,
-1.128672298251597,
-1.1113881705745097,
-1.0913749682811669,
-1.0687365900110382,
-1.0436034276737316,
-1.0161308024715217,
-0.9864968610982092,
-0.9548999883776799,
-0.9215558134841417,
-0.8866939027242792,
-0.8505542416689112,
-0.8133836129315983,
-0.7754319734935127,
-0.7369489280513399,
-0.6981803835988661,
-0.6593654566199765,
-0.6207336890908792,
-0.582502614015864,
-0.5448756962932769,
-0.5080406609384683,
-0.47216820848742247,
-0.43741110700031727,
-0.4039036415738726,
-0.3717613956441326,
-0.34108133352472936,
-0.31194215043345674,
-0.2844048545216289,
-0.25851354492750356,
-0.2342963504044857,
-0.21176649441282924,
-0.1909234545084555,
-0.17175418623878946,
-0.1542343844140408,
-0.13832975744631026,
-0.12399729334670795,
-0.11118649887526022,
-0.09984059619840902
],
[
-1.0676283859439737,
-1.0824614918606694,
-1.0954804859167646,
-1.1065296816985686,
-1.1154616089025366,
-1.1221393184604118,
-1.126438704180011,
-1.1282508002913962,
-1.127484008740333,
-1.124066204208149,
-1.1179466592288037,
-1.109097727278852,
-1.0975162193960026,
-1.0832244108315081,
-1.0662706193791094,
-1.0467293068665406,
-1.0247006697967058,
-1.0003097035949162,
-0.9737047460737326,
-0.9450555278642797,
-0.9145507788013821,
-0.8823954578140406,
-0.8488076883362488,
-0.8140154907015839,
-0.7782534070839812,
-0.7417591135008226,
-0.7047701078373106,
-0.6675205536962148,
-0.6302383481617644,
-0.5931424683219578,
-0.5564406375506837,
-0.5203273388875207,
-0.48498218997287434,
-0.45056868233456004,
-0.4172332776648142,
-0.38510484522913724,
-0.3542944177636893,
-0.3248952381124899,
-0.29698306533235064,
-0.27061670690461215,
-0.2458387428581299,
-0.22267640782870735,
-0.201142598152666,
-0.1812369728213632,
-0.16294711933071038,
-0.14624975799091433,
-0.13111196098953748,
-0.11749236532389973,
-0.10534236155869214,
-0.09460724316236346
],
[
-1.0304827098256217,
-1.0442083539637927,
-1.0561833462249919,
-1.066261805739718,
-1.0743059433805544,
-1.0801882168417696,
-1.0837934924412425,
-1.0850211752234895,
-1.0837872642393616,
-1.0800262850566291,
-1.0736930470987347,
-1.0647641700235124,
-1.053239321900856,
-1.0391421133030796,
-1.0225205963129067,
-1.0034473262874894,
-0.9820189569447453,
-0.958355355399864,
-0.9325982421392441,
-0.904909380188322,
-0.8754683563644932,
-0.8444700140228506,
-0.8121216098725235,
-0.7786397764345635,
-0.7442473761568459,
-0.7091703331701352,
-0.6736345246033978,
-0.6378628059752194,
-0.6020722352770035,
-0.5664715488293272,
-0.5312589296400757,
-0.4966200965325551,
-0.46272673032621014,
-0.4297352422873255,
-0.39778588024219186,
-0.36700215936150093,
-0.33749059778570745,
-0.3093407319831658,
-0.28262538296191253,
-0.2574011420827873,
-0.2337090440952354,
-0.21157539496069977,
-0.19101272285265547,
-0.17202082223904225,
-0.15458786298545069,
-0.13869153880870488,
-0.12430023202627494,
-0.11137417427809027,
-0.09986658565760909,
-0.08972477741149265
],
[
-0.994285287377479,
-1.006953733723431,
-1.0179340870051603,
-1.0270897766725513,
-1.0342921788892925,
-1.0394226300602223,
-1.0423744388824674,
-1.0430548606795014,
-1.0413869937965736,
-1.0373115538840416,
-1.0307884783807375,
-1.0217983110164734,
-1.0103433153778185,
-0.9964482682260505,
-0.980160887899544,
-0.9615518610893692,
-0.9407144425012246,
-0.9177636159498186,
-0.8928348214300666,
-0.8660822695404066,
-0.8376768810242794,
-0.8078039039026772,
-0.7766602726395192,
-0.7444517822622421,
-0.7113901549683858,
-0.677690077464424,
-0.6435662844003811,
-0.6092307573110364,
-0.5748901001197192,
-0.5407431422287623,
-0.5069788092179193,
-0.4737742898429259,
-0.44129351692123864,
-0.40968596925529677,
-0.37908579231332307,
-0.3496112271989533,
-0.32136433063412984,
-0.2944309633129649,
-0.26888102004052983,
-0.2447688724749557,
-0.22213399392029243,
-0.20100173531614285,
-0.18138422216473682,
-0.16328134344718226,
-0.1466818054369492,
-0.1315642255605738,
-0.11789824394759152,
-0.1056456329373816,
-0.09476138747837726,
-0.08519478199232466
],
[
-0.959060927150729,
-0.9707218991650072,
-0.9807563386088858,
-0.989036505656637,
-0.9954424449095971,
-0.9998638655462995,
-1.0022020131743041,
-1.0023714992867852,
-1.0003020508636757,
-0.9959401394301994,
-0.9892504461422805,
-0.9802171176902847,
-0.968844767563835,
-0.9551591790656145,
-0.9392076708576763,
-0.9210590930167593,
-0.9008034315178335,
-0.8785510113811329,
-0.8544313027161755,
-0.8285913486489267,
-0.8011938485716978,
-0.7724149432657412,
-0.7424417593085273,
-0.7114697781181415,
-0.6797000996252445,
-0.6473366718140567,
-0.6145835554222818,
-0.5816422883268296,
-0.5487094071012866,
-0.5159741745105092,
-0.4836165519211889,
-0.45180544533044475,
-0.42069724346223714,
-0.39043465658703136,
-0.3611458557285381,
-0.332943903989841,
-0.3059264650282383,
-0.28017576832386637,
-0.2557588068371295,
-0.23272773988770967,
-0.21112047251725974,
-0.19096138208323188,
-0.1722621632162975,
-0.15502276338918364,
-0.1392323830247939,
-0.12487051616002942,
-0.11190801004002293,
-0.10030812452766846,
-0.09002757477809409,
-0.08101754317109533
],
[
-0.9248295931449567,
-0.9355321144141829,
-0.9446685796732057,
-0.9521196164005373,
-0.9577734599817024,
-0.9615277083195288,
-0.9632910625097777,
-0.9629850215723451,
-0.9605454963917195,
-0.9559243053979003,
-0.9490905124053569,
-0.9400315658200005,
-0.928754198581252,
-0.915285050179967,
-0.8996709762466566,
-0.881979017726871,
-0.86229601050694,
-0.8407278272091505,
-0.8173982551739266,
-0.7924475276220813,
-0.7660305377687713,
-0.7383147773632908,
-0.7094780509771057,
-0.6797060247561637,
-0.6491896729239149,
-0.6181226869426827,
-0.5866989110143894,
-0.5551098638127127,
-0.5235424004073599,
-0.4921765607630878,
-0.46118364249734234,
-0.430724526275726,
-0.4009482727876825,
-0.3719910010921157,
-0.34397504959856784,
-0.3170084133214339,
-0.29118444450364134,
-0.2665817983641767,
-0.2432646016248292,
-0.22128281859355425,
-0.20067278785190612,
-0.1814579018978013,
-0.1636494022900561,
-0.14724726377249708,
-0.13224114236286888,
-0.11861136432432606,
-0.1063299351562228,
-0.09536155012737613,
-0.0856645903291402,
-0.0771920906677428
],
[
-0.8916066924732007,
-0.9013989463270167,
-0.9096844620008823,
-0.9163517873862342,
-0.9212968902094005,
-0.9244247945907191,
-0.9256511990522439,
-0.9249040459800255,
-0.922125010159465,
-0.9172708718834407,
-0.9103147385324777,
-0.9012470777724222,
-0.8900765259805004,
-0.8768304375586192,
-0.8615551447101102,
-0.8443159031887225,
-0.8251965074308298,
-0.8042985680915214,
-0.7817404558526816,
-0.7576559268231279,
-0.7321924561777987,
-0.7055093171441487,
-0.677775451367937,
-0.6491671835450711,
-0.6198658376401054,
-0.5900553138751466,
-0.55991968500437,
-0.5296408673935226,
-0.49939641742720187,
-0.4693574971796942,
-0.4396870455561648,
-0.4105381826975585,
-0.38205286677771166,
-0.3543608137997074,
-0.32757868295605075,
-0.3018095228272166,
-0.27714246735768966,
-0.25365266529922503,
-0.23140142271180508,
-0.21043653516344385,
-0.1907927844189845,
-0.17249257355871417,
-0.15554667449462967,
-0.13995506261122515,
-0.12570781459875824,
-0.11278604732342967,
-0.10116287765538234,
-0.09080438543270763,
-0.08167056407695972,
-0.07371624571187052
],
[
-0.8594033625409518,
-0.8683325693288733,
-0.8758131323441226,
-0.8817410897219773,
-0.8860197021779115,
-0.8885609786507551,
-0.8892871796533053,
-0.8881322702701211,
-0.8850432927383153,
-0.8799816268472821,
-0.8729241052105842,
-0.863863950068004,
-0.852811498972861,
-0.8397946887986215,
-0.8248592711887851,
-0.8080687379838035,
-0.789503942245002,
-0.769262409035821,
-0.7474573397251334,
-0.7242163237180993,
-0.6996797815868895,
-0.6739991729384988,
-0.6473350104417965,
-0.6198547277681161,
-0.5917304534507796,
-0.5631367446746486,
-0.5342483347626459,
-0.505237945772218,
-0.47627421340441345,
-0.44751976569780894,
-0.41912949011261125,
-0.391249016009245,
-0.3640134315865935,
-0.33754624643466635,
-0.31195860330148717,
-0.2873487357434248,
-0.2638016622328516,
-0.24138910218002985,
-0.22016959526766722,
-0.20018880251522075,
-0.18147996555120183,
-0.16406449959724756,
-0.14795269554627222,
-0.13314450711761983,
-0.11963040025386551,
-0.10739224354689902,
-0.09640422041382712,
-0.08663374586789185,
-0.0780423729465003,
-0.07058667608427815
],
[
-0.8282267558523405,
-0.8363390666402087,
-0.8430595493469608,
-0.8482913189646358,
-0.8519445087160965,
-0.853937691564967,
-0.8541992764419325,
-0.852668852973419,
-0.8492984568208046,
-0.8440537263877066,
-0.8369149208086061,
-0.8278777690195195,
-0.8169541205772339,
-0.8041723709727978,
-0.7895776376549413,
-0.7732316679251676,
-0.7552124662424374,
-0.7356136360947225,
-0.714543440129234,
-0.6921235912422223,
-0.6684877962981456,
-0.6437800825452966,
-0.6181529441185083,
-0.5917653518534817,
-0.5647806736749624,
-0.5373645548941147,
-0.5096828078229827,
-0.48189935827764097,
-0.45417429299011514,
-0.42666204695868637,
-0.39950976366250845,
-0.3728558542042164,
-0.346828774181023,
-0.32154602976220037,
-0.2971134173782608,
-0.27362449487010876,
-0.251160276115062,
-0.22978913619340968,
-0.20956691017585127,
-0.19053716563152046,
-0.17273162696044442,
-0.15617072857901215,
-0.1408642737373751,
-0.12681217620325214,
-0.11400526307774528,
-0.10242611848240002,
-0.09204994964663382,
-0.08284545891595463,
-0.074775707294922,
-0.06779895725222862
],
[
-0.7980803208086464,
-0.8054207263167076,
-0.8114247941455646,
-0.816002319487587,
-0.8190699061572105,
-0.8205522904020227,
-0.8203836370814577,
-0.8185087837532881,
-0.8148844068091257,
-0.8094800827392017,
-0.8022792170367948,
-0.7932798133600258,
-0.782495056555485,
-0.7699536852015547,
-0.755700132590566,
-0.7397944195996157,
-0.7223117886566606,
-0.703342074829884,
-0.6829888176788647,
-0.6613681255338488,
-0.6386073118805444,
-0.6148433310679934,
-0.5902210471927584,
-0.5648913753744664,
-0.5390093384447635,
-0.5127320841557832,
-0.48621690831802045,
-0.45961932785567683,
-0.43309124476830374,
-0.40677923763412327,
-0.38082301186209744,
-0.3553540337065537,
-0.33049436642187113,
-0.3063557201713587,
-0.28303872070509617,
-0.2606323956421841,
-0.2392138716425536,
-0.2188482709875892,
-0.19958879220785586,
-0.1814769564449641,
-0.1645429992072469,
-0.14880638602669616,
-0.13427643016462798,
-0.12095299083827671,
-0.10882723133041772,
-0.09788241767375072,
-0.08809474025141784,
-0.07943414251295766,
-0.07186514297461066,
-0.0653476386725933
]
],
"zauto": true,
"zmax": 2.757742051070746,
"zmin": -2.757742051070746
},
{
"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.33416990708528505,
0.31730822415520604,
0.3005313515984961,
0.28397115644208837,
0.2677856814252369,
0.25216362310089435,
0.23732787694036772,
0.22353652085355782,
0.2110787896411499,
0.2002629747044352,
0.19139355221758325,
0.18473734157762237,
0.18048370361897145,
0.1787099444892106,
0.1793654419249072,
0.18228229602794446,
0.18720856807909528,
0.19385069303105962,
0.20191079722458244,
0.2111109312839983,
0.22120365325958863,
0.2319728016748644,
0.2432292389875789,
0.25480529267764895,
0.2665500397288107,
0.27832626296668783,
0.29000908278216786,
0.30148587705535485,
0.31265700009969966,
0.3234368622636539,
0.333755040563211,
0.34355720334367784,
0.352805724247849,
0.3614799263497024,
0.369575938721241,
0.3771061707288908,
0.38409842014236495,
0.390594634943444,
0.39664934963515286,
0.40232781790471495,
0.40770386686661947,
0.412857505271622,
0.41787232976105254,
0.42283278935164925,
0.42782138763976973,
0.43291592224950265,
0.4381868781848585,
0.4436951016592528,
0.44948987954940617,
0.45560753409906457
],
[
0.32843646006968097,
0.31128498173356955,
0.2942120290076605,
0.2773488409967057,
0.2608532474373005,
0.24491476875509857,
0.22975904370785033,
0.2156499026690531,
0.20288640837348856,
0.19179127896888243,
0.18268717994473552,
0.17585990602296556,
0.17151353759726184,
0.16973048318563677,
0.170452898934737,
0.17349529869086006,
0.17858348448812147,
0.18540319754614976,
0.19364141735917123,
0.2030115533638194,
0.2132628434286228,
0.22417911326514395,
0.23557263464938502,
0.24727724060442988,
0.2591428950763216,
0.27103241406913803,
0.28282016501608287,
0.2943922050408361,
0.3056472639319424,
0.3164980733237256,
0.32687268548443144,
0.33671555832112937,
0.3459882860840657,
0.3546699247499579,
0.3627569025008453,
0.37026252684287275,
0.3772161080762765,
0.38366171998531723,
0.3896566172415598,
0.39526932838232903,
0.4005774457215408,
0.40566514083750327,
0.41062044728422975,
0.4155323708493287,
0.42048791070697034,
0.4255690993242615,
0.4308501906189898,
0.4363951393414192,
0.4422555148304095,
0.4484689756608136
],
[
0.32325098859110984,
0.30584955770980354,
0.28852335013528196,
0.27140296974257805,
0.25464581962043004,
0.23844173687739026,
0.22301821668503483,
0.20864351762643157,
0.19562478049439125,
0.18429709430316998,
0.17499917525608946,
0.16803381476613,
0.1636181352964203,
0.1618383062901602,
0.16262836303112824,
0.1657850733577587,
0.1710128530855751,
0.177978627660186,
0.18635671350856803,
0.19585443646817535,
0.20621993499910465,
0.2172387144474699,
0.22872561183414242,
0.24051667842254149,
0.25246315886245974,
0.26442809036333476,
0.2762851546658217,
0.2879190895436894,
0.29922696626821993,
0.3101197820571686,
0.3205239909193754,
0.3303827483837286,
0.3396567572841765,
0.34832467373394804,
0.3563830728559713,
0.36384599238282955,
0.37074407734926246,
0.37712334731335445,
0.3830436036514899,
0.3885764919633768,
0.3938032360836161,
0.39881206752059356,
0.40369538848125314,
0.4085467280898065,
0.4134575785672055,
0.4185142277282573,
0.42379473101190485,
0.4293661839663049,
0.43528245832667883,
0.44158254711829925
],
[
0.31864289522406236,
0.30103329700509734,
0.28349895973207306,
0.2661700004701405,
0.24920336546691627,
0.23278889258007152,
0.21715520383719225,
0.2025737135658859,
0.18935773552245844,
0.1778522029911214,
0.16840890395732755,
0.16134452908489194,
0.15688646056361394,
0.15512261351427195,
0.15597807469218053,
0.159232510880262,
0.16457101642532235,
0.1716447084310442,
0.1801184927097607,
0.1896965135505428,
0.20012804879488982,
0.21120181372103342,
0.22273614652909374,
0.23456982667854484,
0.24655562086242644,
0.2585568789245876,
0.2704466146823132,
0.28210823199763824,
0.29343711393563887,
0.304342481466999,
0.31474913260266374,
0.3245988412354497,
0.3338513133909866,
0.3424846715804977,
0.35049547648100265,
0.3578983106135648,
0.364724950444994,
0.371023148415091,
0.37685503982356516,
0.3822951849627517,
0.3874282571490176,
0.39234639454989956,
0.3971462493630413,
0.40192579228093317,
0.4067809618427627,
0.4118022835375908,
0.4170716163328884,
0.4226592069532452,
0.4286212369799425,
0.4349980291520191
],
[
0.3146390688247283,
0.29686458161627965,
0.2791689764837606,
0.2616821724109005,
0.2445608033976809,
0.22799458691154723,
0.21221272121928755,
0.19748859882474737,
0.1841397060395435,
0.1725178811129259,
0.16298419081660434,
0.15586498626821735,
0.1513939830409852,
0.14965817710179502,
0.15057308900470634,
0.15390293156486365,
0.15931686825068453,
0.16645434010845273,
0.17497474049262707,
0.18458210878381967,
0.19502896480614565,
0.20610849325077746,
0.2176431891608217,
0.22947484500252524,
0.24145784032760853,
0.25345584705010704,
0.26534119869493117,
0.2769959541458621,
0.2883138002377555,
0.29920216830478347,
0.30958417027880514,
0.3194001414684838,
0.32860870017738764,
0.3371873070556232,
0.345132343034161,
0.35245873672150657,
0.359199170409452,
0.36540288569988655,
0.3711341004333623,
0.3764700418872194,
0.38149860012947795,
0.38631561243563145,
0.39102180659123664,
0.3957194583019271,
0.4005088544202916,
0.40548469518153046,
0.4107326081166815,
0.4163259746397061,
0.42232327811799963,
0.4287661627091049
],
[
0.311263741423619,
0.29336868756042705,
0.2755598307234848,
0.25796728962418264,
0.24074767431292926,
0.2240906294769049,
0.20822554442157507,
0.19342671576482623,
0.18001374654522753,
0.16834210276882355,
0.1587776269424268,
0.15165107424903612,
0.1471975677810978,
0.14550004247585355,
0.14646421995517298,
0.14984160865860127,
0.15529011535430054,
0.16244258816501678,
0.17095722291288218,
0.18054099950208932,
0.1909515032464412,
0.2019873001165806,
0.2134753913734207,
0.22526064776508858,
0.2371990234049123,
0.24915446632429758,
0.2609986130795075,
0.2726121924016334,
0.28388722684368806,
0.29472938773821616,
0.3050601101232432,
0.3148182654985714,
0.32396131586818655,
0.33246594398750784,
0.34032818770959694,
0.3475631148582687,
0.3542040698766636,
0.3603015122007119,
0.3659214542043038,
0.37114349760253645,
0.37605846462411324,
0.38076562689600135,
0.38536955303842024,
0.38997662640166664,
0.3946913259057951,
0.39961241110761087,
0.4048291994204641,
0.41041815813191407,
0.4164400453130614,
0.4229378135677774
],
[
0.30853832902365363,
0.29056763714117734,
0.27269411607498356,
0.2550485458760077,
0.23778789246597823,
0.22110188860580024,
0.2052198440363764,
0.19041595765670916,
0.1770098497154032,
0.16535708390318657,
0.15582325139672906,
0.1487375304819341,
0.144330887019722,
0.14267890772833236,
0.1436778435488599,
0.14707028979339795,
0.15250858835024533,
0.1596246799668978,
0.16807998681014782,
0.17758723755039857,
0.18791052428752583,
0.19885433024514895,
0.2102502209033732,
0.22194602500181204,
0.23379914194492893,
0.24567372928728926,
0.25744073417598723,
0.26897961806512116,
0.28018082793121196,
0.2909483605291902,
0.30120203246239624,
0.3108792661683673,
0.3199363282959209,
0.32834902644608144,
0.3361129001393027,
0.343242947058396,
0.34977291719995063,
0.35575419326856533,
0.36125426084660195,
0.36635476063052475,
0.37114911083000024,
0.3757396938894562,
0.3802346207169812,
0.38474411899849065,
0.3893766388494311,
0.3942348242341204,
0.39941155325514255,
0.40498629217906035,
0.4110220237213524,
0.41756298964309635
],
[
0.30648123633829966,
0.28848002121057537,
0.2705904253396928,
0.25294436005688326,
0.2356995501795279,
0.2190460117510491,
0.20321273770217838,
0.1884728352213275,
0.17514378719509371,
0.16357756861239522,
0.15413423163290332,
0.14713512047029378,
0.14280138744713453,
0.14119828028512357,
0.14221359006484333,
0.14558557964940796,
0.15096726130456917,
0.1579954819891011,
0.16633908926324525,
0.1757189634254847,
0.1859067182982554,
0.19671293973841308,
0.20797357703398575,
0.21953916720464836,
0.23126838282270906,
0.24302554062363052,
0.25468095659231527,
0.2661129541321767,
0.2772105627369414,
0.2878762548608927,
0.29802834346190904,
0.3076028627305778,
0.3165548802027607,
0.32485925562198736,
0.33251088889216657,
0.3395245016575766,
0.34593398575164747,
0.3517913347306859,
0.357165157359262,
0.3621387584139625,
0.36680776626357764,
0.3712772919989546,
0.3756586246687636,
0.3800655033616775,
0.3846100586564255,
0.3893985783160902,
0.3945273150271933,
0.4000786033255368,
0.4061175732559333,
0.41268972788740543
],
[
0.3051076116935836,
0.2871207722892512,
0.26926314649657634,
0.2516681951768129,
0.23449475208362663,
0.21793325556184087,
0.202212081966327,
0.18760218237973497,
0.17441667728950694,
0.16300022777159534,
0.15370212295714486,
0.14682988411412792,
0.14258973475591938,
0.14103433339177868,
0.14204471705288138,
0.1453597728040201,
0.15063936855023474,
0.15753069243434695,
0.1657136945096519,
0.17491930071502032,
0.1849272527424712,
0.19555414401547236,
0.20663996786321556,
0.21803765761835484,
0.22960699318773187,
0.2412124487959353,
0.2527238378621019,
0.26401855251403333,
0.27498443849054915,
0.2855226628776005,
0.29555020908157775,
0.30500183301803646,
0.31383143832782207,
0.32201289319319265,
0.3295403357761517,
0.33642801502643777,
0.34270969990998157,
0.34843767072058407,
0.3536812864671325,
0.3585251066563233,
0.3630665381210191,
0.36741298194846794,
0.37167847586264163,
0.37597986613166023,
0.3804325997640608,
0.3851462972431169,
0.39022033738171635,
0.39573974315231103,
0.401771682963368,
0.4083628819087462
],
[
0.30442904847172964,
0.2865008808535015,
0.2687222068458501,
0.25122834561497076,
0.2341794632832364,
0.21776641654778708,
0.20221651383779773,
0.1877973499189318,
0.17481539398977036,
0.16360437759839075,
0.15449801965678345,
0.14778484189828087,
0.14365213534033253,
0.1421387790336297,
0.14312133514800618,
0.1463441619684456,
0.15147954056762755,
0.15818962416167642,
0.16616841115121844,
0.17515822749178775,
0.1849472060367217,
0.1953576683462906,
0.2062332409258275,
0.21742894476959737,
0.2288055492183807,
0.2402277554377602,
0.2515650827830539,
0.2626942785048011,
0.2735023125359201,
0.28388933185484594,
0.2937712219478001,
0.3030816191011204,
0.3117733383197138,
0.3198192441321162,
0.3272126140026763,
0.33396704195022614,
0.3401159144351359,
0.34571146926228397,
0.35082342655313864,
0.355537163150605,
0.35995139240292295,
0.3641753146407778,
0.3683252242291364,
0.3725205999874709,
0.37687976701997467,
0.3815152943296178,
0.3865293722160316,
0.3920094787712754,
0.3980246759504867,
0.4046228567108071
],
[
0.30445324216799224,
0.28662706210876915,
0.26897277015614984,
0.2516276944849937,
0.23475337011756617,
0.2185408579743631,
0.2032157347501698,
0.18904087527159438,
0.17631379402326972,
0.1653539651610459,
0.1564754810371075,
0.14994393506589,
0.14592516488283794,
0.14444424567627817,
0.1453758839601402,
0.1484742024695763,
0.15342838955069216,
0.15991909768750556,
0.16765649138924768,
0.1763951434025784,
0.18593159018422287,
0.1960935179799545,
0.20672778581078563,
0.2176912507436827,
0.2288456300800456,
0.24005600243095984,
0.25119187993075753,
0.26212972370073967,
0.27275600102245673,
0.28297018197915996,
0.292687336789721,
0.30184018525727035,
0.3103805672769237,
0.3182803637114878,
0.32553191800315645,
0.33214800558920266,
0.33816138141406743,
0.34362391307672907,
0.3486052837927167,
0.35319122987104107,
0.3574812663284101,
0.361585856526741,
0.365623002318836,
0.3697142738988517,
0.3739803638460965,
0.3785363324959676,
0.3834867992649914,
0.3889214077306105,
0.3949109291276888,
0.40150435139575247
],
[
0.3051836251721365,
0.2875013963683076,
0.2700149097818397,
0.2528634618299173,
0.23620976809809008,
0.22024463416680898,
0.20519101103416224,
0.1913055506862014,
0.17887459108144926,
0.16820049720865732,
0.1595746891517492,
0.1532373948056861,
0.14933206025305987,
0.14787097964178683,
0.14872967879615978,
0.15167547250449928,
0.15641766326344006,
0.1626577509124782,
0.1701233667445013,
0.17858174425471368,
0.18783768107749907,
0.19772386786263346,
0.20809006905354635,
0.21879481975954285,
0.22970083393890336,
0.2406737970774701,
0.25158356805488397,
0.26230673797377896,
0.27272969462693836,
0.2827516190052839,
0.2922870891723334,
0.3012681486147431,
0.30964580943003034,
0.3173910191499944,
0.32449514021179987,
0.33096998725741994,
0.3368474500333382,
0.34217870598330535,
0.3470330020120289,
0.35149596392694377,
0.35566737949508814,
0.35965840221591283,
0.36358814334207745,
0.3675796637615558,
0.37175544604470157,
0.37623251514074263,
0.3811174708187815,
0.38650177547014775,
0.39245768337300757,
0.3990351819143434
],
[
0.30661901223759275,
0.28912097946211834,
0.27184329603228097,
0.25492698020402205,
0.23853550464413334,
0.22285871723208242,
0.2081158488231987,
0.19455575991659013,
0.18245159902530697,
0.1720864109374438,
0.16372704875606922,
0.1575874507138721,
0.15378915982522517,
0.15233347886543028,
0.15309921918456093,
0.15586930780318542,
0.16037506789234127,
0.16634007243372295,
0.17350999614193038,
0.1816648100522385,
0.1906173598456295,
0.2002050478506989,
0.2102803314603199,
0.2207033781547403,
0.23133803838898212,
0.2420509018312498,
0.2527125776576214,
0.2632002407333383,
0.2734006536038579,
0.2832131240641725,
0.292552088286775,
0.30134918069432753,
0.30955475999162785,
0.31713891734624694,
0.3240920125224772,
0.33042477998273134,
0.3361680294978863,
0.34137194171898855,
0.3461049337376036,
0.3504520475615458,
0.35451280061959983,
0.35839843755921463,
0.3622285427200755,
0.3661270176800388,
0.3702174996095075,
0.37461838889226845,
0.37943775513819405,
0.3847684777334646,
0.39068402484535836,
0.39723526150888694
],
[
0.3087532959765472,
0.2914776274380027,
0.2744469449258669,
0.25780354290036256,
0.2417110105466966,
0.22635733160865862,
0.21195679149389995,
0.1987489306424326,
0.18699203346808,
0.17694836059450136,
0.16885945676359412,
0.1629133862835786,
0.15921137455192044,
0.15774594462846486,
0.158401257760311,
0.16097727888951985,
0.16522810264626142,
0.17089965037425353,
0.1777556331860056,
0.18558859748233797,
0.1942192174493577,
0.20348942117970084,
0.2132542808840325,
0.22337566715463994,
0.23371879011560495,
0.24415149312422527,
0.25454556899384223,
0.2647792469439402,
0.2747401298161115,
0.28432807879983973,
0.29345775119565315,
0.302060655480185,
0.31008669034004477,
0.3175051889588924,
0.3243055095471047,
0.33049720980748554,
0.33610982599438455,
0.34119225321784324,
0.34581169787193666,
0.35005215024778846,
0.35401231065879274,
0.35780290171027157,
0.36154331907389603,
0.36535761865337324,
0.3693699112024216,
0.3736993315532055,
0.37845485500703135,
0.3837303257918357,
0.3896001149458982,
0.39611581429185583
],
[
0.3115752321532135,
0.29455768031201573,
0.2778090756301687,
0.26147236932461126,
0.24571045183191204,
0.23070839839777169,
0.21667428637398292,
0.2038369607615611,
0.1924386066924755,
0.18272001080763156,
0.17489769961665894,
0.16913531920811387,
0.16551606220853904,
0.1640259841173283,
0.16455615678152113,
0.16692413520804258,
0.1709066113282838,
0.17627140077212958,
0.1827998152295712,
0.19029666333105716,
0.19859026429071622,
0.2075270094387865,
0.21696464427403125,
0.22676692316795943,
0.23680071000491534,
0.2469354872022507,
0.25704467591709607,
0.2670080282672075,
0.27671444627218256,
0.2860647656508823,
0.29497422680196717,
0.3033745000117929,
0.31121522767623533,
0.3184650987193098,
0.3251124900906106,
0.3311657077305958,
0.3366528431998873,
0.3416212386949188,
0.3461365275124913,
0.3502811939327413,
0.35415258121810866,
0.3578602751251189,
0.3615228096523511,
0.36526368740450305,
0.3692067811229353,
0.37347128112800393,
0.37816646200453174,
0.3833866381186545,
0.3892067338382352,
0.39567888635903214
],
[
0.3150683487901855,
0.29834194253823487,
0.2819071152589419,
0.26590672199323084,
0.25050202353336387,
0.23587408501057067,
0.2222235739422297,
0.20976751404579813,
0.19873124799151623,
0.18933412041604517,
0.18176875396066614,
0.17617652480344473,
0.17262520126991404,
0.17109653906962638,
0.17148955938656765,
0.17363926172476668,
0.17734408986742095,
0.18239279372649853,
0.18858356577105276,
0.19573308338233542,
0.20367718576583477,
0.21226678684975156,
0.22136248990977167,
0.23083021050588393,
0.2405388174160579,
0.25035983904482956,
0.26016876630268676,
0.26984732600314365,
0.2792861573355752,
0.2883874729988793,
0.2970674456136611,
0.30525818959560647,
0.31290929694773423,
0.3199889351985628,
0.3264845353324387,
0.33240309602224716,
0.3377711154228352,
0.3426341392270526,
0.3470558885762463,
0.3511169085032524,
0.3549126621921767,
0.3585509947275357,
0.3621489089805251,
0.3658286417341418,
0.3697131024909309,
0.3739208363776106,
0.37856078268786725,
0.38372719915578074,
0.389495181106077,
0.39591719935028696
],
[
0.31921100218429005,
0.30280578463785646,
0.28671287424646175,
0.27107419290420537,
0.25604839163130444,
0.2418114480408167,
0.22855556429363316,
0.21648512970127384,
0.20580839145077895,
0.1967238920967731,
0.18940204439641198,
0.18396446683192622,
0.1804661357079809,
0.17888637840794014,
0.17913272466606803,
0.1810569627565988,
0.1844780054096531,
0.18920426652523314,
0.195049936045824,
0.2018431370057196,
0.2094271678130096,
0.21765763166977603,
0.2263982808790054,
0.23551754923198315,
0.24488670492137304,
0.25437973964145,
0.26387464216503026,
0.2732555394009242,
0.2824152152482705,
0.29125763379746256,
0.29970022730726675,
0.3076758231513436,
0.31513416403226585,
0.3220430224114293,
0.3283889294186857,
0.3341775379355874,
0.33943362581982794,
0.3442007239094262,
0.3485403292805311,
0.3525306419390889,
0.35626474803899666,
0.35984817112202316,
0.3633957315946926,
0.36702769962919674,
0.37086530041211013,
0.37502572911091736,
0.3796169429213134,
0.3847325967111188,
0.39044754940449405,
0.39681436547404986
],
[
0.3239765888774294,
0.3079194137452257,
0.2921928966684839,
0.2769371575877709,
0.26230727294817824,
0.24847315036790232,
0.2356176785903597,
0.22393213617942978,
0.21360786337966006,
0.2048237004157436,
0.19772988466084243,
0.192430883947776,
0.1889713334901662,
0.18732963916917242,
0.1874219962575736,
0.18911598758357664,
0.19224946694537345,
0.1966490862250327,
0.20214407688482597,
0.2085735867107365,
0.21578837023839045,
0.22364897092435201,
0.23202266356303666,
0.2407808175653181,
0.24979752549142412,
0.25894966175222245,
0.26811812207139546,
0.2771898275912735,
0.28606007908234,
0.29463493311234984,
0.302833381727821,
0.31058921503298115,
0.3178525174631148,
0.32459079157155835,
0.3307897218343365,
0.33645359126056096,
0.3416053512742463,
0.34628632546046084,
0.3505555048896094,
0.35448837146698037,
0.3581751713866541,
0.3617185595156166,
0.3652305541210075,
0.3688287856141683,
0.3726320954119642,
0.3767556377206195,
0.3813057452993005,
0.38637491834406007,
0.39203735658511385,
0.3983454540873198
],
[
0.3293339079373563,
0.3136483038676351,
0.29830897144669377,
0.2834533771390184,
0.2692321287251607,
0.2558082287660695,
0.2433546444605649,
0.23204939227499957,
0.22206745578644482,
0.21356937727175282,
0.2066873892974769,
0.2015113172857179,
0.1980776082807572,
0.19636488276973496,
0.1962978467357995,
0.19775868717769504,
0.20060257142318846,
0.20467291959757342,
0.2098130384340896,
0.21587269786264127,
0.22271014859460045,
0.23019118217389334,
0.23818702441482245,
0.24657243770875925,
0.2552247819163506,
0.26402422945944437,
0.272854970479558,
0.28160708210510593,
0.2901787177060544,
0.2984783324293912,
0.3064267485821512,
0.31395894670745544,
0.3210255306334298,
0.32759385371153993,
0.3336488111393562,
0.3391933042017467,
0.34424837133316466,
0.348852962636879,
0.35306331317852196,
0.3569518504873654,
0.36060555842588793,
0.3641237189881346,
0.3676149721694349,
0.37119367741326925,
0.3749756306422427,
0.3790732847567568,
0.3835907265373675,
0.38861875834767656,
0.3942304930929814,
0.4004778720336746
],
[
0.33524765492180464,
0.3199537622599435,
0.30501877555429846,
0.2905767151172546,
0.2767729383288477,
0.2637628863888965,
0.2517092420988634,
0.24077689496564045,
0.23112529020547784,
0.2228982396831369,
0.21621212193393188,
0.21114440860624034,
0.2077251667176302,
0.20593402988655454,
0.20570383665581374,
0.20693010110090776,
0.2094836785093578,
0.21322331830346983,
0.2180054644294421,
0.2236901292107067,
0.23014312398549994,
0.23723582448699498,
0.24484386356923324,
0.25284587330630476,
0.26112292947506055,
0.2695589082943433,
0.2780416592544218,
0.2864647460461158,
0.2947294755771741,
0.30274697380378673,
0.310440134285212,
0.3177453329239712,
0.3246138557926844,
0.33101302144975614,
0.33692699544657845,
0.3423572960740703,
0.3473229807743439,
0.3518604860597845,
0.3560230742305976,
0.3598798219731436,
0.3635140740629895,
0.36702128571740245,
0.3705061958329024,
0.374079315656103,
0.3778527854926863,
0.38193574218579884,
0.3864294406980361,
0.39142246461398733,
0.3969864184339175,
0.4031724969415258
],
[
0.34167901933956857,
0.326793598389206,
0.31227661102942816,
0.2982579289096005,
0.28487701582853425,
0.2722812852658474,
0.26062300186112103,
0.25005429575632215,
0.24072006732392687,
0.23274901312484816,
0.2262436829008129,
0.2212712029045225,
0.21785672494608832,
0.2159814097405061,
0.21558570487551712,
0.21657716652474823,
0.21884077994485668,
0.2222492606222527,
0.22667130037015215,
0.2319767942563956,
0.23803918352515518,
0.244735765358556,
0.2519470369445663,
0.25955597597762453,
0.26744781613211654,
0.2755105283123596,
0.28363596323523466,
0.2917214727124364,
0.29967178641222875,
0.3074009423055373,
0.31483411875282297,
0.32190927020608223,
0.3285785131871807,
0.3348092390624411,
0.3405849447314356,
0.34590577383762655,
0.35078875266806897,
0.3552676900262916,
0.35939269271802077,
0.36322923197820917,
0.3668566859754393,
0.37036628498188273,
0.3738584046825154,
0.377439194229937,
0.3812165908433426,
0.38529585838762115,
0.38977488251910697,
0.3947395413857462,
0.40025952597477304,
0.40638498739785894
],
[
0.3485863521089054,
0.3341228572290246,
0.32003419422545193,
0.30644549392734455,
0.29348983343532214,
0.2813063167186518,
0.2700368551529784,
0.25982136031286907,
0.2507912745645344,
0.24306175645369268,
0.23672336490387844,
0.23183459226730393,
0.22841682700801677,
0.22645304542597963,
0.22589069896213715,
0.22664814607862482,
0.2286230497862262,
0.23170082747415682,
0.23576158643211784,
0.24068475845746318,
0.24635147083215697,
0.252645256849927,
0.2594519131447428,
0.26665921942418913,
0.2741569903898198,
0.28183766173309033,
0.2895974031946253,
0.2973376292446227,
0.30496673320078876,
0.3124018788066127,
0.3195707183899699,
0.3264129486352366,
0.3328816514105692,
0.3389443922569995,
0.34458406179492174,
0.3497994466923967,
0.35460550943065794,
0.35903334288941896,
0.36312975011460447,
0.3669563853689328,
0.370588384216813,
0.3741124131240315,
0.37762408818149074,
0.38122475240250725,
0.38501766304763263,
0.3891037210288257,
0.39357696340331993,
0.398520120463302,
0.40400059034618857,
0.410067187621634
],
[
0.35592586839551854,
0.34189457872235424,
0.3282414575015445,
0.3150864226021605,
0.30255582057680935,
0.29078033152507066,
0.27989173955466284,
0.2700183950007659,
0.2612793965941024,
0.2537778477883752,
0.24759394007271793,
0.24277895864634338,
0.23935141198985457,
0.23729621150391234,
0.2365671744931697,
0.23709229988887728,
0.23878060063305478,
0.241529039680717,
0.24522836503778989,
0.24976720537714522,
0.2550344022185854,
0.2609199978148662,
0.2673154814914013,
0.27411385512928427,
0.2812099069990536,
0.2885008804412222,
0.2958875559450797,
0.3032756592752211,
0.3105774628073884,
0.317713445839957,
0.3246139027848028,
0.3312204195048931,
0.33748716684626723,
0.3433819809800528,
0.34888721071473866,
0.35400031301956475,
0.35873417146782544,
0.36311710070285,
0.3671924863776391,
0.37101799788958356,
0.3746643048300774,
0.3782132321536258,
0.381755308451951,
0.3853867001668283,
0.3892055831599083,
0.39330807824803776,
0.3977839595980218,
0.4027124189239203,
0.4081582156434323,
0.41416854662927066
],
[
0.36365235357587616,
0.3500605490988077,
0.3368473289968083,
0.324127046811259,
0.3120191140499653,
0.3006458159589596,
0.2901291575497766,
0.28058665253990345,
0.27212614949124325,
0.26484005310275527,
0.2587995931934462,
0.2540500182715826,
0.25060762012470655,
0.2484592451381614,
0.24756444104439876,
0.24785978118635532,
0.24926443042874807,
0.25168584834972796,
0.25502470314124825,
0.25917847993715554,
0.2640437239658697,
0.26951720332779744,
0.27549643610652874,
0.28188001633457727,
0.2885680570769385,
0.2954629181959028,
0.3024702535845644,
0.3095003229640349,
0.3164694695233177,
0.3233016567042634,
0.32992997108382405,
0.33629802068917397,
0.34236117999737653,
0.34808764906331624,
0.3534593025967616,
0.35847230542334463,
0.36313746496420996,
0.36748028128457194,
0.3715406435962958,
0.3753721121251384,
0.379040719834408,
0.38262323395368225,
0.3862048368655476,
0.3898762228717908,
0.39373016237696756,
0.39785765460988637,
0.40234386537425704,
0.4072641136457198,
0.41268021353710604,
0.4186374812751972
],
[
0.37171984484499987,
0.35857201592917326,
0.3458004635657921,
0.33351374034297837,
0.32182424182808145,
0.3108460039731834,
0.30069168678094427,
0.2914687196977824,
0.2832747412479441,
0.27619267352640153,
0.27028598522956543,
0.26559483806807377,
0.2621337965715417,
0.2598915627554348,
0.25883280583781576,
0.25890171038266796,
0.2600265220524004,
0.2621242498003248,
0.2651048105772939,
0.26887419997034073,
0.2733366109963996,
0.27839568946391796,
0.28395525036601693,
0.2899197889144679,
0.29619504369777405,
0.30268875939659534,
0.30931169314960766,
0.31597883408534333,
0.32261076492934854,
0.3291350824308857,
0.33548779967541736,
0.34161466824639963,
0.3474723740674837,
0.35302957288466796,
0.35826773757613534,
0.36318178951744673,
0.36778048103388483,
0.37208648731082256,
0.3761361563966173,
0.37997885808271925,
0.3836758699847846,
0.387298745939443,
0.3909271315992206,
0.39464602752193956,
0.3985425514274363,
0.4027023152176519,
0.4072056007796429,
0.41212357914982295,
0.41751485570400376,
0.42342262658168117
],
[
0.38008226703674336,
0.3673803459936757,
0.3550499059149275,
0.3431935659408945,
0.3319167297086702,
0.3213254194613962,
0.3115234389144759,
0.30260888370331007,
0.2946701499882158,
0.2877817526623268,
0.28200041551052407,
0.2773619797309337,
0.27387963893807366,
0.27154382357671103,
0.2703237567666545,
0.2701703738824347,
0.2710200493326689,
0.2727984875672465,
0.275424226541466,
0.2788114176650039,
0.28287179759079856,
0.28751597226575437,
0.29265424752256775,
0.29819726044793704,
0.304056618201313,
0.31014567209292204,
0.3163804754786569,
0.32268091299656987,
0.3289719520940277,
0.33518495323921116,
0.3412589760127103,
0.34714202704285746,
0.3527922063798825,
0.3581787173372134,
0.3632827089903268,
0.36809791992817376,
0.37263108715252946,
0.37690207667844194,
0.38094368449491356,
0.3848010507455908,
0.3885306294119029,
0.3921986638237114,
0.39587913817140596,
0.39965120899280726,
0.40359616834051454,
0.4077940486727378,
0.41232004112784637,
0.41724095278211903,
0.42261196201227663,
0.42847393291353286
],
[
0.388694007564634,
0.3764376121526925,
0.3645456744071263,
0.353114838454052,
0.34224362554361326,
0.33203034561993766,
0.32257046410541146,
0.31395347081930375,
0.3062594058384756,
0.29955531922290257,
0.2938920461015546,
0.28930172446304564,
0.2857964342992263,
0.28336818271508446,
0.28199022850202476,
0.28161949556538785,
0.2821996437726294,
0.2836643032877361,
0.28594004400670125,
0.2889488087869646,
0.2926097259117309,
0.29684037406271285,
0.3015576673297434,
0.30667855300328745,
0.31212068727466163,
0.31780319864059553,
0.3236475888922427,
0.32957877229146804,
0.33552622127595244,
0.341425171369611,
0.3472178347135851,
0.3528545754550619,
0.3582950063947682,
0.3635089714234126,
0.3684773805001456,
0.37319286267128515,
0.37766019833403364,
0.38189648581797475,
0.3859309911969318,
0.38980462638583707,
0.39356900176996845,
0.3972850087936948,
0.40102090776942756,
0.40484992831076855,
0.40884743393603895,
0.4130877553153772,
0.4176408517219658,
0.42256900786378454,
0.42792380241295697,
0.4337435855994407
],
[
0.39751042130155073,
0.3856971017239215,
0.3742392602782412,
0.3632276012527912,
0.3527539401167713,
0.3429092209335991,
0.33378109863587085,
0.3254511496852225,
0.31799186124610396,
0.31146364017987355,
0.3059121538765448,
0.3013663359046641,
0.29783733814206165,
0.29531858447653736,
0.29378690352836295,
0.293204536285485,
0.2935216823011236,
0.29467920253745994,
0.29661114423657864,
0.29924686804801853,
0.30251269689951593,
0.30633312776032445,
0.31063172500981706,
0.3153318411713911,
0.32035729681759567,
0.32563311364778347,
0.3310863500913146,
0.33664704945759133,
0.3422492826251201,
0.34783225134776413,
0.353341412067201,
0.35872957999682575,
0.3639579756347731,
0.3689971780780681,
0.37382794994459073,
0.3784418967975286,
0.3828419200031018,
0.3870424169198602,
0.3910691777654408,
0.3949589264546463,
0.39875845552308287,
0.402523315431311,
0.4063160382612972,
0.41020390628197917,
0.4142563165166934,
0.41854184021533125,
0.423125125067754,
0.42806382968949064,
0.43340580494608555,
0.4391867369468075
],
[
0.40648826126181853,
0.3951137440204872,
0.3840840418942328,
0.3734840172670304,
0.3633990068861859,
0.3539129632864845,
0.3451062543596105,
0.33705319287830054,
0.32981943614759385,
0.3234594629688244,
0.31801438148997185,
0.3135103267889035,
0.3099576574532568,
0.3073510571877801,
0.30567051061272277,
0.3048829865744551,
0.3049445648341249,
0.30580270845197094,
0.3073984184810322,
0.3096680920630003,
0.3125450094355806,
0.3159604695211773,
0.3198446574936921,
0.32412735460878744,
0.3287385958377207,
0.33360935594362107,
0.33867231189365077,
0.34386269841663736,
0.34911924941644695,
0.35438520233022713,
0.35960933426592184,
0.3647469955077457,
0.3697611052133026,
0.3746230737922415,
0.3793136152632487,
0.38382341033457196,
0.3881535772513309,
0.39231590340620387,
0.3963327876258687,
0.40023684264402365,
0.4040701115580204,
0.40788286309920724,
0.41173195004779506,
0.41567874390823034,
0.41978669627457793,
0.42411862023890945,
0.4287338284182226,
0.4336853004187927,
0.43901707382390476,
0.44476205230831567
],
[
0.41558603494247054,
0.40464445859537146,
0.3940356171950037,
0.38383867890097184,
0.37413276496288883,
0.36499522522500705,
0.35649964989908106,
0.34871369192682555,
0.3416968274296828,
0.33549823021564057,
0.33015496550822077,
0.3256907038545687,
0.3221151105242043,
0.3194239818455519,
0.3176000940507736,
0.31661462783376254,
0.3164289593596475,
0.3169965834764478,
0.3182649598928331,
0.3201771356974,
0.32267307647468924,
0.3256907116255275,
0.32916675198042966,
0.33303736347833834,
0.3372387820414307,
0.34170793929966453,
0.3463831452650494,
0.351204849712173,
0.3561164834411746,
0.36106536558769503,
0.3660036534663622,
0.37088930573602924,
0.3756870262814172,
0.38036915365989343,
0.38491645829946175,
0.389318806467312,
0.3935756465250537,
0.39769626980846395,
0.4016997967035334,
0.4056148395697903,
0.40947879973996626,
0.41333676755737664,
0.4172400136045421,
0.4212440864002271,
0.42540656598791177,
0.42978456126297215,
0.43443207687797375,
0.439397406864067,
0.4447207299752912,
0.4504320806021578
],
[
0.42476428911730996,
0.4142484284533375,
0.40405205979501513,
0.3942488429063331,
0.384911971066344,
0.3761125845436549,
0.3679179849059801,
0.3603897231753019,
0.35358167565457804,
0.3475382557041034,
0.34229292697887204,
0.33786717405081423,
0.33427004553008577,
0.33149831675015673,
0.32953723673766133,
0.3283617464049065,
0.3279380004646618,
0.3282250067062241,
0.32917621463411345,
0.3307409322970949,
0.33286551028490113,
0.3354942895237588,
0.33857035296975846,
0.3420361453147113,
0.34583403015614067,
0.349906845451514,
0.3541985015787239,
0.35865464743605513,
0.3632234125138501,
0.3678562186348135,
0.37250864443535103,
0.377141318049199,
0.38172080788498464,
0.38622047693315026,
0.39062126205541126,
0.3949123359542006,
0.3990916061526442,
0.4031660028847305,
0.40715150718888443,
0.4110728728790169,
0.41496300275685954,
0.41886195170880774,
0.4228155481316462,
0.4268736506300402,
0.43108808810336163,
0.43551036563210926,
0.44018925183168767,
0.4451683902114173,
0.4504840919284109,
0.45616346557534315
],
[
0.43398582786681467,
0.423887304213033,
0.41409410557913706,
0.4046745973079244,
0.39569634697524375,
0.3872246751845446,
0.37932105995861637,
0.37204146405018795,
0.36543468542233676,
0.3595408551328619,
0.35439021590223435,
0.35000230232503043,
0.34638560785591666,
0.3435377684277272,
0.34144622809555736,
0.34008929244125374,
0.33943743411005284,
0.33945470040312503,
0.34010008642678513,
0.34132877268763623,
0.3430931724043876,
0.3453437796235843,
0.34802984553573896,
0.35109993261153,
0.354502404058435,
0.3581859024233906,
0.36209986006844036,
0.36619506974961574,
0.37042432868689323,
0.3747431561307149,
0.37911057321544805,
0.3834899248049629,
0.3878497156772483,
0.39216442729902834,
0.3964152762792878,
0.40059087127121606,
0.4046877217990074,
0.4087105506782121,
0.41267236208712127,
0.41659422084453407,
0.42050470606855134,
0.42443901507007487,
0.428437711673624,
0.4325451370827073,
0.4368075298204614,
0.4412709318111768,
0.445978986683551,
0.45097075932511416,
0.4562787179271886,
0.4619270175158706
],
[
0.44321586983270866,
0.4335253461418186,
0.4241252772847768,
0.41507896789854154,
0.4064486693463913,
0.39829426398731116,
0.39067184573107355,
0.3836322611662083,
0.37721969868104316,
0.3714704292482571,
0.36641180608776697,
0.36206161703116907,
0.3584278523038029,
0.35550890541824864,
0.35329417402277036,
0.3517649813181511,
0.35089570683911997,
0.35065500415174233,
0.35100699313565,
0.35191234158004775,
0.3533291870433775,
0.3552138868022096,
0.35752161436312746,
0.360206841497225,
0.3632237542201896,
0.36652665104820015,
0.37007036489184314,
0.3738107389848077,
0.37770517468529885,
0.38171325648448207,
0.38579744802290217,
0.38992384271871955,
0.39406294380047924,
0.39819044104589335,
0.40228794531751555,
0.4063436371278735,
0.41035278218539845,
0.41431806556211687,
0.41824969734081735,
0.42216524702721325,
0.4260891723810624,
0.4300520212579691,
0.4340893028700465,
0.4382400472868119,
0.4425450978653808,
0.4470452084447655,
0.4517790423871238,
0.4567811900594484,
0.46208033127474973,
0.4676976665734599
],
[
0.4524221512846329,
0.44312951134890316,
0.4341119547095157,
0.42542797184103337,
0.41713480882974985,
0.409287279138122,
0.40193650588025653,
0.39512865322853424,
0.38890372262533257,
0.38329450006925775,
0.37832574067610153,
0.37401366325612573,
0.37036580081254483,
0.3673812160392064,
0.3650510504451001,
0.3633593395161355,
0.36228400152991097,
0.3617978987430547,
0.36186987727538994,
0.3624657129741533,
0.3635489192230104,
0.3650814027550063,
0.3670239797003627,
0.36933678298392514,
0.3719796025906274,
0.37491220270689163,
0.37809465594051644,
0.3814877267003238,
0.3850533252193919,
0.3887550420824857,
0.39255876148120666,
0.396433340417044,
0.40035133110500415,
0.4042897151686332,
0.40823061108404807,
0.4121619109596331,
0.4160777994095191,
0.4199791063415693,
0.42387344735800603,
0.4277751106387723,
0.431704658118656,
0.4356882218326831,
0.43975649354753477,
0.4439434267680708,
0.4482846937440995,
0.4528159642135543,
0.45757109454728423,
0.46258033248408154,
0.46786865061790234,
0.47345431886208256
],
[
0.4615749817419095,
0.45266949338453105,
0.44402339799633656,
0.43569062567469263,
0.4277237252579883,
0.4201727962817037,
0.41308437864657405,
0.406500352792315,
0.40045691552861284,
0.39498370317486736,
0.3901031312883522,
0.38583000731125117,
0.38217144938360864,
0.3791271142855416,
0.376689705004058,
0.37484569972273857,
0.37357622445118127,
0.37285798435969814,
0.372664174655408,
0.37296530829485075,
0.37372992087504675,
0.3749251379624813,
0.37651711273622124,
0.37847135926294345,
0.3807530176324955,
0.3833270915234185,
0.38615869738645764,
0.38921335861009043,
0.3924573691261506,
0.3958582401612043,
0.3993852322736318,
0.4030099632702114,
0.40670707173898224,
0.41045490631335185,
0.4142362028507932,
0.4180387058568704,
0.42185568705620496,
0.42568631332811874,
0.42953581859941486,
0.43341544002105514,
0.43734208809857544,
0.4413377335101547,
0.44542850997350764,
0.4496435521247747,
0.45401360878422126,
0.4585694933935123,
0.46334045243419936,
0.46835254658567094,
0.47362714570425096,
0.47917963555826965
],
[
0.4706472587436709,
0.46211772119379924,
0.4538317310532822,
0.4458389146217067,
0.43818742539989336,
0.430922988212248,
0.42408792246669014,
0.41772019165890223,
0.41185253498781643,
0.4065117405121179,
0.40171811550255315,
0.3974851975083054,
0.393819729811793,
0.39072189989072476,
0.3881858132006227,
0.3862001515894279,
0.3847489499859485,
0.38381241916804776,
0.38336774684459946,
0.3833898223986839,
0.3838518494392596,
0.38472583123850895,
0.3859829339027696,
0.3875937482773354,
0.3895284827071236,
0.3917571244272574,
0.39424960783136587,
0.3969760239028524,
0.3999068976542391,
0.4030135505239684,
0.40626855333134027,
0.4096462635322533,
0.4131234290155255,
0.41667983029864697,
0.42029892437738214,
0.4239684471877992,
0.42768092806596725,
0.4314340690495462,
0.4352309445818321,
0.43907998330115583,
0.44299470318130424,
0.44699318423645445,
0.45109727897842467,
0.45533157911887534,
0.4597221764919189,
0.46429527518984404,
0.46907572840308365,
0.47408558520083244,
0.4793427374329013,
0.484859753657458
],
[
0.47961444801503,
0.4714493239174709,
0.46351189165133655,
0.45584772959680825,
0.44850088938625926,
0.44151304387878654,
0.43492263098327294,
0.42876403506709804,
0.42306685370999103,
0.4178552990430885,
0.4131477783444156,
0.4089566873715745,
0.40528843283319804,
0.4021436795330681,
0.3995177962053069,
0.3974014554122775,
0.3957813301764045,
0.39464082519180027,
0.3939607839045712,
0.39372012335625356,
0.3938963642513125,
0.39446604153425646,
0.3954049982275782,
0.3966885802787904,
0.39829176128961385,
0.40018923255783595,
0.40235549574880003,
0.40476499306068553,
0.40739230358331907,
0.4102124254939301,
0.4132011527232622,
0.41633554275928575,
0.4195944603309564,
0.42295917076775397,
0.42641394768186086,
0.42994665292925704,
0.4335492430573351,
0.4372181559504578,
0.4409545342986658,
0.4447642488615054,
0.44865769416874557,
0.4526493420228111,
0.4567570534565461,
0.4610011668763766,
0.465403397855667,
0.46998560294794944,
0.474768474200602,
0.47977024092159104,
0.48500545905560694,
0.4904839651920304
],
[
0.4884545348164235,
0.4806420674928572,
0.4730415541746189,
0.46569477778543067,
0.45864197147751495,
0.4519210621574515,
0.4455669227444907,
0.43961066993934855,
0.43407904823467763,
0.42899394092237886,
0.4243720438975505,
0.42022472784561204,
0.41655809966411395,
0.41337325647091533,
0.4106667077878628,
0.4084309262068526,
0.40665497642891296,
0.4053251685341025,
0.40442568405955787,
0.4039391321724399,
0.40384700630180537,
0.4041300269686626,
0.4047683721253885,
0.4057418102684639,
0.4070297625662134,
0.40861132739606026,
0.4104653036350326,
0.4125702478164302,
0.41490459521363054,
0.41744686667360037,
0.42017597245187577,
0.4230716124049969,
0.4261147597553077,
0.4292882043162293,
0.43257712150443955,
0.4359696264393875,
0.43945726849020383,
0.4430354210965104,
0.4467035246718,
0.4504651468191684,
0.45432783370525814,
0.45830273883662553,
0.4624040300567913,
0.46664809149365377,
0.47105255333741647,
0.4756351973726176,
0.48041279861145725,
0.4853999716641437,
0.4906080933531338,
0.49604436974767685
],
[
0.4971479517456627,
0.4896762684354454,
0.4824010304106427,
0.4753604721026801,
0.46859128036862846,
0.46212792548336035,
0.456002010654737,
0.45024167232966594,
0.4448710659585075,
0.43990997090870665,
0.4353735431438493,
0.4312722350210433,
0.4276118888063502,
0.42439399573043984,
0.42161609761023805,
0.4192722954091024,
0.41735382047397335,
0.41584962079034904,
0.41474691678533765,
0.4140316884716815,
0.4136890668633966,
0.41370361600921035,
0.4140595059811354,
0.41474059015349285,
0.415730410826919,
0.4170121647592397,
0.41856866389597347,
0.420382326345023,
0.42243522855707555,
0.42470924222598777,
0.42718626937157556,
0.4298485773963199,
0.4326792237366466,
0.4356625481993472,
0.4387847012328065,
0.4420341690909019,
0.44540225271496414,
0.4488834565239048,
0.45247574624199627,
0.45618064125559465,
0.46000311642522995,
0.46395130026263526,
0.46803597021506754,
0.47226986060261034,
0.4766668134662511,
0.481240815988066,
0.486004978943918,
0.49097051760541394,
0.49614579862539654,
0.5015355131657646
],
[
0.5056774877267469,
0.498534689608833,
0.4915731531899829,
0.48482780429630384,
0.47833204373687244,
0.4721171580222697,
0.4662117559046891,
0.4606412589495759,
0.4554274755905278,
0.4505882864724939,
0.44613746386595515,
0.4420846395634403,
0.4384354245913676,
0.4351916715068996,
0.4323518576197406,
0.4299115569043947,
0.42786396114584613,
0.42620040798457554,
0.424910875329822,
0.4239844077581253,
0.42340945012153597,
0.4231740754137537,
0.42326610659181246,
0.42367314416565705,
0.4243825217446691,
0.42538121940188983,
0.4266557690009607,
0.42819218616271515,
0.4299759603054079,
0.4319921275031731,
0.4342254414342908,
0.436660646374775,
0.4392828441584529,
0.4420779354567857,
0.4450331057443887,
0.4481373188371497,
0.45138177658011736,
0.45476030248005794,
0.45826960988274534,
0.46190942148242065,
0.4656824160931571,
0.46959399009950853,
0.4736518340717363,
0.4778653387763523,
0.48224485821452057,
0.4868008692776843,
0.49154307701161426,
0.49647952031999226,
0.5016157344545426,
0.5069540234604841
],
[
0.5140281823912246,
0.5072024222362626,
0.500543147129122,
0.4940822059235593,
0.4878499612450622,
0.48187477261722406,
0.47618251070629775,
0.470796127270477,
0.46573530578696676,
0.46101621565143996,
0.4566513879813304,
0.4526497235031291,
0.449016633343287,
0.4457543027928515,
0.44286205759327624,
0.4403368033809664,
0.438173502840385,
0.4363656526745016,
0.4349057240247284,
0.4337855352540505,
0.43299653439067853,
0.4325299790404446,
0.43237701306820925,
0.4325286506375257,
0.4329756881681186,
0.43370857245604777,
0.4347172578514614,
0.4359910865282155,
0.43751872335905356,
0.43928817093884576,
0.44128688144445,
0.4435019711645263,
0.445920531779048,
0.4485300210140003,
0.45131870529200024,
0.4542761194177632,
0.45739350387911565,
0.4606641793884294,
0.46408382088965777,
0.46765059917377744,
0.47136516699979597,
0.47523047754156394,
0.47925143526353026,
0.4834343920600698,
0.48778651369572756,
0.4923150522603669,
0.497026568552438,
0.5019261532102142,
0.5070166964527064,
0.5122982532443384
],
[
0.52218720955251,
0.5156667578830313,
0.5092984902054569,
0.5031114009220793,
0.4971330497275836,
0.4913891102854394,
0.48590295371477193,
0.4806952882561904,
0.47578387624671986,
0.4711833471951159,
0.4669051211078509,
0.46295744940970857,
0.45934557234611767,
0.45607198250229936,
0.45313677510437944,
0.4505380582070891,
0.4482723907113372,
0.44633521408588983,
0.44472124499091115,
0.4434248006020763,
0.44244003582571667,
0.4417610810069141,
0.4413820792108126,
0.4412971326683559,
0.44150017749361076,
0.44198481335896894,
0.44274411967602817,
0.4437704914283987,
0.44505552589654773,
0.44658998621579277,
0.44836385949629365,
0.4503665169212675,
0.4525869718884766,
0.4550142210540436,
0.45763764323710293,
0.4604474235463171,
0.46343496552264957,
0.4665932529542239,
0.4699171253643884,
0.47340343674719537,
0.4770510754134769,
0.4808608331123211,
0.48483512307488524,
0.48897755838377027,
0.49329241317069444,
0.4977839986840094,
0.5024559934292087,
0.5073107707128669,
0.5123487675938079,
0.5175679363534581
],
[
0.5301437529994348,
0.5239170536509651,
0.5178287694039376,
0.5119052530130876,
0.5061714838167302,
0.5006506755797809,
0.49536392155744924,
0.4903298953005975,
0.485564625035977,
0.48108135697748383,
0.47689051854023035,
0.47299978629428907,
0.46941425606494125,
0.4661367045803494,
0.4631679243751442,
0.4605071072054518,
0.4581522468365134,
0.4561005303175729,
0.4543486880417436,
0.45289327694918924,
0.45173087780887705,
0.45085819599126925,
0.4502720647230789,
0.44996935958870576,
0.44994684206996627,
0.45020095729429654,
0.450727616107948,
0.45152199352097,
0.4525783741799795,
0.45389007084730854,
0.4554494343006406,
0.4572479633567194,
0.4592765128719432,
0.46152558673096583,
0.4639856931490709,
0.4666477320870421,
0.4695033799503592,
0.47254543542925004,
0.4757680923954759,
0.4791671109458485,
0.48273986544661185,
0.4864852580690639,
0.49040349697779,
0.4944957491490049,
0.49876368787538705,
0.5032089635356479,
0.507832632469794,
0.5126345822769506,
0.5176129922435337,
0.5227638648910964
],
[
0.5378888773967734,
0.5319445933763215,
0.5261255332218223,
0.5204556107246395,
0.5149574348187812,
0.5096519706787279,
0.5045582394266751,
0.4996930724572222,
0.4950709353834865,
0.49070383407997314,
0.48660131118543865,
0.4827705358971194,
0.47921648333780553,
0.4759421928171874,
0.4729490876783146,
0.47023733388692607,
0.4678062107704182,
0.4656544658500239,
0.4637806267959118,
0.4621832471619353,
0.4608610684548651,
0.4598130887652482,
0.4590385369582033,
0.45853676049484804,
0.45830704346966045,
0.45834837855410265,
0.4586592214650684,
0.4592372587303448,
0.4600792185575808,
0.46118075050359525,
0.4625363927166149,
0.46413963645401185,
0.4659830873029559,
0.4680587121499741,
0.4703581515728692,
0.4728730699536233,
0.4755955109763854,
0.4785182247009577,
0.48163493416191877,
0.4849405141834581,
0.4884310622976446,
0.4921038505941551,
0.495957157185368,
0.4999899858795482,
0.5042016917847112,
0.5085915381730544,
0.5131582154155184,
0.5178993557259489,
0.5228110776317525,
0.527887591553621
],
[
0.5454153966789042,
0.5397424472111759,
0.5341821434023437,
0.5287561524044269,
0.5234849102272857,
0.5183873306373215,
0.5134805532439828,
0.5087797445685031,
0.5042979646697457,
0.5000461093830894,
0.49603293439155366,
0.4922651623577323,
0.48874766855388496,
0.48548373435247927,
0.4824753522003962,
0.4797235609392939,
0.47722878712977346,
0.47499116682461023,
0.4730108232574621,
0.47128807918794074,
0.4698235879690005,
0.4686183743728577,
0.46767378425116773,
0.4669913505099261,
0.46657259086837277,
0.4664187596477514,
0.46653058066358993,
0.46690799058080873,
0.4675499214690704,
0.46845414769879035,
0.4696172160153493,
0.47103446921942005,
0.4727001642352914,
0.47460767550331534,
0.47674976565547217,
0.4791188982845667,
0.48170756302945733,
0.4845085815937736,
0.48751536477692475,
0.49072209488404206,
0.49412381448809317,
0.4977164107444733,
0.5014964935023484,
0.505461174490813,
0.5096077631016573,
0.5139334010701747,
0.5184346631484661,
0.5231071533355126,
0.527945126246459,
0.532941160858015
],
[
0.5527177419577919,
0.5473053315947537,
0.5419936278886373,
0.5368022332071138,
0.5317495958685622,
0.5268527618256187,
0.5221271654757387,
0.517586471445872,
0.5132424778397608,
0.5091050889694037,
0.5051823620268745,
0.5014806276476002,
0.49800467918300934,
0.49475802018028947,
0.4917431545834058,
0.488961900063895,
0.4864157021532659,
0.4841059258596445,
0.4820341024302539,
0.48020211190510786,
0.47861228694215213,
0.4772674297450252,
0.47617074129627035,
0.4753256698680791,
0.47473569324058157,
0.4744040554666234,
0.47433348368505246,
0.47452591282649104,
0.47498224570546105,
0.4757021728536923,
0.47668407074047303,
0.47792498928065696,
0.47942073054754075,
0.4811660113532726,
0.48315469384390913,
0.4853800613986367,
0.4878351126329369,
0.490512844602384,
0.493406497479533,
0.49650973680961574,
0.499816755457154,
0.503322284865069,
0.5070215134907565,
0.5109099184753345,
0.5149830240163341,
0.5192361059403637,
0.5236638661587393,
0.528260102768392,
0.5330174014609265,
0.5379268717454307
],
[
0.5597918306369051,
0.5546294712836795,
0.549556536645444,
0.5445907356901545,
0.5397487023133584,
0.5350457852050855,
0.5304958762827889,
0.5261112878262779,
0.5219026870105379,
0.5178790941464292,
0.5140479476363543,
0.510415234583415,
0.5069856814332319,
0.5037629943564494,
0.5007501347419642,
0.49794961162592943,
0.4953637705492859,
0.4929950575466179,
0.4908462379213494,
0.48892055220281727,
0.48722179609077604,
0.4857543169919538,
0.4845229265120436,
0.48353273543140113,
0.48278892462227646,
0.48229647138069165,
0.4820598550959183,
0.48208276851744086,
0.48236786073816884,
0.48291653527887535,
0.4837288215101788,
0.4848033305584098,
0.4861372985367858,
0.4877267113167154,
0.48956649704980065,
0.4916507661375562,
0.4939730740021794,
0.4965266802461132,
0.4993047787001083,
0.5023006762481654,
0.5055079037286212,
0.5089202490100637,
0.512531709801081,
0.5163363711373603,
0.5203282191259986,
0.5245009078640653,
0.5288475000952217,
0.533360203913024,
0.5380301276337561,
0.542847072987656
],
[
0.5666349381267267,
0.5617124648070301,
0.556868801686335,
0.5521199253344794,
0.5474808168602789,
0.5429652857498599,
0.5385858313231415,
0.5343535504422446,
0.5302780986275135,
0.5263677094511989,
0.5226292740270314,
0.5190684787384697,
0.5156899952923412,
0.5124977130754002,
0.5094950000093555,
0.5066849750382559,
0.5040707734013886,
0.5016557852324451,
0.4994438489614254,
0.4974393835290882,
0.4956474474610864,
0.49407371815199763,
0.4927243909032394,
0.49160600385041403,
0.49072520132534747,
0.49008845380512545,
0.48970175680227285,
0.48957033333364697,
0.489698364619959,
0.4900887712896461,
0.4907430627350536,
0.4916612658146766,
0.4928419364695631,
0.4942822498429703,
0.49597815703321013,
0.4979245904812289,
0.5001156958381343,
0.5025450663655922,
0.5052059565977814,
0.5080914549576441,
0.5111945998518457,
0.5145084298764415,
0.5180259654688696,
0.5217401259565294,
0.5256435918598683,
0.5297286270127017,
0.5339868782257913,
0.5384091716751179,
0.5429853249469065,
0.5477039918723091
],
[
0.5732455732932571,
0.5685531544413686,
0.5639296023670539,
0.5593893120214831,
0.554945762101194,
0.5506113690104428,
0.5463973771993186,
0.5423137931940164,
0.5383693691521103,
0.5345716396024779,
0.5309270122160217,
0.5274409101326831,
0.5241179597580642,
0.5209622143232766,
0.5179774002018226,
0.5151671703348738,
0.5125353474424551,
0.5100861392434952,
0.5078243088328378,
0.5057552857170895,
0.503885206717729,
0.5022208808038917,
0.5007696775887138,
0.4995393452721145,
0.4985377697166226,
0.4977726915364215,
0.4972514020106953,
0.49698044082537335,
0.49696531877236966,
0.49721028646721643,
0.49771816600372004,
0.4984902566185206,
0.4995263184803829,
0.5008246313923709,
0.5023821182999506,
0.5041945177838785,
0.5062565857814415,
0.5085623049944987,
0.511105080913104,
0.5138779059502814,
0.5168734774615572,
0.5200842608659114,
0.523502495064334,
0.5271201432371062,
0.5309287973272845,
0.5349195486413402,
0.5390828397257327,
0.5434083138805968,
0.5478846783748081,
0.5524995957912293
],
[
0.5796233585361403,
0.575151501560749,
0.5707392367595401,
0.5663995182444884,
0.562144461816116,
0.5579852255423832,
0.5539319252520288,
0.549993591104844,
0.5461781699365446,
0.5424925760222417,
0.5389427903139421,
0.5355340052079328,
0.532270808678885,
0.5291573984267751,
0.5261978138032654,
0.5233961710071099,
0.5207568856329124,
0.5182848663425494,
0.5159856643458945,
0.51386556557285,
0.5119316158284478,
0.5101915736676534,
0.5086537909142019,
0.5073270262849091,
0.5062202029966002,
0.5053421260155798,
0.504701178256481,
0.5043050171132231,
0.5041602929038331,
0.5042724090115643,
0.5046453398061572,
0.5052815171589603,
0.5061817900536558,
0.5073454551120525,
0.5087703495291716,
0.5104529926291977,
0.5123887585653332,
0.5145720609388069,
0.5169965304091145,
0.5196551685692069,
0.522540465116428,
0.5256444701631505,
0.528958818824838,
0.5324747104214285,
0.5361828492195964,
0.540073357232479,
0.5441356719275621,
0.54835844267252,
0.5527294394152756,
0.5572354856098349
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.242245 (SEM: 0)
x1: 0.39217
x2: 0.341914
x3: 0.159259
x4: 0.437701
x5: 0.745598
x6: 0.0620148",
"Arm 1_0
hartmann6: -0.253544 (SEM: 0)
x1: 0.663238
x2: 0.714569
x3: 0.588652
x4: 0.27768
x5: 0.139057
x6: 0.271218",
"Arm 2_0
hartmann6: -0.217305 (SEM: 0)
x1: 0.846448
x2: 0.217095
x3: 0.348404
x4: 0.671583
x5: 0.339592
x6: 0.642009",
"Arm 3_0
hartmann6: -0.267878 (SEM: 0)
x1: 0.916066
x2: 0.321183
x3: 0.137546
x4: 0.505969
x5: 0.415414
x6: 0.525829",
"Arm 4_0
hartmann6: -0.258422 (SEM: 0)
x1: 0.0616007
x2: 0.364805
x3: 0.217203
x4: 0.273991
x5: 0.599507
x6: 0.978689",
"Arm 5_0
hartmann6: -1.23921 (SEM: 0)
x1: 0.0702075
x2: 0.223758
x3: 0.719703
x4: 0.460041
x5: 0.11914
x6: 0.769392",
"Arm 6_0
hartmann6: -0.184271 (SEM: 0)
x1: 0.617574
x2: 0.465144
x3: 0.645355
x4: 0.766496
x5: 0.14884
x6: 0.638048",
"Arm 7_0
hartmann6: -0.00238585 (SEM: 0)
x1: 0.224609
x2: 0.968628
x3: 0.492947
x4: 0.925068
x5: 0.883348
x6: 0.955021",
"Arm 8_0
hartmann6: -0.0945877 (SEM: 0)
x1: 0.579061
x2: 0.691852
x3: 0.901277
x4: 0.752974
x5: 0.323338
x6: 0.582829",
"Arm 9_0
hartmann6: -0.0220674 (SEM: 0)
x1: 0.891122
x2: 0.601659
x3: 0.468342
x4: 0.305274
x5: 0.460138
x6: 0.0038387",
"Arm 10_0
hartmann6: -0.0186132 (SEM: 0)
x1: 0.872585
x2: 0.845563
x3: 0.760308
x4: 0.638518
x5: 0.535373
x6: 0.419434",
"Arm 11_0
hartmann6: -0.107191 (SEM: 0)
x1: 0.989513
x2: 0.317229
x3: 0.648857
x4: 0.558124
x5: 0.306877
x6: 0.377394",
"Arm 12_0
hartmann6: -0.921573 (SEM: 0)
x1: 0.00618232
x2: 0.168376
x3: 0.728567
x4: 0.439569
x5: 0.0717724
x6: 0.765224",
"Arm 13_0
hartmann6: -1.38199 (SEM: 0)
x1: 0.109789
x2: 0.262375
x3: 0.725919
x4: 0.471402
x5: 0.143763
x6: 0.774094",
"Arm 14_0
hartmann6: -1.49377 (SEM: 0)
x1: 0.155198
x2: 0.294492
x3: 0.71667
x4: 0.48058
x5: 0.167834
x6: 0.779717",
"Arm 15_0
hartmann6: -1.62365 (SEM: 0)
x1: 0.205499
x2: 0.291081
x3: 0.654117
x4: 0.467266
x5: 0.181966
x6: 0.791011",
"Arm 16_0
hartmann6: -1.69943 (SEM: 0)
x1: 0.249338
x2: 0.277159
x3: 0.634864
x4: 0.426423
x5: 0.185014
x6: 0.846738",
"Arm 17_0
hartmann6: -2.17145 (SEM: 0)
x1: 0.265776
x2: 0.231359
x3: 0.645915
x4: 0.379026
x5: 0.210914
x6: 0.789028",
"Arm 18_0
hartmann6: -2.48092 (SEM: 0)
x1: 0.300595
x2: 0.203987
x3: 0.685256
x4: 0.334825
x5: 0.246681
x6: 0.751305",
"Arm 19_0
hartmann6: -2.55046 (SEM: 0)
x1: 0.323006
x2: 0.16023
x3: 0.71443
x4: 0.285792
x5: 0.268074
x6: 0.718299",
"Arm 20_0
hartmann6: -2.51895 (SEM: 0)
x1: 0.305742
x2: 0.258394
x3: 0.711848
x4: 0.24972
x5: 0.261953
x6: 0.71249",
"Arm 21_0
hartmann6: -2.59462 (SEM: 0)
x1: 0.275908
x2: 0.191027
x3: 0.726008
x4: 0.279843
x5: 0.320087
x6: 0.7388",
"Arm 22_0
hartmann6: -2.60407 (SEM: 0)
x1: 0.332058
x2: 0.200396
x3: 0.670185
x4: 0.272081
x5: 0.345044
x6: 0.741917",
"Arm 23_0
hartmann6: -2.30369 (SEM: 0)
x1: 0.345553
x2: 0.203027
x3: 0.755474
x4: 0.263989
x5: 0.333498
x6: 0.765127",
"Arm 24_0
hartmann6: -2.90431 (SEM: 0)
x1: 0.268276
x2: 0.164962
x3: 0.655735
x4: 0.26826
x5: 0.329887
x6: 0.691725",
"Arm 25_0
hartmann6: -3.06876 (SEM: 0)
x1: 0.230964
x2: 0.137343
x3: 0.609254
x4: 0.258392
x5: 0.333731
x6: 0.628885",
"Arm 26_0
hartmann6: -3.11298 (SEM: 0)
x1: 0.2008
x2: 0.114854
x3: 0.569471
x4: 0.213204
x5: 0.318605
x6: 0.644291",
"Arm 27_0
hartmann6: -2.99258 (SEM: 0)
x1: 0.171268
x2: 0.170045
x3: 0.585367
x4: 0.200932
x5: 0.317134
x6: 0.606951",
"Arm 28_0
hartmann6: -3.17288 (SEM: 0)
x1: 0.226376
x2: 0.0754811
x3: 0.546211
x4: 0.247571
x5: 0.319985
x6: 0.646369"
],
"type": "scatter",
"x": [
0.39216968417167664,
0.6632378920912743,
0.8464481560513377,
0.9160656044259667,
0.061600666493177414,
0.07020752225071192,
0.61757408734411,
0.22460891027003527,
0.5790610406547785,
0.8911219742149115,
0.8725849883630872,
0.9895133329555392,
0.006182318552444443,
0.10978948563041614,
0.15519788358769881,
0.2054992151547574,
0.249337684813159,
0.26577561120760934,
0.30059519475995394,
0.3230059141383427,
0.30574201731657313,
0.27590838019432495,
0.33205810010510606,
0.34555251984478,
0.26827590593283096,
0.23096434474891306,
0.20079968422726097,
0.1712678132364324,
0.22637613467008277
],
"xaxis": "x",
"y": [
0.3419135510921478,
0.7145686745643616,
0.21709479205310345,
0.32118295691907406,
0.364805075339973,
0.22375822626054287,
0.46514361817389727,
0.9686278151348233,
0.6918518720194697,
0.6016591601073742,
0.8455629972741008,
0.31722911540418863,
0.16837593492784814,
0.26237503606642254,
0.2944922227690307,
0.29108145196918866,
0.2771591352268353,
0.2313589707615443,
0.20398743573653666,
0.16023020585164255,
0.2583940762674886,
0.1910274303620144,
0.20039627819255287,
0.2030267269264587,
0.16496220432066894,
0.13734335657368027,
0.11485365301291779,
0.17004535308313098,
0.07548106422379
],
"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.242245 (SEM: 0)
x1: 0.39217
x2: 0.341914
x3: 0.159259
x4: 0.437701
x5: 0.745598
x6: 0.0620148",
"Arm 1_0
hartmann6: -0.253544 (SEM: 0)
x1: 0.663238
x2: 0.714569
x3: 0.588652
x4: 0.27768
x5: 0.139057
x6: 0.271218",
"Arm 2_0
hartmann6: -0.217305 (SEM: 0)
x1: 0.846448
x2: 0.217095
x3: 0.348404
x4: 0.671583
x5: 0.339592
x6: 0.642009",
"Arm 3_0
hartmann6: -0.267878 (SEM: 0)
x1: 0.916066
x2: 0.321183
x3: 0.137546
x4: 0.505969
x5: 0.415414
x6: 0.525829",
"Arm 4_0
hartmann6: -0.258422 (SEM: 0)
x1: 0.0616007
x2: 0.364805
x3: 0.217203
x4: 0.273991
x5: 0.599507
x6: 0.978689",
"Arm 5_0
hartmann6: -1.23921 (SEM: 0)
x1: 0.0702075
x2: 0.223758
x3: 0.719703
x4: 0.460041
x5: 0.11914
x6: 0.769392",
"Arm 6_0
hartmann6: -0.184271 (SEM: 0)
x1: 0.617574
x2: 0.465144
x3: 0.645355
x4: 0.766496
x5: 0.14884
x6: 0.638048",
"Arm 7_0
hartmann6: -0.00238585 (SEM: 0)
x1: 0.224609
x2: 0.968628
x3: 0.492947
x4: 0.925068
x5: 0.883348
x6: 0.955021",
"Arm 8_0
hartmann6: -0.0945877 (SEM: 0)
x1: 0.579061
x2: 0.691852
x3: 0.901277
x4: 0.752974
x5: 0.323338
x6: 0.582829",
"Arm 9_0
hartmann6: -0.0220674 (SEM: 0)
x1: 0.891122
x2: 0.601659
x3: 0.468342
x4: 0.305274
x5: 0.460138
x6: 0.0038387",
"Arm 10_0
hartmann6: -0.0186132 (SEM: 0)
x1: 0.872585
x2: 0.845563
x3: 0.760308
x4: 0.638518
x5: 0.535373
x6: 0.419434",
"Arm 11_0
hartmann6: -0.107191 (SEM: 0)
x1: 0.989513
x2: 0.317229
x3: 0.648857
x4: 0.558124
x5: 0.306877
x6: 0.377394",
"Arm 12_0
hartmann6: -0.921573 (SEM: 0)
x1: 0.00618232
x2: 0.168376
x3: 0.728567
x4: 0.439569
x5: 0.0717724
x6: 0.765224",
"Arm 13_0
hartmann6: -1.38199 (SEM: 0)
x1: 0.109789
x2: 0.262375
x3: 0.725919
x4: 0.471402
x5: 0.143763
x6: 0.774094",
"Arm 14_0
hartmann6: -1.49377 (SEM: 0)
x1: 0.155198
x2: 0.294492
x3: 0.71667
x4: 0.48058
x5: 0.167834
x6: 0.779717",
"Arm 15_0
hartmann6: -1.62365 (SEM: 0)
x1: 0.205499
x2: 0.291081
x3: 0.654117
x4: 0.467266
x5: 0.181966
x6: 0.791011",
"Arm 16_0
hartmann6: -1.69943 (SEM: 0)
x1: 0.249338
x2: 0.277159
x3: 0.634864
x4: 0.426423
x5: 0.185014
x6: 0.846738",
"Arm 17_0
hartmann6: -2.17145 (SEM: 0)
x1: 0.265776
x2: 0.231359
x3: 0.645915
x4: 0.379026
x5: 0.210914
x6: 0.789028",
"Arm 18_0
hartmann6: -2.48092 (SEM: 0)
x1: 0.300595
x2: 0.203987
x3: 0.685256
x4: 0.334825
x5: 0.246681
x6: 0.751305",
"Arm 19_0
hartmann6: -2.55046 (SEM: 0)
x1: 0.323006
x2: 0.16023
x3: 0.71443
x4: 0.285792
x5: 0.268074
x6: 0.718299",
"Arm 20_0
hartmann6: -2.51895 (SEM: 0)
x1: 0.305742
x2: 0.258394
x3: 0.711848
x4: 0.24972
x5: 0.261953
x6: 0.71249",
"Arm 21_0
hartmann6: -2.59462 (SEM: 0)
x1: 0.275908
x2: 0.191027
x3: 0.726008
x4: 0.279843
x5: 0.320087
x6: 0.7388",
"Arm 22_0
hartmann6: -2.60407 (SEM: 0)
x1: 0.332058
x2: 0.200396
x3: 0.670185
x4: 0.272081
x5: 0.345044
x6: 0.741917",
"Arm 23_0
hartmann6: -2.30369 (SEM: 0)
x1: 0.345553
x2: 0.203027
x3: 0.755474
x4: 0.263989
x5: 0.333498
x6: 0.765127",
"Arm 24_0
hartmann6: -2.90431 (SEM: 0)
x1: 0.268276
x2: 0.164962
x3: 0.655735
x4: 0.26826
x5: 0.329887
x6: 0.691725",
"Arm 25_0
hartmann6: -3.06876 (SEM: 0)
x1: 0.230964
x2: 0.137343
x3: 0.609254
x4: 0.258392
x5: 0.333731
x6: 0.628885",
"Arm 26_0
hartmann6: -3.11298 (SEM: 0)
x1: 0.2008
x2: 0.114854
x3: 0.569471
x4: 0.213204
x5: 0.318605
x6: 0.644291",
"Arm 27_0
hartmann6: -2.99258 (SEM: 0)
x1: 0.171268
x2: 0.170045
x3: 0.585367
x4: 0.200932
x5: 0.317134
x6: 0.606951",
"Arm 28_0
hartmann6: -3.17288 (SEM: 0)
x1: 0.226376
x2: 0.0754811
x3: 0.546211
x4: 0.247571
x5: 0.319985
x6: 0.646369"
],
"type": "scatter",
"x": [
0.39216968417167664,
0.6632378920912743,
0.8464481560513377,
0.9160656044259667,
0.061600666493177414,
0.07020752225071192,
0.61757408734411,
0.22460891027003527,
0.5790610406547785,
0.8911219742149115,
0.8725849883630872,
0.9895133329555392,
0.006182318552444443,
0.10978948563041614,
0.15519788358769881,
0.2054992151547574,
0.249337684813159,
0.26577561120760934,
0.30059519475995394,
0.3230059141383427,
0.30574201731657313,
0.27590838019432495,
0.33205810010510606,
0.34555251984478,
0.26827590593283096,
0.23096434474891306,
0.20079968422726097,
0.1712678132364324,
0.22637613467008277
],
"xaxis": "x2",
"y": [
0.3419135510921478,
0.7145686745643616,
0.21709479205310345,
0.32118295691907406,
0.364805075339973,
0.22375822626054287,
0.46514361817389727,
0.9686278151348233,
0.6918518720194697,
0.6016591601073742,
0.8455629972741008,
0.31722911540418863,
0.16837593492784814,
0.26237503606642254,
0.2944922227690307,
0.29108145196918866,
0.2771591352268353,
0.2313589707615443,
0.20398743573653666,
0.16023020585164255,
0.2583940762674886,
0.1910274303620144,
0.20039627819255287,
0.2030267269264587,
0.16496220432066894,
0.13734335657368027,
0.11485365301291779,
0.17004535308313098,
0.07548106422379
],
"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": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"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": [
"