{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79"
},
"source": [
"# Visualizations\n",
"\n",
"This tutorial illustrates the core visualization utilities available in Ax."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2023-08-11T15:49:12.547363Z",
"iopub.status.busy": "2023-08-11T15:49:12.547077Z",
"iopub.status.idle": "2023-08-11T15:49:40.470870Z",
"shell.execute_reply": "2023-08-11T15:49:40.469918Z"
},
"executionStartTime": 1627652821316,
"executionStopTime": 1627652822868,
"hidden_ranges": [],
"originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7",
"requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114"
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:39] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"from ax.service.ax_client import AxClient, ObjectiveProperties\n",
"\n",
"from ax.modelbridge.cross_validation import cross_validate\n",
"from ax.plot.contour import interact_contour\n",
"from ax.plot.diagnostic import interact_cross_validation\n",
"from ax.plot.scatter import (\n",
" interact_fitted,\n",
" plot_objective_vs_constraints,\n",
" tile_fitted,\n",
")\n",
"from ax.plot.slice import plot_slice\n",
"from ax.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import render, init_notebook_plotting\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69",
"showInput": true
},
"source": [
"## 1. Create experiment and run optimization\n",
"\n",
"The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Service API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948"
},
"source": [
"#### 1a. Define search space and evaluation function"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2023-08-11T15:49:40.602558Z",
"iopub.status.busy": "2023-08-11T15:49:40.602267Z",
"iopub.status.idle": "2023-08-11T15:49:40.606808Z",
"shell.execute_reply": "2023-08-11T15:49:40.606240Z"
},
"executionStartTime": 1627652824829,
"executionStopTime": 1627652824877,
"hidden_ranges": [],
"originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0",
"requestMsgId": "7495e7e2-1025-4292-b3aa-e953739cef3e"
},
"outputs": [],
"source": [
"noise_sd = 0.1\n",
"param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n",
"\n",
"\n",
"def noisy_hartmann_evaluation_function(parameterization):\n",
" x = np.array([parameterization.get(p_name) for p_name in param_names])\n",
" noise1, noise2 = np.random.normal(0, noise_sd, 2)\n",
"\n",
" return {\n",
" \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n",
" \"l2norm\": (np.sqrt((x**2).sum()) + noise2, noise_sd),\n",
" }"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e"
},
"source": [
"#### 1b. Create Experiment"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2023-08-11T15:49:40.609703Z",
"iopub.status.busy": "2023-08-11T15:49:40.609460Z",
"iopub.status.idle": "2023-08-11T15:49:40.620448Z",
"shell.execute_reply": "2023-08-11T15:49:40.619742Z"
},
"executionStartTime": 1627654956712,
"executionStopTime": 1627654956823,
"hidden_ranges": [],
"originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c",
"requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x1. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] 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=[]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.modelbridge.dispatch_utils: Using Models.GPEI since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] 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 08-11 11:49:40] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
}
],
"source": [
"ax_client = AxClient()\n",
"ax_client.create_experiment(\n",
" name=\"test_visualizations\",\n",
" parameters=[\n",
" {\n",
" \"name\": p_name,\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" }\n",
" for p_name in param_names\n",
" ],\n",
" objectives={\"hartmann6\": ObjectiveProperties(minimize=True)},\n",
" outcome_constraints=[\"l2norm <= 1.25\"],\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf",
"showInput": false
},
"source": [
"#### 1c. Run the optimization and fit a GP on all data"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2023-08-11T15:49:40.626214Z",
"iopub.status.busy": "2023-08-11T15:49:40.625969Z",
"iopub.status.idle": "2023-08-11T15:51:49.754722Z",
"shell.execute_reply": "2023-08-11T15:51:49.753929Z"
},
"executionStartTime": 1627654642967,
"executionStopTime": 1627654862819,
"hidden_ranges": [],
"originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1",
"requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.959061, 'x2': 0.421097, 'x3': 0.693045, 'x4': 0.394199, 'x5': 0.937822, 'x6': 0.651645}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (0.040888, 0.1), 'l2norm': (1.849496, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.442236, 'x2': 0.450873, 'x3': 0.061154, 'x4': 0.802372, 'x5': 0.223707, 'x6': 0.536141}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.055425, 0.1), 'l2norm': (1.12866, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.921714, 'x2': 0.006742, 'x3': 0.18159, 'x4': 0.41122, 'x5': 0.030623, 'x6': 0.600647}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.241457, 0.1), 'l2norm': (1.189034, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.404707, 'x2': 0.802856, 'x3': 0.487908, 'x4': 0.594826, 'x5': 0.447605, 'x6': 0.076676}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-2.941819, 0.1), 'l2norm': (1.283768, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.295047, 'x2': 0.488927, 'x3': 0.894945, 'x4': 0.382528, 'x5': 0.480947, 'x6': 0.079408}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.453999, 0.1), 'l2norm': (1.266909, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.3332, 'x2': 0.885637, 'x3': 0.073471, 'x4': 0.077522, 'x5': 0.867887, 'x6': 0.965997}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (0.014857, 0.1), 'l2norm': (1.672911, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.695888, 'x2': 0.819337, 'x3': 0.838895, 'x4': 0.155663, 'x5': 0.83838, 'x6': 0.954818}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (0.082659, 0.1), 'l2norm': (1.96107, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.258997, 'x2': 0.964524, 'x3': 0.560169, 'x4': 0.060604, 'x5': 0.905849, 'x6': 0.262307}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.292789, 0.1), 'l2norm': (1.485219, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.539608, 'x2': 0.013607, 'x3': 0.39022, 'x4': 0.540406, 'x5': 0.894388, 'x6': 0.614211}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-0.007765, 0.1), 'l2norm': (1.32753, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.15475, 'x2': 0.417481, 'x3': 0.271358, 'x4': 0.50263, 'x5': 0.94393, 'x6': 0.379732}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.376055, 0.1), 'l2norm': (1.170875, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.531038, 'x2': 0.995568, 'x3': 0.926524, 'x4': 0.966679, 'x5': 0.272159, 'x6': 0.307865}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-0.311272, 0.1), 'l2norm': (1.893716, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.86786, 'x2': 0.608454, 'x3': 0.655593, 'x4': 0.127577, 'x5': 0.611836, 'x6': 0.9546}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:40] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.098855, 0.1), 'l2norm': (1.673908, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:50] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.319713, 'x2': 0.677944, 'x3': 0.445753, 'x4': 0.553277, 'x5': 0.490442, 'x6': 0.112938}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:49:50] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-1.7292, 0.1), 'l2norm': (1.085585, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:50:13] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.331355, 'x2': 0.778461, 'x3': 0.43235, 'x4': 0.543415, 'x5': 0.480897, 'x6': 0.091974}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:50:13] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-2.481291, 0.1), 'l2norm': (1.288739, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:50:34] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.441385, 'x2': 0.749986, 'x3': 0.411011, 'x4': 0.626722, 'x5': 0.450572, 'x6': 0.085772}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:50:34] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-2.497182, 0.1), 'l2norm': (1.267041, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:50:55] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.323854, 'x2': 0.766789, 'x3': 0.525732, 'x4': 0.613687, 'x5': 0.439902, 'x6': 0.068391}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:50:55] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-2.528026, 0.1), 'l2norm': (1.048959, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:14] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.354954, 'x2': 0.82938, 'x3': 0.486524, 'x4': 0.612547, 'x5': 0.445268, 'x6': 0.020166}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:14] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-2.897653, 0.1), 'l2norm': (1.033244, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:24] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.399697, 'x2': 0.85098, 'x3': 0.479693, 'x4': 0.593301, 'x5': 0.410735, 'x6': 0.040845}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:24] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-3.136699, 0.1), 'l2norm': (1.140757, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:36] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.44363, 'x2': 0.88217, 'x3': 0.520244, 'x4': 0.578702, 'x5': 0.449428, 'x6': 0.02675}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:36] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-2.861125, 0.1), 'l2norm': (1.419748, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:49] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.376834, 'x2': 0.864701, 'x3': 0.449668, 'x4': 0.6294, 'x5': 0.38359, 'x6': 0.074089}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:49] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-2.967483, 0.1), 'l2norm': (1.262153, 0.1)}.\n"
]
}
],
"source": [
"for i in range(20):\n",
" parameters, trial_index = ax_client.get_next_trial()\n",
" # Local evaluation here can be replaced with deployment to external system.\n",
" ax_client.complete_trial(\n",
" trial_index=trial_index, raw_data=noisy_hartmann_evaluation_function(parameters)\n",
" )"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df"
},
"source": [
"## 2. Contour plots\n",
"\n",
"The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n",
"\n",
"The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2023-08-11T15:51:49.758619Z",
"iopub.status.busy": "2023-08-11T15:51:49.758339Z",
"iopub.status.idle": "2023-08-11T15:51:51.732145Z",
"shell.execute_reply": "2023-08-11T15:51:51.731263Z"
},
"executionStartTime": 1627654870209,
"executionStopTime": 1627654871972,
"hidden_ranges": [],
"originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f",
"requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-11 11:51:49] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.\n"
]
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-0.27644535422442407,
-0.27252647944562625,
-0.2684877162257685,
-0.2643377630445146,
-0.26008695570570506,
-0.25574733476960276,
-0.2513326956755242,
-0.24685861766387263,
-0.24234246740237342,
-0.23780337311674193,
-0.2332621650580936,
-0.2287412783497227,
-0.22426461468878556,
-0.21985736007771006,
-0.21554575676426946,
-0.2113568289049772,
-0.20731806314106116,
-0.20345704726908398,
-0.19980107244226897,
-0.1963767067541533,
-0.19320935048834365,
-0.19032278558020654,
-0.18773873371085492,
-0.18547643871257136,
-0.18355228939616808,
-0.18197949835185945,
-0.18076785064386636,
-0.1799235336387115,
-0.1794490556190722,
-0.17934325659151718,
-0.17960141013595843,
-0.18021541065058422,
-0.1811740362968257,
-0.1824632746685797,
-0.18406669592896452,
-0.18596585699039436,
-0.1881407202541705,
-0.19057007136320836,
-0.1932319221666492,
-0.19610388741354656,
-0.1991635263376932,
-0.20238864303547377,
-0.20575754217677722,
-0.20924923897490166,
-0.2128436243736368,
-0.2165215880334459,
-0.22026510289893175,
-0.22405727592294178,
-0.22788236994761657,
-0.23172580185230696
],
[
-0.27558645720236385,
-0.2716028437129838,
-0.26749723999708885,
-0.26327853000725954,
-0.2589572572979656,
-0.2545456904553711,
-0.25005787066726315,
-0.24550963757792654,
-0.24091862939198228,
-0.23630425310963887,
-0.23168762082907335,
-0.22709144828006222,
-0.2225399121995908,
-0.21805846386776095,
-0.21367359712862277,
-0.20941257055201257,
-0.2053030850564308,
-0.20137292028920262,
-0.197649535292449,
-0.19415964137307995,
-0.19092875749836713,
-0.1879807607700359,
-0.18533744637290295,
-0.1830181126215511,
-0.1810391871294621,
-0.17941390953730818,
-0.1781520845793041,
-0.17725991656309636,
-0.1767399327318253,
-0.1765909987204186,
-0.1768084247517936,
-0.17738415672716257,
-0.17830704232737093,
-0.17956315898360886,
-0.1811361883259539,
-0.18300782058997167,
-0.1851581724475031,
-0.18756620271445867,
-0.1902101121838451,
-0.19306771619911878,
-0.19611678127178211,
-0.19933531982409702,
-0.2027018398044933,
-0.2061955483278477,
-0.2097965105332784,
-0.2134857664734735,
-0.21724541003735998,
-0.22105863467949805,
-0.2249097511251218,
-0.2287841822939174
],
[
-0.275032230738399,
-0.2710021658601831,
-0.26684883057427544,
-0.26258128810363,
-0.25821027384454465,
-0.2537482570984886,
-0.2492094843196997,
-0.24461000011039968,
-0.23996764205314658,
-0.23530200542648638,
-0.23063437393891872,
-0.22598761287490876,
-0.22138602151562836,
-0.21685514241635329,
-0.21242152612732257,
-0.2081124512597885,
-0.20395560143006775,
-0.1999787025410218,
-0.1962091260271932,
-0.19267346600037483,
-0.18939710054662662,
-0.18640374956334793,
-0.18371504327614452,
-0.18135011672001422,
-0.17932524580440634,
-0.17765353995167432,
-0.17634470462678142,
-0.17540488438958235,
-0.17483659354065706,
-0.17463873724693424,
-0.17480672155691623,
-0.17533264632315881,
-0.17620557111195434,
-0.1774118410132861,
-0.1789354570922017,
-0.18075847515536148,
-0.1828614165355349,
-0.18522367561027586,
-0.18782391057965686,
-0.19064040639773538,
-0.19365140143696125,
-0.19683537223246939,
-0.20017127330728235,
-0.20363873146853773,
-0.20721819598699787,
-0.21089104767184785,
-0.21463967101526837,
-0.2184474943235486,
-0.22229900311387463,
-0.22617973209357678
],
[
-0.27480606558791154,
-0.27074876027027317,
-0.2665677313338355,
-0.26227221378660415,
-0.25787311775746635,
-0.25338308483092475,
-0.24881652519112885,
-0.24418963194540722,
-0.2395203689092945,
-0.23482842814569582,
-0.23013515369006665,
-0.2254634281950001,
-0.22083751972749865,
-0.21628288668615625,
-0.21182593980472808,
-0.20749376149400378,
-0.20331378434913527,
-0.19931343249303612,
-0.19551973148384194,
-0.19195889469285388,
-0.18865589622520273,
-0.18563404243764392,
-0.18291455570852566,
-0.18051618512768508,
-0.17845485900942082,
-0.1767433934466247,
-0.17539126945092898,
-0.17440448859228552,
-0.17378551359970307,
-0.17353329635255643,
-0.17364339139656804,
-0.1741081489180234,
-0.1749169773556576,
-0.1760566628224658,
-0.17751173046229396,
-0.17926483188265263,
-0.18129714287792953,
-0.18358875667894736,
-0.1861190597541773,
-0.1888670795196432,
-0.1918117959505392,
-0.1949324118030027,
-0.1982085787569765,
-0.2016205791318444,
-0.20514946480408147,
-0.2087771565146257,
-0.21248650787685142,
-0.2162613390997269,
-0.2200864457642031,
-0.22394758798884706
],
[
-0.2749318316704731,
-0.2708673163730678,
-0.26667943903593716,
-0.2623775968020279,
-0.2579728555097166,
-0.2534779989739754,
-0.24890755828406907,
-0.24427781767695356,
-0.23960679352736192,
-0.23491418307610046,
-0.23022127972238737,
-0.22555085206247738,
-0.2209269843955075,
-0.21637487716825365,
-0.2119206068187951,
-0.2075908457210185,
-0.20341254442765277,
-0.19941258013627594,
-0.19561737720778116,
-0.1920525075624322,
-0.1887422807403334,
-0.18570933518308896,
-0.18297424369041781,
-0.18055514684224905,
-0.1784674282831149,
-0.17672344501535875,
-0.17533232418465672,
-0.17429983529963677,
-0.17362834353963286,
-0.1733168459960981,
-0.1733610886597019,
-0.17375375803822624,
-0.17448473779543705,
-0.17554141801593826,
-0.17690904282269382,
-0.17857108119914455,
-0.1805096059895348,
-0.18270566706957103,
-0.18513964642511693,
-0.1877915851374461,
-0.19064147482419957,
-0.1936695087112541,
-0.19685629002717397,
-0.2001829976740891,
-0.20363151103673538,
-0.20718449728850108,
-0.21082546562179683,
-0.2145387934836176,
-0.21830973017324784,
-0.22212438311114835
],
[
-0.2754346041333635,
-0.2713836875690717,
-0.2672105598647446,
-0.2629247677327349,
-0.25853751116571166,
-0.25406168408576413,
-0.24951189412930963,
-0.2449044583651958,
-0.24025737181108098,
-0.235590245779283,
-0.23092421336691737,
-0.22628179982769647,
-0.22168675614702593,
-0.21716385491022616,
-0.21273864852429092,
-0.20843719103675973,
-0.20428572618729612,
-0.20031034590452423,
-0.19653662517245807,
-0.1929892409567786,
-0.18969158458868307,
-0.18666537851199072,
-0.18393030944738809,
-0.18150369065222605,
-0.1794001659083011,
-0.17763146704758737,
-0.1762062351844138,
-0.1751299134001656,
-0.17440471554886194,
-0.17402967232603483,
-0.17400075203797072,
-0.17431104992309598,
-0.17495103670515344,
-0.1759088545489067,
-0.17717064692092266,
-0.17872090811786423,
-0.18054283840613516,
-0.18261869172897072,
-0.1849301046246805,
-0.1874583971674375,
-0.19018483918031182,
-0.19309087747812015,
-0.19615832229970898,
-0.1993694932465786,
-0.20270732685957937,
-0.20615544938102426,
-0.20969821924634224,
-0.21332074443860982,
-0.21700888005618668,
-0.22074921134006653
],
[
-0.2763415343328215,
-0.27232584066807364,
-0.2681898428281243,
-0.2639432210439685,
-0.25959728489043765,
-0.25516500382313456,
-0.2506610158815925,
-0.24610161164165578,
-0.2415046906694066,
-0.23688968799602406,
-0.2322774685095116,
-0.227690187658231,
-0.2231511174963955,
-0.2186844378863525,
-0.21431499361691075,
-0.21006801930474106,
-0.2059688352093625,
-0.20204251848700772,
-0.19831355588870392,
-0.19480548540164144,
-0.19154053574249685,
-0.18853927381574054,
-0.18582027111317134,
-0.18339980041559234,
-0.18129157394300943,
-0.17950653320189547,
-0.1780526991688398,
-0.17693508917090295,
-0.17615570399116054,
-0.17571358552952177,
-0.17560494202224053,
-0.175823334632224,
-0.17635991642321414,
-0.1772037125430832,
-0.17834192902015045,
-0.17976027699770647,
-0.18144329948932114,
-0.18337468874945206,
-0.18553758398034192,
-0.1879148411601388,
-0.19048926908710917,
-0.19324382810490603,
-0.1961617902402064,
-0.19922686151472513,
-0.20242326889426876,
-0.20573581565171895,
-0.20914990982743875,
-0.21265157097861775,
-0.2162274205514495,
-0.21986466103702373
],
[
-0.2776828405784936,
-0.2737249374623708,
-0.26964935844490745,
-0.26546589735262527,
-0.261185945392719,
-0.25682251019876323,
-0.252390211982115,
-0.2479052542030472,
-0.24338536646233555,
-0.23884971769722552,
-0.23431879824830348,
-0.22981426994866916,
-0.22535878407709653,
-0.22097576781552153,
-0.21668918075934596,
-0.2125232440434922,
-0.2085021457566406,
-0.20464972749697496,
-0.20098915813490004,
-0.1975426020316129,
-0.1943308900367655,
-0.19137320245549438,
-0.18868677372573872,
-0.1862866286723468,
-0.18418535981161122,
-0.18239295420711588,
-0.18091667681094137,
-0.17976101510771936,
-0.17892768731944408,
-0.1784157135900435,
-0.17822154665644918,
-0.17833925575303744,
-0.17876075510782075,
-0.17947606655754322,
-0.18047360466627138,
-0.1817404723417142,
-0.18326275529763025,
-0.18502580473627828,
-0.1870144991972189,
-0.18921347847936043,
-0.19160734471915508,
-0.19418082792984137,
-0.19691891542308393,
-0.19980694642170105,
-0.202830674740185,
-0.2059763036031984,
-0.20923049746909395,
-0.2125803761330336,
-0.21601349643356538,
-0.21951782662666586
],
[
-0.27949288707796816,
-0.27561651309596835,
-0.2716257830754686,
-0.2675305803878183,
-0.2633423462478295,
-0.2590740859738163,
-0.2547403511967632,
-0.25035719580757665,
-0.24594210385140503,
-0.2415138880927411,
-0.23709255857664635,
-0.23269916119110012,
-0.22835558698399405,
-0.22408435379701053,
-0.2199083626388375,
-0.21585063212182332,
-0.21193401521534527,
-0.20818090350452167,
-0.20461292505253847,
-0.20125064280308658,
-0.1981132611662031,
-0.19521834893321754,
-0.1925815868842624,
-0.19021654830597945,
-0.18813452006188247,
-0.18634437081376087,
-0.18485247147819717,
-0.1836626710633984,
-0.1827763287631654,
-0.18219240072712561,
-0.18190757745223785,
-0.18191646543752116,
-0.18221180479266308,
-0.1827847130439857,
-0.18362494454489342,
-0.18472115472221073,
-0.18606115886450292,
-0.18763217621773798,
-0.18942105168692347,
-0.19141444930892604,
-0.19359901370715438,
-0.1959614978101698,
-0.19848885707515573,
-0.20116831218887732,
-0.20398738363831637,
-0.20693390259736033,
-0.20999600324280054,
-0.21316210189870155,
-0.21642086834311747,
-0.21976119424377927
],
[
-0.2818113144147648,
-0.27804171061410987,
-0.27416174379944724,
-0.270181358483082,
-0.26611201024454556,
-0.2619666579601332,
-0.2577597307194418,
-0.2535070676361373,
-0.24922582933044013,
-0.24493438052308258,
-0.24065214391469247,
-0.23639942630787902,
-0.2321972187386634,
-0.22806697319761737,
-0.2240303593200451,
-0.22010900519214582,
-0.2163242271408926,
-0.21269675403255328,
-0.20924645217732307,
-0.20599205739712423,
-0.20295092112339497,
-0.20013877750632947,
-0.1975695383865974,
-0.19525512255622912,
-0.19320532497840137,
-0.1914277305271297,
-0.18992767535720878,
-0.1887082572671368,
-0.18777039445551957,
-0.18711293001044815,
-0.18673277745144512,
-0.18662510081468997,
-0.18678352127722908,
-0.18720034127419005,
-0.1878667765564317,
-0.1887731866999358,
-0.1899092951984982,
-0.19126439138758,
-0.19282750796140857,
-0.19458756963326107,
-0.19653351041324085,
-0.19865435890187977,
-0.20093929279618394,
-0.20337766537211366,
-0.2059590079649316,
-0.20867301336614885,
-0.21150950557209713,
-0.2144584014608597,
-0.21750966977161834,
-0.22065329226273178
],
[
-0.2846841806445298,
-0.2810485269880705,
-0.27730717487079637,
-0.2734700968448981,
-0.26954872265324525,
-0.2655559161821037,
-0.26150592571816866,
-0.2574143061801175,
-0.2532978127337646,
-0.2491742660273687,
-0.2450623901650424,
-0.24098162543280088,
-0.23695191866444998,
-0.23299349494716914,
-0.22912661508917886,
-0.22537132388161418,
-0.2217471946682339,
-0.21827307608019575,
-0.21496684699178237,
-0.21184518579927347,
-0.20892336000839395,
-0.20621504182093509,
-0.20373215491963004,
-0.20148475694376966,
-0.1994809612133479,
-0.19772690009626426,
-0.19622673103967347,
-0.19498268474537017,
-0.1939951533279427,
-0.19326281464429784,
-0.19278278743119026,
-0.1925508105466247,
-0.19256143858785357,
-0.19280824554035325,
-0.19328402795602861,
-0.19398099948534275,
-0.19489096937806072,
-0.196005498764378,
-0.19731603004481424,
-0.1988139864437588,
-0.20049084059689815,
-0.20233815282529055,
-0.20434758138595965,
-0.20651086838520571,
-0.20881980612379392,
-0.21126618936662722,
-0.21384175937470062,
-0.21653814551179573,
-0.21934680987408028,
-0.22225899973860685
],
[
-0.2881650679179424,
-0.28469302212275704,
-0.2811206334861406,
-0.2774578641534857,
-0.27371607234920303,
-0.2699079727422936,
-0.2660475685919359,
-0.2621500548548128,
-0.258231692364441,
-0.2543096542054789,
-0.25040184645138863,
-0.24652670645458885,
-0.2427029828168802,
-0.23894950197238252,
-0.2352849269436631,
-0.23172751425599136,
-0.22829487520131786,
-0.22500374763291253,
-0.22186978425454373,
-0.21890736296196034,
-0.21612942421851822,
-0.21354733971890116,
-0.2111708157295391,
-0.20900783350327545,
-0.20706462806070391,
-0.20534570542708885,
-0.20385389713624025,
-0.20259044949813776,
-0.201555143826884,
-0.20074644260465468,
-0.20016165548993992,
-0.19979711824154112,
-0.19964837709432315,
-0.19971037094482635,
-0.19997760391789698,
-0.20044430149497083,
-0.2011045443657199,
-0.20195237546357026,
-0.20298187718354987,
-0.20418721746152557,
-0.205562665110824,
-0.20710257645819252,
-0.20880135679597445,
-0.2106534013856367,
-0.21265302164399458,
-0.21479436267619934,
-0.21707131847326488,
-0.21947745087684678,
-0.22200591786420787,
-0.22464941587602738
],
[
-0.2923161044371134,
-0.28904043772347565,
-0.2856705185810433,
-0.2822162537880947,
-0.27868887737521464,
-0.27510089296228735,
-0.27146598618204554,
-0.2677989069390504,
-0.2641153223957994,
-0.26043164279938635,
-0.25676482349141183,
-0.2531321476017174,
-0.24955099493444577,
-0.24603860334267846,
-0.2426118294012244,
-0.23928691539292335,
-0.23607926951293634,
-0.23300326578173802,
-0.2300720694742837,
-0.2272974929669923,
-0.2246898858295614,
-0.22225806179932928,
-0.2200092640215432,
-0.21794916866182412,
-0.21608192573221874,
-0.21441023474884902,
-0.21293545168432504,
-0.21165772262000182,
-0.21057613857388613,
-0.20968890521645933,
-0.2089935206292668,
-0.2084869539506191,
-0.2081658177251371,
-0.20802652705498048,
-0.20806543925065468,
-0.20827896858896422,
-0.20866367197426816,
-0.20921630271462988,
-0.20993383119633136,
-0.21081343288406496,
-0.21185244569757222,
-0.21304830032508815,
-0.21439842834180456,
-0.21590015403219287,
-0.217550576510518,
-0.21934644905835066,
-0.2212840625399095,
-0.22335913932942286,
-0.22556674342702876,
-0.22790121140944308
],
[
-0.2972088444911458,
-0.29416616621539526,
-0.2910361302257759,
-0.2878285345364944,
-0.28455442698348377,
-0.2812260278975076,
-0.27785662096712127,
-0.2744604126733735,
-0.2710523620650165,
-0.2676479841024846,
-0.26426313123617906,
-0.2609137591955184,
-0.25761568404653445,
-0.25438433833672314,
-0.25123453451840394,
-0.24818024378874592,
-0.24523439800340752,
-0.24240872144313352,
-0.23971359799999392,
-0.23715797788470427,
-0.23474932633276135,
-0.23249361509999444,
-0.2303953558752958,
-0.2284576731736081,
-0.22668241286272417,
-0.22507028126333728,
-0.22362100876870128,
-0.222333531173312,
-0.22120618138769466,
-0.22023688395411756,
-0.21942334477005465,
-0.21876322867582165,
-0.21825431807083062,
-0.21789464648521462,
-0.2176826020378131,
-0.21761699693438263,
-0.2176971005651056,
-0.21792263529821754,
-0.21829373567448385,
-0.21881087331291615,
-0.2194747513630908,
-0.2202861737039905,
-0.22124589521819138,
-0.2223544602982569,
-0.2236120372196586,
-0.22501825611164628,
-0.2265720579677224,
-0.22827156147874827,
-0.23011395348637176,
-0.23209540760576075
],
[
-0.3029249394571256,
-0.30015650015689843,
-0.2973084977197932,
-0.29439055663974,
-0.2914134638432456,
-0.28838906982206336,
-0.28533015581514143,
-0.2822502681334993,
-0.27916352238924247,
-0.27608438212247743,
-0.2730274179951828,
-0.27000705520498436,
-0.2670373179321468,
-0.264131580355105,
-0.26130233397019775,
-0.2585609805889616,
-0.2559176594685797,
-0.2533811156126504,
-0.250958614456416,
-0.24865590604893828,
-0.24647723960621282,
-0.24442542707644965,
-0.2425019522617795,
-0.24070712018673068,
-0.23904023987133693,
-0.23749983250343554,
-0.23608385623004036,
-0.2347899383973967,
-0.2336156060424469,
-0.23255850574332182,
-0.2316166045370066,
-0.23078836447140083,
-0.2300728844409734,
-0.22947000422574293,
-0.2289803670782059,
-0.2286054387459312,
-0.22834748243857272,
-0.2282094909007436,
-0.2281950783837009,
-0.2283083368599047,
-0.22855366223167994,
-0.228935557483538,
-0.22945842065526834,
-0.23012632611560457,
-0.2309428078532465,
-0.23191065335018624,
-0.23303171606059625,
-0.23430675360974185,
-0.23573529759845202,
-0.23731555941833338
],
[
-0.30955651961354724,
-0.3071090792230703,
-0.30459089096757963,
-0.3020113255447944,
-0.29938081686073015,
-0.29671073948482685,
-0.294013249723029,
-0.2913010922073136,
-0.2885873758933488,
-0.2858853254076521,
-0.2832080156366854,
-0.2805680991330106,
-0.2779775371612586,
-0.2754473458760105,
-0.27298736911346566,
-0.2706060885446714,
-0.26831048050009676,
-0.2661059267176994,
-0.2639961837288348,
-0.26198341275788206,
-0.2600682690720233,
-0.25825004687610986,
-0.25652687328287205,
-0.2548959427445906,
-0.2533537817079239,
-0.25189653220036934,
-0.2505202425811901,
-0.24922115376004872,
-0.24799596974350058,
-0.24684210233624826,
-0.24575788111723063,
-0.24474272134808817,
-0.2437972441783428,
-0.24292334532257742,
-0.2421242102447828,
-0.24140427574699952,
-0.24076913968176594,
-0.24022542225110755,
-0.23978058397840818,
-0.2394427069002959,
-0.2392202467774135,
-0.23912176511753103,
-0.23915565049485465,
-0.2393298389939773,
-0.23965154357435792,
-0.24012700172589774,
-0.24076124997259762,
-0.24155793260709113,
-0.24251915055572304,
-0.2436453545555739
],
[
-0.317206190728593,
-0.3151329350711475,
-0.31299891223770404,
-0.3108131377273877,
-0.3085855767237352,
-0.30632699549626585,
-0.30404877364658334,
-0.30176268000821427,
-0.2994806173837563,
-0.29721434372481004,
-0.2949751796354544,
-0.29277371399586416,
-0.29061952085070497,
-0.28852090130922614,
-0.2864846639376608,
-0.284515955941295,
-0.2826181553699776,
-0.28079283175811043,
-0.2790397792224062,
-0.27735712233425247,
-0.27574149132986014,
-0.27418825968814375,
-0.27269183403040465,
-0.27124598386232246,
-0.26984419700718987,
-0.2684800457197891,
-0.26714754840709753,
-0.2658415125446024,
-0.26455784565480744,
-0.2632938229740306,
-0.26204830253418754,
-0.26082188069370693,
-0.2596169835477583,
-0.2584378920355086,
-0.2572907008665284,
-0.2561832135553652,
-0.2551247778443638,
-0.254126067581975,
-0.2531988186841415,
-0.2523555281171954,
-0.2516091258771076,
-0.25097263067381725,
-0.2504588004310836,
-0.25007978875429215,
-0.2498468181802569,
-0.24976988029651948,
-0.24985747171295225,
-0.25011637341777915,
-0.2505514793089748,
-0.25116567773827225
],
[
-0.3259865319088898,
-0.32434801542812974,
-0.3226600450763465,
-0.32093115142856277,
-0.3191706837751719,
-0.317388632929676,
-0.31559541171324224,
-0.3138015969496609,
-0.31201763962755447,
-0.31025355275001854,
-0.3085185890541202,
-0.3068209229788381,
-0.30516735273021633,
-0.3035630388155943,
-0.30201129484416067,
-0.3005134446649036,
-0.299068757091845,
-0.29767446571797385,
-0.2963258769064955,
-0.29501656430217316,
-0.2937386434887995,
-0.29248311608510635,
-0.29124026892876764,
-0.290000111279771,
-0.28875283132022866,
-0.2874892526791467,
-0.2862012722170938,
-0.2848822617410586,
-0.28352741850485896,
-0.28213405207814823,
-0.280701798225936,
-0.27923275363456257,
-0.2777315284826063,
-0.2762052168564344,
-0.2746632877587397,
-0.2731174018980467,
-0.2715811615495809,
-0.27006980253442636,
-0.26859983877625715,
-0.26718867096790067,
-0.2658541716154684,
-0.26461425912213277,
-0.26348647361786626,
-0.26248756692409925,
-0.2616331183545645,
-0.26093718699557755,
-0.2604120096960002,
-0.26006775226435974,
-0.25991231937609593,
-0.2599512265177527
],
[
-0.33601896437822965,
-0.33488404982964537,
-0.33371251622339104,
-0.3325122423427279,
-0.33129177330369664,
-0.330060112199815,
-0.3288264658163097,
-0.32759994938339787,
-0.3263892586916908,
-0.32520232128385895,
-0.32404594156791866,
-0.32292545723961974,
-0.32184442603028796,
-0.32080436223510655,
-0.3198045415377032,
-0.3188418902662734,
-0.31791097147421266,
-0.3170040753595911,
-0.31611141587361835,
-0.31522142935889463,
-0.31432116518315545,
-0.31339675305796466,
-0.31243392745233556,
-0.3114185865197252,
-0.3103373614129008,
-0.3091781717870553,
-0.307930744583235,
-0.3065870756364406,
-0.3051418169931456,
-0.3035925767478651,
-0.3019401224172936,
-0.3001884830933652,
-0.29834494963265823,
-0.2964199757866399,
-0.2944269863524217,
-0.29238210107713813,
-0.29030378517308275,
-0.28821243891658654,
-0.28612993994840163,
-0.2840791526078611,
-0.2820834189535921,
-0.2801660460763743,
-0.278349803910214,
-0.27665644700281966,
-0.27510627262020737,
-0.27371772613995327,
-0.2725070629527995,
-0.271488074079572,
-0.27067188047759005,
-0.2700667986374522
],
[
-0.3474318478603914,
-0.34687860384311997,
-0.3463033081763046,
-0.3457129735364126,
-0.34511510013127933,
-0.34451743377972843,
-0.3439276739890085,
-0.3433531382301155,
-0.34280039259007433,
-0.3422748630055251,
-0.34178044498867577,
-0.3413191327366881,
-0.34089069036264164,
-0.3404923883497819,
-0.34011882697148277,
-0.33976186525539953,
-0.33941066920665497,
-0.3390518867374652,
-0.33866994954304863,
-0.3382474945984201,
-0.3377658906616212,
-0.33720584876584947,
-0.3365480906798466,
-0.33577404607536254,
-0.33486654784015146,
-0.3338104956020016,
-0.3325934598991538,
-0.3312062032275105,
-0.3296430990148933,
-0.32790243498660054,
-0.32598659298141563,
-0.3239021026946878,
-0.3216595717848366,
-0.31927349909004243,
-0.3167619812574899,
-0.3141463258580435,
-0.31145058607237275,
-0.3087010333565412,
-0.3059255852114734,
-0.30315320538011004,
-0.300413293557652,
-0.29773508108658175,
-0.29514704816284587,
-0.29267637682984826,
-0.290348452499391,
-0.28818642492783164,
-0.2862108375124689,
-0.28443933149259104,
-0.28288642919618223,
-0.28156339794194174
],
[
-0.36035765586088897,
-0.36047416029008994,
-0.3605851486478835,
-0.36069649431744044,
-0.3608143466439937,
-0.3609448534593742,
-0.361093829085149,
-0.36126637530373806,
-0.36146646749859257,
-0.36169652295194976,
-0.3619569727074273,
-0.36224586194938857,
-0.36255850600954276,
-0.3628872294341715,
-0.36322121371842786,
-0.3635464752228095,
-0.36384598855973893,
-0.3640999627572694,
-0.36428626838088396,
-0.364381004293458,
-0.36435918369770304,
-0.3641955113383397,
-0.3638652179098506,
-0.36334491427129334,
-0.3626134272040781,
-0.36165258008945145,
-0.36044788572479614,
-0.3589891240645855,
-0.3572707843871985,
-0.35529235865475384,
-0.3530584800948591,
-0.350578907827901,
-0.34786836434874746,
-0.34494623763379373,
-0.34183616349051216,
-0.3385655065056393,
-0.33516475966362214,
-0.33166688352969254,
-0.3281066059730273,
-0.32451970289459353,
-0.32094227945347187,
-0.31741006995981336,
-0.3139577729973888,
-0.3106184365022978,
-0.30742290548529616,
-0.30439934286206516,
-0.301572831467913,
-0.29896506281035895,
-0.2965941155011578,
-0.29447432367427595
],
[
-0.37492908743208264,
-0.3758140692280878,
-0.3767123030332705,
-0.37762817899471857,
-0.3785661107822207,
-0.37953022124501146,
-0.38052396866962723,
-0.3815497224205261,
-0.3826083023036976,
-0.3836985016913197,
-0.3848166197464027,
-0.38595603236552267,
-0.38710683406669943,
-0.38825558340410027,
-0.3893851821677653,
-0.39047491345301943,
-0.3915006558056353,
-0.3924352805506831,
-0.39324922789052674,
-0.3939112454314305,
-0.39438926158661747,
-0.39465135687214137,
-0.39466678933075394,
-0.3944070267509787,
-0.39384673819091676,
-0.392964700398989,
-0.3917445805643165,
-0.3901755647239725,
-0.3882528102886835,
-0.3859777107053889,
-0.3833579695239251,
-0.38040748949379866,
-0.3771460893828277,
-0.37359906676228705,
-0.3697966289869443,
-0.3657732170885917,
-0.36156674846563375,
-0.35721780430922034,
-0.3527687868951318,
-0.34826307041605864,
-0.3437441671259315,
-0.33925492836967075,
-0.33483679768708685,
-0.3305291306770528,
-0.32636859372519966,
-0.32238865105394254,
-0.31861914686034165,
-0.3150859865836946,
-0.31181091862337296,
-0.30881141515912913
],
[
-0.3912739949409946,
-0.3930372275529346,
-0.3948350116909558,
-0.3966698282156055,
-0.39854387784713263,
-0.40045872955698814,
-0.402414904525612,
-0.40441140567178446,
-0.40644520927607275,
-0.4085107419916575,
-0.41059937292163473,
-0.41269895567368087,
-0.4147934585577868,
-0.4168627216029699,
-0.4188823762515085,
-0.4208239571751,
-0.42265522579196113,
-0.4243407123530367,
-0.4258424689454081,
-0.42712101078681397,
-0.4281364092527712,
-0.42884948860927663,
-0.4292230705611557,
-0.42922320717126505,
-0.4288203436432829,
-0.4279903575663315,
-0.4267154297488569,
-0.4249847127003398,
-0.4227947750154154,
-0.4201498122759205,
-0.4170616266686836,
-0.4135493876080808,
-0.4096391938010775,
-0.40536346319945116,
-0.4007601811657212,
-0.39587203911644464,
-0.39074549618594445,
-0.3854297954146456,
-0.37997596395471966,
-0.37443582411940424,
-0.3688610390477458,
-0.36330221351843517,
-0.3578080671663906,
-0.35242469411903277,
-0.34719491991693496,
-0.34215776352812843,
-0.3373480093061476,
-0.3327958908795632,
-0.3285268862073356,
-0.3245616204197037
],
[
-0.40950904870209726,
-0.4122713882637795,
-0.4150924500044125,
-0.41797228786632923,
-0.42091030762335613,
-0.42390487866863513,
-0.4269528765339462,
-0.4300491672256517,
-0.4331860520335118,
-0.4363526994766136,
-0.4395345987482735,
-0.4427130754710512,
-0.4458649147308156,
-0.4489621372113618,
-0.451971970986881,
-0.45485705372254137,
-0.4575758877991978,
-0.4600835549583919,
-0.4623326788026819,
-0.4642746046861529,
-0.4658607491998602,
-0.4670440575039442,
-0.4677804976860358,
-0.46803051800833406,
-0.46776039548252757,
-0.46694341211709933,
-0.4655608072914805,
-0.46360246956159834,
-0.46106734722487974,
-0.45796357271236576,
-0.454308310137689,
-0.4501273472737276,
-0.4454544623740152,
-0.44033060247302125,
-0.43480291322770737,
-0.4289236613382361,
-0.4227490895587638,
-0.41633824177335366,
-0.4097517920459609,
-0.40305090738104876,
-0.39629616949746427,
-0.38954657647879576,
-0.3828586408883904,
-0.3762855969210729,
-0.36987672544245054,
-0.3636768023375476,
-0.35772567243054043,
-0.3520579483210684,
-0.3467028307943212,
-0.3416840450037345
],
[
-0.42973212372960345,
-0.4336250630822974,
-0.43760415096505034,
-0.44166639924880435,
-0.44580772284229253,
-0.4500225165657309,
-0.4543031586773071,
-0.4586394530172273,
-0.4630180304196141,
-0.4674217394332819,
-0.47182906563386595,
-0.4762136267740412,
-0.48054379639225686,
-0.48478250994779326,
-0.4888873039390407,
-0.4928106291254689,
-0.4965004639471343,
-0.49990123440579337,
-0.5029550237733518,
-0.505603031921754,
-0.5077872225264581,
-0.5094520794454385,
-0.510546383199781,
-0.5110249157586716,
-0.510850006799215,
-0.5099928463367218,
-0.5084345054363889,
-0.5061666265529982,
-0.5031917657736366,
-0.4995233889625109,
-0.4951855410542477,
-0.4902122215537922,
-0.4846465092295721,
-0.47853948502760124,
-0.47194900472098156,
-0.4649383722965489,
-0.45757496223340133,
-0.4499288343315564,
-0.44207137923793527,
-0.43407402683264784,
-0.4260070436051493,
-0.41793843936948694,
-0.40993299832879515,
-0.40205144469359333,
-0.3943497488048079,
-0.3868785759807444,
-0.379682877041552,
-0.37280161660427635,
-0.3662676327349743,
-0.3601076193591749
],
[
-0.452013484937159,
-0.4571780750564992,
-0.46245992351300513,
-0.46785228686901237,
-0.4733467752690962,
-0.47893289683131623,
-0.48459752614999496,
-0.4903243095489702,
-0.49609302953094614,
-0.501878961741442,
-0.5076522687567373,
-0.5133774847832598,
-0.5190131522897065,
-0.5245116739386019,
-0.5298194393766416,
-0.534877275461454,
-0.5396212502265538,
-0.5439838363479805,
-0.5478954112962771,
-0.5512860419083473,
-0.5540874744244251,
-0.556235230541658,
-0.557670698341847,
-0.5583431053674704,
-0.5582112694933582,
-0.5572450400902601,
-0.5554263648716213,
-0.5527499438764071,
-0.5492234584278762,
-0.5448673872026296,
-0.539714441982757,
-0.5338086712151625,
-0.5272042898216555,
-0.5199642990073167,
-0.5121589607174268,
-0.50386418874296,
-0.49515991320802777,
-0.48612846820245437,
-0.4768530444594683,
-0.4674162408856808,
-0.45789874092610516,
-0.448378132526593,
-0.4389278840309092,
-0.42961648279229403,
-0.4205067385749146,
-0.41165524989705216,
-0.40311202822438186,
-0.39492027225206694,
-0.38711628232371453,
-0.37972950325119237
],
[
-0.4763859681507374,
-0.48297094502552973,
-0.48970843208188675,
-0.4965871258659442,
-0.5035934032188881,
-0.5107108357650035,
-0.5179196285080883,
-0.5251959957289819,
-0.5325114982429924,
-0.5398323784549349,
-0.5471189425259008,
-0.5543250508072408,
-0.5613977865152945,
-0.56827737617591,
-0.5748974315369607,
-0.5811855699163271,
-0.5870644479451804,
-0.5924532135444385,
-0.5972693455494303,
-0.6014308138458891,
-0.6048584600399366,
-0.6074784741323612,
-0.6092248297934181,
-0.6100415411940985,
-0.6098846174574176,
-0.6087236143752699,
-0.6065427136229806,
-0.6033412933612164,
-0.5991339871250115,
-0.5939502572551347,
-0.5878335327906337,
-0.5808399786885406,
-0.5730369733366721,
-0.5645013751324639,
-0.5553176574159933,
-0.5455759854936703,
-0.535370301135777,
-0.5247964699494855,
-0.5139505364166091,
-0.5029271209234152,
-0.49181798335527205,
-0.4807107691306738,
-0.4696879460782475,
-0.4588259343481508,
-0.44819442652735053,
-0.4378558911666115,
-0.42786524986636354,
-0.41826971574773864,
-0.40910877940871637,
-0.4004143272166578
],
[
-0.5028345068771436,
-0.5109934611003929,
-0.5193447800282849,
-0.527871719193706,
-0.5365543918001312,
-0.5453692551374232,
-0.5542885248065106,
-0.5632795305911696,
-0.5723040396077613,
-0.5813175861735005,
-0.5902688626148059,
-0.5990992392735638,
-0.6077424928945312,
-0.6161248275832818,
-0.6241652688016467,
-0.6317764962605816,
-0.6388661553234577,
-0.6453386499118623,
-0.6510973764306307,
-0.6560473133222778,
-0.6600978409056227,
-0.6631656371689014,
-0.6651774815218736,
-0.6660728019448438,
-0.6658058204860681,
-0.6643471842722741,
-0.6616850092657555,
-0.6578253066675563,
-0.652791802375337,
-0.6466251946204591,
-0.6393819215807747,
-0.6311325284965793,
-0.6219597328374588,
-0.6119562874119704,
-0.6012227364868993,
-0.5898651506760857,
-0.5779929142173172,
-0.5657166247361266,
-0.5531461518818354,
-0.5403888881965783,
-0.5275482138327399,
-0.5147221866006235,
-0.5020024604279225,
-0.4894734286091036,
-0.4772115830719946,
-0.46528507708475864,
-0.4537534761388321,
-0.44266767994705314,
-0.4320699973905454,
-0.4219943556686433
],
[
-0.5312855360208,
-0.5411729828148609,
-0.5512976637551754,
-0.5616364603539141,
-0.5721621138607451,
-0.5828426835986144,
-0.5936409417335144,
-0.6045137194127069,
-0.6154112317384719,
-0.6262764241027811,
-0.6370443989560973,
-0.6476419982526885,
-0.6579876298641306,
-0.6679914327584114,
-0.6775558721077789,
-0.6865768387794683,
-0.694945296627061,
-0.7025494769759213,
-0.7092775670245864,
-0.7150207845049737,
-0.7196766831268908,
-0.7231524998466772,
-0.7253683412995889,
-0.7262600147550935,
-0.7257813368731351,
-0.723905796494239,
-0.7206274990991502,
-0.7159613735695889,
-0.7099426705490353,
-0.7026258217838555,
-0.6940827589650646,
-0.6844008081875199,
-0.6736802829663857,
-0.66203189647672,
-0.6495741044474496,
-0.6364304761790183,
-0.6227271745342923,
-0.608590608223652,
-0.5941453026231481,
-0.5795120196831473,
-0.5648061437903675,
-0.550136339016221,
-0.5356034740556421,
-0.5212998041987347,
-0.5073083946390038,
-0.49370276600778396,
-0.480546740922039,
-0.4678944692463396,
-0.4557906094405543,
-0.4442706435812339
],
[
-0.5615970025299561,
-0.5733632611436322,
-0.5854169268517754,
-0.5977275547446561,
-0.6102593628601886,
-0.6229706595369763,
-0.6358132218736301,
-0.6487316422705075,
-0.6616626730991928,
-0.6745346155800965,
-0.6872668169502615,
-0.6997693579856232,
-0.711943027812804,
-0.7236796906608113,
-0.7348631453314023,
-0.745370558912974,
-0.7550745198007855,
-0.763845702821837,
-0.7715560764747427,
-0.7780825176857785,
-0.7833106435180124,
-0.7871386317240678,
-0.789480789545467,
-0.7902706446779697,
-0.7894633708929617,
-0.7870374166761971,
-0.7829952697186149,
-0.7773633544794127,
-0.7701911171721949,
-0.7615493975872529,
-0.7515282178594052,
-0.7402341345192368,
-0.7277873034393134,
-0.7143184000934609,
-0.6999655227741084,
-0.6848711869079788,
-0.6691794968914453,
-0.6530335599640292,
-0.6365731860453798,
-0.6199328991572368,
-0.6032402705707117,
-0.5866145713371217,
-0.5701657322899816,
-0.5539935926826927,
-0.538187413985367,
-0.5228256325981381,
-0.5079758239435416,
-0.4936948502078181,
-0.48002916459322587,
-0.4670152460651896
],
[
-0.5935499061128182,
-0.6073347875032102,
-0.6214626188201791,
-0.6358946956249693,
-0.6505855634231519,
-0.6654824075493382,
-0.6805244157384635,
-0.6956421339216093,
-0.7107568492208588,
-0.7257800508081709,
-0.7406130382738259,
-0.7551467663355546,
-0.7692620307023708,
-0.7828301080629688,
-0.7957139582639053,
-0.8077700741409533,
-0.818851021791597,
-0.8288086528566267,
-0.8374978969556723,
-0.8447809674495861,
-0.8505317500457881,
-0.8546401033176079,
-0.85701579076087,
-0.8575917872884434,
-0.8563267546270008,
-0.8532065508971158,
-0.8482447186089299,
-0.841481971700272,
-0.832984767665794,
-0.8228431000314937,
-0.8111676773868727,
-0.7980866685272523,
-0.7837421914515845,
-0.7682867104713336,
-0.7518794842597871,
-0.7346831818209603,
-0.7168607560491425,
-0.6985726380639126,
-0.6799742914192235,
-0.6612141445439295,
-0.6424319027960138,
-0.6237572283274356,
-0.6053087663076303,
-0.5871934895179604,
-0.5695063293993136,
-0.552330059784701,
-0.535735399279276,
-0.5197812991194789,
-0.5045153849801308,
-0.48997452330932867
],
[
-0.6268424438575596,
-0.6427678770554331,
-0.6590969034976648,
-0.6757816866048537,
-0.6927660035928365,
-0.7099845878696663,
-0.7273624730793731,
-0.7448143649711344,
-0.7622440809869024,
-0.7795441144857149,
-0.7965953998870202,
-0.8132673745191443,
-0.8294184489077006,
-0.8448970045075146,
-0.8595430305612212,
-0.8731904845415928,
-0.885670410748999,
-0.8968147809105291,
-0.9064609366093666,
-0.9144564287629136,
-0.9206639794443756,
-0.9249662500312865,
-0.9272700956806579,
-0.9275100206714422,
-0.9256506159418414,
-0.9216878475622856,
-0.9156491591839708,
-0.9075924399376394,
-0.8976039822405795,
-0.8857956060122796,
-0.8723011553727552,
-0.8572725826090901,
-0.8408758256817015,
-0.8232866643954309,
-0.804686711269871,
-0.7852596603067148,
-0.7651878836582922,
-0.7446494351214354,
-0.7238154920056764,
-0.702848244090531,
-0.6818992203364693,
-0.6611080305654075,
-0.6406014900210837,
-0.6204930889490522,
-0.6008827664368633,
-0.5818569470772041,
-0.5634887999679701,
-0.5458386816334526,
-0.5289547272234629,
-0.5128735574983537
],
[
-0.6610878931992223,
-0.6792497870577665,
-0.6978803004569675,
-0.7169216921730144,
-0.7363059830234953,
-0.75595423829163,
-0.7757758881683752,
-0.7956681205337442,
-0.8155153943984236,
-0.8351891394032882,
-0.8545477258580226,
-0.8734368085203175,
-0.8916901617007003,
-0.9091311278049765,
-0.9255747897294697,
-0.9408309439183742,
-0.9547078925971887,
-0.9670169931251784,
-0.977577808481333,
-0.9862236103364375,
-0.9928069124445114,
-0.9972046728128396,
-0.9993228075147123,
-0.9990997073784114,
-0.9965085327053604,
-0.9915581662546163,
-0.9842928145634654,
-0.9747903475088946,
-0.9631595452550484,
-0.9495364748706236,
-0.9340802451683001,
-0.9169683905398296,
-0.8983921177297118,
-0.8785516194512174,
-0.8576516211804949,
-0.8358972872389063,
-0.8134905731435442,
-0.790627075750491,
-0.767493402449298,
-0.74426505623517,
-0.7211048148845962,
-0.6981615692512111,
-0.6755695771859467,
-0.6534480849574232,
-0.6319012664796945,
-0.6110184313727793,
-0.5908744552079775,
-0.5715303886575647,
-0.5530342062253576,
-0.5354216594384963
],
[
-0.6958172888228061,
-0.7162771078954003,
-0.7372737020661084,
-0.7587387875661881,
-0.7805918004389294,
-0.8027391061920723,
-0.8250732908707388,
-0.847472578688933,
-0.8698004357215733,
-0.8919054360413244,
-0.9136214847942206,
-0.9347685094125435,
-0.9551537411995477,
-0.9745737090952558,
-0.9928170490057432,
-1.0096681900303852,
-1.024911910940943,
-1.0383386697750994,
-1.0497505068753452,
-1.0589672237357795,
-1.0658324658527099,
-1.070219304095411,
-1.0720349251022032,
-1.071224105818465,
-1.0677712497614926,
-1.0617008857362802,
-1.0530766545390389,
-1.0419989191118244,
-1.028601217281225,
-1.0130458283662445,
-0.9955187458255476,
-0.9762243419967453,
-0.9553799843716457,
-0.9332108229265514,
-0.9099449214621556,
-0.8858088581933992,
-0.8610238759923794,
-0.8358026233099769,
-0.8103464942216569,
-0.7848435506289235,
-0.7594669910875609,
-0.734374118290259,
-0.7097057499484251,
-0.685586014674718,
-0.6621224744794818,
-0.6394065177767342,
-0.617513970596063,
-0.5965058784052081,
-0.5764294160910227,
-0.557318888874931
],
[
-0.7304876941447864,
-0.7532643942229602,
-0.7766473261249722,
-0.8005571877265232,
-0.8249002082322632,
-0.8495672749428632,
-0.8744331911665267,
-0.8993561237422103,
-0.9241773134517887,
-0.9487211380386253,
-0.9727956339765437,
-0.9961935965515776,
-1.0186943836658013,
-1.0400665411162628,
-1.0600713395529613,
-1.0784672608118275,
-1.0950153925643222,
-1.1094855900997056,
-1.121663154733674,
-1.131355678062491,
-1.1383996304756465,
-1.1426662480407668,
-1.1440663025579751,
-1.1425534224570255,
-1.1381257540264846,
-1.130825893318905,
-1.1207391576110348,
-1.1079903834214793,
-1.0927395239569133,
-1.0751763677480932,
-1.0555147136722984,
-1.0339863214350669,
-1.0108349190385946,
-0.9863104983276502,
-0.960664074002007,
-0.9341430265288926,
-0.9069870993602416,
-0.8794250782253497,
-0.8516721460877554,
-0.8239278816417349,
-0.7963748513063835,
-0.769177733492268,
-0.742482908243611,
-0.7164184439712602,
-0.69109441475821,
-0.66660348566007,
-0.6430217087293423,
-0.6204094785268782,
-0.5988126021662005,
-0.578263445122818
],
[
-0.7644964292560603,
-0.7895595118526122,
-0.815297215486452,
-0.8416189266540355,
-0.8684172911964996,
-0.8955672540782782,
-0.9229252853880976,
-0.9503288663463424,
-0.9775963243530591,
-1.0045271217955556,
-1.0309027173474319,
-1.0564881274048452,
-1.0810343142735064,
-1.104281510828523,
-1.1259635527012073,
-1.145813224552688,
-1.163568536904738,
-1.1789797410063372,
-1.1918167752656617,
-1.2018767374492856,
-1.2089909131320529,
-1.2130308794322326,
-1.213913251036835,
-1.211602738018177,
-1.2061133261638248,
-1.1975075480450759,
-1.1858939634243615,
-1.1714230915839983,
-1.1542821237815493,
-1.1346887874148384,
-1.1128847376351225,
-1.0891288247403597,
-1.0636905365128193,
-1.0368438535773108,
-1.0088616913169381,
-0.98001104029137,
-0.9505488626546135,
-0.9207187569986393,
-0.890748369043838,
-0.8608475002613786,
-0.8312068497845251,
-0.8019973154522886,
-0.773369776046878,
-0.7454552773220535,
-0.7183655480179556,
-0.692193777665372,
-0.6670155947541522,
-0.6428901911285001,
-0.6198615458024831,
-0.597959708434235
],
[
-0.7972010273552675,
-0.8244654979026889,
-0.8524691191282421,
-0.8811098717452148,
-0.9102667188218472,
-0.9397985634347303,
-0.9695434517788134,
-0.9993181119635499,
-1.02891793424053,
-1.0581175129035791,
-1.086671880950268,
-1.114318571922084,
-1.140780634087767,
-1.1657706945858346,
-1.188996120146323,
-1.210165243895419,
-1.2289945265968218,
-1.2452164041954359,
-1.2585874573488396,
-1.268896443313633,
-1.2759716770857714,
-1.2796872527387186,
-1.2799676627900791,
-1.2767904959132446,
-1.2701870530767485,
-1.2602408945088386,
-1.247084489670706,
-1.2308942696546858,
-1.2118844643851654,
-1.1903001429180953,
-1.166409868690729,
-1.140498342232164,
-1.1128593430143752,
-1.0837892108266063,
-1.053581034447483,
-1.0225196480942875,
-0.9908774782244879,
-0.9589112366475281,
-0.9268594208302594,
-0.8949405579107892,
-0.8633521138188117,
-0.8322699813257637,
-0.8018484590978392,
-0.7722206363251567,
-0.7434991028993267,
-0.7157769123051008,
-0.689128732518655,
-0.6636121286220894,
-0.6392689290947675,
-0.6161266355223796
],
[
-0.8279440247543604,
-0.8572679543582458,
-0.887388685931906,
-0.9181929120932022,
-0.9495461152012248,
-0.9812914586160595,
-1.0132489853526914,
-1.0452152308267084,
-1.0769633717847484,
-1.1082440462486554,
-1.1387869862396844,
-1.1683036019319528,
-1.196490637566838,
-1.2230349806228067,
-1.247619642228404,
-1.2699308375552665,
-1.2896659840022215,
-1.3065423130423088,
-1.3203056757640121,
-1.3307390335173142,
-1.337670084164724,
-1.340977495436844,
-1.3405953029980668,
-1.3365151723702586,
-1.3287864001751823,
-1.3175137145891707,
-1.3028531011772917,
-1.2850060080611476,
-1.2642123625541448,
-1.2407428585116125,
-1.2148909560677983,
-1.1869649843477919,
-1.1572806659873445,
-1.126154301867195,
-1.0938967750103514,
-1.0608084607908634,
-1.0271750703035853,
-0.9932644064431865,
-0.9593239777367794,
-0.9255793919998554,
-0.8922334386207801,
-0.859465762734976,
-0.8274330348119536,
-0.7962695235482818,
-0.7660879870173596,
-0.7369808056416327,
-0.7090212898632573,
-0.6822651047688957,
-0.6567517629412649,
-0.6325061451875905
],
[
-0.8560810486288302,
-0.8872662426362941,
-0.9192960217648396,
-0.9520461331726988,
-0.9853690993183575,
-1.019093069779819,
-1.05302104335697,
-1.0869305824212816,
-1.1205741561645526,
-1.1536802597010565,
-1.1859554583209904,
-1.2170874960691158,
-1.2467495801772157,
-1.274605902985503,
-1.300318387865203,
-1.323554545899037,
-1.343996211664919,
-1.3613488017818858,
-1.3753506270996019,
-1.3857817097606175,
-1.392471529377996,
-1.3953051606572995,
-1.3942273688937052,
-1.3892443879259908,
-1.3804232946896142,
-1.367889087446911,
-1.3518197441774387,
-1.3324396633327593,
-1.3100119609646934,
-1.2848301160427213,
-1.257209427530412,
-1.2274786851329214,
-1.195972374525525,
-1.1630236500214444,
-1.12895822294047,
-1.0940892390089547,
-1.0587131564947494,
-1.0231065895421017,
-0.9875240476934497,
-0.9521964812166219,
-0.9173305304709367,
-0.883108373929671,
-0.8496880715667001,
-0.8172043063273609,
-0.7857694348783475,
-0.7554747686301524,
-0.7263920162992928,
-0.6985748294230416,
-0.6720604018521833,
-0.6468710830782981
],
[
-0.8810101620348794,
-0.9138061522358343,
-0.9474819628850712,
-0.9819029755062181,
-1.0169096014894485,
-1.0523161312656013,
-1.0879100155369605,
-1.1234517134004876,
-1.1586752554519244,
-1.193289677125532,
-1.226981474731015,
-1.2594182193140084,
-1.2902534268291732,
-1.3191327232169303,
-1.3457012580946757,
-1.3696122131239723,
-1.3905361283431088,
-1.4081706455495762,
-1.4222501609113998,
-1.4325548101564776,
-1.4389181970897533,
-1.4412333302053866,
-1.4394563515331569,
-1.4336078126734222,
-1.4237714512187876,
-1.410090617740356,
-1.3927626723808368,
-1.3720317913533724,
-1.348180688142409,
-1.321521763141178,
-1.2923881580388066,
-1.26112512117101,
-1.2280820019543264,
-1.193605099487945,
-1.1580315023769445,
-1.1216839802284515,
-1.0848669253145096,
-1.0478632962986514,
-1.0109324837092897,
-0.974308997065899,
-0.9382018638729621,
-0.9027946287225241,
-0.8682458443319061,
-0.8346899536564933,
-0.8022384717847155,
-0.7709813870118232,
-0.7409887114710855,
-0.7123121223970978,
-0.6849866451272827,
-0.6590323380896532
],
[
-0.9022001497993553,
-0.9363113914575403,
-0.9713230377016797,
-1.007090930994451,
-1.0434445476786585,
-1.0801858881889899,
-1.1170888576419358,
-1.1538992810964797,
-1.1903357088227953,
-1.22609117031179,
-1.2608360275037487,
-1.2942220533558169,
-1.3258878171349617,
-1.355465389663416,
-1.3825882897118698,
-1.4069004805024683,
-1.4280661018132712,
-1.445779502949212,
-1.459775043539775,
-1.46983607250321,
-1.4758024969368009,
-1.4775764203732826,
-1.475125460516585,
-1.4684835349162015,
-1.4577491044575999,
-1.4430810605557538,
-1.424692606493771,
-1.4028435980769298,
-1.3778318656963253,
-1.3499840412507693,
-1.3196463691448699,
-1.2871759049424454,
-1.2529324131095336,
-1.217271179675193,
-1.1805368663505453,
-1.1430584558399857,
-1.1051452766801726,
-1.0670840503931798,
-1.0291368728294474,
-0.991540023178703,
-0.9545034857686621,
-0.918211069006587,
-0.8828210104524361,
-0.8484669652012644,
-0.8152592850292819,
-0.7832865070077899,
-0.7526169817035602,
-0.7233005821064433,
-0.6953704446972218,
-0.6688447033838735
],
[
-0.91921543619251,
-0.9543112572992296,
-0.9903121010599341,
-1.027065347324966,
-1.0643910267032635,
-1.1020807982953544,
-1.1398974701870825,
-1.1775752123061112,
-1.2148206193676907,
-1.2513147807919107,
-1.2867165007181092,
-1.3206667804454622,
-1.352794624179584,
-1.3827241548021212,
-1.4100829302775528,
-1.4345112381592386,
-1.455672025312333,
-1.4732610071387788,
-1.4870164132711092,
-1.4967277830946615,
-1.5022432387657798,
-1.503474741629074,
-1.5004009751451153,
-1.4930676775520442,
-1.4815854461938207,
-1.4661252253967785,
-1.4469118464589492,
-1.4242160948776745,
-1.3983458295767046,
-1.3696366745311996,
-1.3384427550449112,
-1.3051278730776565,
-1.2700574230514006,
-1.233591254150821,
-1.1960775966983193,
-1.1578480945865153,
-1.1192139256939573,
-1.0804629479792456,
-1.0418577792406096,
-1.0036347011700821,
-0.9660032708342658,
-0.9291465226380007,
-0.893221648995342,
-0.8583610565243773,
-0.8246737051551962,
-0.7922466490021807,
-0.7611467094138369,
-0.7314222217358346,
-0.7031048076607944,
-0.676211134394618
],
[
-0.9317356213738011,
-0.9674621904599412,
-1.0040820354733324,
-1.0414353921802237,
-1.0793346181602583,
-1.1175633027524372,
-1.1558759637550458,
-1.1939984812705509,
-1.2316294237392587,
-1.2684424158979815,
-1.3040896794237702,
-1.3382068407462109,
-1.3704190441012176,
-1.4003483303046074,
-1.427622144812149,
-1.4518827282159275,
-1.4727970286959562,
-1.4900666734643067,
-1.5034374616611494,
-1.5127078106604714,
-1.517735613138524,
-1.5184430474336716,
-1.5148190224543836,
-1.5069191145487149,
-1.4948630441682094,
-1.4788299194307486,
-1.459051619465103,
-1.4358047876588622,
-1.4094019479327087,
-1.3801822491785156,
-1.3485022939343216,
-1.3147274306149304,
-1.279223797980938,
-1.2423513179743744,
-1.2044577474663385,
-1.165873826386371,
-1.1269095016804842,
-1.0878511638323811,
-1.0489598040215347,
-1.0104699832927662,
-0.9725894979768688,
-0.9354996256765846,
-0.8993558413107674,
-0.8642889012271843,
-0.8304062038487563,
-0.7977933466447286,
-0.7665158106467601,
-0.736620714730552,
-0.708138592116625,
-0.6810851508138482
],
[
-0.939568164781607,
-0.9755615563859814,
-1.0124206567411207,
-1.0499800954751761,
-1.088046565465151,
-1.1263981034828774,
-1.164783991016652,
-1.2029254219419834,
-1.240517084581707,
-1.2772297959970493,
-1.3127143027647472,
-1.3466063220107714,
-1.3785328370929546,
-1.4081195839654326,
-1.434999569688424,
-1.458822360163902,
-1.4792637702498381,
-1.4960354994497604,
-1.5088941954386679,
-1.5176494096141562,
-1.5221699430236102,
-1.522388169378371,
-1.5183020573893682,
-1.5099747818106477,
-1.4975319900349935,
-1.4811569560095958,
-1.4610839858725653,
-1.4375905269784854,
-1.4109884691790056,
-1.3816151175980314,
-1.349824268839705,
-1.3159777498340675,
-1.2804376929851315,
-1.2435597339200057,
-1.2056872371686296,
-1.167146585713765,
-1.1282435149888845,
-1.0892604308974263,
-1.050454623685596,
-1.01205727312676,
-0.9742731332559159,
-0.9372807846301103,
-0.9012333467995546,
-0.8662595516759978,
-0.8324650884336608,
-0.79993414144323,
-0.7687310537672317,
-0.7389020594116952,
-0.7104770374928557,
-0.683471250537628
],
[
-0.9426534464245719,
-0.9785528136994089,
-1.015275916080637,
-1.0526534947839892,
-1.0904887565634154,
-1.1285568537331683,
-1.1666050055445352,
-1.2043533997492564,
-1.2414970102285736,
-1.2777084528541125,
-1.312641974449249,
-1.3459386265171203,
-1.3772326151290175,
-1.4061587417855403,
-1.4323607606107245,
-1.4555003815498,
-1.4752665571468975,
-1.4913846142478793,
-1.5036247446483308,
-1.5118093616844461,
-1.5158188700722086,
-1.515595484302403,
-1.5111448592220236,
-1.5025354506567647,
-1.4898956850595746,
-1.4734091653043329,
-1.4533082579153573,
-1.4298664841538027,
-1.4033901696285294,
-1.3742097974534722,
-1.342671466518762,
-1.3091287899663389,
-1.2739354906389755,
-1.237438869914084,
-1.1999742513889817,
-1.1618604361532194,
-1.1233961542460418,
-1.084857457821585,
-1.0464959746809335,
-1.008537924558646,
-0.9711837929166701,
-0.9346085560173363,
-0.8989623548967367,
-0.8643715229761877,
-0.8309398811599877,
-0.7987502243833933,
-0.7678659339610971,
-0.7383326602229212,
-0.7101800294629811,
-0.6834233379588758
],
[
-0.9410621949592824,
-0.9765221097275569,
-1.0127515053496785,
-1.0495790761675905,
-1.0868068117184537,
-1.124209692664018,
-1.1615360360586755,
-1.198508617515564,
-1.2348266913054005,
-1.270169012344522,
-1.3041979341313792,
-1.3365646123529893,
-1.3669152847005552,
-1.3948985248488843,
-1.4201732864121939,
-1.4424174675318386,
-1.4613366476409684,
-1.4766725856388225,
-1.4882110341064831,
-1.4957884263231964,
-1.4992970366349088,
-1.4986882993323893,
-1.4939740893262243,
-1.4852259066209597,
-1.4725720494711094,
-1.4561929912894434,
-1.436315279683938,
-1.4132043432467436,
-1.3871566197876206,
-1.3584914111803166,
-1.3275428317358327,
-1.294652158220062,
-1.2601608198969068,
-1.2244041948419988,
-1.1877063108441681,
-1.1503754898795373,
-1.1127009267172643,
-1.074950155326389,
-1.03736733083388,
-1.0001722385356269,
-0.9635599332322522,
-0.927700910221255,
-0.8927417119991914,
-0.8588058806873196,
-0.8259951742089843,
-0.7943909733803527,
-0.7640558166175198,
-0.7350350083974906,
-0.7073582565842277,
-0.6810413020183544
],
[
-0.9349859758844364,
-0.9696871504152339,
-1.0050938940339662,
-1.041034750902303,
-1.0773127638485083,
-1.1137053897597164,
-1.149965058997771,
-1.1858204926025482,
-1.220978881443809,
-1.2551290118876242,
-1.2879453912622667,
-1.319093382472678,
-1.3482353007586259,
-1.3750373587466322,
-1.3991772726034346,
-1.4203522684345036,
-1.4382871621420672,
-1.452742136874615,
-1.4635198187883203,
-1.4704712609497297,
-1.4735004900342363,
-1.4725673493415645,
-1.4676884776907693,
-1.458936385713433,
-1.4464367151195405,
-1.4303638787424355,
-1.410935367982964,
-1.3884050722131054,
-1.3630559792396804,
-1.335192619180562,
-1.3051335816927745,
-1.2732043860056028,
-1.2397309226817153,
-1.2050336227131806,
-1.1694224492012533,
-1.1331927534149975,
-1.0966219926922696,
-1.0599672732154723,
-1.023463655880162,
-0.9873231473083754,
-0.9517342892074372,
-0.9168622562846351,
-0.8828493743885399,
-0.8498159751913904,
-0.8178615104774835,
-0.7870658570872531,
-0.7574907521078178,
-0.7291813064933793,
-0.7021675535854279,
-0.6764659967445042
],
[
-0.9247219935899282,
-0.9583798230165326,
-0.9926725337594118,
-1.0274303963654854,
-1.0624596891760467,
-1.0975428244071759,
-1.1324391004007939,
-1.166886178502275,
-1.2006023710098153,
-1.2332898054814214,
-1.2646384992222977,
-1.294331335604309,
-1.3220498817170208,
-1.3474809269261099,
-1.3703235581355246,
-1.3902965255189403,
-1.407145599131531,
-1.4206505796157571,
-1.430631612077178,
-1.4369544661207674,
-1.4395344888420984,
-1.438339009122968,
-1.4333880646745472,
-1.4247534283697467,
-1.4125560161595527,
-1.396961854024553,
-1.378176856683968,
-1.3564407202080468,
-1.3320202522070963,
-1.3052024585397766,
-1.2762876789593913,
-1.2455830219053527,
-1.213396297301214,
-1.1800305917757776,
-1.1457795780762172,
-1.1109236030800078,
-1.0757265588261011,
-1.0404335092634722,
-1.0052690219241172,
-0.9704361378091628,
-0.9361159034089178,
-0.9024673847822652,
-0.869628083812127,
-0.8377146800335199,
-0.806824026840766,
-0.7770343376233318,
-0.7484065048199089,
-0.7209855025307931,
-0.6948018308327674,
-0.6698729670508543
],
[
-0.9106538197876483,
-0.9430244398918468,
-0.9759553859736874,
-1.0092804368085788,
-1.042811117272145,
-1.0763370158670333,
-1.109626699556721,
-1.1424293085372192,
-1.1744768999212372,
-1.2054875875401816,
-1.2351694945046527,
-1.2632254958491018,
-1.2893586815799036,
-1.3132784180552333,
-1.3347068315103856,
-1.3533854866126371,
-1.3690819909606085,
-1.3815962293966755,
-1.3907659251084274,
-1.3964712412410902,
-1.3986381779755475,
-1.3972405834353585,
-1.3923006769408948,
-1.3838880721486613,
-1.3721173763639205,
-1.3571445218691958,
-1.3391620481479412,
-1.3183935956911355,
-1.295087890988,
-1.269512499528753,
-1.2419476026333416,
-1.2126800194612675,
-1.1819976528895009,
-1.1501844919897213,
-1.1175162586911134,
-1.0842567449091631,
-1.0506548508825029,
-1.0169423066373415,
-0.983332036560345,
-0.9500171116166463,
-0.917170224060806,
-0.884943614637517,
-0.8534693812901372,
-0.8228601003620273,
-0.7932096953555454,
-0.7645944937935769,
-0.7370744190244392,
-0.7106942704623651,
-0.6854850524142019,
-0.661465318056802
],
[
-0.893229799724153,
-0.9241136035039774,
-0.9554820467538457,
-0.9871740368278588,
-1.0190081161597009,
-1.0507829441983891,
-1.0822783388735089,
-1.1132569447601732,
-1.1434665805802338,
-1.1726432971643075,
-1.2005151482118317,
-1.2268066404952045,
-1.2512437888016132,
-1.2735596561458757,
-1.2935002149057007,
-1.3108303236923426,
-1.3253395826549426,
-1.3368478111493278,
-1.345209890127927,
-1.350319729547533,
-1.3521131587256008,
-1.3505695926328847,
-1.3457123949808283,
-1.3376079332654562,
-1.3263633944399782,
-1.3121234956314785,
-1.295066276594641,
-1.2753981957187601,
-1.2533487680113657,
-1.2291649824180053,
-1.203105719696157,
-1.1754363645309933,
-1.1464237707684228,
-1.116331700490735,
-1.085416819545978,
-1.0539252966480468,
-1.0220900220292066,
-0.9901284358092364,
-0.9582409360576398,
-0.9266098217958489,
-0.8953987164180324,
-0.864752411518504,
-0.8347970691393014,
-0.8056407212338317,
-0.7773740079750026,
-0.7500711007967659,
-0.7237907612212113,
-0.6985774921629808,
-0.674462744186434,
-0.6514661448693627
]
],
"zauto": true,
"zmax": 1.522388169378371,
"zmin": -1.522388169378371
},
{
"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.7578504190217422,
0.7562493295784454,
0.7545347205422137,
0.752702848108081,
0.7507508964411554,
0.748677268923356,
0.7464819116910887,
0.7441666627734805,
0.7417356167828426,
0.7391954914269382,
0.736555978279964,
0.7338300565148764,
0.7310342449963368,
0.728188765676653,
0.7253175901142555,
0.7224483416761983,
0.7196120291157256,
0.716842593171141,
0.7141762568652816,
0.7116506822452899,
0.7093039509233952,
0.7071734019963897,
0.7052943772580496,
0.7036989381751144,
0.7024146297610514,
0.701463371251917,
0.7008605508686474,
0.7006143913244354,
0.7007256346287905,
0.7011875708647917,
0.7019864086700998,
0.7031019583812232,
0.7045085754290179,
0.7061762942400927,
0.7080720732329854,
0.7101610699302325,
0.7124078710338516,
0.7147776139637295,
0.7172369517841609,
0.7197548304996,
0.7223030644711306,
0.7248567107073961,
0.7273942550512796,
0.7298976323496188,
0.7323521085086749,
0.7347460551599432,
0.7370706479380073,
0.739319517646506,
0.7414883804195067,
0.7435746688994789
],
[
0.7563471891639384,
0.7546901390994959,
0.7529243046087285,
0.7510465567839348,
0.749054630340334,
0.7469474008209599,
0.7447251959222658,
0.7423901347265626,
0.7399464851672493,
0.7374010262457501,
0.7347633975473863,
0.7320464147267036,
0.7292663261941948,
0.7264429836619342,
0.7235998979916375,
0.7207641524720811,
0.7179661487594736,
0.7152391666817096,
0.7126187281832025,
0.7101417678127295,
0.7078456268550073,
0.7057669045005488,
0.703940215849235,
0.702396921141076,
0.70116390128432,
0.7002624595052639,
0.6997074262850425,
0.6995065340718721,
0.6996601101012119,
0.7001611117487339,
0.700995501889894,
0.7021429349960258,
0.7035777013832054,
0.7052698597776537,
0.707186478788293,
0.7092929064020279,
0.7115539925267166,
0.7139352013259556,
0.7164035655647273,
0.7189284522731386,
0.7214821258242955,
0.7240401095325026,
0.7265813591456205,
0.7290882706650766,
0.7315465507297728,
0.7339449806018845,
0.7362751050407438,
0.7385308755863721,
0.74070827455598,
0.742804941911385
],
[
0.7546750121005195,
0.752963635636283,
0.7511507111117722,
0.749234005612768,
0.7472120666084628,
0.7450844761158064,
0.742852140341327,
0.7405176092584879,
0.7380854170494359,
0.7355624304462909,
0.7329581879426809,
0.7302852088821952,
0.7275592479201107,
0.7247994677301153,
0.7220285015852685,
0.7192723781116823,
0.7165602836050701,
0.7139241432299569,
0.7113980114111514,
0.709017273694361,
0.7068176768037877,
0.7048342195810616,
0.7030999534835426,
0.701644755485267,
0.7004941465078489,
0.6996682329881313,
0.6991808464480299,
0.6990389454177384,
0.6992423263287306,
0.6997836667315065,
0.700648898033595,
0.7018178790367717,
0.703265318984142,
0.7049618821388417,
0.7068753966623283,
0.7089720891449143,
0.7112177718794331,
0.7135789213468813,
0.7160236014223902,
0.7185222014424374,
0.7210479756471592,
0.7235773851846934,
0.726090255891351,
0.7285697739757309,
0.7310023474738859,
0.7333773641414603,
0.735686876732044,
0.7379252448987784,
0.7400887597910896,
0.7421752733155452
],
[
0.7527986354273898,
0.7510317752187069,
0.749173094434286,
0.7472215616918341,
0.7451768233696018,
0.7430394249605368,
0.7408110688558736,
0.738494903938159,
0.7360958387938953,
0.7336208664047152,
0.7310793840509384,
0.7284834881474869,
0.725848220192784,
0.7231917373815594,
0.7205353802017753,
0.7179036100147191,
0.7153237926850647,
0.7128258101593109,
0.710441490664562,
0.708203859794403,
0.706146228650805,
0.7043011504528913,
0.702699292187324,
0.7013682811893984,
0.7003315960857833,
0.6996075755222378,
0.6992086152593889,
0.6991406140807861,
0.6994027120827648,
0.6999873429199704,
0.700880596932507,
0.7020628677098585,
0.7035097334395819,
0.7051930086961091,
0.7070818935957517,
0.7091441458626523,
0.7113472066944339,
0.713659221990954,
0.7160499146809681,
0.7184912796198207,
0.7209580880947036,
0.7234282029940937,
0.7258827172601304,
0.7283059368787246,
0.7306852352839821,
0.7330108088581406,
0.7352753635786983,
0.7374737612822183,
0.7396026509907545,
0.7416601067747084
],
[
0.7506810343928559,
0.7488541218543294,
0.7469475161106527,
0.7449617137572159,
0.7428977669948316,
0.7407574616711935,
0.7385435324043734,
0.7362599114116727,
0.7339120040791125,
0.7315069803134719,
0.7290540665446177,
0.7265648191923434,
0.724053356853904,
0.7215365258430971,
0.7190339724968502,
0.7165680963437495,
0.714163861236891,
0.7118484472109406,
0.7096507342509843,
0.7076006201907616,
0.7057281880559403,
0.7040627523889323,
0.7026318280949562,
0.7014600774973506,
0.7005682998401817,
0.6999725308481173,
0.6996833170383333,
0.6997052199176592,
0.7000365895557964,
0.7006696268004743,
0.7015907308386164,
0.7027811065501811,
0.7042175867407088,
0.7058736099858296,
0.7077202867847675,
0.7097274853626826,
0.7118648732469584,
0.7141028604374827,
0.7164134029569768,
0.7187706400629104,
0.7211513528369599,
0.7235352449719743,
0.7259050574806832,
0.7282465372863319,
0.7305482851023026,
0.7328015108119659,
0.7349997250483501,
0.7371383942745615,
0.7392145838481292,
0.7412266097767133
],
[
0.7482854045546447,
0.7463899743786716,
0.7444292096312715,
0.7424054795217576,
0.7403215676584987,
0.7381807955615152,
0.7359871837310223,
0.7337456485471965,
0.7314622296854733,
0.7291443386947921,
0.7268010151476413,
0.7244431726520655,
0.7220838134067372,
0.7197381873217817,
0.7174238704857088,
0.7151607383840377,
0.7129708121543161,
0.7108779615527098,
0.7089074562652045,
0.7070853675033679,
0.7054378339286866,
0.7039902189392663,
0.7027661989851521,
0.7017868333782187,
0.7010696734964001,
0.7006279719956382,
0.7004700497211906,
0.700598869206159,
0.7010118495164065,
0.701700939101468,
0.7026529432234487,
0.7038500827677419,
0.7052707440454284,
0.7068903664146515,
0.7086824073260044,
0.7106193230722149,
0.7126735076566857,
0.7148181407414128,
0.7170279071790041,
0.7192795636532124,
0.7215523410351344,
0.7238281830577739,
0.7260918320077636,
0.72833077986479,
0.7305351085308657,
0.7326972455720483,
0.7348116625060999,
0.7368745414776428,
0.7388834335835144,
0.7408369285678461
],
[
0.7455775500192279,
0.743600932017226,
0.7415753290160438,
0.7395053437848953,
0.7373958347102125,
0.7352519728570389,
0.7330793369877706,
0.7308840469744267,
0.7286729324554166,
0.7264537294869804,
0.7242352935899118,
0.7220278133404734,
0.7198430049112818,
0.7176942651839706,
0.7155967596880163,
0.7135674220914987,
0.7116248446165283,
0.7097890437685733,
0.7080810931459925,
0.706522624566462,
0.7051352097462825,
0.7039396464278495,
0.7029551840359597,
0.702198733353837,
0.7016841110323521,
0.7014213718575658,
0.701416278880327,
0.7016699536152468,
0.7021787360808602,
0.7029342686721389,
0.7039238004346645,
0.7051306912060263,
0.7065350802097558,
0.7081146725849378,
0.7098455909938766,
0.7117032381803087,
0.7136631198123956,
0.7157015842812305,
0.7177964461572008,
0.7199274714405663,
0.7220767143569835,
0.7242287062236503,
0.7263705061011804,
0.7284916300946223,
0.7305838810854752,
0.7326411033955955,
0.7346588875965621,
0.7366342496845064,
0.7385653064999557,
0.7404509659651316
],
[
0.7425285583304851,
0.740453779641934,
0.7383480503042784,
0.7362185824974558,
0.7340726705471663,
0.7319176689193728,
0.729761008556508,
0.7276102547706628,
0.7254732063341855,
0.7233580312044064,
0.7212734297786824,
0.7192288120771841,
0.7172344712350949,
0.7153017326242154,
0.7134430562763506,
0.7116720704495872,
0.7100035164583686,
0.7084530894155537,
0.707037166240578,
0.7057724208612344,
0.7046753364054373,
0.7037616345212757,
0.7030456517555133,
0.7025397010325481,
0.702253461607389,
0.7021934425109603,
0.7023625619172654,
0.7027598779852084,
0.7033804960654763,
0.7042156637447775,
0.7052530504560804,
0.7064771939378514,
0.7078700832486826,
0.7094118386207137,
0.7110814429901076,
0.7128574788562604,
0.7147188269463227,
0.7166452893217793,
0.7186181081042106,
0.7206203608495811,
0.7226372237314006,
0.7246561032161934,
0.7266666451550114,
0.7286606367316678,
0.7306318212852162,
0.732575648636297,
0.7344889843203646,
0.7363698002992591,
0.7382168675883236,
0.7400294681365207
],
[
0.7391176092564901,
0.7369235274902678,
0.7347178467130691,
0.7325107776323767,
0.7303124296740774,
0.7281326966481435,
0.725981181087367,
0.723867163983815,
0.7217996230894084,
0.7197872985865217,
0.717838800091549,
0.7159627440481954,
0.7141679060837599,
0.7124633693495459,
0.7108586477264167,
0.7093637624479202,
0.7079892524438027,
0.7067461026270138,
0.7056455803178555,
0.7046989776705644,
0.703917266762959,
0.7033106831504786,
0.7028882622504444,
0.7026573599355519,
0.7026231932653816,
0.7027884386528195,
0.7031529225487928,
0.7037134339447653,
0.7044636790970452,
0.705394387742382,
0.7064935678785665,
0.7077468942464068,
0.709138205241313,
0.7106500751464725,
0.7122644239959359,
0.7139631262979481,
0.7157285821099408,
0.7175442190415522,
0.7193949009188975,
0.7212672272094844,
0.7231497160262436,
0.7250328718420646,
0.7269091463496801,
0.7287728067744901,
0.7306197301511679,
0.7324471445348963,
0.7342533388990186,
0.7360373627440979,
0.7377987344570053,
0.7395371745092773
],
[
0.7353347225498134,
0.7329963963026552,
0.7306667133427024,
0.7283592824565791,
0.7260874247804487,
0.7238639533523757,
0.721700991445632,
0.7196098407533733,
0.7176009069710205,
0.7156836857456338,
0.7138668066801898,
0.7121581275656665,
0.7105648658144419,
0.7090937497552209,
0.7077511695503519,
0.7065433064330674,
0.7054762199972601,
0.7045558764682864,
0.7037881060806713,
0.7031784845050514,
0.7027321411171022,
0.7024535050408404,
0.7023460074886141,
0.702411765112245,
0.7026512731156745,
0.7030631381919477,
0.7036438796497674,
0.7043878224412286,
0.7052870986029046,
0.7063317646059553,
0.7075100322352038,
0.7088086009412632,
0.7102130711493356,
0.7117084116009219,
0.7132794500092101,
0.7149113553540181,
0.716590081928774,
0.7183027494018789,
0.7200379390907778,
0.7217858936862066,
0.7235386151066632,
0.7252898623659092,
0.7270350577632032,
0.7287711149567162,
0.7304962062994912,
0.7322094890883073,
0.7339108111081067,
0.7356004151635529,
0.7372786603744821,
0.7389457751345776
],
[
0.7311832125232258,
0.728672500456293,
0.7261910786256882,
0.723756358812637,
0.7213852855311809,
0.7190939954145932,
0.7168975149196435,
0.7148095126878238,
0.7128421194568666,
0.7110058235720708,
0.7093094442811914,
0.7077601786424181,
0.7063637116678133,
0.7051243739281988,
0.7040453268698037,
0.7031287540169822,
0.7023760363452904,
0.701787892460475,
0.7013644686245625,
0.7011053697166636,
0.7010096293025101,
0.7010756243841006,
0.7013009473253299,
0.7016822531445334,
0.7022151041851831,
0.7028938356648401,
0.7037114645527065,
0.7046596607143445,
0.7057287936481608,
0.7069080610264383,
0.7081856974186357,
0.7095492538625997,
0.7109859321693607,
0.7124829526721371,
0.7140279310212821,
0.7156092387939996,
0.7172163240872922,
0.7188399716293705,
0.7204724868465795,
0.7221077942272144,
0.7237414466636879,
0.725370548686668,
0.7269936021522276,
0.7286102876247479,
0.730221198144945,
0.7318275441313757,
0.7334308487964644,
0.7350326527311288,
0.7366342443839139,
0.7382364302636772
],
[
0.7266815903351612,
0.7239679538705517,
0.721304112011378,
0.7187116815656726,
0.7162116519101759,
0.7138239103364763,
0.7115668041176068,
0.7094567618733281,
0.7075079935363396,
0.7057322830943964,
0.7041388817012515,
0.7027345013181981,
0.7015234015148457,
0.7005075552165768,
0.6996868737723351,
0.6990594683085275,
0.6986219232796786,
0.6983695594981262,
0.6982966675220975,
0.6983966976590109,
0.6986623993694943,
0.6990859098000022,
0.6996587977658746,
0.7003720750471099,
0.7012161907710713,
0.7021810265533773,
0.7032559097910043,
0.7044296601321421,
0.7056906799964673,
0.7070270945878041,
0.7084269407571677,
0.7098783980176101,
0.7113700496332488,
0.712891157550435,
0.7144319323976246,
0.7159837790505387,
0.7175394993437773,
0.7190934362355476,
0.7206415477838696,
0.722181404260183,
0.72371210715143,
0.7252341342223667,
0.726749119797516,
0.7282595836107898,
0.7297686246779194,
0.7312795984873147,
0.7327957962983614,
0.7343201445075049,
0.7358549400166556,
0.7374016345273959
],
[
0.7218646462300393,
0.7189161143121169,
0.7160371286294329,
0.7132538981342869,
0.7105918795500279,
0.7080751556776604,
0.7057258468826308,
0.7035635855304567,
0.7016050801992774,
0.6998637911371871,
0.6983497310524759,
0.697069396606393,
0.6960258268024371,
0.6952187757974901,
0.6946449804089166,
0.6942984974874447,
0.6941710838202113,
0.6942525914469682,
0.6945313540156869,
0.6949945445955255,
0.6956284915325869,
0.6964189457039537,
0.6973512991210828,
0.6984107605592551,
0.6995824981979851,
0.7008517617933523,
0.702203997526415,
0.7036249674546176,
0.7051008826993466,
0.7066185555487281,
0.7081655710561352,
0.7097304740267868,
0.711302963040726,
0.7128740798178131,
0.7144363801285732,
0.7159840717897233,
0.7175131060995963,
0.719021211268116,
0.720507859758206,
0.7219741656675966,
0.7234227129695304,
0.7248573201995057,
0.7262827516305244,
0.7277043887636775,
0.7291278787768467,
0.7305587782058853,
0.7320022104617087,
0.7334625548027204,
0.7349431821833675,
0.7364462501856208
],
[
0.7167834641133604,
0.7135677022433745,
0.710439813241254,
0.7074309545186342,
0.7045714609738093,
0.7018900651231004,
0.6994131438620943,
0.697164029645778,
0.6951624215421757,
0.6934239261827757,
0.6919597504761084,
0.69077655781292,
0.6898764884019666,
0.6892573335046928,
0.6889128438228439,
0.6888331450743249,
0.6890052294814898,
0.6894134907115463,
0.6900402715788219,
0.6908663980421089,
0.691871678979453,
0.6930353580623685,
0.6943365109531028,
0.6957543872840349,
0.6972687018849474,
0.6988598831403504,
0.7005092880341848,
0.7021993934200682,
0.7039139715584007,
0.7056382553338305,
0.7073590952383042,
0.7090651066418187,
0.7107468025285671,
0.7123967041502874,
0.7140094202544495,
0.7155816848868651,
0.7171123443314937,
0.7186022855008298,
0.7200543008853305,
0.7214728887745167,
0.7228639915699167,
0.7242346792699862,
0.7255927892511465,
0.7269465369400713,
0.7283041145541678,
0.7296732965325924,
0.7310610704355576,
0.732473310913174,
0.7339145119145789,
0.73538758881731
],
[
0.7115041811172357,
0.7079895929109576,
0.7045790509214325,
0.7013089674142858,
0.698214938504824,
0.6953307981290595,
0.6926876877707203,
0.6903131883175501,
0.6882305591000921,
0.6864581239902143,
0.6850088356927286,
0.6838900378240428,
0.6831034312057939,
0.6826452374065337,
0.6825065403533486,
0.6826737770199476,
0.6831293416184944,
0.6838522647524341,
0.6848189295258065,
0.6860037901472832,
0.6873800643320767,
0.6889203778758207,
0.6905973472379692,
0.6923840930248365,
0.694254683280839,
0.6961845100703785,
0.6981506057667191,
0.7001319067581494,
0.7021094720981597,
0.7040666632503702,
0.7059892888761947,
0.7078657159883773,
0.7096869461517837,
0.711446653125644,
0.7131411767183967,
0.7147694668937513,
0.7163329724539009,
0.7178354699588341,
0.7192828308426606,
0.7206827277864878,
0.7220442850484016,
0.7233776813171945,
0.7246937173920237,
0.7260033642308181,
0.7273173093161877,
0.7286455205784379,
0.7299968471024578,
0.7313786744581048,
0.7327966497938395,
0.7342544880145481
],
[
0.7061054139989914,
0.7022621950611689,
0.6985362719511882,
0.6949695473026539,
0.6916032151386791,
0.68847664538861,
0.6856262674511634,
0.6830845078708164,
0.6808788374609751,
0.6790309788368544,
0.6775563164330565,
0.6764635384022479,
0.6757545245829765,
0.675424478601666,
0.6754622868532354,
0.675851074135491,
0.676568916246894,
0.6775896645110233,
0.6788838360111266,
0.6804195258524685,
0.6821633032074641,
0.6840810602386436,
0.6861387912110555,
0.6883032872750613,
0.6905427397847048,
0.6928272511021715,
0.6951292563383846,
0.6974238623123687,
0.6996891112678456,
0.701906176786752,
0.7040594981998654,
0.706136857982012,
0.7081294045191814,
0.7100316206194446,
0.7118412365395372,
0.7135590853800026,
0.7151888986463651,
0.7167370406684196,
0.7182121823982515,
0.7196249177513739,
0.720987328900022,
0.7223125104782331,
0.7236140661622127,
0.7249055941672674,
0.726200180485879,
0.7275099198638749,
0.7288454843490382,
0.7302157576505215,
0.7316275505661023,
0.7330854085649455
],
[
0.7006744332772038,
0.6964754985911021,
0.6924033965801817,
0.6885056641420063,
0.6848293641959867,
0.6814198038276326,
0.6783192273166428,
0.6755655472371129,
0.6731911794219609,
0.6712220448472096,
0.6696767932489758,
0.6685662900913013,
0.6678933916004779,
0.6676530137375579,
0.6678324822086402,
0.6684121338507738,
0.6693661265466566,
0.6706634062016719,
0.6722687755887672,
0.6741440107389826,
0.6762489752582078,
0.678542690424358,
0.6809843280057563,
0.683534102344492,
0.6861540474422535,
0.6888086728744828,
0.6914654988910398,
0.6940954758194642,
0.6966732958537316,
0.6991776066340489,
0.7015911359715882,
0.7039007359989493,
0.7060973533299335,
0.70817592989691,
0.7101352373824006,
0.7119776469017746,
0.7137088350765193,
0.7153374280158387,
0.7168745860421035,
0.7183335341818144,
0.719729046315228,
0.7210768941524959,
0.7223932755237229,
0.7236942394334954,
0.7249951275352312,
0.7263100527719875,
0.7276514356474458,
0.7290296168078927,
0.7304525613685849,
0.7319256659083825
],
[
0.6953023622125076,
0.6907240839932071,
0.6862776892499278,
0.6820163833786445,
0.677993285351,
0.6742599905971446,
0.6708650755794026,
0.6678526138663482,
0.6652607793735501,
0.6631206124819522,
0.661455018374859,
0.660278054339784,
0.6595945449935815,
0.6594000431700159,
0.6596811317910133,
0.6604160407765455,
0.6615755350329825,
0.6631240163434173,
0.6650207743867749,
0.6672213202020619,
0.6696787386046587,
0.6723450033033287,
0.6751722084638637,
0.6781136818797697,
0.6811249565205871,
0.6841645880332925,
0.6871948150432102,
0.6901820663923932,
0.6930973245849293,
0.6959163577286738,
0.6986198334036138,
0.7011933275142925,
0.7036272397463216,
0.7059166252281811,
0.7080609498717897,
0.7100637750511803,
0.71193237611756,
0.7136772989722988,
0.7153118596327972,
0.7168515934019716,
0.7183136627308314,
0.719716235866951,
0.7210778515371936,
0.7224167877911729,
0.7237504552928062,
0.7250948363948276,
0.7264639909671604,
0.7278696480214641,
0.7293208987038817,
0.7308240014231877
],
[
0.6900788804826151,
0.6851016062351485,
0.680256067588633,
0.6756010500979024,
0.6711958171572018,
0.6670985381551083,
0.6633646147570569,
0.6600449790817399,
0.6571844476776466,
0.6548202195019401,
0.6529806033453862,
0.651684049896499,
0.650938546405533,
0.6507414091656768,
0.6510794830364142,
0.6519297307129361,
0.6532601701509911,
0.655031098856123,
0.6571965302892088,
0.6597057611816595,
0.6625049889497269,
0.6655389047471935,
0.6687521985763745,
0.672090926611072,
0.6755037057864248,
0.6789427152804359,
0.6823644975644002,
0.6857305624234228,
0.6890078053141695,
0.6921687565535235,
0.695191680325923,
0.6980605427806614,
0.70076486712239,
0.7032994912002631,
0.7056642402916539,
0.7078635251140571,
0.7099058730400841,
0.7118033993583015,
0.7135712253875344,
0.7152268513246174,
0.7167894937400864,
0.7182794003479932,
0.7197171576692606,
0.7211230100179802,
0.7225162103853506,
0.7239144248380929,
0.7253332116517807,
0.7267855943844738,
0.7282817444723105,
0.7298287839062088
],
[
0.6850870741012687,
0.6796954428744625,
0.6744296030611816,
0.6693537035776664,
0.6645331314828599,
0.6600328362358409,
0.6559154972876817,
0.6522396087187009,
0.649057570100032,
0.6464138830479843,
0.6443435560698616,
0.6428708148806256,
0.6420082009493796,
0.6417561183324472,
0.6421028597921059,
0.643025110717132,
0.6444888969635855,
0.6464509139508541,
0.6488601521541466,
0.6516597204996567,
0.6547887648188782,
0.6581843829475168,
0.6617834497469842,
0.6655242821180357,
0.6693480935539744,
0.6732002076448619,
0.6770310182757532,
0.68079669967976,
0.6844596812159132,
0.6879889094981271,
0.6913599245193084,
0.6945547772448886,
0.6975618145526271,
0.7003753542197801,
0.7029952687431649,
0.7054264928720326,
0.7076784664442501,
0.7097645218716235,
0.7117012246547674,
0.7135076756605314,
0.7152047854202809,
0.716814533099378,
0.7183592256164207,
0.7198607751475548,
0.7213400154098824,
0.7228160781975921,
0.7243058512737562,
0.7258235366941499,
0.727380324953765,
0.7289841952117093
],
[
0.6803991381190676,
0.6745822686508763,
0.6688790291951631,
0.6633585888869313,
0.6580923233907678,
0.6531520764828619,
0.6486081988324419,
0.644527432202525,
0.6409707289888916,
0.6379911151878122,
0.6356317166689827,
0.6339240713344522,
0.6328868413822314,
0.6325250197531622,
0.6328296939001913,
0.6337783910603341,
0.6353359865172784,
0.6374561150256114,
0.6400829906351971,
0.6431535155917475,
0.6465995470763214,
0.6503501915758785,
0.6543340091108155,
0.6584810305069612,
0.6627245168375274,
0.6670024175077685,
0.6712585091486925,
0.6754432192853065,
0.6795141553430143,
0.6834363705275608,
0.6871824037544708,
0.6907321319182523,
0.6940724704790656,
0.6971969538085784,
0.7001052211351098,
0.7028024282673814,
0.7052986003466105,
0.7076079372211752,
0.7097480809460539,
0.7117393544287527,
0.7136039812067555,
0.7153652984012981,
0.7170469775672931,
0.7186722708897729,
0.7202633023881142,
0.7218404249579347,
0.7234216638032744,
0.7250222648603334,
0.7266543631731385,
0.7283267810578091
],
[
0.6760735603531626,
0.6698252331192729,
0.6636719794126369,
0.6576875291740453,
0.6519489969897243,
0.6465351316811576,
0.6415242665119678,
0.6369920259699065,
0.6330088735692321,
0.6296376129932966,
0.62693097844035,
0.6249294649283919,
0.6236595513681122,
0.623132455363173,
0.6233435280333863,
0.6242723516373668,
0.6258835473070975,
0.6281282419485774,
0.6309460903166461,
0.6342677076183406,
0.6380173446169503,
0.6421156328313412,
0.6464822406078519,
0.6510383076495642,
0.6557085606996058,
0.660423050956048,
0.6651184896443775,
0.6697391884998691,
0.6742376347342208,
0.6785747447958106,
0.682719848403908,
0.68665045520571,
0.6903518526146399,
0.6938165766683814,
0.6970437896954429,
0.7000385905348558,
0.7028112760175035,
0.7053765670426609,
0.7077528091896479,
0.7099611564160933,
0.7120247467873005,
0.7139678809381874,
0.7158152165383117,
0.7175909947886022,
0.7193183172988665,
0.7210184930164901,
0.7227104747683886,
0.7244104031948173,
0.7261312723697357,
0.7278827264198698
],
[
0.6721541766098201,
0.6654731535210113,
0.658862384312387,
0.6523996013871375,
0.6461672977327465,
0.6402510224843418,
0.6347372921692469,
0.6297111535352399,
0.6252534691239844,
0.6214380357870078,
0.6183286847938678,
0.6159765439241879,
0.6144176598787351,
0.6136711769252136,
0.6137382407700279,
0.6146017452417086,
0.6162269685599558,
0.6185630653744308,
0.6215453026402725,
0.6250978637957282,
0.6291370056490524,
0.6335743400077394,
0.6383200262217866,
0.6432856959428342,
0.6483869794875684,
0.6535455557126303,
0.6586906968942104,
0.6637603215281185,
0.6687015984156209,
0.6734711642470546,
0.6780350251520074,
0.6823682123804466,
0.6864542558861243,
0.6902845295757782,
0.6938575105465604,
0.6971779834903465,
0.7002562118222674,
0.7031070897279812,
0.7057492845239688,
0.7082043764354451,
0.7104960027899082,
0.7126490151764856,
0.7146886606851092,
0.716639801217056,
0.718526187369522,
0.7203698049466625,
0.7221903122886634,
0.7240045850844042,
0.7258263821116748,
0.7276661406286346
],
[
0.6686711214538759,
0.661561724215196,
0.6544920006185836,
0.6475430521170124,
0.6408022863108342,
0.6343618201181825,
0.6283164086778215,
0.6227609075956809,
0.6177873173871431,
0.6134815099207792,
0.6099197928213146,
0.607165521271906,
0.6052660068901823,
0.604249988972224,
0.6041259152665293,
0.6048812239626724,
0.6064827300598926,
0.6088781101084964,
0.6119983675087305,
0.6157610652730772,
0.6200740497812828,
0.6248393655309826,
0.6299570765615986,
0.6353287572150051,
0.6408604810740043,
0.6464652093491542,
0.652064547650612,
0.6575898954413268,
0.6629830517993635,
0.6681963640010345,
0.6731925137989869,
0.677944033348831,
0.6824326322048976,
0.686648402133148,
0.6905889505790019,
0.6942584986489921,
0.6976669668420533,
0.7008290622567652,
0.7037633748175353,
0.706491487004316,
0.709037101145295,
0.7114251898650291,
0.71368117800379,
0.7158301674537978,
0.7178962191627758,
0.7199017084151309,
0.7218667699602482,
0.7238088483634371,
0.7257423660802311,
0.7276785173935324
],
[
0.6656432841587172,
0.6581162761295654,
0.6505935189560431,
0.6431588047340733,
0.6359039007800269,
0.628927120562068,
0.6223313297961407,
0.6162213592101693,
0.6107008410447815,
0.60586854897736,
0.6018143969441301,
0.5986153321060919,
0.5963314265700005,
0.5950025139729457,
0.5946457144203474,
0.5952541350100684,
0.5967969252337105,
0.5992207220347098,
0.602452363722872,
0.6064026144776026,
0.6109705464838191,
0.6160481884990098,
0.6215250680330513,
0.6272923379534386,
0.6332462691149152,
0.6392909893139996,
0.6453404394867734,
0.651319590160659,
0.657165010168289,
0.6628249057958827,
0.6682587553294704,
0.6734366564072819,
0.6783384869893253,
0.6829529598502722,
0.6872766290203232,
0.6913128871441874,
0.6950709768511716,
0.698565027605474,
0.7018131221492336,
0.7048363931185222,
0.7076581499781788,
0.7103030382139143,
0.7127962358274051,
0.7151626957276334,
0.7174264458230563,
0.7196099608639672,
0.7217336209165778,
0.7238152705343438,
0.7258698902134886,
0.727909387775974
],
[
0.6630815308529787,
0.6551552246184844,
0.647194251287865,
0.6392844064280724,
0.6315211897824271,
0.6240085960879161,
0.6168572548073445,
0.6101818478625427,
0.6040977819169888,
0.598717164620065,
0.5941442302603474,
0.5904704698033714,
0.5877698252223623,
0.5860943837641234,
0.5854710287195216,
0.5858994510904977,
0.587351798581721,
0.5897740519034106,
0.5930890081752974,
0.5972005598910587,
0.6019988230684513,
0.6073656116523509,
0.613179778311425,
0.6193220280910077,
0.6256789344607739,
0.6321460192867708,
0.6386298767005095,
0.6450494119087817,
0.6513363245760417,
0.6574349941906881,
0.6633019276075321,
0.668904914239964,
0.6742220095476087,
0.6792404387492318,
0.683955484689353,
0.688369399463237,
0.6924903603012661,
0.6963314767755554,
0.6999098483005217,
0.7032456673646872,
0.7063613639213036,
0.7092807887729229,
0.7120284375392418,
0.7146287209371194,
0.7171052908208133,
0.7194804341088216,
0.7217745479458697,
0.7240057090139005,
0.7261893478265519,
0.7283380353255599
],
[
0.6609917851529088,
0.6526931554979961,
0.644319186376852,
0.6359570222732278,
0.6277052228314826,
0.6196728102687359,
0.6119775884326801,
0.6047436165320406,
0.598097767092426,
0.5921653783341275,
0.5870651264550079,
0.5829033842076247,
0.5797684775261872,
0.5777253695110289,
0.5768113538557315,
0.5770332976988798,
0.5783668267477339,
0.58075761173915,
0.5841246402906111,
0.5883651016117565,
0.593360328066419,
0.5989821597730588,
0.6050991291031244,
0.6115819778384197,
0.6183081831726698,
0.6251653407595533,
0.6320534032830838,
0.6388858841249294,
0.6455902025907875,
0.6521073738962059,
0.6583912428077813,
0.6644074351584413,
0.6701321662780182,
0.6755510075374369,
0.6806576771141662,
0.6854528919106366,
0.689943295636278,
0.6941404634284642,
0.6980599752379434,
0.7017205472985949,
0.7051432119405288,
0.7083505394206862,
0.7113659001080165,
0.7142127702404271,
0.7169140887584161,
0.7194916758327243,
0.7219657252807248,
0.7243543829631752,
0.7266734215225678,
0.7289360186940254
],
[
0.6593771459176564,
0.6507426093809915,
0.6419923363499125,
0.6332142409999845,
0.6245092601400135,
0.6159906714602162,
0.6077826185632939,
0.6000176797561377,
0.5928333605418954,
0.5863674751398206,
0.5807525143689235,
0.5761092687192791,
0.5725401632323364,
0.5701229251662583,
0.5689052967870518,
0.5689014795278543,
0.5700908317204728,
0.5724190580125447,
0.575801781408411,
0.5801300583997169,
0.5852771593408401,
0.5911058358975998,
0.5974753393657982,
0.6042476058376215,
0.6112922349141569,
0.6184901056794408,
0.6257356577537863,
0.6329379955762524,
0.6400210465716437,
0.6469230260855461,
0.6535954472460969,
0.6600018766565467,
0.6661165896327521,
0.6719232310044955,
0.6774135453563195,
0.6825862071154388,
0.6874457570009362,
0.6920016364472179,
0.6962673042811113,
0.7002594183867835,
0.7039970675321102,
0.7075010433223223,
0.7107931480275139,
0.7138955397331398,
0.716830121109787,
0.7196179815780693,
0.7222789044799587,
0.7248309509894737,
0.727290131011621,
0.7296701684839861
],
[
0.6582385658596345,
0.6493140451773112,
0.6402358027220386,
0.6310920544395495,
0.6219854588731819,
0.6130326930592892,
0.604363184167714,
0.5961167919910838,
0.5884402751005071,
0.5814824607795465,
0.5753881840201037,
0.5702912595831042,
0.566306979417752,
0.5635248392996195,
0.5620023312671458,
0.5617606322555995,
0.5627828414779141,
0.5650150854055401,
0.5683703881120677,
0.5727347977630297,
0.5779749656352148,
0.5839462526903548,
0.5905004959668164,
0.597492760344328,
0.6047866629999205,
0.6122581212853084,
0.6197975915246127,
0.6273110127362134,
0.6347197434897749,
0.641959794039554,
0.6489806277452265,
0.6557437540856396,
0.6622212756094893,
0.6683944937832972,
0.6742526303069866,
0.6797916838639991,
0.6850134176663225,
0.6899244591658596,
0.6945354877706489,
0.6988604869605917,
0.7029160416316891,
0.7067206679440463,
0.7102941699513655,
0.713657023793871,
0.7168297955424354,
0.719832602484153,
0.7226846295724747,
0.7254037129525454,
0.7280060010889935,
0.7305057013581131
],
[
0.6575741357781059,
0.648414102781734,
0.6390667674391006,
0.6296203085086874,
0.6201785075837154,
0.6108605410830225,
0.6017998900119121,
0.5931421288859816,
0.5850413875469216,
0.5776553669831368,
0.5711389448183752,
0.5656366265780317,
0.5612743613289285,
0.5581514934398685,
0.556333792853026,
0.5558485197117469,
0.5566822903882704,
0.5587821338160299,
0.5620596383666948,
0.5663976126138586,
0.5716583390103349,
0.5776923622521181,
0.5843468299888523,
0.5914726389263549,
0.5989299505611668,
0.6065919467962999,
0.6143469400372243,
0.6220991097344626,
0.6297682086175221,
0.6372885841114191,
0.6446078169514732,
0.651685212267962,
0.658490306173715,
0.6650014850422925,
0.6712047616379395,
0.6770927142175922,
0.6826635709709277,
0.6879204103851935,
0.692870445358748,
0.697524362185698,
0.7018956923151752,
0.7060002030122148,
0.7098553012311238,
0.7134794521747019,
0.7168916195792877,
0.720110738474128,
0.7231552329811175,
0.7260425917790181,
0.7287890124017454,
0.7314091228982269
],
[
0.6573775574025592,
0.6480429532815658,
0.6384934412883122,
0.6288169412664312,
0.6191178248184575,
0.609516857953425,
0.6001502343190209,
0.5911674379503178,
0.5827277030579078,
0.5749949255630389,
0.5681310417664811,
0.5622881248517668,
0.5575997364237723,
0.554172353164954,
0.5520778866785183,
0.5513483418577799,
0.5519734609749353,
0.553901787695311,
0.5570450444894143,
0.5612851874698727,
0.5664831232164846,
0.5724879278773932,
0.5791455051852782,
0.5863058931787094,
0.5938287817909162,
0.6015871424280143,
0.6094691336239049,
0.6173786080686474,
0.6252346100573504,
0.6329702406947751,
0.6405312090049775,
0.6478743063264574,
0.6549659587227004,
0.6617809400898437,
0.668301273272868,
0.6745153090935551,
0.6804169519856824,
0.6860049926174269,
0.6912825087086724,
0.6962563017335952,
0.7009363464710666,
0.7053352402999663,
0.7094676483059419,
0.7133497478258588,
0.716998681604315,
0.720432032183171,
0.7236673316061926,
0.7267216202410989,
0.7296110668200066,
0.7323506590349576
],
[
0.6576367487146517,
0.6481919793291947,
0.6385115767462696,
0.6286830521154603,
0.6188108803182059,
0.6090165138345506,
0.5994374683739881,
0.590225209640475,
0.5815415984734675,
0.5735537397214759,
0.5664272446215359,
0.5603181592855775,
0.5553641096753077,
0.5516755094868236,
0.5493278862275184,
0.5483564110900946,
0.5487535108589024,
0.5504700053114219,
0.5534196440489048,
0.5574863613337133,
0.562533174848554,
0.568411514504305,
0.5749698838649063,
0.5820610579908472,
0.589547400679008,
0.5973042414056374,
0.6052215220651405,
0.6132040808717251,
0.6211709931485986,
0.6290543623009927,
0.636797880722028,
0.6443553881366186,
0.6516895648696062,
0.6587708223096134,
0.6655763978302247,
0.6720896268463163,
0.6782993476334201,
0.6841993907349037,
0.6897881097611027,
0.6950679202310724,
0.7000448247829847,
0.7047279144743297,
0.7091288457195543,
0.7132613000244722,
0.7171404388824587,
0.7207823690986521,
0.7242036346758108,
0.7274207505839783,
0.7304497916313585,
0.733306046640916
],
[
0.658333545635361,
0.648843053553956,
0.6391031930642912,
0.6292009182712948,
0.6192403231010467,
0.6093426464385555,
0.5996453374498479,
0.5902999137991134,
0.5814683761559774,
0.5733180332109971,
0.5660147577539386,
0.5597149374849937,
0.5545566798439046,
0.5506511210464525,
0.5480748904018489,
0.5468648015186378,
0.5470156250006862,
0.5484813555455772,
0.5511798151226253,
0.5549998836064572,
0.5598102672841843,
0.5654685922114778,
0.571829743363188,
0.578752686561967,
0.586105398235487,
0.5937678867508405,
0.6016335529640425,
0.6096092835533392,
0.6176147089759576,
0.6255810174493585,
0.6334496311777305,
0.6411709509551654,
0.64870328163545,
0.6560119759529327,
0.6630687822768803,
0.6698513521475576,
0.676342851873722,
0.6825316238959711,
0.6884108529913486,
0.693978205512115,
0.6992354236360658,
0.7041878690733585,
0.7088440207535663,
0.7132149383071732,
0.7173137077012739,
0.7211548874889404,
0.7247539742057865,
0.7281269039505972,
0.7312896045599278,
0.7342576094314417
],
[
0.6594450864801673,
0.6499701935883069,
0.6402385408052791,
0.6303363035556854,
0.6203666616812172,
0.6104497291519223,
0.6007215405747167,
0.5913318419377066,
0.5824404694543801,
0.5742121952193568,
0.5668100847119902,
0.5603876478199654,
0.5550803462340205,
0.550997289395178,
0.5482141274540514,
0.546768149640685,
0.5466563705912774,
0.5478369533483581,
0.5502337704415706,
0.5537433877245928,
0.558243408497456,
0.5636010177400341,
0.5696807135613784,
0.5763505298737049,
0.5834864336061748,
0.5909749237845002,
0.5987141064036914,
0.6066136476256644,
0.614594030631925,
0.6225854887688619,
0.6305268942587999,
0.6383647778227927,
0.6460525611095587,
0.6535500122212117,
0.6608228882260864,
0.6678427052495195,
0.6745865715181606,
0.6810370256957143,
0.687181836526086,
0.6930137358664872,
0.6985300726558649,
0.7037323884573102,
0.7086259251392486,
0.7132190818947062,
0.7175228424250514,
0.7215501942236816,
0.725315561041718,
0.7288342673411031,
0.7321220503217932,
0.7351946313578495
],
[
0.6609467919227977,
0.6515434884332518,
0.6418811890816323,
0.6320449434458472,
0.62213640014456,
0.6122736179246673,
0.6025899410049962,
0.5932317095781088,
0.5843546199592118,
0.5761186476660037,
0.5686816103781355,
0.5621916717928116,
0.5567793445584784,
0.5525497865799877,
0.5495763260826587,
0.5478961248282872,
0.5475086576064684,
0.5483772731822505,
0.5504335981354671,
0.5535840821186804,
0.5577176841739754,
0.5627136324479453,
0.5684483450305878,
0.5748009055598993,
0.5816568438190638,
0.5889102887146628,
0.5964647821611054,
0.6042331499133939,
0.6121368326153824,
0.6201050176926386,
0.6280738146517583,
0.6359856122705837,
0.6437886661700233,
0.6514368995834267,
0.6588898609387722,
0.6661127659386286,
0.6730765532831328,
0.6797578955742967,
0.6861391245644773,
0.6922080484577957,
0.6979576556393747,
0.7033857125092414,
0.7084942725414106,
0.7132891194288846,
0.717779169726302,
0.7219758604248665,
0.7258925450599653,
0.7295439188661752,
0.7329454896657402,
0.736113107011804
],
[
0.6628161310501933,
0.6535342319860268,
0.6439948597745586,
0.6342814560378753,
0.6244934372206309,
0.6147458712879136,
0.6051682399730544,
0.5959020864327028,
0.5870973984742758,
0.5789076784848202,
0.5714838087329336,
0.5649670271102969,
0.5594815554869481,
0.5551276202320808,
0.5519757073466198,
0.5500628439899976,
0.5493914677287042,
0.549931062956667,
0.5516222952546217,
0.55438297489296,
0.5581149349329977,
0.5627108716828245,
0.568060353109439,
0.5740544873748619,
0.5805890689374061,
0.5875663031345332,
0.5948954017871415,
0.6024924276192055,
0.6102797580558739,
0.6181854689084487,
0.6261428387451431,
0.634090073421366,
0.6419702660224489,
0.6497315492752053,
0.6573273662825955,
0.6647167770597295,
0.6718647262457862,
0.6787422147147629,
0.6853263388237735,
0.6916001815372823,
0.6975525571016532,
0.7031776241379878,
0.7084743907788519,
0.7134461402116141,
0.7180998064267617,
0.7224453289110199,
0.7264950122368894,
0.7302629126377462,
0.7337642692460202,
0.737014993110303
],
[
0.6650358982042386,
0.6559195702622952,
0.6465497926204292,
0.6370078191882513,
0.627390088775548,
0.6178077760182762,
0.6083854646826822,
0.5992587744269029,
0.5905708271241549,
0.5824675389318694,
0.5750918719183999,
0.5685773640374538,
0.5630414508124494,
0.5585792508187325,
0.5552585551565176,
0.5531166921713101,
0.5521597168276808,
0.552364030200948,
0.5536801448672732,
0.5560379758912722,
0.5593528413120264,
0.5635313427635161,
0.56847645151014,
0.5740913874038396,
0.5802821686150075,
0.5869589578485034,
0.5940364926278731,
0.6014339514237752,
0.6090745879036551,
0.6168853907224855,
0.6247969274247915,
0.6327434344409337,
0.6406631379725672,
0.6484987403617388,
0.6561979832373244,
0.6637141973992918,
0.6710067630175589,
0.6780414252797823,
0.6847904343724125,
0.6912325006267348,
0.6973525735287893,
0.7031414661907585,
0.7085953548873842,
0.7137151870138538,
0.7185060312107481,
0.7229764013525214,
0.7271375824457242,
0.7310029819237697,
0.7345875248909167,
0.7379071069487685
],
[
0.6675957403559452,
0.6586849734368374,
0.6495264124256471,
0.6401985152611807,
0.6307940177336123,
0.6214193833910497,
0.6121934275750015,
0.6032449774926403,
0.594709487166828,
0.5867246218639621,
0.5794249609649902,
0.5729361296954747,
0.5673688325806945,
0.5628133853737521,
0.5593353825072087,
0.5569730584358005,
0.5557366953764418,
0.5556101276015697,
0.5565540604526586,
0.558510644105672,
0.5614085886931895,
0.5651681113784385,
0.5697051522925535,
0.5749345315642718,
0.5807719747607516,
0.5871351475803792,
0.593943975042605,
0.6011205663510588,
0.6085890377330856,
0.6162754485039253,
0.6241079696141941,
0.6320173132977633,
0.6399373826730335,
0.6478060576456229,
0.6555660172879227,
0.6631655035788783,
0.6705589497059549,
0.6777074210132218,
0.68457884248994,
0.6911480096454853,
0.6973963976790434,
0.7033117963852953,
0.7088878055354698,
0.7141232283543039,
0.7190214001998024,
0.7235894866602731,
0.7278377809038891,
0.7317790249685628,
0.7354277743041657,
0.7387998196556216
],
[
0.6704911985910211,
0.6618235243923866,
0.6529149470272371,
0.6438405664162172,
0.6346887757395756,
0.6255606411729413,
0.6165685195509072,
0.6078338045469756,
0.5994837480330845,
0.5916473917928402,
0.5844507636124149,
0.5780116292029599,
0.5724342239838882,
0.5678044830996817,
0.5641863080711799,
0.5616193277645005,
0.5601184267843108,
0.5596750545114338,
0.5602600497746563,
0.561827488659777,
0.5643189437463703,
0.5676675576327642,
0.5718014676918698,
0.5766463263762933,
0.5821268824118833,
0.5881677699599439,
0.59469376296035,
0.6016297828336054,
0.6089009124659618,
0.616432592528854,
0.6241510846146134,
0.6319842016480037,
0.6398622435613208,
0.6477190406738726,
0.6554929970850761,
0.6631280359510663,
0.6705743704399537,
0.6777890514836555,
0.6847362706911008,
0.6913874203713384,
0.6977209307131857,
0.7037219163321877,
0.70938167108577,
0.7146970522221152,
0.7196697936864438,
0.7243057848417533,
0.7286143459012709,
0.7326075257543632,
0.7362994421399537,
0.7397056786546792
],
[
0.6737203634134405,
0.6653321116223487,
0.6567110693275265,
0.6479285178276265,
0.6390679986807725,
0.6302246519042728,
0.6215038637753898,
0.613019140545058,
0.6048891774621045,
0.5972341718784798,
0.590171531613099,
0.5838112439736785,
0.5782512765855621,
0.5735734510837792,
0.5698402365401487,
0.5670928319440437,
0.5653507462278821,
0.5646128655912918,
0.5648597686703404,
0.5660568666984508,
0.5681578544686174,
0.5711079785219445,
0.5748467487373121,
0.579309899043896,
0.5844305916012451,
0.5901400112930533,
0.5963675861103079,
0.6030410878016104,
0.6100868279638875,
0.6174300898838181,
0.6249958503796689,
0.6327097688208683,
0.6404993649979498,
0.6482952781328448,
0.656032494188213,
0.6636514419651603,
0.6710988830402184,
0.678328549588676,
0.6853015122922985,
0.6919862844362378,
0.6983586863095441,
0.7044015058320693,
0.7101039975145935,
0.7154612634573209,
0.7204735582887964,
0.7251455558683626,
0.7294856101781657,
0.7335050368649261,
0.7372174359021019,
0.7406380701965906
],
[
0.6772790561778316,
0.6692056782046353,
0.6609090161599657,
0.6524561963955978,
0.6439255444573654,
0.6354059037661912,
0.6269953392396637,
0.6187991648287069,
0.610927282737123,
0.6034908915216234,
0.5965987064434439,
0.590352928100001,
0.5848452774336146,
0.5801534648192703,
0.5763384565502405,
0.573442830157495,
0.5714903728418709,
0.5704868968579602,
0.570422060745664,
0.5712718408685359,
0.5730012302475724,
0.5755667662614924,
0.578918594051946,
0.5830019254261616,
0.5877579112307689,
0.5931240705951706,
0.5990344898388121,
0.6054200122888392,
0.6122085985549843,
0.6193259649746116,
0.6266965279269957,
0.6342446116600002,
0.6418958283978904,
0.6495785156550158,
0.6572251147693513,
0.6647733909647652,
0.6721674217178514,
0.6793583102833428,
0.6863046098627196,
0.6929724678711225,
0.6993355175626965,
0.7053745557222875,
0.711077050881597,
0.7164365276678155,
0.7214518706664527,
0.7261265867279885,
0.7304680589409882,
0.7344868192866763,
0.738195860824642,
0.7416100044970844
],
[
0.6811559190685765,
0.6734312874193138,
0.6654944155393571,
0.6574080559779286,
0.6492450867878217,
0.6410878257861723,
0.6330268054362843,
0.6251589671488506,
0.6175852776825649,
0.6104078298023321,
0.6037265602278968,
0.5976357910380168,
0.5922208620330125,
0.5875551540688062,
0.5836977912404939,
0.5806922442317886,
0.5785659419564739,
0.5773308527054419,
0.5769848506150775,
0.5775135736062017,
0.5788924328476505,
0.5810884619696928,
0.5840617864008758,
0.5877666218638216,
0.592151841244319,
0.597161249456782,
0.602733757481849,
0.6088036458028857,
0.6153010637977291,
0.6221528430525536,
0.6292836285852381,
0.636617268734537,
0.6440783618905013,
0.6515938394891576,
0.6590944674900336,
0.6665161672828048,
0.6738010848428692,
0.6808983676902964,
0.6877646379908131,
0.6943641739545159,
0.7006688291747769,
0.7066577306111219,
0.7123168012768336,
0.7176381544784154,
0.7226194039132974,
0.7272629292229116,
0.7315751306926421,
0.7355657004389741,
0.7392469311645549,
0.7426330777467683
],
[
0.6853287656433805,
0.6779837162553938,
0.6704389738211595,
0.6627527929867427,
0.6549924825316744,
0.6472337257638479,
0.6395594353654852,
0.6320581186761669,
0.624821768151695,
0.6179433416804566,
0.6115139542900188,
0.6056199585548876,
0.6003401344007818,
0.5957432271321097,
0.5918860543502314,
0.5888123430679675,
0.5865523627549184,
0.5851233044958822,
0.5845302457495194,
0.5847674612317224,
0.5858198135859174,
0.5876639894348777,
0.590269427500739,
0.5935988928783482,
0.5976087567510086,
0.6022491185925747,
0.6074639430575388,
0.6131913740282853,
0.6193643426833926,
0.6259115208238425,
0.6327586023421958,
0.6398298388851891,
0.6470497190552793,
0.6543446664273119,
0.6616446377524113,
0.668884523482663,
0.6760052816552008,
0.6829547672372757,
0.6896882477111029,
0.6961686191596447,
0.7023663541824895,
0.7082592236177653,
0.7138318390396831,
0.7190750634948244,
0.7239853351795973,
0.7285639438987189,
0.7328162941421622,
0.7367511822155376,
0.7403801085829886,
0.7437166407758998
],
[
0.6897630730972691,
0.6828236701304324,
0.6756983668889494,
0.6684408678310851,
0.661112880006255,
0.653783448605725,
0.6465278975825354,
0.6394263658865391,
0.6325619634324027,
0.6260186119063612,
0.6198786797432363,
0.614220561249475,
0.6091163780264274,
0.6046299872387756,
0.600815458748883,
0.5977161298341762,
0.595364267918317,
0.5937812823514057,
0.5929783452577665,
0.5929572287895679,
0.593711155912298,
0.5952254973602963,
0.59747821938937,
0.6004400763015882,
0.6040746253750257,
0.6083381997622858,
0.6131799955259498,
0.6185424113222454,
0.624361731820585,
0.6305691829555667,
0.6370923238582428,
0.6438566892979164,
0.6507875650736451,
0.6578117688782423,
0.6648593180604964,
0.6718648880561593,
0.6787689947998371,
0.6855188654967378,
0.6920689904607749,
0.6983813717161612,
0.7044255006324183,
0.7101781070873203,
0.7156227273276439,
0.7207491379787111,
0.7255527007730032,
0.7300336576582677,
0.7341964099484766,
0.7380488088188806,
0.7416014782316134,
0.7448671856436093
],
[
0.6944128118632166,
0.6878988314707754,
0.6812135554482623,
0.6744061442668108,
0.6675327498640706,
0.6606558758600479,
0.6538434092260264,
0.6471673257225287,
0.6407020998239658,
0.6345228825329483,
0.628703543554698,
0.6233147020928004,
0.6184218863106358,
0.614083958887459,
0.6103519210315363,
0.6072681601638175,
0.6048661434078694,
0.6031704917443401,
0.6021973132634585,
0.6019546427641539,
0.6024428381786788,
0.6036548224919555,
0.6055761240616119,
0.608184742442465,
0.611450932397147,
0.6153370400491981,
0.6197975335424335,
0.6247793464008897,
0.6302226031327848,
0.6360617362646158,
0.6422269454661846,
0.6486459036410085,
0.6552455880839123,
0.66195410832154,
0.6687024132654431,
0.6754257836109852,
0.6820650450730926,
0.6885674687233246,
0.6948873524002466,
0.7009862995111398,
0.7068332275668808,
0.712404148616312,
0.7176817681777723,
0.7226549494392546,
0.7273180866161911,
0.7316704265171468,
0.7357153714855704,
0.7394597906595237,
0.7429133604166713,
0.7460879492704313
],
[
0.6992231776354115,
0.6931471655097872,
0.6869147646139215,
0.6805706536077258,
0.6741655535932711,
0.6677556233681192,
0.6614015872625263,
0.6551676066767547,
0.6491199297533374,
0.6433253787466457,
0.6378497581152661,
0.6327562836416005,
0.6281041391116413,
0.6239472582222333,
0.6203334036548966,
0.6173035744981422,
0.6148917234848528,
0.6131247165691289,
0.6120224306048112,
0.6115978703373615,
0.6118571990165006,
0.6127996162924416,
0.614417074203714,
0.6166938834453226,
0.619606312786759,
0.6231223123524012,
0.627201490393347,
0.6317954444284514,
0.6368484988909908,
0.6422988441437175,
0.6480800178348853,
0.6541226285289856,
0.6603561986552497,
0.666710999894496,
0.67311976636729,
0.6795191944422966,
0.6858511670906757,
0.692063670495786,
0.6981113973910749,
0.7039560531306368,
0.7095663959251294,
0.7149180521422228,
0.7199931518565665,
0.724779830028443,
0.7292716359428217,
0.7334668889046329,
0.737368012537203,
0.7409808740409428,
0.744314148916367,
0.747378726250553
],
[
0.7041344097135183,
0.6985014527362083,
0.6927268347415239,
0.6868508738955645,
0.6809190632676045,
0.6749815113687331,
0.6690921700949852,
0.6633078669912983,
0.6576871772117799,
0.65228918899989,
0.6471722320115608,
0.6423926469101026,
0.6380036740672076,
0.6340545266575444,
0.6305896887412283,
0.6276484447243577,
0.6252646084999327,
0.6234663864779008,
0.6222762870604615,
0.6217109866279952,
0.6217810815264309,
0.6224906942939079,
0.6238369525884484,
0.6258094096215492,
0.6283895134310095,
0.6315502497586868,
0.635256075482049,
0.639463228392972,
0.6441204517626894,
0.6491701187273702,
0.654549692447075,
0.6601934213774467,
0.6660341493063724,
0.6720051175633703,
0.678041649331029,
0.684082628703862,
0.6900717149454921,
0.69595826072346,
0.701697928548605,
0.7072530201644492,
0.7125925484047342,
0.7176920901851609,
0.722533463537224,
0.7271042719399783,
0.7313973567354651,
0.7354101941168019,
0.7391442678836895,
0.7426044435089167,
0.7457983635103225,
0.7487358789774281
],
[
0.7090858074643116,
0.7038939606789403,
0.6985746225955114,
0.6931639332759166,
0.6877024354573524,
0.6822345689333502,
0.6768079999330268,
0.6714728054268306,
0.6662805462858417,
0.661283276002246,
0.6565325408860306,
0.6520784308038211,
0.6479687345562696,
0.6442482399358691,
0.6409581961521803,
0.638135928577365,
0.635814567594703,
0.6340228309261149,
0.6327847882549883,
0.6321195425216,
0.6320407848892318,
0.632556216854839,
0.633666876265543,
0.6353664447046662,
0.6376406423968842,
0.6404668264605019,
0.6438138963125049,
0.6476425785592815,
0.6519061192326063,
0.6565513625666136,
0.6615201515328394,
0.6667509529739009,
0.6721805931437207,
0.6777459881226977,
0.683385765514774,
0.6890416949744588,
0.6946598708933047,
0.7001916168872305,
0.7055941054718501,
0.7108307055961323,
0.7158710847348831,
0.720691101082964,
0.7252725256706916,
0.7296026348361611,
0.7336737114254466,
0.7374824892597096,
0.7410295705824229,
0.7443188409845494,
0.747356901139233,
0.7501525298534537
],
[
0.7140192324984478,
0.7092604148078749,
0.7043874717452311,
0.6994326046120817,
0.6944317467991514,
0.6894241175199137,
0.6844516503650407,
0.6795583172748206,
0.6747893786281928,
0.6701905983516108,
0.6658074674733172,
0.661684478714746,
0.6578644873916947,
0.6543881799855369,
0.6512936525394113,
0.6486160793838452,
0.646387432743045,
0.6446362002480509,
0.6433870445231649,
0.6426603593377714,
0.6424717001193414,
0.6428310995403639,
0.6437423153020061,
0.6452020895078605,
0.6471995198166502,
0.649715646717259,
0.6527233471518435,
0.6561875946507141,
0.6600661057750782,
0.6643103494489903,
0.6688668571332886,
0.6736787435276295,
0.6786873327071111,
0.683833783590575,
0.6890606193396728,
0.69431308420377,
0.6995402744996987,
0.7046960142351318,
0.7097394675788801,
0.7146354982049372,
0.7193547987106587,
0.7238738218195818,
0.7281745494260593,
0.7322441364977648,
0.7360744652862734,
0.7396616420273476,
0.7430054640488173,
0.7461088805074557,
0.7489774652626122,
0.7516189159474294
],
[
0.7188816847400199,
0.7145428143265099,
0.7101022607267687,
0.7055885714736354,
0.7010334559224284,
0.6964714001314445,
0.6919391885890703,
0.6874753523032981,
0.6831195696453752,
0.6789120510546366,
0.6748929399912175,
0.6711017593321766,
0.6675769242734866,
0.664355330129681,
0.6614720076995899,
0.6589598226473036,
0.6568491819602119,
0.6551677034842016,
0.6539398066327708,
0.6531861949320411,
0.6529232232378048,
0.6531621710277304,
0.6539084729834492,
0.6551609830684991,
0.6569113628857691,
0.6591436855309398,
0.6618343315572384,
0.6649522262447094,
0.6684594318936872,
0.6723120714836143,
0.6764615268347364,
0.6808558301123114,
0.6854411547096908,
0.6901633105136148,
0.6949691576313312,
0.699807868957319,
0.7046319921539981,
0.7093982826233955,
0.714068298425482,
0.7186087642668063,
0.7229917238725361,
0.7271945081671445,
0.7311995510904747,
0.7349940861992442,
0.7385697561831143,
0.7419221647780045,
0.7450503969204504,
0.7479565288697214,
0.7506451458178509,
0.7531228804843446
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: 0.0408881 (SEM: 0.1)
x1: 0.959061
x2: 0.421097
x3: 0.693045
x4: 0.394199
x5: 0.937822
x6: 0.651645",
"Arm 10_0
hartmann6: -0.311272 (SEM: 0.1)
x1: 0.531038
x2: 0.995568
x3: 0.926524
x4: 0.966679
x5: 0.272159
x6: 0.307865",
"Arm 11_0
hartmann6: -0.0988553 (SEM: 0.1)
x1: 0.86786
x2: 0.608454
x3: 0.655593
x4: 0.127577
x5: 0.611836
x6: 0.9546",
"Arm 12_0
hartmann6: -1.7292 (SEM: 0.1)
x1: 0.319713
x2: 0.677944
x3: 0.445753
x4: 0.553277
x5: 0.490442
x6: 0.112938",
"Arm 13_0
hartmann6: -2.48129 (SEM: 0.1)
x1: 0.331355
x2: 0.778461
x3: 0.43235
x4: 0.543415
x5: 0.480897
x6: 0.091974",
"Arm 14_0
hartmann6: -2.49718 (SEM: 0.1)
x1: 0.441385
x2: 0.749986
x3: 0.411011
x4: 0.626722
x5: 0.450572
x6: 0.0857722",
"Arm 15_0
hartmann6: -2.52803 (SEM: 0.1)
x1: 0.323854
x2: 0.766789
x3: 0.525732
x4: 0.613687
x5: 0.439902
x6: 0.0683914",
"Arm 16_0
hartmann6: -2.89765 (SEM: 0.1)
x1: 0.354954
x2: 0.82938
x3: 0.486524
x4: 0.612547
x5: 0.445268
x6: 0.0201658",
"Arm 17_0
hartmann6: -3.1367 (SEM: 0.1)
x1: 0.399697
x2: 0.85098
x3: 0.479693
x4: 0.593301
x5: 0.410735
x6: 0.0408445",
"Arm 18_0
hartmann6: -2.86112 (SEM: 0.1)
x1: 0.44363
x2: 0.88217
x3: 0.520244
x4: 0.578702
x5: 0.449428
x6: 0.0267496",
"Arm 1_0
hartmann6: -0.0554249 (SEM: 0.1)
x1: 0.442236
x2: 0.450873
x3: 0.0611543
x4: 0.802372
x5: 0.223707
x6: 0.536141",
"Arm 2_0
hartmann6: -0.241457 (SEM: 0.1)
x1: 0.921714
x2: 0.00674208
x3: 0.18159
x4: 0.41122
x5: 0.0306228
x6: 0.600647",
"Arm 3_0
hartmann6: -2.94182 (SEM: 0.1)
x1: 0.404707
x2: 0.802856
x3: 0.487908
x4: 0.594826
x5: 0.447605
x6: 0.0766765",
"Arm 4_0
hartmann6: -0.453999 (SEM: 0.1)
x1: 0.295047
x2: 0.488927
x3: 0.894945
x4: 0.382528
x5: 0.480947
x6: 0.0794081",
"Arm 5_0
hartmann6: 0.0148572 (SEM: 0.1)
x1: 0.3332
x2: 0.885637
x3: 0.0734706
x4: 0.0775219
x5: 0.867887
x6: 0.965997",
"Arm 6_0
hartmann6: 0.0826586 (SEM: 0.1)
x1: 0.695888
x2: 0.819337
x3: 0.838895
x4: 0.155663
x5: 0.83838
x6: 0.954818",
"Arm 7_0
hartmann6: -0.292789 (SEM: 0.1)
x1: 0.258997
x2: 0.964524
x3: 0.560169
x4: 0.0606043
x5: 0.905849
x6: 0.262307",
"Arm 8_0
hartmann6: -0.0077648 (SEM: 0.1)
x1: 0.539608
x2: 0.0136075
x3: 0.39022
x4: 0.540406
x5: 0.894388
x6: 0.614211",
"Arm 9_0
hartmann6: -0.376055 (SEM: 0.1)
x1: 0.15475
x2: 0.417481
x3: 0.271358
x4: 0.50263
x5: 0.94393
x6: 0.379732"
],
"type": "scatter",
"x": [
0.9590608477592468,
0.5310381632298231,
0.867860441096127,
0.31971278921789,
0.33135486623880955,
0.44138468242397855,
0.3238537209497801,
0.35495352579043865,
0.39969669007590325,
0.4436301282423099,
0.44223565328866243,
0.9217137703672051,
0.404706790111959,
0.29504675325006247,
0.33319970965385437,
0.6958879502490163,
0.2589973397552967,
0.5396084254607558,
0.15474964305758476
],
"xaxis": "x",
"y": [
0.42109689116477966,
0.9955677976831794,
0.6084542647004128,
0.6779443001622937,
0.7784614507019211,
0.7499858833973148,
0.7667887618188355,
0.8293796191930881,
0.8509796802919254,
0.8821703502751393,
0.4508734196424484,
0.0067420778796076775,
0.8028556574136019,
0.4889271007850766,
0.8856371883302927,
0.8193371538072824,
0.9645243026316166,
0.01360748428851366,
0.41748135816305876
],
"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.0408881 (SEM: 0.1)
x1: 0.959061
x2: 0.421097
x3: 0.693045
x4: 0.394199
x5: 0.937822
x6: 0.651645",
"Arm 10_0
hartmann6: -0.311272 (SEM: 0.1)
x1: 0.531038
x2: 0.995568
x3: 0.926524
x4: 0.966679
x5: 0.272159
x6: 0.307865",
"Arm 11_0
hartmann6: -0.0988553 (SEM: 0.1)
x1: 0.86786
x2: 0.608454
x3: 0.655593
x4: 0.127577
x5: 0.611836
x6: 0.9546",
"Arm 12_0
hartmann6: -1.7292 (SEM: 0.1)
x1: 0.319713
x2: 0.677944
x3: 0.445753
x4: 0.553277
x5: 0.490442
x6: 0.112938",
"Arm 13_0
hartmann6: -2.48129 (SEM: 0.1)
x1: 0.331355
x2: 0.778461
x3: 0.43235
x4: 0.543415
x5: 0.480897
x6: 0.091974",
"Arm 14_0
hartmann6: -2.49718 (SEM: 0.1)
x1: 0.441385
x2: 0.749986
x3: 0.411011
x4: 0.626722
x5: 0.450572
x6: 0.0857722",
"Arm 15_0
hartmann6: -2.52803 (SEM: 0.1)
x1: 0.323854
x2: 0.766789
x3: 0.525732
x4: 0.613687
x5: 0.439902
x6: 0.0683914",
"Arm 16_0
hartmann6: -2.89765 (SEM: 0.1)
x1: 0.354954
x2: 0.82938
x3: 0.486524
x4: 0.612547
x5: 0.445268
x6: 0.0201658",
"Arm 17_0
hartmann6: -3.1367 (SEM: 0.1)
x1: 0.399697
x2: 0.85098
x3: 0.479693
x4: 0.593301
x5: 0.410735
x6: 0.0408445",
"Arm 18_0
hartmann6: -2.86112 (SEM: 0.1)
x1: 0.44363
x2: 0.88217
x3: 0.520244
x4: 0.578702
x5: 0.449428
x6: 0.0267496",
"Arm 1_0
hartmann6: -0.0554249 (SEM: 0.1)
x1: 0.442236
x2: 0.450873
x3: 0.0611543
x4: 0.802372
x5: 0.223707
x6: 0.536141",
"Arm 2_0
hartmann6: -0.241457 (SEM: 0.1)
x1: 0.921714
x2: 0.00674208
x3: 0.18159
x4: 0.41122
x5: 0.0306228
x6: 0.600647",
"Arm 3_0
hartmann6: -2.94182 (SEM: 0.1)
x1: 0.404707
x2: 0.802856
x3: 0.487908
x4: 0.594826
x5: 0.447605
x6: 0.0766765",
"Arm 4_0
hartmann6: -0.453999 (SEM: 0.1)
x1: 0.295047
x2: 0.488927
x3: 0.894945
x4: 0.382528
x5: 0.480947
x6: 0.0794081",
"Arm 5_0
hartmann6: 0.0148572 (SEM: 0.1)
x1: 0.3332
x2: 0.885637
x3: 0.0734706
x4: 0.0775219
x5: 0.867887
x6: 0.965997",
"Arm 6_0
hartmann6: 0.0826586 (SEM: 0.1)
x1: 0.695888
x2: 0.819337
x3: 0.838895
x4: 0.155663
x5: 0.83838
x6: 0.954818",
"Arm 7_0
hartmann6: -0.292789 (SEM: 0.1)
x1: 0.258997
x2: 0.964524
x3: 0.560169
x4: 0.0606043
x5: 0.905849
x6: 0.262307",
"Arm 8_0
hartmann6: -0.0077648 (SEM: 0.1)
x1: 0.539608
x2: 0.0136075
x3: 0.39022
x4: 0.540406
x5: 0.894388
x6: 0.614211",
"Arm 9_0
hartmann6: -0.376055 (SEM: 0.1)
x1: 0.15475
x2: 0.417481
x3: 0.271358
x4: 0.50263
x5: 0.94393
x6: 0.379732"
],
"type": "scatter",
"x": [
0.9590608477592468,
0.5310381632298231,
0.867860441096127,
0.31971278921789,
0.33135486623880955,
0.44138468242397855,
0.3238537209497801,
0.35495352579043865,
0.39969669007590325,
0.4436301282423099,
0.44223565328866243,
0.9217137703672051,
0.404706790111959,
0.29504675325006247,
0.33319970965385437,
0.6958879502490163,
0.2589973397552967,
0.5396084254607558,
0.15474964305758476
],
"xaxis": "x2",
"y": [
0.42109689116477966,
0.9955677976831794,
0.6084542647004128,
0.6779443001622937,
0.7784614507019211,
0.7499858833973148,
0.7667887618188355,
0.8293796191930881,
0.8509796802919254,
0.8821703502751393,
0.4508734196424484,
0.0067420778796076775,
0.8028556574136019,
0.4889271007850766,
0.8856371883302927,
0.8193371538072824,
0.9645243026316166,
0.01360748428851366,
0.41748135816305876
],
"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": [
"