{
"cells": [
{
"cell_type": "markdown",
"id": "1c2e6205",
"metadata": {
"papermill": {
"duration": 0.003418,
"end_time": "2024-07-23T19:33:04.321186",
"exception": false,
"start_time": "2024-07-23T19:33:04.317768",
"status": "completed"
},
"tags": []
},
"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,
"id": "35b91f44",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:33:04.326892Z",
"iopub.status.busy": "2024-07-23T19:33:04.326635Z",
"iopub.status.idle": "2024-07-23T19:33:07.528476Z",
"shell.execute_reply": "2024-07-23T19:33:07.527703Z"
},
"papermill": {
"duration": 3.219894,
"end_time": "2024-07-23T19:33:07.543366",
"exception": false,
"start_time": "2024-07-23T19:33:04.323472",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.utils.notebook.plotting: Please see\n",
" (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering)\n",
" if visualizations are not rendering.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"from ax.metrics.branin import branin\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.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import init_notebook_plotting, render\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"id": "669844dc",
"metadata": {
"papermill": {
"duration": 0.035806,
"end_time": "2024-07-23T19:33:07.611431",
"exception": false,
"start_time": "2024-07-23T19:33:07.575625",
"status": "completed"
},
"tags": []
},
"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,
"id": "0f831ebc",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:33:07.684552Z",
"iopub.status.busy": "2024-07-23T19:33:07.684093Z",
"iopub.status.idle": "2024-07-23T19:33:07.688449Z",
"shell.execute_reply": "2024-07-23T19:33:07.687865Z"
},
"papermill": {
"duration": 0.042326,
"end_time": "2024-07-23T19:33:07.689820",
"exception": false,
"start_time": "2024-07-23T19:33:07.647494",
"status": "completed"
},
"tags": []
},
"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",
"id": "d4ec7f69",
"metadata": {
"papermill": {
"duration": 0.036189,
"end_time": "2024-07-23T19:33:07.761888",
"exception": false,
"start_time": "2024-07-23T19:33:07.725699",
"status": "completed"
},
"tags": []
},
"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",
"id": "583a1969",
"metadata": {
"papermill": {
"duration": 0.035419,
"end_time": "2024-07-23T19:33:07.832800",
"exception": false,
"start_time": "2024-07-23T19:33:07.797381",
"status": "completed"
},
"tags": []
},
"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,
"id": "69e679f9",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:33:07.906091Z",
"iopub.status.busy": "2024-07-23T19:33:07.905592Z",
"iopub.status.idle": "2024-07-23T19:35:30.164696Z",
"shell.execute_reply": "2024-07-23T19:35:30.163960Z"
},
"papermill": {
"duration": 142.29791,
"end_time": "2024-07-23T19:35:30.166632",
"exception": false,
"start_time": "2024-07-23T19:33:07.868722",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] 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 07-23 19:33:07] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 12 trials, BoTorch for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:20] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:31] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:40] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:50] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:33:57] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:04] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:12] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:18] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:24] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:31] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:38] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:46] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:34:53] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:35:00] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:35:07] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:35:15] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 07-23 19:35:22] 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",
"id": "ff5751f7",
"metadata": {
"papermill": {
"duration": 0.054194,
"end_time": "2024-07-23T19:35:30.278561",
"exception": false,
"start_time": "2024-07-23T19:35:30.224367",
"status": "completed"
},
"tags": []
},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4da8ac46",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:35:30.355559Z",
"iopub.status.busy": "2024-07-23T19:35:30.355050Z",
"iopub.status.idle": "2024-07-23T19:35:30.361891Z",
"shell.execute_reply": "2024-07-23T19:35:30.361292Z"
},
"papermill": {
"duration": 0.046926,
"end_time": "2024-07-23T19:35:30.363202",
"exception": false,
"start_time": "2024-07-23T19:35:30.316276",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.19314069079097093,\n",
" 'x2': 0.1994478468838452,\n",
" 'x3': 0.4885211779082532,\n",
" 'x4': 0.29814145927035457,\n",
" 'x5': 0.31170656162801025,\n",
" 'x6': 0.6760903962353618}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "5c00a188",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:35:30.440809Z",
"iopub.status.busy": "2024-07-23T19:35:30.440150Z",
"iopub.status.idle": "2024-07-23T19:35:30.444808Z",
"shell.execute_reply": "2024-07-23T19:35:30.444120Z"
},
"papermill": {
"duration": 0.045103,
"end_time": "2024-07-23T19:35:30.446146",
"exception": false,
"start_time": "2024-07-23T19:35:30.401043",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -3.2688188430198526, 'l2norm': 0.979228771251709}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"id": "5db8e01f",
"metadata": {
"papermill": {
"duration": 0.037885,
"end_time": "2024-07-23T19:35:30.521714",
"exception": false,
"start_time": "2024-07-23T19:35:30.483829",
"status": "completed"
},
"tags": []
},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "e67aee30",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:35:30.599751Z",
"iopub.status.busy": "2024-07-23T19:35:30.599137Z",
"iopub.status.idle": "2024-07-23T19:35:30.603600Z",
"shell.execute_reply": "2024-07-23T19:35:30.602961Z"
},
"papermill": {
"duration": 0.045045,
"end_time": "2024-07-23T19:35:30.605026",
"exception": false,
"start_time": "2024-07-23T19:35:30.559981",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"id": "f744959e",
"metadata": {
"papermill": {
"duration": 0.038095,
"end_time": "2024-07-23T19:35:30.681042",
"exception": false,
"start_time": "2024-07-23T19:35:30.642947",
"status": "completed"
},
"tags": []
},
"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,
"id": "2fe971af",
"metadata": {
"execution": {
"iopub.execute_input": "2024-07-23T19:35:30.759261Z",
"iopub.status.busy": "2024-07-23T19:35:30.758587Z",
"iopub.status.idle": "2024-07-23T19:35:31.507634Z",
"shell.execute_reply": "2024-07-23T19:35:31.506900Z"
},
"papermill": {
"duration": 0.793182,
"end_time": "2024-07-23T19:35:31.512387",
"exception": false,
"start_time": "2024-07-23T19:35:30.719205",
"status": "completed"
},
"tags": []
},
"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.2718761498357427,
-2.3029933952137247,
-2.331008510225314,
-2.3556478067558517,
-2.3766484064111424,
-2.3937632896959014,
-2.4067665995023795,
-2.415459015593372,
-2.419672977071204,
-2.4192775043970434,
-2.4141823676281096,
-2.404341366657502,
-2.389754531832935,
-2.370469114675835,
-2.346579310703338,
-2.31822473060716,
-2.285587704189319,
-2.2488895577278827,
-2.208386046813372,
-2.1643621524875964,
-2.117126459647399,
-2.0670053349179263,
-2.0143371086651904,
-1.959466444691855,
-1.9027390535979807,
-1.8444968739109715,
-1.7850738110120796,
-1.7247920897123377,
-1.6639592440704356,
-1.602865739450869,
-1.541783198208642,
-1.4809631824892424,
-1.420636475576996,
-1.3610127965963426,
-1.30228088137557,
-1.2446088639228718,
-1.1881448972040796,
-1.133017957797167,
-1.0793387857330905,
-1.027200917798202,
-0.9766817793342529,
-0.9278438058433398,
-0.8807355713293062,
-0.8353929052178467,
-0.7918399838922365,
-0.7500903863998006,
-0.7101481067876056,
-0.6720085178878565,
-0.6356592832687777,
-0.6010812155678418
],
[
-2.29311172239398,
-2.3247125869701493,
-2.35316629205174,
-2.378192616487398,
-2.3995222475881204,
-2.4169020220644226,
-2.430100443900204,
-2.438913284561703,
-2.4431690270497004,
-2.4427338870472064,
-2.4375161390188254,
-2.427469496639156,
-2.4125953447461534,
-2.392943688594947,
-2.368612766368252,
-2.339747352229207,
-2.3065358504132893,
-2.2692063395586173,
-2.2280217676375482,
-2.183274521288741,
-2.135280600718036,
-2.084373625213531,
-2.0308988775343586,
-1.9752075707104224,
-1.917651490598194,
-1.8585781340709824,
-1.7983264279752977,
-1.7372230798227142,
-1.6755795793574333,
-1.613689842172256,
-1.551828463603239,
-1.49024953386555,
-1.429185953890759,
-1.3688491851689326,
-1.309429365297806,
-1.251095722906212,
-1.1939972301209678,
-1.1382634368406443,
-1.0840054379739203,
-1.0313169318848396,
-0.9802753351313597,
-0.9309429249106225,
-0.8833679862810913,
-0.8375859461586637,
-0.7936204802822665,
-0.7514845828582934,
-0.7111815914871057,
-0.672706162324499,
-0.6360451923128727,
-0.6011786868048508
],
[
-2.3122013396597985,
-2.3442272278708387,
-2.3730641885669517,
-2.3984260594969826,
-2.420037694436923,
-2.4376403847702512,
-2.4509975792585186,
-2.4599006964171304,
-2.464174775852639,
-2.46368368384984,
-2.4583345826388534,
-2.4480813967896635,
-2.432927063374049,
-2.4129244285223805,
-2.3881757412085287,
-2.358830783510452,
-2.325083754712373,
-2.2871690874281123,
-2.2453564144582696,
-2.199944925716861,
-2.1512573577581624,
-2.0996338476357033,
-2.0454258616147394,
-1.9889903809143332,
-1.9306844939467998,
-1.8708605096943325,
-1.809861671748609,
-1.7480185187206039,
-1.6856459056415853,
-1.6230406738969092,
-1.5604799351482805,
-1.4982199181733897,
-1.4364953166443228,
-1.3755190701684703,
-1.3154825096581302,
-1.2565558003138215,
-1.198888620192707,
-1.1426110185591203,
-1.0878344051995545,
-1.0346526290289746,
-0.983143111196358,
-0.9333680042427525,
-0.8853753545284749,
-0.8392002500697743,
-0.7948659401155228,
-0.7523849162960843,
-0.7117599480571377,
-0.6729850674274042,
-0.636046500038081,
-0.6009235407885348
],
[
-2.3290454251165693,
-2.3614336512665366,
-2.390594660942451,
-2.416237017212415,
-2.4380804194840837,
-2.4558612917220994,
-2.4693386879484454,
-2.47830029896266,
-2.4825682921708534,
-2.482004682668424,
-2.476515927489495,
-2.466056461494932,
-2.450630951944932,
-2.4302951321555883,
-2.4051551707572316,
-2.375365628367107,
-2.341126136211063,
-2.302676993778058,
-2.2602939220940192,
-2.214282226651141,
-2.1649706227769583,
-2.1127049605994044,
-2.057842061098761,
-2.000743842852086,
-1.9417718840263951,
-1.8812825282291372,
-1.819622607623469,
-1.7571258235262504,
-1.6941097946286516,
-1.6308737570026657,
-1.5676968789844952,
-1.504837138328038,
-1.442530698739611,
-1.3809917176470594,
-1.32041251609136,
-1.2609640440303316,
-1.2027965791374664,
-1.1460406034606652,
-1.0908078093140747,
-1.0371921929241137,
-0.9852712012218997,
-0.9351069035038381,
-0.8867471653253537,
-0.8402268068961857,
-0.7955687324151539,
-0.7527850202654892,
-0.7118779668557299,
-0.6728410792126142,
-0.6356600132901759,
-0.6003134564255859
],
[
-2.3435538873380732,
-2.3762380910468943,
-2.4056604791197103,
-2.431525077247756,
-2.453547184290088,
-2.471459110227018,
-2.485016247501499,
-2.494003249919638,
-2.4982400375916116,
-2.4975873102465203,
-2.491951244798706,
-2.4812870821390014,
-2.465601371923418,
-2.4449527345612783,
-2.419451103249137,
-2.3892555106294875,
-2.354570571524093,
-2.315641877054201,
-2.2727505535880126,
-2.22620725399811,
-2.176345842911018,
-2.123517017198333,
-2.068082072965659,
-2.01040699506731,
-1.9508570080157657,
-1.889791690333657,
-1.8275607193481789,
-1.7645002810944,
-1.7009301511234416,
-1.6371514273016694,
-1.5734448757442578,
-1.5100698362250982,
-1.4472636237662921,
-1.385241358271586,
-1.3241961533450284,
-1.2642995979536604,
-1.205702469420207,
-1.1485356224983099,
-1.0929110062501883,
-1.038922767542894,
-0.986648406797318,
-0.9361499579032219,
-0.8874751698133538,
-0.8406586721943461,
-0.79572311165097,
-0.7526802484983901,
-0.7115320069008005,
-0.6722714735020602,
-0.6348838415206195,
-0.5993472987402882
],
[
-2.3556473338406763,
-2.3885579788068,
-2.4181761007455767,
-2.4442019904798666,
-2.466347368657303,
-2.4843412537338097,
-2.497936175648519,
-2.5069145005120603,
-2.5110945728203715,
-2.51033634357312,
-2.504546146208659,
-2.4936803138446915,
-2.4777474000020865,
-2.4568088619366515,
-2.4309781761929807,
-2.400418463472579,
-2.3653387903243708,
-2.325989379889965,
-2.2826560004222634,
-2.235653810850481,
-2.185320932401528,
-2.1320119902617214,
-2.076091835228078,
-2.0179296170321117,
-1.9578933420338227,
-1.8963450105266966,
-1.833636394193868,
-1.7701054829345826,
-1.7060736027461825,
-1.6418431830067926,
-1.577696132765235,
-1.513892771782264,
-1.4506712530804764,
-1.3882474093184964,
-1.3268149547786952,
-1.2665459773312866,
-1.2075916595324827,
-1.1500831742003537,
-1.0941327066794133,
-1.0398345629985566,
-0.9872663298507673,
-0.9364900585206158,
-0.8875534504170615,
-0.8404910266804472,
-0.7953252684294163,
-0.7520677176400593,
-0.7107200314715331,
-0.6712749851439725,
-0.633717420311743,
-0.5980251373294957
],
[
-2.3652582002960814,
-2.3983231520621713,
-2.428068956841834,
-2.4541930304982023,
-2.476404397733927,
-2.4944296677844,
-2.5080193635619685,
-2.5169543618378785,
-2.521052140806719,
-2.5201724918180366,
-2.514222345857777,
-2.5031593993071004,
-2.486994296569505,
-2.465791229793466,
-2.439666932277048,
-2.4087881544300984,
-2.373367804390159,
-2.3336600005120034,
-2.289954317623766,
-2.2425695160952666,
-2.1918470283153986,
-2.138144447951941,
-2.0818292297243213,
-2.023272766517134,
-1.962844970173659,
-1.9009094444413073,
-1.837819304329885,
-1.773913665920475,
-1.709514804520596,
-1.6449259571333368,
-1.5804297277048909,
-1.5162870407082667,
-1.4527365802856025,
-1.3899946481050558,
-1.3282553727201536,
-1.267691205797509,
-1.2084536452847812,
-1.1506741316385583,
-1.094465069946432,
-1.0399209376228913,
-0.9871194439501213,
-0.9361227138213963,
-0.8869784734867633,
-0.8397212208425647,
-0.7943733668514833,
-0.7509463380693426,
-0.7094416330515017,
-0.6698518276878795,
-0.6321615263440395,
-0.5963482571375215
],
[
-2.37233176192964,
-2.405476936743235,
-2.43528060375771,
-2.4614382113300075,
-2.483657019451601,
-2.501662158504673,
-2.515203044078997,
-2.524059898997156,
-2.5280500708552434,
-2.527033793077643,
-2.5209190318712746,
-2.5096650976089956,
-2.493284775924872,
-2.471844841051982,
-2.445464934918464,
-2.4143149114678266,
-2.3786108408418296,
-2.3386099331302708,
-2.294604674188003,
-2.246916470019737,
-2.1958890780591087,
-2.141882070807137,
-2.0852645366031486,
-2.0264091792422096,
-1.9656869365102836,
-1.9034621996410461,
-1.8400886820696365,
-1.7759059567533015,
-1.7112366565671417,
-1.6463843117499999,
-1.5816317820971268,
-1.51724022963718,
-1.4534485698353743,
-1.3904733356527292,
-1.3285088885488054,
-1.2677279130574273,
-1.2082821361338176,
-1.1503032183342916,
-1.0939037704053525,
-1.0391784555160042,
-0.9862051437926369,
-0.9350460917645669,
-0.8857491246603255,
-0.8383488041529515,
-0.7928675681360284,
-0.7493168324590868,
-0.7076980473194736,
-0.6680037032673835,
-0.6302182836019083,
-0.5943191613861316
],
[
-2.3768269939670565,
-2.4099770670335174,
-2.4397677005627743,
-2.4658933186973373,
-2.4880603838246556,
-2.5059935118059498,
-2.519441940312069,
-2.528186096435364,
-2.5320439462495603,
-2.530876768696134,
-2.524593991502887,
-2.5131567649587083,
-2.4965800289809446,
-2.4749329394864104,
-2.448337644226876,
-2.4169665165417857,
-2.3810380516702727,
-2.3408116948384587,
-2.2965819012941084,
-2.248671729709554,
-2.1974262490906638,
-2.143206003523276,
-2.0863807360038154,
-2.0273235279181745,
-1.9664054683012524,
-1.9039909289346628,
-1.8404334883469582,
-1.77607251975903,
-1.7112304345671334,
-1.6462105537504301,
-1.5812955644861622,
-1.5167465082114233,
-1.4528022392913345,
-1.3896792900740293,
-1.3275720779703746,
-1.2666533926696817,
-1.207075105998888,
-1.1489690525713674,
-1.0924480356510813,
-1.0376069190922625,
-0.9845237724452702,
-0.9332610421057955,
-0.8838667265886352,
-0.8363755385677613,
-0.7908100402372444,
-0.7471817418457913,
-0.7054921559949966,
-0.6657338025335466,
-0.6278911606935242,
-0.5919415665653048
],
[
-2.378717249952248,
-2.411796407703757,
-2.4415027732347987,
-2.4675307123675014,
-2.4895868780447525,
-2.5073963539656674,
-2.5207091426351322,
-2.5293067406192487,
-2.5330084806465845,
-2.5316772807181804,
-2.525224437009883,
-2.5136131371593784,
-2.4968604520651185,
-2.475037676794212,
-2.448269016905914,
-2.4167287357016307,
-2.3806369741442093,
-2.3402545188655006,
-2.29587682292595,
-2.2478275830068175,
-2.1964521530579812,
-2.1421110364616647,
-2.085173654012175,
-2.0260125392684993,
-1.964998069984841,
-1.9024938064192494,
-1.8388524749861186,
-1.7744126087086027,
-1.7094958336771755,
-1.6444047727349211,
-1.579421523597659,
-1.514806658432229,
-1.4507986854181705,
-1.3876139097470837,
-1.3254466314493585,
-1.2644696198191216,
-1.2048348084047364,
-1.1466741599180588,
-1.0901006564296414,
-1.035209376401482,
-0.9820786261195327,
-0.9307710986921082,
-0.8813350388394728,
-0.8338053961507426,
-0.7882049533170282,
-0.7445454190939365,
-0.7028284784489864,
-0.6630467945731315,
-0.625184959241809,
-0.5892203894628605
],
[
-2.3779907308569266,
-2.410923448687564,
-2.440474732126485,
-2.4663398628383573,
-2.4882266775340147,
-2.505861711009292,
-2.518996669254314,
-2.5274149737603095,
-2.530938056349421,
-2.529431045981727,
-2.522807487226399,
-2.5110327712512053,
-2.494126042637546,
-2.4721604581955634,
-2.4452617995567487,
-2.4136055599758905,
-2.377412721071634,
-2.336944497645584,
-2.2924963564471943,
-2.2443916121337004,
-2.19297487844753,
-2.1386056133546196,
-2.081651951194255,
-2.022484968656658,
-1.9614734884962417,
-1.8989794873181987,
-1.8353541421085642,
-1.7709345240861623,
-1.706040927268926,
-1.6409748022462207,
-1.5760172526180956,
-1.5114280421615185,
-1.4474450548191187,
-1.3842841468146112,
-1.3221393301929147,
-1.2611832293544292,
-1.2015677561313631,
-1.1434249540667092,
-1.086867968283538,
-1.031992103245305,
-0.9788759364786178,
-0.9275824617343927,
-0.8781602399627488,
-0.8306445408067163,
-0.7850584610651137,
-0.7414140097581412,
-0.6997131520941654,
-0.6599488068388683,
-0.622105793386321,
-0.5861617262849071
],
[
-2.374650724124591,
-2.407362548749059,
-2.4366891172482905,
-2.462327594649577,
-2.4839879831749307,
-2.501399235335141,
-2.5143156774550435,
-2.5225234848794678,
-2.525846890609703,
-2.524153773578938,
-2.5173602728750923,
-2.5054341163702,
-2.4883964345665808,
-2.466321942249462,
-2.4393374943978423,
-2.40761913948697,
-2.371387886742526,
-2.3309044647227566,
-2.286463375043248,
-2.2383865414325914,
-2.187016828337531,
-2.1327116635441508,
-2.0758369533930465,
-2.0167614329970305,
-1.955851551254646,
-1.8934669533751523,
-1.829956592632658,
-1.7656554777947342,
-1.700882042402539,
-1.6359361061132873,
-1.5710973861411055,
-1.5066245081235985,
-1.442754460251486,
-1.3797024319533202,
-1.3176619784588934,
-1.2568054547142775,
-1.1972846658697658,
-1.1392316863884129,
-1.0827598052490497,
-1.0279645603435863,
-0.9749248306850332,
-0.9237039602325472,
-0.874350891868588,
-0.8269012942611961,
-0.781378667994275,
-0.737795420465696,
-0.6961539016765846,
-0.656447395214144,
-0.6186610605204992,
-0.5827728239944553
],
[
-2.3687155998513783,
-2.401133914349842,
-2.430168056456729,
-2.4555180205206693,
-2.4768969282156466,
-2.4940370826198763,
-2.5066963083915654,
-2.514664321231204,
-2.5177688134698544,
-2.5158809100232062,
-2.5089196510883007,
-2.4968552006838616,
-2.479710561399904,
-2.457561685017211,
-2.4305359892622804,
-2.3988094043584134,
-2.362602163732111,
-2.322173612162778,
-2.277816330046543,
-2.229849868418337,
-2.1786143634572674,
-2.124464259783263,
-2.0677623264680576,
-2.008874104104204,
-1.948162879286989,
-1.885985246431528,
-1.8226872865276604,
-1.7586013678914656,
-1.694043554479991,
-1.6293115921518342,
-1.5646834318035272,
-1.5004162401926309,
-1.4367458441756666,
-1.3738865517482188,
-1.3120312933236253,
-1.251352028701932,
-1.1920003686921126,
-1.1341083648836614,
-1.077789426180563,
-1.0231393260399528,
-0.970237269608841,
-0.9191469949181664,
-0.869917886840391,
-0.8225860865750723,
-0.777175582974178,
-0.73369927506399,
-0.6921599976982507,
-0.6525515044306863,
-0.6148594034744713,
-0.5790620440715409
],
[
-2.3602185606511954,
-2.392273310555565,
-2.4209499338616682,
-2.4459521642969557,
-2.466997153691083,
-2.48382143887378,
-2.4961871664422217,
-2.5038883223272244,
-2.5067566605880485,
-2.504666996674133,
-2.4975415346341983,
-2.4853529406229677,
-2.468125954326105,
-2.4459374354939083,
-2.4189148587942304,
-2.387233379157161,
-2.351111677004382,
-2.3108068495419234,
-2.2666086388300313,
-2.2188332834649027,
-2.1678172555556925,
-2.1139111063328198,
-2.057473599479919,
-1.9988662667759698,
-1.9384484795816972,
-1.876573094069194,
-1.8135826984724868,
-1.7498064667494269,
-1.6855576042023812,
-1.6211313560602323,
-1.5568035391599542,
-1.4928295492303387,
-1.4294437915302025,
-1.3668594804113297,
-1.3052687534190208,
-1.2448430474129453,
-1.1857336874614484,
-1.128072643498943,
-1.0719734145403104,
-1.0175320052735575,
-0.964827964831033,
-0.9139254622734487,
-0.8648743776786687,
-0.8177113916387461,
-0.7724610594063744,
-0.7291368589007468,
-0.6877422043104087,
-0.6482714191556744,
-0.6107106644400214,
-0.5750388189749335
],
[
-2.349207151630971,
-2.3808315121112624,
-2.409088778553279,
-2.4336872850140105,
-2.454349067057112,
-2.470815714809616,
-2.4828544527115666,
-2.490264198356872,
-2.4928813047013114,
-2.4905846644328493,
-2.4832998616105155,
-2.471002098263019,
-2.4537177001201265,
-2.4315241064575215,
-2.4045483593810784,
-2.372964211467157,
-2.3369880537971373,
-2.296873920846602,
-2.2529078525405883,
-2.2054018905079706,
-2.154687961793708,
-2.1011118666410824,
-2.0450275444123,
-1.9867917487127529,
-1.926759222955101,
-1.8652784329121497,
-1.8026878839218738,
-1.7393130271282013,
-1.6754637408447683,
-1.6114323590954667,
-1.5474922089854672,
-1.4838966112989256,
-1.420878294223762,
-1.3586491680321582,
-1.2974004085530275,
-1.2373027989868908,
-1.1785072826380838,
-1.1211456830805275,
-1.0653315527637592,
-1.0111611157901401,
-0.9587142752980788,
-0.9080556603826367,
-0.8592356916484101,
-0.8122916482481595,
-0.7672487225832748,
-0.7241210517299033,
-0.6829127171277991,
-0.6436187061621444,
-0.606225831020682,
-0.570713601661242
],
[
-2.3357425464696275,
-2.3668735136402894,
-2.394653395882377,
-2.4187959278402986,
-2.439028813456698,
-2.4550994405783015,
-2.466780789147541,
-2.4738772924529044,
-2.476230367508011,
-2.47372330899361,
-2.4662852494447858,
-2.453893930250058,
-2.4365771010653345,
-2.4144124604864174,
-2.3875261546680187,
-2.3560899480878623,
-2.320317259198543,
-2.2804583055821923,
-2.2367946264987677,
-2.1896332483808743,
-2.1393007369083263,
-2.0861373448605356,
-2.03049142456573,
-1.972714232635194,
-1.913155216323791,
-1.8521578372676453,
-1.7900559602539547,
-1.7271708119837028,
-1.663808496961913,
-1.6002580440241911,
-1.536789946961695,
-1.473655155729128,
-1.4110844704031946,
-1.3492882880456873,
-1.288456652569164,
-1.2287595592477802,
-1.1703474682919017,
-1.113351985551562,
-1.0578866725933984,
-1.0040479528175035,
-0.9519160847087473,
-0.9015561775740116,
-0.8530192290820737,
-0.8063431675239778,
-0.7615538849149504,
-0.7186662498603617,
-0.6776850915238942,
-0.6386061480933503,
-0.6014169748744673,
-0.5660978085916694
],
[
-2.3198986340450793,
-2.3504775273290175,
-2.3777262738917067,
-2.4013647389437534,
-2.421127001171783,
-2.4367669067966533,
-2.4480637832026395,
-2.4548280801221916,
-2.456906667834365,
-2.4541875040244285,
-2.4466033909239986,
-2.4341345851519183,
-2.416810091759765,
-2.39470756309301,
-2.367951819865458,
-2.3367121027980504,
-2.301198236804158,
-2.2616559388784143,
-2.2183615235951297,
-2.171616258948391,
-2.121740605536466,
-2.0690685402519726,
-2.013942127787174,
-1.9567064643112144,
-1.8977050810372285,
-1.8372758630492063,
-1.77574751152166,
-1.7134365553592077,
-1.650644900880465,
-1.5876578948732092,
-1.524742866562922,
-1.4621481072523475,
-1.4001022421805538,
-1.338813947143977,
-1.2784719622723508,
-1.2192453567123864,
-1.1612840004960279,
-1.104719203223309,
-1.0496644830616992,
-0.9962164336867689,
-0.9444556609418321,
-0.8944477650114437,
-0.8462443476682159,
-0.7998840275927385,
-0.7553934498462199,
-0.712788278286825,
-0.6720741620741859,
-0.633247669425269,
-0.5962971834988225,
-0.5612037567277034
],
[
-2.3017609367345404,
-2.331733803702104,
-2.3584023052496432,
-2.3814930895186928,
-2.400747231349241,
-2.41592560656306,
-2.426814391863453,
-2.433230468075119,
-2.4350264707894307,
-2.432095218340407,
-2.4243732584617668,
-2.411843314355263,
-2.3945354756759807,
-2.372527062576754,
-2.3459411803787367,
-2.3149440665733407,
-2.2797414003825036,
-2.240573791470717,
-2.1977116866230544,
-2.1514499333021284,
-2.102102221657921,
-2.0499955975684228,
-1.9954652042252152,
-1.9388493732400383,
-1.8804851515090952,
-1.8207043191035641,
-1.7598299271564135,
-1.698173363224572,
-1.6360319346058743,
-1.5736869470680883,
-1.5114022468541832,
-1.4494231871642722,
-1.387975976150321,
-1.3272673614149093,
-1.2674846057318767,
-1.208795709867415,
-1.151349840647252,
-1.0952779254769271,
-1.0406933780909597,
-0.9876929241337765,
-0.9363574990565253,
-0.8867531945914803,
-0.8389322336293008,
-0.7929339566009982,
-0.7487858054202485,
-0.7065042936589144,
-0.6660959539164855,
-0.6275582553203459,
-0.5908804857841317,
-0.5560445950838592
],
[
-2.28142539601328,
-2.3107433157303827,
-2.3367873697229893,
-2.359291558843937,
-2.37800448657163,
-2.392694537399958,
-2.403155147811842,
-2.4092099582921325,
-2.41071760589296,
-2.4075759061370086,
-2.3997251856176054,
-2.3871505643313813,
-2.3698830470360037,
-2.3479993589582,
-2.3216205431624832,
-2.2909094141494353,
-2.2560670255943025,
-2.217328353624814,
-2.1749574186861302,
-2.1292420704230617,
-2.0804886451368096,
-2.0290166793524094,
-1.9751538309188965,
-1.9192311251081162,
-1.861578610491472,
-1.8025214799089369,
-1.742376686571339,
-1.681450064503636,
-1.6200339459453765,
-1.5584052555490067,
-1.4968240517665128,
-1.4355324792167172,
-1.374754091653565,
-1.3146935030316995,
-1.2555363237404358,
-1.1974493400244806,
-1.1405808966148425,
-1.0850614453644059,
-1.03100422595216,
-0.9785060482563325,
-0.9276481496094033,
-0.878497103688419,
-0.8311057611555576,
-0.7855142052766615,
-0.7417507085694247,
-0.6998326790533084,
-0.6597675868916643,
-0.6215538641469354,
-0.5851817720326489,
-0.5506342314658705
],
[
-2.25899706315005,
-2.28761634843646,
-2.31299682378761,
-2.3348803273364647,
-2.353023433379965,
-2.3672024219817644,
-2.3772183097702566,
-2.3829017418634018,
-2.384117520360923,
-2.3807685371967575,
-2.372798892551431,
-2.3601960157770003,
-2.3429916614434028,
-2.321261722586909,
-2.2951248778941395,
-2.2647401600338117,
-2.2303035905490276,
-2.1920440673027253,
-2.150218711475459,
-2.1051078837125194,
-2.0570100665806357,
-2.0062367874705114,
-1.95310772698624,
-1.8979461265886526,
-1.8410745787376466,
-1.7828112549229345,
-1.7234666028095034,
-1.6633405236059096,
-1.6027200246023496,
-1.541877329291009,
-1.4810684181464966,
-1.4205319665723988,
-1.3604886423016473,
-1.3011407223010518,
-1.2426719886310642,
-1.1852478634316077,
-1.1290157449442928,
-1.0741055089624403,
-1.0206301430752756,
-0.9686864843225992,
-0.9183560342247821,
-0.8697058284584737,
-0.8227893416093182,
-0.7776474103802092,
-0.7343091613266478,
-0.6927929316108179,
-0.6531071734119767,
-0.6152513345112739,
-0.57921670920136,
-0.5449872550754047
],
[
-2.234588732755829,
-2.2624710355651123,
-2.2871539427090823,
-2.308387528534436,
-2.3259366909941916,
-2.3395859027929387,
-2.3491439945489128,
-2.3544487818746216,
-2.3553713278932324,
-2.3518196277657184,
-2.343741515736233,
-2.331126628875303,
-2.31400731278355,
-2.292458417611996,
-2.2665960003305496,
-2.2365750131025743,
-2.202586110812974,
-2.164851748477414,
-2.1236217595394713,
-2.079168609751793,
-2.031782511222759,
-1.9817665611158937,
-1.9294320434007737,
-1.8750940034991848,
-1.8190671773829115,
-1.7616623305166368,
-1.7031830390663882,
-1.6439229264532829,
-1.5841633526394823,
-1.5241715412518977,
-1.4641991204214513,
-1.4044810466481736,
-1.345234876711382,
-1.2866603502693488,
-1.2289392450014773,
-1.1722354666283683,
-1.1166953376146815,
-1.0624480505537552,
-1.0096062549160996,
-0.9582667488136293,
-0.908511250519727,
-0.8604072275587241,
-0.8140087641407536,
-0.7693574504987274,
-0.7264832802449906,
-0.6854055441824176,
-0.6461337110748056,
-0.6086682877089326,
-0.5730016521785686,
-0.5391188557056485
],
[
-2.20831955499305,
-2.2354318821814325,
-2.25938835686992,
-2.2799476044644758,
-2.296883113040999,
-2.309987759480557,
-2.3190783410572626,
-2.3239999366072617,
-2.3246299047333814,
-2.3208813238723582,
-2.3127056932254906,
-2.3000947450480473,
-2.2830812654193737,
-2.2617388776177236,
-2.236180803084217,
-2.2065576726574365,
-2.1730545091394613,
-2.1358870370787564,
-2.0952974951223937,
-2.0515501309078483,
-2.004926550500551,
-1.9557210770791777,
-1.9042362504091628,
-1.8507785727888386,
-1.7956545811276339,
-1.7391673004044197,
-1.6816131120393765,
-1.6232790522125227,
-1.564440539984733,
-1.5053595230748218,
-1.446283020032348,
-1.3874420309763935,
-1.329050784692822,
-1.2713062873557677,
-1.2143881371434984,
-1.1584585692577185,
-1.1036626970533217,
-1.0501289168944097,
-0.9979694467489583,
-0.9472809712288981,
-0.8981453686148468,
-0.850630498250421,
-0.8047910294552847,
-0.7606692957221671,
-0.7182961603893618,
-0.6776918821930686,
-0.6388669710946825,
-0.6018230265494963,
-0.5665535519431899,
-0.5330447402846363
],
[
-2.180313658827483,
-2.206628307791295,
-2.229834518938616,
-2.2496997027132424,
-2.266006122008179,
-2.278555189663772,
-2.287171747720315,
-2.291708164819946,
-2.2920480747689433,
-2.288109578573687,
-2.279847746427084,
-2.2672562853982057,
-2.250368280931375,
-2.2292559715329046,
-2.2040295706011377,
-2.174835201213146,
-2.1418520535005845,
-2.1052889062957947,
-2.065380173303203,
-2.022381639420383,
-1.976566046805981,
-1.92821867558886,
-1.8776330437431905,
-1.8251068274279323,
-1.770938079316191,
-1.715421799810204,
-1.6588468956358058,
-1.6014935427084853,
-1.5436309555521572,
-1.4855155538641494,
-1.4273895078400543,
-1.3694796373068479,
-1.3119966352466057,
-1.255134583608874,
-1.199070728105746,
-1.1439654786761642,
-1.0899626032339416,
-1.0371895839408016,
-0.9857581073613357,
-0.9357646622807368,
-0.8872912215487462,
-0.840405986933999,
-0.7951641785420253,
-0.7516088528015474,
-0.7097717353151302,
-0.6696740569762555,
-0.6313273836642441,
-0.5947344315396641,
-0.5598898614816512,
-0.5267810475442336
],
[
-2.150698814284055,
-2.176193239321809,
-2.1986302323435942,
-2.2177861465075854,
-2.233452128271958,
-2.245438185296933,
-2.2535772153846008,
-2.2577288449674713,
-2.25778291514138,
-2.2536624541049495,
-2.245325988810503,
-2.232769075692678,
-2.2160249686551015,
-2.1951643884420005,
-2.17029440629061,
-2.1415565012052626,
-2.1091238897401228,
-2.0731982565536518,
-2.034006031614925,
-1.9917943658802677,
-1.9468269529365978,
-1.8993798317831057,
-1.8497372881705916,
-1.7981879512118253,
-1.745021160408901,
-1.690523657399831,
-1.6349766376726387,
-1.5786531808424413,
-1.521816064091547,
-1.464715952041667,
-1.4075899475091878,
-1.3506604810514256,
-1.2941345126650732,
-1.2382030161602842,
-1.1830407153230458,
-1.1288060407271905,
-1.0756412767193986,
-1.0236728694507518,
-0.9730118686691165,
-0.9237544781468648,
-0.8759826919557481,
-0.8297649962015579,
-0.7851571182070299,
-0.7422028074195071,
-0.7009346344759491,
-0.6613747968552279,
-0.6235359213733344,
-0.5874218554249462,
-0.5530284403489262,
-0.5203442616012126
],
[
-2.1196051567144245,
-2.144261777588548,
-2.1659152650384144,
-2.18435100188234,
-2.199369057616698,
-2.2107880281296657,
-2.2184488187186076,
-2.2222182307289975,
-2.221992204078333,
-2.217698570027343,
-2.2092991821106858,
-2.1967913180312224,
-2.1802082798602287,
-2.1596191609336746,
-2.135127791287311,
-2.1068709149482117,
-2.0750156879805104,
-2.0397566130125875,
-2.0013120425857687,
-1.959920389998504,
-1.9158361834655442,
-1.869326089224237,
-1.8206650138837868,
-1.7701323779868026,
-1.718008633314533,
-1.6645720773872161,
-1.6100960009218634,
-1.554846188344013,
-1.4990787781156931,
-1.4430384787095845,
-1.386957127438249,
-1.3310525728502025,
-1.2755278567950008,
-1.2205706692791634,
-1.1663530476251687,
-1.1130312909588842,
-1.0607460614529252,
-1.0096226448356518,
-0.9597713442482815,
-0.9112879834362214,
-0.8642544973592357,
-0.8187395904897137,
-0.7747994452548824,
-0.7324784652040826,
-0.6918100395032991,
-0.6528173172468574,
-0.6155139818149887,
-0.5799050170885179,
-0.5459874587575118,
-0.5137511252331142
],
[
-2.087163991000409,
-2.1109699551588124,
-2.131830066208044,
-2.1495387590972252,
-2.1639050037256506,
-2.174755919919129,
-2.1819403208674397,
-2.1853320567124226,
-2.184833024000743,
-2.1803757097522896,
-2.1719251519199463,
-2.159480220814201,
-2.1430741571089755,
-2.122774338625484,
-2.0986812867157623,
-2.070926960016261,
-2.0396724152703736,
-2.005104939342895,
-1.9674347721307046,
-1.9268915466440004,
-1.8837205709159874,
-1.8381790681025358,
-1.7905324779964997,
-1.7410509070720843,
-1.690005796764838,
-1.637666862331777,
-1.5842993383094501,
-1.5301615519335416,
-1.4755028332488502,
-1.4205617601456761,
-1.365564728170505,
-1.3107248285389954,
-1.256241013128895,
-1.2022975221257435,
-1.149063548199876,
-1.0966931103819346,
-1.0453251109581094,
-0.995083549528974,
-0.9460778696911121,
-0.8984034154548521,
-0.8521419763782832,
-0.8073624023715822,
-0.7641212711259604,
-0.7224635930866035,
-0.6824235407747936,
-0.6440251910417486,
-0.6072832704869195,
-0.5722038957876353,
-0.538785302061044,
-0.5070185536151564
],
[
-2.0535066887201956,
-2.0764535981320864,
-2.0965145977198723,
-2.1134931392071366,
-2.1272070155148244,
-2.1374917561639393,
-2.144203939030242,
-2.1472243009800467,
-2.1464605256731355,
-2.1418495905392954,
-2.1333595673379473,
-2.120990791512674,
-2.1047763433852436,
-2.0847818167690204,
-2.061104384851646,
-2.0338712060515576,
-2.0032372411414103,
-1.9693825751032463,
-1.9325093517193839,
-1.8928384355714902,
-1.8506059155252461,
-1.8060595571319928,
-1.7594553002195907,
-1.711053883876368,
-1.6611176655307582,
-1.609907685122473,
-1.5576810103757623,
-1.504688385553914,
-1.4511721941676865,
-1.3973647360927306,
-1.3434868114331835,
-1.2897465971578068,
-1.2363387978719111,
-1.1834440488813138,
-1.1312285477444246,
-1.079843889588366,
-1.0294270813844268,
-0.9801007109544865,
-0.9319732475470329,
-0.8851394522370344,
-0.8396808780454477,
-0.795666441443796,
-0.7531530487271495,
-0.7121862625458212,
-0.6728009956378673,
-0.6350222204704951,
-0.5988656850588111,
-0.5643386266734495,
-0.5314404764684757,
-0.5001635492565801
],
[
-2.018763686818393,
-2.0408472995245974,
-2.06010728698236,
-2.076356031295873,
-2.089420023591076,
-2.0991430464008043,
-2.105389262819748,
-2.1080461051998696,
-2.1070268533354777,
-2.102272796277117,
-2.09375488363012,
-2.081474791113749,
-2.0654653500624693,
-2.045790319443803,
-2.022543509331107,
-1.9958472939405292,
-1.9658505778940323,
-1.9327262994467393,
-1.896668567921353,
-1.8578895392424115,
-1.8166161336925886,
-1.7730866947893915,
-1.727547678779524,
-1.68025045203838,
-1.6314482599374545,
-1.5813934166084316,
-1.5303347513531613,
-1.478515334836565,
-1.42617049703981,
-1.3735261394389262,
-1.320797336060359,
-1.2681872118959239,
-1.215886082513899,
-1.1640708354197369,
-1.1129045316158583,
-1.0625362047001046,
-1.0131008345441044,
-0.964719472936357,
-0.9174994994072218,
-0.8715349866393074,
-0.8269071562927238,
-0.7836849076459164,
-0.7419254030935569,
-0.7016746961944751,
-0.6629683895818328,
-0.6258323116022764,
-0.5902832020199864,
-0.5563293984916813,
-0.5239715167813437,
-0.4932031188361945
],
[
-1.9830635923839282,
-2.004283507789904,
-2.022744103546488,
-2.0382665614310675,
-2.0506859055899356,
-2.059853979551808,
-2.065642322721721,
-2.067944848726672,
-2.06668022631406,
-2.0617938679855,
-2.053259442541968,
-2.041079844876601,
-2.0252875786031272,
-2.0059445327360548,
-1.9831411605151732,
-1.9569950943380392,
-1.927649253570644,
-1.8952695201460972,
-1.8600420693526454,
-1.8221704497487181,
-1.7818725070219976,
-1.7393772425963778,
-1.694921689936782,
-1.648747880967952,
-1.6010999629355331,
-1.552221513383827,
-1.502353088500546,
-1.4517300284700103,
-1.400580533071392,
-1.3491240117745578,
-1.297569705106139,
-1.24611556806305,
-1.1949474017529753,
-1.1442382161091273,
-1.0941478043038284,
-1.0448225082074183,
-0.9963951537414618,
-0.9489851351029719,
-0.9026986274474874,
-0.8576289085881948,
-0.8138567714878392,
-0.7714510107008551,
-0.7304689673917913,
-0.6909571190561566,
-0.652951701557846,
-0.6164793525410512,
-0.5815577666517824,
-0.5481963542994619,
-0.5163968968924804,
-0.4861541925884214
],
[
-1.9465323948173001,
-1.9668917305749958,
-1.984557758286179,
-1.9993602908773405,
-2.011142686644999,
-2.0197646293579403,
-2.025104802594534,
-2.027063369626613,
-2.0255641694076885,
-2.0205565438541075,
-2.0120167218613427,
-1.9999487010266788,
-1.984384587904425,
-1.965384380335034,
-1.9430351991613282,
-1.9174499995724064,
-1.8887658126484241,
-1.857141584038447,
-1.8227556882157288,
-1.785803203102757,
-1.7464930312359053,
-1.7050449506451355,
-1.661686672119698,
-1.6166509704944971,
-1.5701729469988237,
-1.5224874684342518,
-1.4738268177190843,
-1.4244185797038116,
-1.3744837765099223,
-1.3242352582033425,
-1.2738763474918664,
-1.2235997313431988,
-1.1735865879002398,
-1.1240059337171056,
-1.0750141740242352,
-1.0267548373078483,
-0.9793584748131146,
-0.9329427055098977,
-0.887612387465702,
-0.8434598973352566,
-0.800565500700361,
-0.7589977971916451,
-0.7188142256267674,
-0.6800616157523428,
-0.642776774536002,
-0.606987096289162,
-0.5727111871857316,
-0.5399594959614444,
-0.5087349437205646,
-0.4790335468352074
],
[
-1.9092927839692417,
-1.92879785108798,
-1.9456770212851742,
-1.95976853844537,
-1.970923868661767,
-1.9790102924562598,
-1.9839133877834323,
-1.9855393234061565,
-1.9838168821947235,
-1.978699138568282,
-1.9701647238134365,
-1.9582186270400637,
-1.9428924972345294,
-1.9242444319928587,
-1.9023582595345427,
-1.8773423409046828,
-1.849327937384849,
-1.818467202862672,
-1.7849308714855634,
-1.748905717027113,
-1.710591862141313,
-1.6702000135332327,
-1.6279486937365142,
-1.584061532480316,
-1.5387646713881173,
-1.4922843257502876,
-1.4448445370080267,
-1.3966651398929926,
-1.3479599592556064,
-1.29893524372424,
-1.2497883365919449,
-1.2007065787627555,
-1.1518664341739369,
-1.1034328247656826,
-1.055558659687349,
-1.0083845418861759,
-0.9620386343915072,
-0.9166366683581945,
-0.8722820751495359,
-0.8290662253145901,
-0.7870687581546737,
-0.7463579865984297,
-0.7069913632490884,
-0.6690159946770985,
-0.6324691922656065,
-0.5973790491412616,
-0.5637650339158903,
-0.5316385931069887,
-0.501003755184128,
-0.4718577301964979
],
[
-1.8714635707261797,
-1.8901235523847861,
-1.9062261525588728,
-1.9196178199534595,
-1.9301578802849877,
-1.9377209500035868,
-1.9421992388994789,
-1.9435046688035769,
-1.9415707361088903,
-1.9363540504543661,
-1.9278354907069433,
-1.9160209320239785,
-1.9009415135473238,
-1.8826534341004375,
-1.8612372818400698,
-1.83679692179573,
-1.8094579813547016,
-1.7793659869967309,
-1.7466842152687714,
-1.7115913268091945,
-1.674278854238226,
-1.6349486132821338,
-1.5938101021613253,
-1.5510779477339074,
-1.5069694488620515,
-1.461702258635198,
-1.4154922380312054,
-1.368551504797682,
-1.3210866931466059,
-1.2732974325135138,
-1.2253750472764244,
-1.1775014740131406,
-1.129848388589886,
-1.082576532062845,
-1.0358352219511542,
-0.9897620338006722,
-0.9444826369902188,
-0.9001107683238883,
-0.856748326997532,
-0.8144855749268894,
-0.7734014270923266,
-0.7335638174165516,
-0.69503012668418,
-0.657847660084736,
-0.622054163072643,
-0.5876783653567825,
-0.5547405439335947,
-0.5232530971430991,
-0.4932211227421601,
-0.46464299394514863
],
[
-1.833159204947495,
-1.8509858433925857,
-1.8663244383554511,
-1.8790293965178457,
-1.8889676383241993,
-1.8960208427646352,
-1.9000875804631578,
-1.901085269271929,
-1.8989518875020766,
-1.8936473844200454,
-1.8851547357355605,
-1.8734806031955538,
-1.858655571440805,
-1.84073395106246,
-1.8197931532206437,
-1.7959326571089327,
-1.7692726058974013,
-1.7399520786869491,
-1.7081270948576208,
-1.6739684127023287,
-1.6376591864160106,
-1.5993925446283879,
-1.5593691501836346,
-1.5177947953534394,
-1.4748780797315753,
-1.4308282102865564,
-1.3858529549693877,
-1.340156773319805,
-1.2939391400204698,
-1.2473930705489558,
-1.2007038521168094,
-1.1540479780328887,
-1.1075922794933042,
-1.0614932455467883,
-1.0158965195450107,
-0.9709365586762047,
-0.9267364421000283,
-0.8834078126553354,
-0.8410509370022483,
-0.7997548692996312,
-0.7595977040269498,
-0.7206469042680197,
-0.6829596926231385,
-0.6465834928578783,
-0.6115564113910765,
-0.5779077487395621,
-0.5456585320488319,
-0.5148220608268723,
-0.4854044589487969,
-0.4574052269019968
],
[
-1.7944893845578407,
-1.8114966794912213,
-1.826085824907354,
-1.838118922650568,
-1.8474702108061047,
-1.8540281491248953,
-1.8576973932833436,
-1.858400598565461,
-1.856079994785349,
-1.8506986786019115,
-1.842241576810021,
-1.830716044436964,
-1.8161520739746209,
-1.7986021060533428,
-1.7781404463862982,
-1.7548623079117243,
-1.7288825098266614,
-1.7003338758876534,
-1.669365382422375,
-1.6361401116795735,
-1.6008330684227436,
-1.5636289172464402,
-1.5247196953303266,
-1.484302550717485,
-1.4425775502283635,
-1.3997455943093549,
-1.356006468931098,
-1.3115570574887876,
-1.2665897288269636,
-1.2212909112405037,
-1.175839856739523,
-1.130407595089422,
-1.0851560731707375,
-1.0402374720293266,
-0.9957936915546258,
-0.951955990962796,
-0.9088447720914853,
-0.8665694918466617,
-0.8252286898966144,
-0.7849101178025314,
-0.7456909561374304,
-0.7076381067110743,
-0.670808547733217,
-0.6352497405645323,
-0.6010000775860652,
-0.5680893616323354,
-0.5365393083566228,
-0.5063640638084197,
-0.47757073038871023,
-0.4501598951959429
],
[
-1.7555587488903086,
-1.771762669884633,
-1.7856186410448687,
-1.796996184820482,
-1.8057765716344507,
-1.811854755430936,
-1.815141199502652,
-1.8155635390018174,
-1.8130680279782112,
-1.8076207229247658,
-1.79920836161471,
-1.787838905223134,
-1.7735417228544441,
-1.7563674099773778,
-1.7363872451142521,
-1.7136923016186096,
-1.6883922427329603,
-1.6606138377002901,
-1.6304992440463173,
-1.598204106001272,
-1.5638955213502093,
-1.5277499289346255,
-1.4899509668706827,
-1.45068734768801,
-1.4101507914677835,
-1.3685340521081586,
-1.3260290654789861,
-1.2828252418005084,
-1.239107918378932,
-1.1950569830719904,
-1.150845673686681,
-1.1066395540161365,
-1.0625956634390432,
-1.0188618339277833,
-0.9755761659061396,
-0.9328666526083417,
-0.890850941351235,
-0.8496362193658868,
-0.809319211471142,
-0.769986276836968,
-0.731713592315133,
-0.6945674102496081,
-0.6586043792682325,
-0.6238719172567833,
-0.5904086264902514,
-0.5582447417136495,
-0.5274026028017647,
-0.49789714446371347,
-0.46973639627890895,
-0.4429219871429988
],
[
-1.7164666489924232,
-1.7318848637306044,
-1.7450254009473,
-1.7557649211255446,
-1.7639914369571892,
-1.7696061082963352,
-1.772524929579372,
-1.7726802613980603,
-1.7700221594879566,
-1.7645194583125876,
-1.7561605726388259,
-1.7449539887706922,
-1.7309284270163219,
-1.714132667933626,
-1.6946350462662203,
-1.6725226275456528,
-1.647900092441056,
-1.6208883625289667,
-1.5916230078290468,
-1.5602524809730143,
-1.5269362251913075,
-1.4918427035171988,
-1.4551473949555875,
-1.417030800163213,
-1.3776764948070217,
-1.3372692635869103,
-1.295993342285564,
-1.2540307894595437,
-1.211560003774451,
-1.1687543977155457,
-1.1257812336194015,
-1.082800623760829,
-1.0399646926383115,
-0.9974168966362769,
-0.9552914938828602,
-0.9137131553237615,
-0.8727967067425887,
-0.8326469906122828,
-0.7933588361968074,
-0.7550171261744123,
-0.7176969481640683,
-0.6814638198520693,
-0.6463739768885706,
-0.6124747133133819,
-0.5798047649422181,
-0.5483947268689446,
-0.5182674969933758,
-0.48943873824683837,
-0.4619173529443519,
-0.43570596342905343
],
[
-1.6773069874799855,
-1.691958606987305,
-1.7044026784162254,
-1.7145227129518097,
-1.7222131736793382,
-1.7273811389528204,
-1.729947861006338,
-1.7298501762815506,
-1.7270417255982824,
-1.7214939459833327,
-1.7131968016387416,
-1.702159228957972,
-1.6884092793200478,
-1.6719939531182428,
-1.6529787285424833,
-1.6314467984429326,
-1.6074980375946106,
-1.5812477303845232,
-1.5528250949984526,
-1.5223716443834527,
-1.4900394265409798,
-1.455989187136596,
-1.42038849617826,
-1.383409877879754,
-1.3452289790977496,
-1.3060228072342626,
-1.2659680635442268,
-1.2252395926615947,
-1.1840089640965754,
-1.1424431966494262,
-1.1007036322728745,
-1.0589449619869327,
-1.017314403057684,
-0.9759510238112971,
-0.9349852101555772,
-0.8945382660922182,
-0.8547221391803796,
-0.8156392610032657,
-0.7773824921394797,
-0.740035160894427,
-0.7036711850514875,
-0.6683552661097528,
-0.6341431458411444,
-0.6010819154871563,
-0.5692103684909176,
-0.5385593882968471,
-0.5091523634233246,
-0.4810056227055881,
-0.45412888429895193,
-0.428525712714789
],
[
-1.638168120596077,
-1.6520734621149136,
-1.6638410443440814,
-1.6733609398874412,
-1.680533771050515,
-1.6852722503033908,
-1.687502619218805,
-1.687165946687741,
-1.6842192489014274,
-1.6786363970418177,
-1.6704087837802486,
-1.6595457263508908,
-1.6460745918225905,
-1.6300406388202555,
-1.6115065788618543,
-1.590551869175651,
-1.567271756867692,
-1.5417761012117128,
-1.5141880063239228,
-1.4846423003714038,
-1.4532838996785007,
-1.4202660966869316,
-1.38574880983672,
-1.349896831280527,
-1.3128781051830034,
-1.274862065465817,
-1.23601805750966,
-1.1965138637667405,
-1.1565143486860558,
-1.116180233984355,
-1.0756670112401,
-1.0351239951376374,
-0.994693517498876,
-0.9545102595329544,
-0.9147007175091219,
-0.8753827952931222,
-0.8366655158486278,
-0.798648842849595,
-0.7614236029306539,
-0.7250714987717048,
-0.6896652031247431,
-0.6552685240006838,
-0.621936631502934,
-0.5897163371873326,
-0.5586464173139224,
-0.5287579719088475,
-0.5000748121514536,
-0.47261386922399473,
-0.44638561839285473,
-0.42139451271836537
],
[
-1.5991328153527375,
-1.612313183089308,
-1.6234250594648705,
-1.6323647896640092,
-1.639038866842527,
-1.643365357993792,
-1.645275231863759,
-1.6447135536257833,
-1.6416405127108598,
-1.6360322534081468,
-1.627881482539123,
-1.6171978344920659,
-1.604007980903913,
-1.5883554799341622,
-1.5703003679785545,
-1.5499185043897985,
-1.5273006869017467,
-1.5025515616391665,
-1.4757883565685057,
-1.4471394708326206,
-1.4167429545458388,
-1.3847449143334176,
-1.3512978792922454,
-1.3165591603037534,
-1.2806892329602193,
-1.2438501710084247,
-1.2062041534051637,
-1.1679120640367808,
-1.1291321990738235,
-1.0900190929717963,
-1.0507224704146951,
-1.0113863281186712,
-0.9721481474257592,
-0.9331382360507353,
-0.8944791952029518,
-0.8562855065772687,
-0.8186632323677182,
-0.7817098204702085,
-0.7455140063670066,
-0.7101558027847366,
-0.6757065680485578,
-0.6422291440790534,
-0.6097780551596258,
-0.5783997589083512,
-0.5481329412910072,
-0.519008847986036,
-0.4910516449366158,
-0.4642788014805268,
-0.43870149002060566,
-0.4143249967732441
],
[
-1.560278254959737,
-1.5727557385973274,
-1.5832333149692288,
-1.5916133154697798,
-1.5978078202738522,
-1.601739977518975,
-1.6033452283526004,
-1.6025724060800823,
-1.5993846793056625,
-1.593760311948167,
-1.5856932172709548,
-1.5751932884350255,
-1.5622864943239225,
-1.5470147361903868,
-1.5294354676858062,
-1.509621087688858,
-1.4876581217012186,
-1.463646213122694,
-1.437696950219809,
-1.4099325579060398,
-1.3804844854907954,
-1.3494919223412734,
-1.317100273023209,
-1.28345962208478,
-1.2487232164030293,
-1.2130459901234776,
-1.1765831538950915,
-1.1394888665267566,
-1.1019150035407947,
-1.064010033520266,
-1.0259180097548697,
-0.9877776815726156,
-0.9497217269571983,
-0.9118761056278423,
-0.8743595297092525,
-0.837283047439654,
-0.8007497340353574,
-0.7648544828245624,
-0.7296838890481654,
-0.6953162182670757,
-0.6618214510771756,
-0.6292613957818227,
-0.5976898607744637,
-0.567152878611285,
-0.5376889740799808,
-0.5093294689713603,
-0.482098816716392,
-0.4560149605434327,
-0.43108970932481805,
-0.407329125805
],
[
-1.5216760861439385,
-1.5334733767568778,
-1.5433385141098288,
-1.5511795335868825,
-1.5569138245012848,
-1.5604693500933566,
-1.561785777370004,
-1.560815488196156,
-1.5575244446576575,
-1.5518928844828004,
-1.5439158261727355,
-1.5336033683098653,
-1.5209807730773466,
-1.506088330068244,
-1.488981002687154,
-1.4697278655394195,
-1.4484113468648585,
-1.42512629504317,
-1.3999788922710001,
-1.3730854415483038,
-1.344571055047154,
-1.3145682727743695,
-1.283215640244468,
-1.2506562727679091,
-1.2170364320796925,
-1.1825041385552535,
-1.1472078393590484,
-1.1112951497146966,
-1.0749116812283106,
-1.0381999679698992,
-1.0012984979295836,
-0.9643408545976953,
-0.927454970826902,
-0.8907624948562342,
-0.8543782664260483,
-0.8184098992897505,
-0.7829574651206838,
-0.7481132728001201,
-0.7139617363282129,
-0.6805793240956013,
-0.6480345819574139,
-0.6163882224347272,
-0.5856932724015627,
-0.555995271772019,
-0.5273325159580045,
-0.4997363352007673,
-0.4732314042709047,
-0.4478360764637086,
-0.4235627362759036,
-0.40041816562287424
],
[
-1.483392502406166,
-1.494532725211865,
-1.5038075884881648,
-1.511130554922316,
-1.5164240521629113,
-1.5196206007148343,
-1.5206638557430614,
-1.5195095370526834,
-1.5161262230603214,
-1.5104959871281691,
-1.5026148581338272,
-1.4924930914742929,
-1.4801552416672472,
-1.4656400330894774,
-1.4490000309228894,
-1.4303011197967033,
-1.4096218026643976,
-1.3870523369102605,
-1.3626937283643923,
-1.3366566066925056,
-1.3090600074552217,
-1.2800300869970624,
-1.2496987962769839,
-1.2182025388830606,
-1.1856808369077263,
-1.152275026239614,
-1.1181270003048809,
-1.0833780185103699,
-1.0481675927408984,
-1.0126324623608438,
-0.9769056653657656,
-0.9411157106995429,
-0.9053858543522225,
-0.8698334797200354,
-0.8345695808598365,
-0.7996983457110055,
-0.7653168350811822,
-0.7315147521833686,
-0.6983742967496727,
-0.6659700972075915,
-0.6343692140613533,
-0.6036312074484286,
-0.573808261813052,
-0.5449453607320673,
-0.5170805051200442,
-0.49024496831117914,
-0.4644635818468277,
-0.43975504617320316,
-0.4161322608604008,
-0.39360266937898913
],
[
-1.4454883577296265,
-1.455994920971923,
-1.4647018432821504,
-1.4715277446131658,
-1.4763998281027297,
-1.4792549225287421,
-1.480040442774048,
-1.478715245137316,
-1.47525035580435,
-1.4696295531484818,
-1.4618497877023544,
-1.4519214275259225,
-1.4398683211278505,
-1.425727674883435,
-1.4095497468102929,
-1.3913973633854608,
-1.371345270594298,
-1.349479334398872,
-1.325895609144503,
-1.300699294977759,
-1.2740036070688319,
-1.2459285803057307,
-1.2165998331945325,
-1.1861473140328092,
-1.1547040511250792,
-1.122404927000789,
-1.0893854944051617,
-1.0557808493896044,
-1.021724574251135,
-0.9873477604660089,
-0.9527781192218369,
-0.9181391847467039,
-0.8835496134167738,
-0.8491225796324489,
-0.814965267707972,
-0.7811784575290697,
-0.7478562004946502,
-0.7150855812625324,
-0.682946560047962,
-0.6515118896587877,
-0.6208471010701548,
-0.5910105511217146,
-0.5620535258396417,
-0.5340203929226797,
-0.5069487970657043,
-0.4808698920077765,
-0.45580860346722285,
-0.4317839174493707,
-0.4088091887692562,
-0.38689246501091246
],
[
-1.4080193057273707,
-1.4179157648841847,
-1.4260771262300602,
-1.4324269044765219,
-1.4368968240260471,
-1.4394277822390882,
-1.439970734797957,
-1.4384874823133964,
-1.434951338721343,
-1.4293476641822824,
-1.4216742480699174,
-1.411941531122309,
-1.4001726597877613,
-1.3864033700612677,
-1.3706817024845126,
-1.3530675542777812,
-1.333632078597083,
-1.3124569444962528,
-1.2896334741855318,
-1.2652616765167015,
-1.2394491972359316,
-1.2123102074152912,
-1.1839642516296582,
-1.1545350769463016,
-1.124149462724961,
-1.0929360696880168,
-1.0610243248240763,
-1.0285433565441706,
-0.9956209922240583,
-0.9623828279338934,
-0.9289513778592233,
-0.8954453087225154,
-0.8619787624723176,
-0.8286607686546862,
-0.7955947462408465,
-0.7628780932671406,
-0.7306018614492527,
-0.6988505119560237,
-0.6677017477570076,
-0.6372264173759219,
-0.6074884844718507,
-0.5785450574113874,
-0.5504464728689913,
-0.5232364274803367,
-0.4969521516563693,
-0.47162461982730175,
-0.4472787916104257,
-0.4239338786692666,
-0.40160363234183305,
-0.38029664745121927
],
[
-1.371035959684518,
-1.3803458961282264,
-1.3879840157215926,
-1.3938784736363028,
-1.3979652704177452,
-1.400189141914155,
-1.4005043753387285,
-1.3988755326854156,
-1.3952780640415963,
-1.389698795328106,
-1.3821362775999413,
-1.3726009881719186,
-1.3611153773730242,
-1.3477137585337253,
-1.3324420427097476,
-1.315357323475048,
-1.2965273207135326,
-1.276029695558468,
-1.2539512513514512,
-1.2303870376316088,
-1.2054393756703643,
-1.1792168249214523,
-1.151833109979166,
-1.1234060272769428,
-1.0940563498830644,
-1.0639067474465822,
-1.033080736707399,
-1.0017016761073405,
-0.9698918160151061,
-0.9377714139930645,
-0.9054579224617002,
-0.8730652541190942,
-0.8407031285972684,
-0.8084765021190171,
-0.7764850803818834,
-0.744822913552765,
-0.7135780711113194,
-0.6828323933295444,
-0.6526613154104247,
-0.6231337597174108,
-0.5943120910943959,
-0.5662521299860784,
-0.5390032179043742,
-0.5126083297312267,
-0.4871042273856001,
-0.46252164949711183,
-0.4388855319068121,
-0.41621525404373183,
-0.39452490649242855,
-0.37382357536109634
],
[
-1.3345840694047626,
-1.3433309826075757,
-1.3504680238536464,
-1.355927743186382,
-1.3596501815992446,
-1.361583693089878,
-1.3616856968021123,
-1.3599233423404722,
-1.3562740725838118,
-1.3507260701467472,
-1.3432785759935915,
-1.3339420715228467,
-1.3227383186057389,
-1.3097002554537265,
-1.2948717496657007,
-1.2783072132223559,
-1.2600710874117205,
-1.2402372085609605,
-1.2188880679116436,
-1.1961139809300412,
-1.172012182745853,
-1.146685867243369,
-1.1202431876026575,
-1.0927962358407883,
-1.0644600181930346,
-1.0353514420718888,
-1.0055883289290493,
-0.9752884657039151,
-0.9445687057536012,
-0.9135441282989553,
-0.8823272635548143,
-0.8510273888978772,
-0.8197498997062898,
-0.7885957569163118,
-0.7576610119061272,
-0.7270364080494544,
-0.6968070571882461,
-0.6670521883540153,
-0.637844965315028,
-0.6092523689334333,
-0.5813351398691419,
-0.5541477768530876,
-0.5277385855567049,
-0.5021497729923117,
-0.4774175823765079,
-0.45357246346153346,
-0.43063927347533415,
-0.40863750399722276,
-0.38758152932227663,
-0.36748087212328406
],
[
-1.2987047112036922,
-1.3069119235670983,
-1.3135698107834144,
-1.318615081239873,
-1.321991590302155,
-1.3236510995847603,
-1.3235539701597288,
-1.3216697744623305,
-1.3179778128145982,
-1.3124675221559792,
-1.3051387667028091,
-1.2960020027872245,
-1.2850783129590666,
-1.2723993074627717,
-1.2580068943027687,
-1.241952922161631,
-1.2242987033141484,
-1.2051144262779496,
-1.1844784701675315,
-1.1624766345038737,
-1.1392012995343523,
-1.1147505329191008,
-1.0892271589493014,
-1.0627378063079027,
-1.0353919498125042,
-1.0073009606523626,
-0.9785771784159341,
-0.9493330167727988,
-0.9196801130954901,
-0.8897285306489683,
-0.8595860202982138,
-0.8293573470386068,
-0.799143685082186,
-0.7690420837669046,
-0.7391450052199022,
-0.7095399335143705,
-0.6803090540201115,
-0.6515290007626766,
-0.6232706688717075,
-0.5955990886085116,
-0.5685733570072083,
-0.54224662283111,
-0.5166661203245357,
-0.4918732471170062,
-0.46790368159925366,
-0.44478753512648006,
-0.4225495345015966,
-0.4012092303395016,
-0.3807812271019657,
-0.3612754308126629
],
[
-1.2634344878000325,
-1.2711250611914897,
-1.2773254071517008,
-1.281976165166089,
-1.2850247885967752,
-1.2864262459063038,
-1.2861436595480396,
-1.2841488687853144,
-1.280422903785634,
-1.2749563598621807,
-1.2677496626653249,
-1.2588132174004287,
-1.2481674376857472,
-1.2358426523704051,
-1.221878891402569,
-1.2063255545641818,
-1.1892409694667894,
-1.1706918475385935,
-1.1507526487456219,
-1.1295048674202883,
-1.1070362527783433,
-1.0834399784738435,
-1.0588137758746843,
-1.0332590456618522,
-1.0068799619015496,
-0.9797825819619103,
-0.9520739746022705,
-0.9238613773149162,
-0.8952513926084621,
-0.8663492314473162,
-0.8372580105562141,
-0.8080781088098413,
-0.778906586492838,
-0.7498366698669895,
-0.7209573022416416,
-0.6923527616268514,
-0.6641023440647077,
-0.6362801108865609,
-0.6089546974309807,
-0.5821891801748266,
-0.5560409987704603,
-0.5305619291365611,
-0.5057981035081649,
-0.48179007320249023,
-0.45857290978958254,
-0.4361763403600616,
-0.41462491264569157,
-0.39393818586193663,
-0.37413094329598784,
-0.3552134228502577
],
[
-1.2288057352371518,
-1.2360023983350583,
-1.241766441755102,
-1.2460422182303779,
-1.2487805724327656,
-1.2499394885511925,
-1.2494846791299374,
-1.247390102779257,
-1.2436383993793627,
-1.238221232793713,
-1.231139532854486,
-1.2224036304287063,
-1.2120332816474795,
-1.2000575798013038,
-1.1865147558803253,
-1.1714518711770734,
-1.1549244076797054,
-1.1369957640846902,
-1.117736667078795,
-1.0972245090276287,
-1.0755426243271278,
-1.0527795174062258,
-1.029028055717513,
-1.004384641032701,
-0.9789483720050082,
-0.952820210311064,
-0.9261021617915131,
-0.8988964829236114,
-0.8713049217355523,
-0.8434280009621431,
-0.815364349892477,
-0.7872100900148716,
-0.7590582782579344,
-0.7309984103878594,
-0.7031159859735766,
-0.6754921352878113,
-0.6482033075839247,
-0.6213210193799931,
-0.5949116606935881,
-0.5690363565999647,
-0.5437508810281135,
-0.5191056193553614,
-0.4951455761039616,
-0.4719104238727012,
-0.4494345895438119,
-0.4277473737800308,
-0.4068730998600447,
-0.38683128798256905,
-0.3676368512924393,
-0.3493003100379184
],
[
-1.194846734320047,
-1.2015718198957455,
-1.2069203720160444,
-1.2108402482279357,
-1.2132854874287136,
-1.2142169078828833,
-1.2136026499483903,
-1.2114186523374162,
-1.2076490516730753,
-1.202286496377838,
-1.1953323675104586,
-1.1867969010093447,
-1.1766992078396639,
-1.1650671907081822,
-1.1519373582246581,
-1.1373545395717253,
-1.1213715048176631,
-1.1040484978970388,
-1.0854526909319988,
-1.0656575699241515,
-1.0447422628815128,
-1.0227908221400006,
-0.9998914729942784,
-0.9761358407812133,
-0.951618168286293,
-0.9264345348045534,
-0.9006820874238942,
-0.8744582941560233,
-0.847860227464917,
-0.8209838855805608,
-0.7939235577785597,
-0.7667712385926697,
-0.7396160947392635,
-0.712543987398053,
-0.6856370514316862,
-0.6589733321550397,
-0.6326264793919762,
-0.6066654977896246,
-0.5811545516992567,
-0.5561528223774744,
-0.5317144148076751,
-0.5078883110841577,
-0.4847183670328017,
-0.4622433485549309,
-0.4404970040668461,
-0.4195081693576903,
-0.3993009011948738,
-0.3798946360604569,
-0.3613043704966761,
-0.34354085966625614
]
],
"zauto": true,
"zmax": 2.5330084806465845,
"zmin": -2.5330084806465845
},
{
"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.3063136237521388,
0.2951675351646879,
0.2843163190751589,
0.27380378926731647,
0.263679360159607,
0.2539995516979011,
0.2448291386599153,
0.236241663861131,
0.22831904943084788,
0.22115010347956254,
0.21482783357535457,
0.2094456367376668,
0.20509262019036914,
0.20184848776490885,
0.19977856302215422,
0.19892956821338986,
0.19932670629307297,
0.2009723998888637,
0.20384676643936747,
0.2079096255982348,
0.2131036207586155,
0.21935793964306866,
0.22659214219117518,
0.23471971259579652,
0.24365109678002647,
0.25329612449023436,
0.2635658217382482,
0.2743736869030627,
0.28563653601611017,
0.2972750283530057,
0.30921397210299817,
0.3213824899671503,
0.3337141023123057,
0.34614676504756436,
0.3586228828546203,
0.37108930650581023,
0.3834973154930443,
0.3958025832894272,
0.4079651213031884,
0.41994919802299935,
0.43172323121197526,
0.4432596527016992,
0.4545347469805871,
0.4655284661407898,
0.47622422474608256,
0.48660867879646114,
0.4966714932300091,
0.5064051023821315,
0.5158044675867011,
0.5248668357211574
],
[
0.3026846433073804,
0.29139798474785933,
0.2803997908643828,
0.2697322745631529,
0.2594432169366703,
0.24958760203262148,
0.24022892252448597,
0.23143987185494747,
0.22330215226502323,
0.21590518905219747,
0.20934364960842958,
0.2037138128744245,
0.19910900410200796,
0.19561447725423814,
0.19330226298448894,
0.19222657042027028,
0.19242030562087667,
0.19389313404215178,
0.1966312841207161,
0.20059901460672191,
0.20574142094213935,
0.2119880991385311,
0.21925714780221878,
0.22745905658170237,
0.23650016052298733,
0.24628548722484145,
0.25672095168435527,
0.26771494458775613,
0.27917941102618254,
0.29103053483380925,
0.30318913910297085,
0.3155808958889479,
0.3281364156192122,
0.3407912646550989,
0.35348594084524526,
0.36616582295652367,
0.37878110054455433,
0.391286685425983,
0.40364210346378554,
0.4158113648990337,
0.4277628121285687,
0.4394689450105573,
0.4509062250538326,
0.46205486095827514,
0.4728985787986244,
0.4834243806487618,
0.49362229564849014,
0.5034851274699467,
0.5130082019066909,
0.5221891179450073
],
[
0.2998137974683071,
0.28841270563700605,
0.2772935451367452,
0.2664969880123336,
0.2560692185748691,
0.24606366644224173,
0.23654243184936155,
0.22757711916245496,
0.21924881017337816,
0.21164697002650532,
0.20486718237090115,
0.19900774483408235,
0.1941653039613367,
0.19042985188459055,
0.1878795279279864,
0.18657574961127407,
0.18655921791586302,
0.18784727803492632,
0.1904329563220708,
0.19428575280079152,
0.1993539992571905,
0.20556836919982235,
0.2128460081501898,
0.2210947597003638,
0.23021706879692422,
0.24011329830228761,
0.25068434856214666,
0.2618335903197165,
0.27346819714274295,
0.285499997874155,
0.29784597322035433,
0.31042850563565105,
0.3231754684224562,
0.33602021560904416,
0.3489015128310188,
0.36176343291147955,
0.37455522832546445,
0.38723118559334485,
0.39975046286466387,
0.41207691048547856,
0.4241788742888177,
0.43602898202011847,
0.44760391423139223,
0.45888416185562825,
0.4698537733519374,
0.4805000947344992,
0.49081350596726064,
0.5007871571579812,
0.5104167077697463,
0.5197000717379751
],
[
0.2977172915318755,
0.28622831951539,
0.2750147712701456,
0.26411592882022555,
0.25357652517613855,
0.2434485412544566,
0.233792708520719,
0.22467943707581944,
0.21618890895649617,
0.20841014094622912,
0.2014389229403852,
0.1953746604960806,
0.19031627395723794,
0.18635741683171125,
0.1835813686413794,
0.1820560346776145,
0.18182954259470266,
0.18292693931749496,
0.18534842149852965,
0.18906935177673373,
0.19404204148749454,
0.20019899229271934,
0.207457077910538,
0.21572207414240607,
0.22489301142423765,
0.23486598006239265,
0.2455371992527347,
0.2568053162976825,
0.26857300781405935,
0.280748008566952,
0.2932437070590799,
0.3059794350607608,
0.3188805540684009,
0.33187841458710193,
0.34491023962571093,
0.3579189643285461,
0.3708530497233327,
0.38366627952464294,
0.39631754372638206,
0.4087706102142101,
0.4209938848420799,
0.4329601605829842,
0.4446463569473946,
0.45603325152472024,
0.4671052060548624,
0.47784988979516646,
0.48825800309702955,
0.49832300406826163,
0.5080408410121038,
0.5174096930462823
],
[
0.29640276408041355,
0.28485241601164785,
0.27357114037467967,
0.26259706323679954,
0.2519737129308577,
0.24175184560109073,
0.23199098013365665,
0.2227603684606488,
0.21413915391882968,
0.20621554083341523,
0.19908490116681174,
0.19284685702854068,
0.18760147735652372,
0.18344480011639308,
0.18046394497162102,
0.17873213890208284,
0.17830405659786291,
0.17921196219486885,
0.18146316894494458,
0.1850392367717257,
0.18989708001507882,
0.19597181977832898,
0.20318090811994688,
0.2114288840924584,
0.22061213168254493,
0.2306231566634476,
0.2413541044042368,
0.2526994322848489,
0.2645577885240223,
0.276833225455722,
0.2894359005431149,
0.30228241041930687,
0.3152958784183442,
0.3284058862572026,
0.34154831275826747,
0.35466511999134365,
0.367704110737596,
0.3806186701675412,
0.3933674979503872,
0.405914333447271,
0.4182276751067834,
0.4302804948353689,
0.44204994836062456,
0.4535170830554256,
0.4646665451207324,
0.4754862883252619,
0.48596728663519917,
0.4961032530449585,
0.5058903667699965,
0.5153270107219804
],
[
0.2958693410686438,
0.2842836525180493,
0.2729609484607418,
0.26193850189651335,
0.25125896701211126,
0.24097219881945434,
0.2311367752897452,
0.2218209559151046,
0.2131028455836606,
0.2050696111938969,
0.19781570471629445,
0.1914401528750036,
0.18604305155676254,
0.18172143896033802,
0.17856473083562346,
0.17664992621583736,
0.17603687482937772,
0.17676403672599741,
0.1788452906442878,
0.18226834932470565,
0.1869951435315408,
0.19296417543440514,
0.20009445171246276,
0.20829034135046992,
0.2174466433542157,
0.22745327315738087,
0.23819919619525065,
0.2495754613703862,
0.26147735830742774,
0.27380582278861837,
0.2864682538508836,
0.299378903624976,
0.3124589766646319,
0.32563654368292333,
0.33884634395678204,
0.35202952529275555,
0.36513335151667986,
0.3781108944879228,
0.3909207194839427,
0.4035265681514258,
0.41589704091359153,
0.4280052798432321,
0.4398286529000301,
0.45134844065441454,
0.46254952691830475,
0.47342009493823844,
0.4839513309230255,
0.4941371366689208,
0.5039738529289471,
0.5134599949782664
],
[
0.29610804160301146,
0.28451223830386624,
0.2731736801510087,
0.2621291390080619,
0.25142078446517746,
0.2410979648277529,
0.23121867352800224,
0.22185044397025785,
0.21307045995033463,
0.20496475658488583,
0.19762649853452216,
0.19115342543743336,
0.1856446151024313,
0.1811967177462164,
0.17789978000406445,
0.17583276261128866,
0.17505892451855123,
0.17562141680981325,
0.17753963348523005,
0.18080696561268245,
0.18539048139083586,
0.19123270371355316,
0.1982552115498788,
0.20636343841850663,
0.21545190448450252,
0.22540920277494955,
0.23612227880942271,
0.24747978990130115,
0.2593745306499775,
0.27170503603103524,
0.2843765283959389,
0.2973013802364348,
0.31039924272121244,
0.32359695758801377,
0.33682833735451684,
0.3500338711202019,
0.36316039212190754,
0.3761607284076435,
0.38899334838439864,
0.40162200724274244,
0.41401539714444957,
0.42614680260367255,
0.4379937619860893,
0.4495377360153631,
0.46076378431618287,
0.4716602511730545,
0.48221846176707567,
0.4924324301458498,
0.5022985800909818,
0.5118154798933039
],
[
0.29710249292332697,
0.285520749615672,
0.27419092768991593,
0.26314967568361997,
0.25243909742712023,
0.24210846401413932,
0.2322155852717712,
0.222827593730062,
0.21402094763540236,
0.20588055687932064,
0.19849805408519558,
0.1919693354394368,
0.18639154394214455,
0.1818596436792152,
0.1784626603488665,
0.17627960717925192,
0.17537515739323636,
0.17579530155328707,
0.17756348182697193,
0.18067787731562904,
0.18511047282975607,
0.19080823518501755,
0.19769625930402074,
0.2056823308522511,
0.21466214156055188,
0.2245244240627925,
0.2351554717017539,
0.24644276273349014,
0.2582776290784182,
0.2705570565912025,
0.28318477576218043,
0.29607181788799364,
0.30913669506181246,
0.32230533143988854,
0.33551084011815124,
0.3486932108367988,
0.36179895093673214,
0.3747807055909316,
0.3875968723509184,
0.4002112181895253,
0.4125925032540539,
0.4247141134585215,
0.4365537030886479,
0.4480928482515504,
0.4593167119440205,
0.4702137215464252,
0.48077525957432693,
0.49099536849653264,
0.5008704703497332,
0.510399101755947
],
[
0.2988298816244777,
0.2872851883731158,
0.2759875617109119,
0.2649739062194298,
0.25428667680400097,
0.2439754938951103,
0.23409838542989794,
0.22472241955285027,
0.21592355461255291,
0.2077856393479296,
0.20039862100895403,
0.19385612230443397,
0.18825258794117228,
0.1836801577966752,
0.18022531944575032,
0.17796529898597616,
0.17696415721369627,
0.17726872080605202,
0.17890475156318825,
0.18187399643824007,
0.1861527981188199,
0.19169270430076288,
0.19842307557565453,
0.20625524887461053,
0.2150875436862647,
0.22481036881947097,
0.23531084737531846,
0.24647661964504583,
0.2581987120345571,
0.2703735232880733,
0.28290406786037287,
0.2957006451877252,
0.30868109496088714,
0.3217707716997534,
0.33490234019865467,
0.3480154641116143,
0.3610564361981474,
0.3739777811266872,
0.38673784953794665,
0.399300414143952,
0.41163427379589834,
0.42371286868685315,
0.43551390839246035,
0.4470190137485586,
0.45821337326031525,
0.46908541461419384,
0.47962649179973416,
0.48983058828433085,
0.499694036599289,
0.5092152545884342
],
[
0.3012620491624756,
0.28977617743531975,
0.27853302991904777,
0.26757012479411446,
0.2569306531874911,
0.24666497258939876,
0.23683169004062163,
0.22749811112632798,
0.21873990180230782,
0.2106399242180081,
0.20328633814880936,
0.19677016418855253,
0.19118253985510988,
0.18661184305088474,
0.18314073068323022,
0.18084301535509145,
0.17978027561438772,
0.1799982285342128,
0.18152315980099343,
0.18435897552291264,
0.1884855420060951,
0.19385881622943932,
0.20041288789447378,
0.2080636206708612,
0.21671327489254288,
0.22625540703047076,
0.23657944935990013,
0.2475745851230471,
0.2591327555056654,
0.271150805730616,
0.2835318800788633,
0.29618621822158653,
0.3090315070398829,
0.3219929219568869,
0.33500296357583226,
0.3480011674302003,
0.36093374090136093,
0.3737531630597298,
0.38641777005450206,
0.3988913397925587,
0.4111426839453439,
0.42314525184350726,
0.4348767487986746,
0.44631877027156996,
0.4574564527054432,
0.46827814152107944,
0.47877507658097773,
0.48894109529792334,
0.49877235345039783,
0.5082670636604556
],
[
0.30436663485471005,
0.2929601829729016,
0.2817926603195196,
0.2709025137216542,
0.2603339985001561,
0.25013852799632313,
0.24037557427597542,
0.23111290956524552,
0.2224260562829232,
0.21439693390241668,
0.20711182542088724,
0.2006588918417087,
0.19512549537374163,
0.19059552773531707,
0.18714679891714597,
0.18484839332835792,
0.1837578396859015,
0.18391803723158312,
0.1853541210361692,
0.18807072239733708,
0.19205022833791321,
0.19725255782658654,
0.20361666679586993,
0.2110636017423937,
0.2195006075629542,
0.2288256623919466,
0.23893186399894858,
0.24971126046394113,
0.2610579170620613,
0.2728701797532175,
0.28505220701919487,
0.29751489700743594,
0.3101763504064016,
0.32296199801826614,
0.3358044992559794,
0.3486434927024968,
0.3614252572285871,
0.3741023238962124,
0.38663306521381624,
0.39898127867337,
0.4111157750208047,
0.42300997753251746,
0.43464153596903393,
0.44599195730192115,
0.4570462543712606,
0.46779261306912895,
0.47822207829651636,
0.4883282587114261,
0.4981070501219115,
0.5075563772527367
],
[
0.30810817837734117,
0.2968006679255528,
0.2857288645651801,
0.2749323995717604,
0.26445684376523004,
0.2543548942780598,
0.2446870750163059,
0.2355217555254884,
0.2269343773798693,
0.21900590196524936,
0.2118206302639853,
0.20546365097553207,
0.20001820393250105,
0.19556317769311485,
0.19217081119301785,
0.18990450464792633,
0.1888165559836214,
0.18894569653091683,
0.19031450283482285,
0.19292702036723436,
0.19676710964207592,
0.20179800603348144,
0.20796336155941766,
0.21518970592784814,
0.22338996559886307,
0.23246751779418606,
0.24232025617185066,
0.25284426295684587,
0.2639368486962266,
0.2754988764855969,
0.28743640093106976,
0.2996617169251615,
0.3120939380867971,
0.3246592230005182,
0.3372907516631051,
0.3499285337999483,
0.3625191103294438,
0.37501519182712906,
0.3873752641763029,
0.39956318151450826,
0.41154775949442884,
0.4233023770704816,
0.4348045918561953,
0.44603577205498457,
0.456980746663677,
0.46762747481662,
0.4779667346012896,
0.48799183132271234,
0.49769832495624355,
0.5070837763663826
],
[
0.3124491129235843,
0.3012591053049987,
0.2903021682550174,
0.27961930205455543,
0.26925755510295013,
0.2592710327706395,
0.24972138606657168,
0.24067760172315816,
0.23221500445336063,
0.2244135092926448,
0.2173552987455277,
0.21112220380132493,
0.205793096947148,
0.20144153587511826,
0.19813374443044612,
0.19592684274562372,
0.19486712717844634,
0.19498822203632615,
0.19630908754363618,
0.19883210200263088,
0.20254162129781766,
0.20740345239511218,
0.21336553218298582,
0.2203598418586635,
0.22830532186448743,
0.2371113797149098,
0.24668154155803923,
0.256916867374773,
0.2677188773961549,
0.2789918719432496,
0.2906446352205386,
0.30259158346837783,
0.31475345198273696,
0.3270576233512268,
0.3394381912891466,
0.3518358391205464,
0.36419759484317854,
0.3764765089571815,
0.38863128816655074,
0.40062590794250863,
0.41242921948008543,
0.42401456128052883,
0.4353593819279369,
0.4464448781413297,
0.45725565051379613,
0.46777937823463567,
0.4780065133450242,
0.4879299945796683,
0.4975449805160245,
0.506848601537109
],
[
0.31735060491696326,
0.30629581007149165,
0.29547203082866563,
0.2849217428678728,
0.2746935395667797,
0.26484295203205166,
0.25543272082520097,
0.24653235953480507,
0.23821694280868466,
0.23056517900548895,
0.2236569622965925,
0.21757070026763295,
0.21238074003427132,
0.20815514641628813,
0.20495393385617028,
0.20282767458586623,
0.20181627806618696,
0.201947727308134,
0.20323668110585436,
0.20568305434827852,
0.20927087231444202,
0.213967765760768,
0.21972539457841525,
0.22648089521973408,
0.23415922503651024,
0.24267610866499018,
0.2519412224399185,
0.2618612796595771,
0.2723427680453935,
0.2832941993244411,
0.29462782792776515,
0.30626086564286925,
0.3181162593330313,
0.3301231148555654,
0.3422168499555443,
0.3543391494789964,
0.3664377831522215,
0.3784663328007813,
0.39038386400054975,
0.40215456743557415,
0.41374738771901415,
0.4251356518402439,
0.4362967053554138,
0.44721156156916886,
0.45786456694637906,
0.4682430845991364,
0.4783371967347675,
0.48813942629689544,
0.49764447759432817,
0.5068489954298392
],
[
0.32277322152042126,
0.3118705775032693,
0.30119745095486333,
0.29079781929081105,
0.2807217947634159,
0.2710262494945718,
0.2617748715293956,
0.25303751200917596,
0.2448887778483008,
0.23740595024411346,
0.2306664397270632,
0.2247450847385637,
0.21971162472075495,
0.21562860980725843,
0.21254986010955468,
0.21051940826774027,
0.20957072137376015,
0.2097259647053935,
0.21099515865369478,
0.21337525243488203,
0.21684931259059145,
0.22138611880882245,
0.2269404327083639,
0.23345407365162593,
0.2408577594416486,
0.2490735173851042,
0.2580173877051694,
0.2676021358007398,
0.27773974308940336,
0.2883435273338605,
0.29932982495359395,
0.3106192329988561,
0.3221374512488484,
0.33381578685700686,
0.34559139023599206,
0.3574072872165673,
0.3692122637536092,
0.38096064896792875,
0.3926120321285658,
0.4041309402971667,
0.41548649610898386,
0.42665206951381773,
0.4376049330308732,
0.4483259269178748,
0.45879913836362923,
0.46901159717036955,
0.47895298922984236,
0.4886153882882459,
0.4979930059463189,
0.5070819594831222
],
[
0.328677429157302,
0.3179431399237475,
0.3074373790679624,
0.2972055747719159,
0.2872992454344607,
0.27777642856174456,
0.2687015285874738,
0.2601444646420755,
0.2521790938950765,
0.24488100854520156,
0.23832492862480945,
0.23258200244068403,
0.2277173465803255,
0.2237880893740092,
0.2208420372279303,
0.21891690747702794,
0.21803992931234367,
0.21822756308464647,
0.21948514859426743,
0.22180643621821342,
0.22517311520694258,
0.22955456042588748,
0.23490803009953895,
0.24117946598290213,
0.24830491464584736,
0.2562124580064327,
0.2648244543465362,
0.2740598637265643,
0.2838364561572733,
0.2940727562887715,
0.304689642638338,
0.3156115764210522,
0.32676747688195734,
0.338091285312328,
0.3495222712512894,
0.3610051357915061,
0.372489962376599,
0.3839320580992759,
0.3952917203695502,
0.40653395613361004,
0.4176281741621897,
0.4285478654655292,
0.43927028258072187,
0.4497761251653249,
0.46004923683931387,
0.47007631637565284,
0.4798466450023888,
0.48935183062871007,
0.49858556915124097,
0.5075434225628412
],
[
0.33502394243234584,
0.3244734699634549,
0.3141509747418603,
0.30410321416419145,
0.2943829247577776,
0.28504905884976367,
0.2761664372096531,
0.26780472002690786,
0.2600366920309807,
0.2529359747905475,
0.24657439531515615,
0.24101932171457113,
0.23633129213976053,
0.2325621962591225,
0.22975413014942525,
0.22793887633455212,
0.22713781887852316,
0.22736204072702018,
0.22861238810527373,
0.2308794042023519,
0.2341431786436589,
0.23837327014208817,
0.2435288969402849,
0.24955954786287213,
0.2564060722182381,
0.2640022002651662,
0.2722763634247438,
0.2811536436434133,
0.2905576843319808,
0.30041242862946843,
0.3106435978749865,
0.321179870110613,
0.3319537565793855,
0.34290220026314994,
0.3539669350282305,
0.3650946493449701,
0.37623699775937514,
0.38735049894227536,
0.39839635319229616,
0.40934020601477134,
0.4201518785769688,
0.43080508079481916,
0.44127711863643476,
0.4515486038957134,
0.4616031720954166,
0.47142721220497963,
0.4810096103887128,
0.4903415089335279,
0.4994160807556363,
0.5082283193814068
],
[
0.3417739524001336,
0.33142196681619496,
0.32129775308239256,
0.3114492155181935,
0.30193005986613736,
0.29279984645843876,
0.2841234655090306,
0.27596995803977764,
0.26841069683490476,
0.2615170523360988,
0.2553577751154141,
0.2499963991776918,
0.24548898073727896,
0.24188242150242548,
0.23921349445217185,
0.23750853000963332,
0.23678358286811052,
0.23704483075274307,
0.2382889767089162,
0.24050352160266478,
0.2436669008571746,
0.2477485882843448,
0.25270932313608335,
0.2585016038439925,
0.2650705289874893,
0.2723549829317025,
0.28028909013474274,
0.288803817277188,
0.29782859096499525,
0.30729281461953617,
0.3171271999044021,
0.3272648643292731,
0.33764217933761453,
0.34819937797847167,
0.35888094719015545,
0.36963583782442805,
0.3804175277445837,
0.3911839716695183,
0.40189746761968387,
0.4125244650997467,
0.42303533533710447,
0.43340411944621554,
0.4436082665233169,
0.4536283704586317,
0.4634479116611973,
0.47305300786090787,
0.4824321766037649,
0.4915761109089865,
0.500477468735669,
0.5091306763450645
],
[
0.3488892665655824,
0.338749563274165,
0.3288376630635598,
0.3192023861236107,
0.30989811365080605,
0.30098467047268795,
0.29252664451296706,
0.284592086937516,
0.27725062388120486,
0.2705711132688856,
0.26461907667483514,
0.2594541992295522,
0.25512819582751195,
0.2516832780494947,
0.2491513334843145,
0.24755377994572553,
0.2469019265807772,
0.24719760275817662,
0.2484338231858695,
0.2505953338533737,
0.2536589940705271,
0.25759405268501384,
0.2623624383224115,
0.2679191913400007,
0.2742131273526464,
0.28118776025303927,
0.28878245056556384,
0.29693370028661586,
0.3055764954427366,
0.31464560067895114,
0.32407672910735946,
0.3338075368502329,
0.343778418081153,
0.35393309840973386,
0.36421904026054813,
0.37458768344280496,
0.3849945484311639,
0.39539923039863434,
0.40576531013126094,
0.41606020472534916,
0.426254977224314,
0.4363241206130249,
0.44624532815217405,
0.45599925904834904,
0.46556930596324875,
0.47494136885571564,
0.48410363808031753,
0.49304638847951066,
0.5017617853425073,
0.5102437025035318
],
[
0.3563323916180999,
0.34641778756736663,
0.3367311342659757,
0.3273219010741002,
0.31824482243253976,
0.3095596263601756,
0.3013302221022233,
0.2936233097234395,
0.28650645659815366,
0.2800457796016943,
0.27430345745825846,
0.26933535114241086,
0.2651890105979701,
0.26190228447661507,
0.25950263593542716,
0.25800713044749135,
0.25742294027966595,
0.2577481401269186,
0.2589725668805995,
0.2610785767769199,
0.2640416280704304,
0.26783071176674245,
0.2724087177278498,
0.27773284490329736,
0.28375514574539,
0.29042325104742994,
0.29768127123789767,
0.3054708289556849,
0.31373215382776093,
0.3224051648584728,
0.3314304747956027,
0.34075026822838167,
0.3503090252124648,
0.3600540806811173,
0.36993602445387563,
0.37990895655686696,
0.38993061814589736,
0.3999624204337774,
0.4099693936725277,
0.41992007634894113,
0.42978636205066717,
0.4395433184741132,
0.44916899011753836,
0.45864419353332736,
0.46795231170267787,
0.47707909217710004,
0.4860124520961921,
0.4947422920081871,
0.5032603195443899,
0.5115598833815802
],
[
0.364066585321551,
0.3543888072594088,
0.34493911934915816,
0.335767351076152,
0.32692825511924867,
0.31848110065724705,
0.31048875446073615,
0.30301622968301617,
0.29612875867390903,
0.28988953073018275,
0.28435731050719454,
0.2795841969703854,
0.27561377879729515,
0.2724798833960199,
0.27020601258201915,
0.2688054336059352,
0.2682817833495781,
0.2686299764277819,
0.2698372002142039,
0.27188382690121327,
0.2747441530716596,
0.2783869620026718,
0.28277596793215726,
0.28787023124699096,
0.2936246289117321,
0.2999904355179903,
0.30691603141644813,
0.3143477184766549,
0.32223059935119064,
0.33050946544445137,
0.3391296405099611,
0.34803773698629414,
0.35718229641297916,
0.36651429987656886,
0.37598754702561743,
0.3855589116165195,
0.3951884876211915,
0.404839643037281,
0.4144789993512088,
0.42407635381611786,
0.4336045599412421,
0.44303937933453713,
0.4523593156474328,
0.4615454390703653,
0.47058120775760665,
0.47945229078882023,
0.48814639582431696,
0.4966531034721989,
0.5049637095302432,
0.5130710756552336
],
[
0.3720558977749921,
0.3626254745099788,
0.3534231499115177,
0.34449881487878076,
0.33590690658622824,
0.32770588706625997,
0.3199572430933807,
0.3127240022467503,
0.3060688300981708,
0.300051848641084,
0.2947283803627491,
0.29014685788456573,
0.28634713151413876,
0.28335935162648773,
0.28120350839868336,
0.2798895999271276,
0.27941829983693156,
0.2797819328662954,
0.2809655551586371,
0.2829479722467637,
0.28570259498801553,
0.2891981084174845,
0.29339898925943325,
0.2982659419233813,
0.30375632807568853,
0.3098246477422691,
0.31642310106657984,
0.32350222995201144,
0.3310116154796768,
0.33890059376567067,
0.34711894978304264,
0.3556175533223042,
0.3643489105249835,
0.3732676153102292,
0.38233069530239777,
0.39149785524839853,
0.4007316268732129,
0.4099974377051488,
0.41926361297195,
0.4285013247144202,
0.4376845012761706,
0.44678970873056517,
0.45579601393058883,
0.4646848369527129,
0.47343979891000254,
0.4820465695257664,
0.4904927175317337,
0.498767565894327,
0.5068620530658317,
0.514768600876375
],
[
0.38026521570607047,
0.37109138429935945,
0.362145414630929,
0.353476962057143,
0.34513982767379925,
0.33719134321446476,
0.3296913141558126,
0.32270052853612496,
0.3162789023879769,
0.3104833985820345,
0.30536591025633564,
0.3009713277756798,
0.2973359977743173,
0.29448673113769297,
0.2924404320415609,
0.2912043212215438,
0.29077663767019474,
0.2911476455458876,
0.2923007589177938,
0.29421362438347515,
0.2968590572887449,
0.3002057921418249,
0.3042190638689982,
0.3088610721886959,
0.3140913932702797,
0.31986739477383885,
0.32614469015324155,
0.3328776442465967,
0.3400199213923482,
0.3475250533959999,
0.35534699858799346,
0.3634406638628924,
0.37176236684349145,
0.3802702228705677,
0.3889244494613144,
0.39768758790591596,
0.4065246470977825,
0.41540317832528545,
0.4242932917217612,
0.43316762567819145,
0.4420012801294633,
0.4507717235762264,
0.459458682294049,
0.4680440186382837,
0.47651160384010466,
0.48484718931329807,
0.4930382793126866,
0.5010740068285667,
0.5089450138662642,
0.5166433367278866
],
[
0.38866031746039564,
0.37975095060989383,
0.3710688615579192,
0.3626631846449948,
0.3545867869342284,
0.34689558017739197,
0.3396474298467208,
0.3329006789940281,
0.3267123613241575,
0.3211362348964831,
0.31622081316604705,
0.31200759109499987,
0.30852965166715307,
0.30581079045493986,
0.30386522049880993,
0.3026978327393885,
0.3023049088016915,
0.3026751310429086,
0.30379071938781677,
0.3056285447515195,
0.3081611144616851,
0.3113573806718741,
0.31518337333207463,
0.31960269451622353,
0.3245769269004934,
0.33006600784989276,
0.3360286074581734,
0.3424225306468578,
0.34920514578139256,
0.3563338289030303,
0.3637664051043357,
0.3714615665419692,
0.37937924878071144,
0.38748095192138404,
0.3957299987195762,
0.4040917274653661,
0.4125336220292028,
0.42102538485108815,
0.42953896072258824,
0.43804852013478063,
0.44653041098155216,
0.45496308678255054,
0.4633270185694162,
0.47160459636872215,
0.47978002497255184,
0.4878392175229901,
0.4957696894187651,
0.5035604542151665,
0.5112019225408381,
0.5186858045867025
],
[
0.39720794142847327,
0.38856950050396866,
0.38015732144455067,
0.37201975138555293,
0.3642084549608317,
0.35677767308775804,
0.349783118329527,
0.3432805325563431,
0.33732398259947904,
0.33196401834561223,
0.3272458548967927,
0.3232077557272264,
0.3198797801068448,
0.3172830145407647,
0.3154293414410456,
0.3143217223089359,
0.3139549041263924,
0.3143164112863381,
0.31538766962147435,
0.31714512366811554,
0.3195612452669224,
0.3226053786825084,
0.3262444122609837,
0.33044330021009416,
0.3351654762988994,
0.34037320475092936,
0.34602790616136336,
0.352090482999522,
0.35852165490035,
0.36528230189519606,
0.3723338057256036,
0.37963837572365206,
0.3871593457514064,
0.3948614312229021,
0.4027109390752172,
0.4106759276952941,
0.41872631753515144,
0.42683395606034386,
0.43497264263122476,
0.44311811995121664,
0.4512480389743165,
0.4593419038363674,
0.46738100265749516,
0.47534832913242847,
0.48322849882467367,
0.4910076631157765,
0.4986734229028363,
0.5062147434255908,
0.5136218710532054,
0.520886252465838
],
[
0.40587586701523487,
0.3975133826081769,
0.389375645952495,
0.3815099758824668,
0.37396660030809964,
0.3667978800253692,
0.36005720815640785,
0.35379761677523264,
0.34807016588143513,
0.342922231089519,
0.3383958364738704,
0.33452618960952324,
0.33134056156845104,
0.3288576152916131,
0.32708722745774726,
0.32603078313957184,
0.3256818629908269,
0.32602720163920157,
0.32704778039700744,
0.32871992748315676,
0.3310163285958494,
0.33390689015018304,
0.33735943667940765,
0.34134025502216875,
0.34581451697611126,
0.3507466188489048,
0.35610047328275457,
0.36183977968650255,
0.3679282884164743,
0.37433006349216924,
0.3810097409002387,
0.38793277506180057,
0.39506566458511866,
0.4023761492754516,
0.40983337263755426,
0.41740800695903624,
0.425072340867949,
0.43280033160590303,
0.44056762594665627,
0.4483515546799333,
0.4561311059385863,
0.4638868825016938,
0.47160104770537253,
0.4792572638815183,
0.48684062644670434,
0.4943375959762759,
0.5017359298898686,
0.5090246147849369,
0.5161938000014848,
0.5232347326833822
],
[
0.4146330048857386,
0.4065500845585481,
0.39868985319141,
0.3910983892144325,
0.38382428602448027,
0.3769178571113507,
0.37043005451038,
0.364411136077034,
0.35890915473462615,
0.35396837729928776,
0.34962776446119004,
0.34591965032559013,
0.3428687455455335,
0.34049155282574217,
0.338796232808387,
0.3377829015993164,
0.3374442897774657,
0.33776665661541755,
0.3387308382781986,
0.34031331535238496,
0.342487208583772,
0.34522314449597413,
0.34848996639826546,
0.35225529456170523,
0.35648595828051527,
0.3611483313563708,
0.3662086027751324,
0.3716330087828536,
0.3773880442512985,
0.38344066270631205,
0.3897584673758485,
0.3963098909033566,
0.403064359042291,
0.40999243330224777,
0.41706592854058994,
0.42425800324701923,
0.43154322221384,
0.4388975930381559,
0.44629857924074195,
0.45372509362358016,
0.4611574758377387,
0.46857745807229206,
0.47596812241077613,
0.48331385284823497,
0.49060028432330094,
0.49781425048081257,
0.5049437313029517,
0.5119778012690955,
0.5189065783443679,
0.5257211738549862
],
[
0.4234494919536165,
0.41564835320816357,
0.4080672728984126,
0.4007509081105006,
0.39374605703504195,
0.3871008595743944,
0.38086374693854846,
0.3750821780373936,
0.36980123268020054,
0.3650621601105476,
0.36090100023955796,
0.35734739881433863,
0.35442372370414527,
0.35214455813896584,
0.35051660275764596,
0.34953896962011266,
0.3492038071429311,
0.34949716333903214,
0.3503999806358414,
0.3518891194537647,
0.3539383261945544,
0.3565190883049447,
0.3596013480007574,
0.36315407150114304,
0.3671456887901297,
0.3715444288952586,
0.3763185782734934,
0.3814366871093437,
0.38686774252065775,
0.3925813209606346,
0.3985477260457374,
0.40473811349560995,
0.41112460211205054,
0.417680368591635,
0.4243797240664732,
0.4311981711295057,
0.43811244129108723,
0.44510051399598954,
0.45214161928576796,
0.4592162268119139,
0.46630602416941097,
0.4733938874677615,
0.4804638467612032,
0.487501048508631,
0.49449171671101144,
0.5014231138513887,
0.5082835022936082,
0.5150621064149193,
0.5217490754708192,
0.5283354470189617
],
[
0.43229678618692596,
0.4247783115305158,
0.41747668428098206,
0.41043499109077225,
0.40369811048630644,
0.39731192092437984,
0.3913222909939318,
0.38577389053233535,
0.38070888872082137,
0.37616562860389774,
0.3721773820487977,
0.3687712907919502,
0.3659675857803419,
0.3637791493257519,
0.3622114466643716,
0.3612628118735591,
0.36092503524390185,
0.36118417171743455,
0.3620214768967782,
0.36341437902510504,
0.3653374096676663,
0.3677630379087589,
0.3706623773783828,
0.37400575770360545,
0.3777631689667719,
0.38190459819548767,
0.3864002811325884,
0.3912208918991352,
0.39633768946540543,
0.4017226348159179,
0.40734848769074145,
0.41318888766300343,
0.4192184214501206,
0.42541267676344735,
0.4317482824547901,
0.4382029348925834,
0.44475541106186156,
0.4513855695514618,
0.45807434117072615,
0.4648037113131907,
0.47155669631602704,
0.47831731596554283,
0.4850705640192374,
0.49180237821838774,
0.4984996108184117,
0.5051500002260141,
0.5117421439473381,
0.5182654727490956,
0.5247102257283106,
0.5310674258760211
],
[
0.4411477565447463,
0.4339115668684049,
0.42688844075712734,
0.42011977666776884,
0.41364844328402767,
0.4075180048324129,
0.4017717589072974,
0.3964516254543141,
0.3915969485078987,
0.38724329127447377,
0.3834213162399332,
0.3801558419577657,
0.3774651555509732,
0.3753606356425614,
0.3738467078427488,
0.37292111942200584,
0.37257548746595803,
0.3727960509676749,
0.37356454527649485,
0.3748591177378828,
0.37665521434108956,
0.37892638511117355,
0.3816449765782368,
0.38478269909181173,
0.38831107232335255,
0.3922017627227661,
0.39642683195022954,
0.40095891627841507,
0.40577135498626726,
0.41083828222537305,
0.4161346928903481,
0.4216364894651795,
0.4273205140765713,
0.43316456818161053,
0.43914742135628404,
0.44524881032404423,
0.4514494294269683,
0.4577309139749009,
0.46407581814185234,
0.4704675892074246,
0.476890539916673,
0.4833298205530861,
0.4897713920166611,
0.4962020008195689,
0.5026091565071577,
0.508981111629169,
0.5153068440615154,
0.5215760412363666,
0.5277790856876022,
0.5339070412583974
],
[
0.44997676400196823,
0.4430213062211502,
0.436274577258723,
0.42977619948756823,
0.42356697312863073,
0.4176881266009741,
0.41218040681857726,
0.40708304713095517,
0.402432669750054,
0.3982621948054982,
0.39459983645008667,
0.3914682652404506,
0.3888840043311587,
0.3868571057671454,
0.38539112524257735,
0.3844833834984571,
0.38412547497051663,
0.38430396367906683,
0.3850011954008031,
0.38619615451968664,
0.3878653022519756,
0.389983347381353,
0.3925239178363704,
0.3954601182393372,
0.39876497261707466,
0.402411761528412,
0.40637426869430465,
0.41062695434598856,
0.4151450718989888,
0.4199047422955044,
0.42488299739810886,
0.4300578008815507,
0.43540805259307486,
0.4409135805196144,
0.4465551233089906,
0.45231430562445646,
0.4581736083012999,
0.46411633515492,
0.47012657822590237,
0.4761891831473546,
0.48228971613597915,
0.48841443383208827,
0.494550256863562,
0.5006847476188097,
0.5068060923241269,
0.5129030871683885,
0.5189651279320363,
0.5249822023758247,
0.5309448845345172,
0.5368443300380522
],
[
0.45875973048131913,
0.45208237543302093,
0.44560889721421265,
0.4393770819728058,
0.433425631206356,
0.4277934430620382,
0.42251875808539746,
0.4176382055512746,
0.41318580237318075,
0.40919196880609576,
0.4056826312051346,
0.40267848011034835,
0.4001944412350387,
0.39823939843590034,
0.39681618388241996,
0.39592182500002543,
0.39554801430312336,
0.3956817504382833,
0.3963060888680725,
0.3974009392539816,
0.3989438527637142,
0.4009107540872956,
0.4032765872168772,
0.40601585844823795,
0.40910307259873196,
0.412513067921907,
0.41622126126197445,
0.4202038179066877,
0.4244377610383259,
0.42890103447536215,
0.433572530326809,
0.4384320908717818,
0.44346049184600467,
0.4486394125821519,
0.453951397170152,
0.45937980992817096,
0.4649087879016898,
0.4705231927195543,
0.4762085638289766,
0.48195107483216426,
0.4877374943142574,
0.49355515217459356,
0.4993919120626992,
0.505236150102345,
0.5110767396924648,
0.51690304183205,
0.5227049001500178,
0.5284726396439189,
0.5341970680469308,
0.5398694787450128
],
[
0.46747419344686314,
0.4610713403003189,
0.45486703766329595,
0.44889720049795506,
0.44319842623772737,
0.43780731130380884,
0.43275965372088615,
0.4280895759789319,
0.4238286153466204,
0.420004838517985,
0.4166420417693293,
0.4137590953097028,
0.4113694808187261,
0.4094810551176491,
0.40809605256101933,
0.40721131698391516,
0.406818734092377,
0.4069058198511309,
0.4074564115470112,
0.40845140635845045,
0.4098694967523598,
0.4116878612210374,
0.4138827806492645,
0.41643016286921947,
0.41930596902394063,
0.4224865441350946,
0.4259488603153588,
0.42967068447191636,
0.4336306835648015,
0.43780848012911006,
0.4421846694694635,
0.4467408082185626,
0.45145938220097387,
0.45632375998607144,
0.46131813724612836,
0.4664274760580383,
0.4716374425458221,
0.47693434567995124,
0.4823050795555646,
0.4877370710093289,
0.4932182339717156,
0.49873693147846926,
0.5042819457906437,
0.5098424566168974,
0.5154080270193842,
0.5209685962390307,
0.5265144784148557,
0.5320363660051006,
0.5375253366460335,
0.5429728622002568
],
[
0.47609934482040744,
0.4699665286620662,
0.4640265121037148,
0.4583133263281055,
0.45286148079152583,
0.44770531779716377,
0.44287827211707853,
0.4384120675564949,
0.4343358930397091,
0.4306756083939195,
0.4274530329451776,
0.4246853672676256,
0.42238478971624144,
0.4205582554893765,
0.41920750861888534,
0.4183292988456076,
0.4179157783856376,
0.417955040396366,
0.41843175302657215,
0.41932784080246893,
0.420623168287646,
0.4222961882144097,
0.4243245259558291,
0.4266854825957263,
0.42935644853279575,
0.432315227554993,
0.4355402771703346,
0.43901087464815164,
0.4427072199900826,
0.4466104873609497,
0.45070283585540466,
0.4549673892958713,
0.4593881933888742,
0.46395015723225963,
0.46863898498120043,
0.473441102481266,
0.4783435828449292,
0.4833340742414123,
0.4884007325416844,
0.49353216087317286,
0.4987173575700253,
0.5039456734491022,
0.5092067788074618,
0.5144906400410283,
0.5197875053469283,
0.5250878986128767,
0.5303826203299135,
0.5356627541966577,
0.5409196780128547,
0.5461450774788993
],
[
0.48461605369706307,
0.4787480534292356,
0.47306673159690626,
0.46760424247549304,
0.4623930416548801,
0.45746528030590333,
0.4528521209378136,
0.44858300414593894,
0.4446849045429972,
0.44118161997855,
0.43809314005150785,
0.4354351370318891,
0.4332186145277937,
0.431449737247252,
0.43012985043330965,
0.4292556819228309,
0.42881970537546915,
0.4288106318712184,
0.42921399002946187,
0.4300127525282354,
0.43118796908297025,
0.4327193716379208,
0.434585925430064,
0.4367663083370071,
0.4392393093277546,
0.44198414404253067,
0.44498069106640625,
0.44820965621740483,
0.4516526742969664,
0.4552923585633808,
0.4591123080609753,
0.4630970822254568,
0.46723215117980643,
0.47150382904194776,
0.4758991965088125,
0.4804060180174682,
0.48501265792246084,
0.4897079993529419,
0.4944813686985835,
0.4993224679979939,
0.5042213168550593,
0.5091682048869272,
0.5141536551215103,
0.5191683982282567,
0.524203357001754,
0.5292496401396513,
0.5342985440761074,
0.5393415614541168,
0.5443703947423069,
0.5493769735148722
],
[
0.49300687302361146,
0.48739781721988823,
0.48196900536283555,
0.47675073829028614,
0.47177346664407577,
0.46706722547318313,
0.4626610044819152,
0.45858208098390074,
0.4548553496583362,
0.4515026877594502,
0.44854239554903924,
0.44598874883500306,
0.4438516935866373,
0.4421367022664392,
0.4408447989465261,
0.439972747032793,
0.4395133811797694,
0.4394560552256612,
0.439787171735376,
0.4404907564270875,
0.4415490421723169,
0.44294303169256544,
0.44465301451183753,
0.44665902106517963,
0.4489412041216485,
0.4514801441107365,
0.4542570800965684,
0.45725407186067385,
0.46045410089497296,
0.46384111928177185,
0.46740005572545557,
0.47111678768386617,
0.47497808787053325,
0.47897155254724894,
0.4830855181222534,
0.48730897168056286,
0.4916314602273878,
0.4960430026264518,
0.5005340074547457,
0.5050951992656529,
0.5097175550504855,
0.5143922520189506,
0.5191106271933034,
0.5238641487447769,
0.5286443985111433,
0.5334430647355659,
0.5382519437692431,
0.5430629492872003,
0.5478681274748637,
0.5526596766433041
],
[
0.5012560309503109,
0.4958994998034515,
0.49071652259113796,
0.485735584035333,
0.48098519059248196,
0.47649334523807657,
0.47228696999082914,
0.46839130082792174,
0.4648292853063043,
0.4616210166760692,
0.4587832388119089,
0.45632895348437147,
0.4542671553785202,
0.4526027113737264,
0.45133638990014113,
0.45046503495828555,
0.44998186898337883,
0.44987690035511885,
0.4501374058403765,
0.4507484559794405,
0.4516934522646226,
0.45295464838363747,
0.4545136330187707,
0.4563517578266159,
0.4584505004568183,
0.4607917581600624,
0.4633580722696953,
0.46613278742840636,
0.4691001518705058,
0.47224536649195564,
0.4755545910453558,
0.4790149158051198,
0.48261430665990823,
0.4863415309665189,
0.4901860707571119,
0.49413802910245264,
0.4981880346368969,
0.5023271484632389,
0.5065467768831953,
0.5108385926448107,
0.515194466666623,
0.5196064114993912,
0.5240665371334444,
0.5285670191695898,
0.5331000788604591,
0.5376579741108901,
0.5422330002094876,
0.5468174988519695,
0.5514038739068418,
0.5559846123562323
],
[
0.5093494079753016,
0.5042385299309504,
0.49929431751236586,
0.49454348793718117,
0.4900126734100205,
0.485727935307529,
0.48171423636607813,
0.47799489319613564,
0.4745910359824114,
0.4715211048407349,
0.46880041242205467,
0.466440799685583,
0.46445040637396784,
0.4628335700729221,
0.46159085863229554,
0.46071923120048414,
0.4602123142744688,
0.46006077196669565,
0.4602527448320563,
0.46077432940702484,
0.4616100710242093,
0.4627434450857091,
0.4641573061939098,
0.46583428964630885,
0.4677571551309736,
0.4699090674633666,
0.47227381350551473,
0.4748359578055931,
0.47758094194615575,
0.48049513416307993,
0.48356583663435077,
0.48678125810419987,
0.49013045936533844,
0.49360327870744325,
0.4971902438581892,
0.5008824762662559,
0.5046715928490504,
0.5085496095778315,
0.5125088505148953,
0.516541865162877,
0.5206413562463735,
0.5248001193347865,
0.529010995048588,
0.5332668339864284,
0.5375604739839486,
0.5418847288803184,
0.5462323876341043,
0.550596222398984,
0.5549690040391205,
0.5593435235249129
],
[
0.5172745012825163,
0.5124020433604408,
0.50768921994047,
0.5031610382966724,
0.49884233311847215,
0.49475731884012425,
0.4909291086238425,
0.48737922011104234,
0.4841270916683565,
0.481189634790209,
0.47858084814135515,
0.47631151622267287,
0.4743890109068491,
0.47281720751288114,
0.4715965193354961,
0.47072404645994925,
0.47019382716062547,
0.4699971739936087,
0.4701230724216046,
0.4705586177364467,
0.47128946614518236,
0.4723002778698022,
0.4735751335031535,
0.4750979091045294,
0.4768526000587442,
0.47882358809716025,
0.48099584975039045,
0.48335510767226125,
0.4858879286716172,
0.4885817739401121,
0.4914250079612211,
0.4944068730507602,
0.4975174365390101,
0.5007475173733059,
0.5040885984897809,
0.5075327307424156,
0.5110724335340076,
0.5147005965991156,
0.5184103866654238,
0.5221951619849429,
0.5260483969961721,
0.5299636186701464,
0.5339343554249933,
0.5379540988836425,
0.5420162782140129,
0.5461142463439875,
0.5502412769933335,
0.5543905712148485,
0.5585552719848211,
0.5627284853207175
],
[
0.5250203778454929,
0.5203788290025583,
0.5158897935463335,
0.5115766332180308,
0.5074624666689855,
0.503569758331765,
0.4999198811897931,
0.49653267149108776,
0.4934259963127807,
0.49061535628916525,
0.48811354543350854,
0.4859303876692463,
0.4840725655323204,
0.4825435508521672,
0.4813436406138858,
0.48047009433433235,
0.4799173628689489,
0.4796773932467028,
0.47973999038050874,
0.48009321456472304,
0.4807237935514756,
0.481617529481331,
0.48275968366406924,
0.4841353257173808,
0.4857296374263724,
0.4875281654929902,
0.4895170208037109,
0.4916830247665116,
0.494013805567,
0.49649784886494264,
0.4991245085505314,
0.5018839837911214,
0.5047672688212644,
0.5077660818543476,
0.5108727792022547,
0.5140802602429216,
0.5173818683212845,
0.5207712920414209,
0.5242424707328185,
0.5277895071732929,
0.5314065899449928,
0.5350879271077594,
0.5388276922154822,
0.5426199830948099,
0.5464587932685776,
0.5503379954520938,
0.5542513361880106,
0.558192440418623,
0.5621548246214546,
0.5661319170482761
],
[
0.5325776179495528,
0.5281592651338356,
0.5238862640809169,
0.5197804004076384,
0.5158631611760334,
0.5121553584637458,
0.5086767328610746,
0.5054455530245032,
0.5024782296692387,
0.4997889633787327,
0.4973894450935495,
0.49528862601889057,
0.4934925700538101,
0.49200439698444326,
0.49082431905237384,
0.4899497676666579,
0.4893756015576321,
0.4890943830963291,
0.48909670621580975,
0.4893715575818307,
0.4899066923888855,
0.49068900724994613,
0.4917048948216276,
0.49294056770808514,
0.49438234245129303,
0.49601687771362724,
0.4978313638305638,
0.49981366357991963,
0.5019524061847099,
0.5042370382144984,
0.5066578362015547,
0.5092058865013919,
0.5118730382749961,
0.5146518355257865,
0.5175354339547785,
0.5205175080582427,
0.5235921534277096,
0.526753788657495,
0.5299970606481256,
0.5333167564392235,
0.5367077240346948,
0.5401648040176428,
0.5436827731129198,
0.5472563002609013,
0.5508799152340481,
0.5545479893717518,
0.5582547276382157,
0.5619941709270093,
0.5657602073438001,
0.5695465910901792
],
[
0.5399382507920814,
0.5357352475777337,
0.5316704396602947,
0.5277641093289827,
0.5240361979831103,
0.5205059624079464,
0.5171916159598924,
0.5141099690329589,
0.5112760849405862,
0.5087029680261054,
0.5064013002194607,
0.5043792403248946,
0.5026422971452795,
0.5011932833693237,
0.5000323523426977,
0.4991571148696358,
0.4985628285227125,
0.498242648002921,
0.4981879222134035,
0.49838852207064577,
0.4988331827063287,
0.4995098445010558,
0.5004059791211443,
0.5015088891219301,
0.5028059724387173,
0.5042849459348941,
0.5059340248903125,
0.5077420577301405,
0.5096986173185696,
0.5117940517344377,
0.5140194986132176,
0.5163668679179352,
0.5188287984425949,
0.5213985935126667,
0.5240701412829472,
0.5268378247918889,
0.5296964265541249,
0.5326410319932293,
0.5356669354633252,
0.5387695520062696,
0.5419443373639053,
0.54518671813447,
0.5484920333496354,
0.5518554881733281,
0.5552721199025643,
0.5587367759978235,
0.5622441034955916,
0.5657885488636475,
0.5693643671507561,
0.5729656391525197
],
[
0.5470956837724334,
0.5431001116545998,
0.5392356250745135,
0.5355210778003358,
0.5319749517308145,
0.5286150438019905,
0.5254581418934682,
0.5225197025053517,
0.5198135443449784,
0.5173515724006321,
0.5151435464426798,
0.5131969061431048,
0.5115166622280252,
0.5101053594825278,
0.5089631133228929,
0.50808771741097,
0.5074748157964142,
0.5071181296845643,
0.5070097264090289,
0.5071403166956701,
0.5074995658737639,
0.5080764052434709,
0.5088593311802745,
0.5098366815256676,
0.5109968811384983,
0.5123286509340649,
0.5138211771245496,
0.5154642395489403,
0.5172482998490303,
0.5191645517638425,
0.5212049369695158,
0.5233621307045063,
0.5256295019265362,
0.5280010529910137,
0.5304713438648039,
0.5330354057352045,
0.5356886485781426,
0.5384267668438436,
0.5412456469302893,
0.5441412795699864,
0.5471096796773436,
0.5501468156144791,
0.5532485492536479,
0.5564105876639299,
0.5596284467453679,
0.5628974266891481,
0.5662125987675648,
0.5695688026580255,
0.5729606532824836,
0.5763825559946081
],
[
0.5540446269946183,
0.5502485495686151,
0.5465765319048091,
0.5430460749031504,
0.5396742863435835,
0.5364775963241417,
0.5334714650315722,
0.5306700941667495,
0.5280861544000933,
0.5257305414881192,
0.5236121730326851,
0.5217378362886254,
0.5201120950023381,
0.5187372601695858,
0.5176134260914249,
0.5167385694883305,
0.5161087060205364,
0.5157180956442545,
0.5155594860313347,
0.5156243819288933,
0.5159033278733167,
0.5163861920466234,
0.5170624401459074,
0.5179213897538519,
0.5189524376553881,
0.5201452546524156,
0.5214899445194032,
0.5229771656879644,
0.5245982159587242,
0.5263450819634591,
0.5282104562213183,
0.5301877254565107,
0.532270934393614,
0.5344547295519959,
0.5367342876573179,
0.5391052332097445,
0.5415635495272474,
0.5441054872471344,
0.5467274738461262,
0.5494260272533621,
0.5521976761045359,
0.5550388886408796,
0.557946011714368,
0.5609152208392787,
0.5639424817466808,
0.5670235234661719,
0.5701538225882755,
0.5733285980575344,
0.57654281561257,
0.5797912008236946
],
[
0.5607810143902767,
0.5571765247454782,
0.5536891860424874,
0.5503352218446984,
0.5471304495989197,
0.5440900225237463,
0.5412281665243689,
0.5385579221517425,
0.5360909024260434,
0.5338370774645469,
0.5318045962114921,
0.5299996541535934,
0.5284264137909024,
0.5270869819678452,
0.5259814451652896,
0.5251079607621103,
0.5244628993528881,
0.524041030692821,
0.5238357439165825,
0.5238392914604443,
0.5240430456445494,
0.5244377571095087,
0.5250138051521228,
0.5257614313316081,
0.5266709493626816,
0.5277329261178157,
0.5289383303871588,
0.5302786477762675,
0.5317459616763229,
0.5333330015669026,
0.5350331609833193,
0.5368404882963113,
0.5387496540236746,
0.5407558987432053,
0.5428549658303011,
0.5450430232296437,
0.5473165783157229,
0.5496723896275051,
0.5521073789025738,
0.5546185464086975,
0.5572028920979385,
0.559857344611009,
0.5625786996574823,
0.5653635688087695,
0.5682083392815879,
0.5711091448732994,
0.5740618478470676,
0.5770620312608531,
0.580105000992754,
0.5831857965356666
],
[
0.5673019227372076,
0.5638811844698138,
0.5605708340078752,
0.5573858921972321,
0.5543409677003902,
0.5514500233048912,
0.5487261394156308,
0.5461812835799471,
0.5438260954973939,
0.5416696969866571,
0.5397195357603041,
0.5379812705932914,
0.5364587036274834,
0.5351537632576129,
0.5340665384697665,
0.533195362857615,
0.5325369440366466,
0.5320865320066892,
0.5318381183320953,
0.531784656916019,
0.5319182966774894,
0.5322306165748603,
0.5327128540840339,
0.5333561193263199,
0.5341515884217134,
0.5350906711888868,
0.5361651499036074,
0.5373672873627002,
0.5386899039051112,
0.5401264242643851,
0.5416708961398815,
0.5433179831679639,
0.5450629355539782,
0.5469015420050252,
0.5488300668018699,
0.5508451758879543,
0.5529438557572119,
0.5551233287129514,
0.5573809677694175,
0.5597142140970861,
0.562120499492831,
0.5645971759065918,
0.5671414535957854,
0.5697503490246973,
0.5724206431938609,
0.5751488506868366,
0.5779311993688863,
0.5807636203706568,
0.583641747743742,
0.5865609269844823
],
[
0.5736054897082341,
0.570360772004027,
0.5672198492764206,
0.5641966127244363,
0.561304541048487,
0.5585564892229857,
0.5559644761625118,
0.5535394790863837,
0.5512912428326128,
0.549228112321137,
0.54735689577419,
0.5456827651731719,
0.5442091988235612,
0.5429379689181592,
0.5418691747802111,
0.5410013202011874,
0.5403314311379026,
0.5398552081604328,
0.5395672065742763,
0.5394610361622034,
0.539529572038372,
0.5397651681664047,
0.540159865609449,
0.5407055884687781,
0.5413943216256208,
0.5422182657214915,
0.5431699661943229,
0.5442424145441878,
0.5454291212649792,
0.5467241609984695,
0.5481221914150795,
0.5496184480877714,
0.5512087182006697,
0.5528892963302801,
0.55465692576831,
0.5565087289382354,
0.5584421304117922,
0.5604547758759661,
0.5625444501552727,
0.5647089970775572,
0.5669462436030149,
0.5692539302340136,
0.5716296493050597,
0.5740707923340544,
0.5765745072124011,
0.5791376656348581,
0.5817568408301406,
0.5844282953571678,
0.5871479784837217,
0.5899115324655881
],
[
0.5796908319429532,
0.5766145392065267,
0.5736356396365035,
0.5707669658082328,
0.5680209421946054,
0.5654093945381853,
0.562943359454418,
0.5606329011414767,
0.5584869423951933,
0.55651311702644,
0.5547176502213633,
0.5531052723801841,
0.5516791705678479,
0.5504409799994316,
0.54939081608576,
0.5485273456202304,
0.5478478938401771,
0.5473485824777391,
0.5470244926333138,
0.5468698454318051,
0.5468781929906625,
0.5470426122325895,
0.5473558944739512,
0.5478107244454536,
0.548399843372152,
0.5491161918668497,
0.5499530295895095,
0.550904029820203,
0.5519633482232087,
0.5531256660998118,
0.5543862093071307,
0.555740744743569,
0.5571855568631922,
0.5587174070845587,
0.5603334792135507,
0.5620313141174237,
0.5638087368838518,
0.5656637795906302,
0.5675946026159145,
0.5695994171526769,
0.5716764112714731,
0.5738236815195155,
0.5760391716673765,
0.5783206198325561,
0.5806655148351137,
0.583071062286346,
0.5855341605866067,
0.5880513867198638,
0.5906189914851586,
0.5932329036008965
],
[
0.585557963995722,
0.5826426605110866,
0.5798185564331565,
0.5770974943076891,
0.5744909167746406,
0.572009694776885,
0.5696639570300609,
0.5674629268041027,
0.5654147722937424,
0.5635264767206009,
0.5618037337906089,
0.5602508732373895,
0.5588708199588138,
0.5576650887759732,
0.5566338152118658,
0.5557758210168984,
0.5550887115787132,
0.5545690009545108,
0.554212259144703,
0.5540132754494064,
0.5539662313438184,
0.5540648762731215,
0.5543027000717946,
0.5546730963038617,
0.5551695116331734,
0.5557855772936814,
0.5565152197673858,
0.5573527488274789,
0.5582929221120602,
0.559330986317832,
0.5604626959141518,
0.5616843109579924,
0.5629925761317199,
0.5643846835278677,
0.5658582219736281,
0.5674111158320247,
0.5690415562485961,
0.5707479277456112,
0.5725287329149121,
0.5743825177405447,
0.5763077998087105,
0.5783030013502721,
0.5803663887247683,
0.5824960196083845,
0.5846896988041279,
0.5869449432615967,
0.5892589565852988,
0.5916286130315497,
0.5940504507494657,
0.596520673814301
],
[
0.5912077188805472,
0.5884461489833461,
0.5857698063956891,
0.5831896095180729,
0.5807160880504351,
0.578359228382503,
0.5761283210226462,
0.5740318153850071,
0.5720771874069475,
0.5702708253129991,
0.5686179383618322,
0.5671224926198296,
0.5657871767372945,
0.5646133994249692,
0.5636013189232278,
0.5627499033198606,
0.5620570192031843,
0.5615195449262479,
0.5611335037804683,
0.5608942116859638,
0.5607964336284306,
0.5608345430098026,
0.5610026783099032,
0.5612948919379684,
0.5617052868328534,
0.5622281371892376,
0.5628579905843508,
0.5635897497001595,
0.564418732731949,
0.5653407124077975,
0.5663519342866966,
0.5674491156377832,
0.5686294267194679,
0.5698904566723119,
0.571230166515748,
0.5726468319025956,
0.5741389783459787,
0.5757053116018216,
0.5773446457788762,
0.5790558315703114,
0.5808376867696775,
0.5826889309630069,
0.5846081259910606,
0.5865936234637592,
0.5886435202941925,
0.590755622912447,
0.5929274205285471,
0.5951560675459422,
0.5974383749873436,
0.5997708105866117
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.285971 (SEM: 0)
x1: 0.520121
x2: 0.56451
x3: 0.463311
x4: 0.854645
x5: 0.442079
x6: 0.24786",
"Arm 10_0
hartmann6: -0.0138907 (SEM: 0)
x1: 0.654027
x2: 0.53009
x3: 0.280559
x4: 0.767185
x5: 0.633093
x6: 0.857299",
"Arm 11_0
hartmann6: -0.00276232 (SEM: 0)
x1: 0.988632
x2: 0.414808
x3: 0.793026
x4: 0.861748
x5: 0.38466
x6: 0.225989",
"Arm 12_0
hartmann6: -1.49337 (SEM: 0)
x1: 0.32919
x2: 0.0609424
x3: 0.15992
x4: 0.517931
x5: 0.262061
x6: 0.727396",
"Arm 13_0
hartmann6: -1.55357 (SEM: 0)
x1: 0.30418
x2: 0.065447
x3: 0.160912
x4: 0.448855
x5: 0.209716
x6: 0.803778",
"Arm 14_0
hartmann6: -1.49314 (SEM: 0)
x1: 0.25439
x2: 0.135706
x3: 0.103883
x4: 0.45936
x5: 0.183895
x6: 0.747375",
"Arm 15_0
hartmann6: -0.748745 (SEM: 0)
x1: 0.281821
x2: 0.0307016
x3: 0.116187
x4: 0.54834
x5: 0.184394
x6: 0.865703",
"Arm 16_0
hartmann6: -1.97975 (SEM: 0)
x1: 0.32857
x2: 0.0703583
x3: 0.188458
x4: 0.424926
x5: 0.238912
x6: 0.75985",
"Arm 17_0
hartmann6: -2.38859 (SEM: 0)
x1: 0.350501
x2: 0.0752834
x3: 0.22081
x4: 0.380157
x5: 0.25911
x6: 0.72933",
"Arm 18_0
hartmann6: -2.72967 (SEM: 0)
x1: 0.362513
x2: 0.0718014
x3: 0.246187
x4: 0.318689
x5: 0.276292
x6: 0.676909",
"Arm 19_0
hartmann6: -2.69748 (SEM: 0)
x1: 0.346962
x2: 0.0539948
x3: 0.229261
x4: 0.258723
x5: 0.274662
x6: 0.63558",
"Arm 1_0
hartmann6: -0.000504945 (SEM: 0)
x1: 0.981024
x2: 0.990254
x3: 0.322903
x4: 0.977798
x5: 0.432948
x6: 0.393665",
"Arm 20_0
hartmann6: -2.801 (SEM: 0)
x1: 0.356877
x2: 0.0728134
x3: 0.318401
x4: 0.297039
x5: 0.261627
x6: 0.637245",
"Arm 21_0
hartmann6: -2.43046 (SEM: 0)
x1: 0.433172
x2: 0.0619654
x3: 0.292759
x4: 0.29454
x5: 0.240672
x6: 0.624907",
"Arm 22_0
hartmann6: -3.03311 (SEM: 0)
x1: 0.323668
x2: 0.107886
x3: 0.324027
x4: 0.292964
x5: 0.31108
x6: 0.653166",
"Arm 23_0
hartmann6: -3.11532 (SEM: 0)
x1: 0.260923
x2: 0.108402
x3: 0.347032
x4: 0.288039
x5: 0.338514
x6: 0.654144",
"Arm 24_0
hartmann6: -3.1649 (SEM: 0)
x1: 0.233778
x2: 0.17192
x3: 0.348594
x4: 0.261123
x5: 0.316666
x6: 0.682689",
"Arm 25_0
hartmann6: -3.03899 (SEM: 0)
x1: 0.255449
x2: 0.102892
x3: 0.377802
x4: 0.236611
x5: 0.328763
x6: 0.719058",
"Arm 26_0
hartmann6: -3.17992 (SEM: 0)
x1: 0.225291
x2: 0.205351
x3: 0.379593
x4: 0.260913
x5: 0.320843
x6: 0.637262",
"Arm 27_0
hartmann6: -3.26105 (SEM: 0)
x1: 0.200771
x2: 0.184147
x3: 0.40611
x4: 0.290496
x5: 0.306636
x6: 0.656344",
"Arm 28_0
hartmann6: -3.19915 (SEM: 0)
x1: 0.121394
x2: 0.143877
x3: 0.428325
x4: 0.288635
x5: 0.29985
x6: 0.641089",
"Arm 2_0
hartmann6: -0.00875763 (SEM: 0)
x1: 0.972735
x2: 0.269433
x3: 0.821132
x4: 0.467754
x5: 0.0160413
x6: 0.152753",
"Arm 3_0
hartmann6: -0.152172 (SEM: 0)
x1: 0.741795
x2: 0.436468
x3: 0.471613
x4: 0.662252
x5: 0.142551
x6: 0.542754",
"Arm 4_0
hartmann6: -0.00742292 (SEM: 0)
x1: 0.97486
x2: 0.716346
x3: 0.160395
x4: 0.329067
x5: 0.734143
x6: 0.629946",
"Arm 5_0
hartmann6: -0.178936 (SEM: 0)
x1: 0.0106245
x2: 0.276293
x3: 0.79798
x4: 0.538783
x5: 0.706059
x6: 0.60548",
"Arm 6_0
hartmann6: -0.0836622 (SEM: 0)
x1: 0.482116
x2: 0.0976002
x3: 0.796983
x4: 0.22529
x5: 0.997678
x6: 0.671225",
"Arm 7_0
hartmann6: -0.00027371 (SEM: 0)
x1: 0.934072
x2: 0.25213
x3: 0.0745047
x4: 0.936178
x5: 0.925068
x6: 0.0719297",
"Arm 8_0
hartmann6: -1.34762 (SEM: 0)
x1: 0.381106
x2: 0.116609
x3: 0.195239
x4: 0.547182
x5: 0.307989
x6: 0.725849",
"Arm 9_0
hartmann6: -0.533614 (SEM: 0)
x1: 0.700815
x2: 0.612732
x3: 0.759378
x4: 0.0453937
x5: 0.0112251
x6: 0.839867"
],
"type": "scatter",
"x": [
0.5201213955879211,
0.6540268240496516,
0.9886318789795041,
0.3291900736272408,
0.30418000348225377,
0.25439019782073036,
0.2818212740543817,
0.32857009669039855,
0.3505010558669389,
0.36251331992355423,
0.3469618485177505,
0.9810235192999244,
0.3568765719857234,
0.43317224186739955,
0.32366805012104716,
0.2609234447336215,
0.23377758869029028,
0.25544851248149025,
0.22529131087597012,
0.20077079317566962,
0.12139364084394769,
0.9727348070591688,
0.7417948422953486,
0.9748596828430891,
0.010624509304761887,
0.48211614042520523,
0.9340720316395164,
0.38110622111707926,
0.7008149353787303
],
"xaxis": "x",
"y": [
0.5645101070404053,
0.5300895357504487,
0.41480783093720675,
0.06094240928307713,
0.06544701918154586,
0.13570609934795055,
0.030701642392336297,
0.07035829835196712,
0.07528339117969156,
0.07180139381645063,
0.053994781172355275,
0.9902544226497412,
0.07281343672398156,
0.06196542841942193,
0.10788594000547123,
0.10840157355223352,
0.17191992293839015,
0.10289181816992808,
0.2053510490049847,
0.18414731315311933,
0.14387662163998938,
0.2694327924400568,
0.4364676708355546,
0.7163457497954369,
0.27629290614277124,
0.09760016202926636,
0.2521300548687577,
0.11660931445658207,
0.6127321626991034
],
"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.285971 (SEM: 0)
x1: 0.520121
x2: 0.56451
x3: 0.463311
x4: 0.854645
x5: 0.442079
x6: 0.24786",
"Arm 10_0
hartmann6: -0.0138907 (SEM: 0)
x1: 0.654027
x2: 0.53009
x3: 0.280559
x4: 0.767185
x5: 0.633093
x6: 0.857299",
"Arm 11_0
hartmann6: -0.00276232 (SEM: 0)
x1: 0.988632
x2: 0.414808
x3: 0.793026
x4: 0.861748
x5: 0.38466
x6: 0.225989",
"Arm 12_0
hartmann6: -1.49337 (SEM: 0)
x1: 0.32919
x2: 0.0609424
x3: 0.15992
x4: 0.517931
x5: 0.262061
x6: 0.727396",
"Arm 13_0
hartmann6: -1.55357 (SEM: 0)
x1: 0.30418
x2: 0.065447
x3: 0.160912
x4: 0.448855
x5: 0.209716
x6: 0.803778",
"Arm 14_0
hartmann6: -1.49314 (SEM: 0)
x1: 0.25439
x2: 0.135706
x3: 0.103883
x4: 0.45936
x5: 0.183895
x6: 0.747375",
"Arm 15_0
hartmann6: -0.748745 (SEM: 0)
x1: 0.281821
x2: 0.0307016
x3: 0.116187
x4: 0.54834
x5: 0.184394
x6: 0.865703",
"Arm 16_0
hartmann6: -1.97975 (SEM: 0)
x1: 0.32857
x2: 0.0703583
x3: 0.188458
x4: 0.424926
x5: 0.238912
x6: 0.75985",
"Arm 17_0
hartmann6: -2.38859 (SEM: 0)
x1: 0.350501
x2: 0.0752834
x3: 0.22081
x4: 0.380157
x5: 0.25911
x6: 0.72933",
"Arm 18_0
hartmann6: -2.72967 (SEM: 0)
x1: 0.362513
x2: 0.0718014
x3: 0.246187
x4: 0.318689
x5: 0.276292
x6: 0.676909",
"Arm 19_0
hartmann6: -2.69748 (SEM: 0)
x1: 0.346962
x2: 0.0539948
x3: 0.229261
x4: 0.258723
x5: 0.274662
x6: 0.63558",
"Arm 1_0
hartmann6: -0.000504945 (SEM: 0)
x1: 0.981024
x2: 0.990254
x3: 0.322903
x4: 0.977798
x5: 0.432948
x6: 0.393665",
"Arm 20_0
hartmann6: -2.801 (SEM: 0)
x1: 0.356877
x2: 0.0728134
x3: 0.318401
x4: 0.297039
x5: 0.261627
x6: 0.637245",
"Arm 21_0
hartmann6: -2.43046 (SEM: 0)
x1: 0.433172
x2: 0.0619654
x3: 0.292759
x4: 0.29454
x5: 0.240672
x6: 0.624907",
"Arm 22_0
hartmann6: -3.03311 (SEM: 0)
x1: 0.323668
x2: 0.107886
x3: 0.324027
x4: 0.292964
x5: 0.31108
x6: 0.653166",
"Arm 23_0
hartmann6: -3.11532 (SEM: 0)
x1: 0.260923
x2: 0.108402
x3: 0.347032
x4: 0.288039
x5: 0.338514
x6: 0.654144",
"Arm 24_0
hartmann6: -3.1649 (SEM: 0)
x1: 0.233778
x2: 0.17192
x3: 0.348594
x4: 0.261123
x5: 0.316666
x6: 0.682689",
"Arm 25_0
hartmann6: -3.03899 (SEM: 0)
x1: 0.255449
x2: 0.102892
x3: 0.377802
x4: 0.236611
x5: 0.328763
x6: 0.719058",
"Arm 26_0
hartmann6: -3.17992 (SEM: 0)
x1: 0.225291
x2: 0.205351
x3: 0.379593
x4: 0.260913
x5: 0.320843
x6: 0.637262",
"Arm 27_0
hartmann6: -3.26105 (SEM: 0)
x1: 0.200771
x2: 0.184147
x3: 0.40611
x4: 0.290496
x5: 0.306636
x6: 0.656344",
"Arm 28_0
hartmann6: -3.19915 (SEM: 0)
x1: 0.121394
x2: 0.143877
x3: 0.428325
x4: 0.288635
x5: 0.29985
x6: 0.641089",
"Arm 2_0
hartmann6: -0.00875763 (SEM: 0)
x1: 0.972735
x2: 0.269433
x3: 0.821132
x4: 0.467754
x5: 0.0160413
x6: 0.152753",
"Arm 3_0
hartmann6: -0.152172 (SEM: 0)
x1: 0.741795
x2: 0.436468
x3: 0.471613
x4: 0.662252
x5: 0.142551
x6: 0.542754",
"Arm 4_0
hartmann6: -0.00742292 (SEM: 0)
x1: 0.97486
x2: 0.716346
x3: 0.160395
x4: 0.329067
x5: 0.734143
x6: 0.629946",
"Arm 5_0
hartmann6: -0.178936 (SEM: 0)
x1: 0.0106245
x2: 0.276293
x3: 0.79798
x4: 0.538783
x5: 0.706059
x6: 0.60548",
"Arm 6_0
hartmann6: -0.0836622 (SEM: 0)
x1: 0.482116
x2: 0.0976002
x3: 0.796983
x4: 0.22529
x5: 0.997678
x6: 0.671225",
"Arm 7_0
hartmann6: -0.00027371 (SEM: 0)
x1: 0.934072
x2: 0.25213
x3: 0.0745047
x4: 0.936178
x5: 0.925068
x6: 0.0719297",
"Arm 8_0
hartmann6: -1.34762 (SEM: 0)
x1: 0.381106
x2: 0.116609
x3: 0.195239
x4: 0.547182
x5: 0.307989
x6: 0.725849",
"Arm 9_0
hartmann6: -0.533614 (SEM: 0)
x1: 0.700815
x2: 0.612732
x3: 0.759378
x4: 0.0453937
x5: 0.0112251
x6: 0.839867"
],
"type": "scatter",
"x": [
0.5201213955879211,
0.6540268240496516,
0.9886318789795041,
0.3291900736272408,
0.30418000348225377,
0.25439019782073036,
0.2818212740543817,
0.32857009669039855,
0.3505010558669389,
0.36251331992355423,
0.3469618485177505,
0.9810235192999244,
0.3568765719857234,
0.43317224186739955,
0.32366805012104716,
0.2609234447336215,
0.23377758869029028,
0.25544851248149025,
0.22529131087597012,
0.20077079317566962,
0.12139364084394769,
0.9727348070591688,
0.7417948422953486,
0.9748596828430891,
0.010624509304761887,
0.48211614042520523,
0.9340720316395164,
0.38110622111707926,
0.7008149353787303
],
"xaxis": "x2",
"y": [
0.5645101070404053,
0.5300895357504487,
0.41480783093720675,
0.06094240928307713,
0.06544701918154586,
0.13570609934795055,
0.030701642392336297,
0.07035829835196712,
0.07528339117969156,
0.07180139381645063,
0.053994781172355275,
0.9902544226497412,
0.07281343672398156,
0.06196542841942193,
0.10788594000547123,
0.10840157355223352,
0.17191992293839015,
0.10289181816992808,
0.2053510490049847,
0.18414731315311933,
0.14387662163998938,
0.2694327924400568,
0.4364676708355546,
0.7163457497954369,
0.27629290614277124,
0.09760016202926636,
0.2521300548687577,
0.11660931445658207,
0.6127321626991034
],
"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
}
}
},
"title": {
"text": "hartmann6"
},
"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": [
"