{ "cells": [ { "cell_type": "markdown", "id": "1c2e6205", "metadata": { "papermill": { "duration": 0.003418, "end_time": "2024-07-23T19:33:04.321186", "exception": false, "start_time": "2024-07-23T19:33:04.317768", "status": "completed" }, "tags": [] }, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "id": "35b91f44", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:33:04.326892Z", "iopub.status.busy": "2024-07-23T19:33:04.326635Z", "iopub.status.idle": "2024-07-23T19:33:07.528476Z", "shell.execute_reply": "2024-07-23T19:33:07.527703Z" }, "papermill": { "duration": 3.219894, "end_time": "2024-07-23T19:33:07.543366", "exception": false, "start_time": "2024-07-23T19:33:04.323472", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.utils.notebook.plotting: Please see\n", " (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering)\n", " if visualizations are not rendering.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "from ax.metrics.branin import branin\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import init_notebook_plotting, render\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "id": "669844dc", "metadata": { "papermill": { "duration": 0.035806, "end_time": "2024-07-23T19:33:07.611431", "exception": false, "start_time": "2024-07-23T19:33:07.575625", "status": "completed" }, "tags": [] }, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "id": "0f831ebc", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:33:07.684552Z", "iopub.status.busy": "2024-07-23T19:33:07.684093Z", "iopub.status.idle": "2024-07-23T19:33:07.688449Z", "shell.execute_reply": "2024-07-23T19:33:07.687865Z" }, "papermill": { "duration": 0.042326, "end_time": "2024-07-23T19:33:07.689820", "exception": false, "start_time": "2024-07-23T19:33:07.647494", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x**2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "id": "d4ec7f69", "metadata": { "papermill": { "duration": 0.036189, "end_time": "2024-07-23T19:33:07.761888", "exception": false, "start_time": "2024-07-23T19:33:07.725699", "status": "completed" }, "tags": [] }, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "id": "583a1969", "metadata": { "papermill": { "duration": 0.035419, "end_time": "2024-07-23T19:33:07.832800", "exception": false, "start_time": "2024-07-23T19:33:07.797381", "status": "completed" }, "tags": [] }, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "id": "69e679f9", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:33:07.906091Z", "iopub.status.busy": "2024-07-23T19:33:07.905592Z", "iopub.status.idle": "2024-07-23T19:35:30.164696Z", "shell.execute_reply": "2024-07-23T19:35:30.163960Z" }, "papermill": { "duration": 142.29791, "end_time": "2024-07-23T19:35:30.166632", "exception": false, "start_time": "2024-07-23T19:33:07.868722", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 12 trials, BoTorch for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:07] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.DL1QmpHQMI/Ax-main/ax/modelbridge/cross_validation.py:462: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 07-23 19:33:08] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:20] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:31] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:40] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:50] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:33:57] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:04] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:12] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:18] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:24] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:31] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:38] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:46] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:34:53] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:35:00] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:35:07] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:35:15] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-23 19:35:22] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "id": "ff5751f7", "metadata": { "papermill": { "duration": 0.054194, "end_time": "2024-07-23T19:35:30.278561", "exception": false, "start_time": "2024-07-23T19:35:30.224367", "status": "completed" }, "tags": [] }, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "id": "4da8ac46", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:35:30.355559Z", "iopub.status.busy": "2024-07-23T19:35:30.355050Z", "iopub.status.idle": "2024-07-23T19:35:30.361891Z", "shell.execute_reply": "2024-07-23T19:35:30.361292Z" }, "papermill": { "duration": 0.046926, "end_time": "2024-07-23T19:35:30.363202", "exception": false, "start_time": "2024-07-23T19:35:30.316276", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.19314069079097093,\n", " 'x2': 0.1994478468838452,\n", " 'x3': 0.4885211779082532,\n", " 'x4': 0.29814145927035457,\n", " 'x5': 0.31170656162801025,\n", " 'x6': 0.6760903962353618}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "id": "5c00a188", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:35:30.440809Z", "iopub.status.busy": "2024-07-23T19:35:30.440150Z", "iopub.status.idle": "2024-07-23T19:35:30.444808Z", "shell.execute_reply": "2024-07-23T19:35:30.444120Z" }, "papermill": { "duration": 0.045103, "end_time": "2024-07-23T19:35:30.446146", "exception": false, "start_time": "2024-07-23T19:35:30.401043", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -3.2688188430198526, 'l2norm': 0.979228771251709}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "id": "5db8e01f", "metadata": { "papermill": { "duration": 0.037885, "end_time": "2024-07-23T19:35:30.521714", "exception": false, "start_time": "2024-07-23T19:35:30.483829", "status": "completed" }, "tags": [] }, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "id": "e67aee30", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:35:30.599751Z", "iopub.status.busy": "2024-07-23T19:35:30.599137Z", "iopub.status.idle": "2024-07-23T19:35:30.603600Z", "shell.execute_reply": "2024-07-23T19:35:30.602961Z" }, "papermill": { "duration": 0.045045, "end_time": "2024-07-23T19:35:30.605026", "exception": false, "start_time": "2024-07-23T19:35:30.559981", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "id": "f744959e", "metadata": { "papermill": { "duration": 0.038095, "end_time": "2024-07-23T19:35:30.681042", "exception": false, "start_time": "2024-07-23T19:35:30.642947", "status": "completed" }, "tags": [] }, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "id": "2fe971af", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:35:30.759261Z", "iopub.status.busy": "2024-07-23T19:35:30.758587Z", "iopub.status.idle": "2024-07-23T19:35:31.507634Z", "shell.execute_reply": "2024-07-23T19:35:31.506900Z" }, "papermill": { "duration": 0.793182, "end_time": "2024-07-23T19:35:31.512387", "exception": false, "start_time": "2024-07-23T19:35:30.719205", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.2718761498357427, -2.3029933952137247, -2.331008510225314, -2.3556478067558517, -2.3766484064111424, -2.3937632896959014, -2.4067665995023795, -2.415459015593372, -2.419672977071204, -2.4192775043970434, -2.4141823676281096, -2.404341366657502, -2.389754531832935, -2.370469114675835, -2.346579310703338, -2.31822473060716, -2.285587704189319, -2.2488895577278827, -2.208386046813372, -2.1643621524875964, -2.117126459647399, -2.0670053349179263, -2.0143371086651904, -1.959466444691855, -1.9027390535979807, -1.8444968739109715, -1.7850738110120796, -1.7247920897123377, -1.6639592440704356, -1.602865739450869, -1.541783198208642, -1.4809631824892424, -1.420636475576996, -1.3610127965963426, -1.30228088137557, -1.2446088639228718, -1.1881448972040796, -1.133017957797167, -1.0793387857330905, -1.027200917798202, -0.9766817793342529, -0.9278438058433398, -0.8807355713293062, -0.8353929052178467, -0.7918399838922365, -0.7500903863998006, -0.7101481067876056, -0.6720085178878565, -0.6356592832687777, -0.6010812155678418 ], [ -2.29311172239398, -2.3247125869701493, -2.35316629205174, -2.378192616487398, -2.3995222475881204, -2.4169020220644226, -2.430100443900204, -2.438913284561703, -2.4431690270497004, -2.4427338870472064, -2.4375161390188254, -2.427469496639156, -2.4125953447461534, -2.392943688594947, -2.368612766368252, -2.339747352229207, -2.3065358504132893, -2.2692063395586173, -2.2280217676375482, -2.183274521288741, -2.135280600718036, -2.084373625213531, -2.0308988775343586, -1.9752075707104224, -1.917651490598194, -1.8585781340709824, -1.7983264279752977, -1.7372230798227142, -1.6755795793574333, -1.613689842172256, -1.551828463603239, -1.49024953386555, -1.429185953890759, -1.3688491851689326, -1.309429365297806, -1.251095722906212, -1.1939972301209678, -1.1382634368406443, -1.0840054379739203, -1.0313169318848396, -0.9802753351313597, -0.9309429249106225, -0.8833679862810913, -0.8375859461586637, -0.7936204802822665, -0.7514845828582934, -0.7111815914871057, -0.672706162324499, -0.6360451923128727, -0.6011786868048508 ], [ -2.3122013396597985, -2.3442272278708387, -2.3730641885669517, -2.3984260594969826, -2.420037694436923, -2.4376403847702512, -2.4509975792585186, -2.4599006964171304, -2.464174775852639, -2.46368368384984, -2.4583345826388534, -2.4480813967896635, -2.432927063374049, -2.4129244285223805, -2.3881757412085287, -2.358830783510452, -2.325083754712373, -2.2871690874281123, -2.2453564144582696, -2.199944925716861, -2.1512573577581624, -2.0996338476357033, -2.0454258616147394, -1.9889903809143332, -1.9306844939467998, -1.8708605096943325, -1.809861671748609, -1.7480185187206039, -1.6856459056415853, -1.6230406738969092, -1.5604799351482805, -1.4982199181733897, -1.4364953166443228, -1.3755190701684703, -1.3154825096581302, -1.2565558003138215, -1.198888620192707, -1.1426110185591203, -1.0878344051995545, -1.0346526290289746, -0.983143111196358, -0.9333680042427525, -0.8853753545284749, -0.8392002500697743, -0.7948659401155228, -0.7523849162960843, -0.7117599480571377, -0.6729850674274042, -0.636046500038081, -0.6009235407885348 ], [ -2.3290454251165693, -2.3614336512665366, -2.390594660942451, -2.416237017212415, -2.4380804194840837, -2.4558612917220994, -2.4693386879484454, -2.47830029896266, -2.4825682921708534, -2.482004682668424, -2.476515927489495, -2.466056461494932, -2.450630951944932, -2.4302951321555883, -2.4051551707572316, -2.375365628367107, -2.341126136211063, -2.302676993778058, -2.2602939220940192, -2.214282226651141, -2.1649706227769583, -2.1127049605994044, -2.057842061098761, -2.000743842852086, -1.9417718840263951, -1.8812825282291372, -1.819622607623469, -1.7571258235262504, -1.6941097946286516, -1.6308737570026657, -1.5676968789844952, -1.504837138328038, -1.442530698739611, -1.3809917176470594, -1.32041251609136, -1.2609640440303316, -1.2027965791374664, -1.1460406034606652, -1.0908078093140747, -1.0371921929241137, -0.9852712012218997, -0.9351069035038381, -0.8867471653253537, -0.8402268068961857, -0.7955687324151539, -0.7527850202654892, -0.7118779668557299, -0.6728410792126142, -0.6356600132901759, -0.6003134564255859 ], [ -2.3435538873380732, -2.3762380910468943, -2.4056604791197103, -2.431525077247756, -2.453547184290088, -2.471459110227018, -2.485016247501499, -2.494003249919638, -2.4982400375916116, -2.4975873102465203, -2.491951244798706, -2.4812870821390014, -2.465601371923418, -2.4449527345612783, -2.419451103249137, -2.3892555106294875, -2.354570571524093, -2.315641877054201, -2.2727505535880126, -2.22620725399811, -2.176345842911018, -2.123517017198333, -2.068082072965659, -2.01040699506731, -1.9508570080157657, -1.889791690333657, -1.8275607193481789, -1.7645002810944, -1.7009301511234416, -1.6371514273016694, -1.5734448757442578, -1.5100698362250982, -1.4472636237662921, -1.385241358271586, -1.3241961533450284, -1.2642995979536604, -1.205702469420207, -1.1485356224983099, -1.0929110062501883, -1.038922767542894, -0.986648406797318, -0.9361499579032219, -0.8874751698133538, -0.8406586721943461, -0.79572311165097, -0.7526802484983901, -0.7115320069008005, -0.6722714735020602, -0.6348838415206195, -0.5993472987402882 ], [ -2.3556473338406763, -2.3885579788068, -2.4181761007455767, -2.4442019904798666, -2.466347368657303, -2.4843412537338097, -2.497936175648519, -2.5069145005120603, -2.5110945728203715, -2.51033634357312, -2.504546146208659, -2.4936803138446915, -2.4777474000020865, -2.4568088619366515, -2.4309781761929807, -2.400418463472579, -2.3653387903243708, -2.325989379889965, -2.2826560004222634, -2.235653810850481, -2.185320932401528, -2.1320119902617214, -2.076091835228078, -2.0179296170321117, -1.9578933420338227, -1.8963450105266966, -1.833636394193868, -1.7701054829345826, -1.7060736027461825, -1.6418431830067926, -1.577696132765235, -1.513892771782264, -1.4506712530804764, -1.3882474093184964, -1.3268149547786952, -1.2665459773312866, -1.2075916595324827, -1.1500831742003537, -1.0941327066794133, -1.0398345629985566, -0.9872663298507673, -0.9364900585206158, -0.8875534504170615, -0.8404910266804472, -0.7953252684294163, -0.7520677176400593, -0.7107200314715331, -0.6712749851439725, -0.633717420311743, -0.5980251373294957 ], [ -2.3652582002960814, -2.3983231520621713, -2.428068956841834, -2.4541930304982023, -2.476404397733927, -2.4944296677844, -2.5080193635619685, -2.5169543618378785, -2.521052140806719, -2.5201724918180366, -2.514222345857777, -2.5031593993071004, -2.486994296569505, -2.465791229793466, -2.439666932277048, -2.4087881544300984, -2.373367804390159, -2.3336600005120034, -2.289954317623766, -2.2425695160952666, -2.1918470283153986, -2.138144447951941, -2.0818292297243213, -2.023272766517134, -1.962844970173659, -1.9009094444413073, -1.837819304329885, -1.773913665920475, -1.709514804520596, -1.6449259571333368, -1.5804297277048909, -1.5162870407082667, -1.4527365802856025, -1.3899946481050558, -1.3282553727201536, -1.267691205797509, -1.2084536452847812, -1.1506741316385583, -1.094465069946432, -1.0399209376228913, -0.9871194439501213, -0.9361227138213963, -0.8869784734867633, -0.8397212208425647, -0.7943733668514833, -0.7509463380693426, -0.7094416330515017, -0.6698518276878795, -0.6321615263440395, -0.5963482571375215 ], [ -2.37233176192964, -2.405476936743235, -2.43528060375771, -2.4614382113300075, -2.483657019451601, -2.501662158504673, -2.515203044078997, -2.524059898997156, -2.5280500708552434, -2.527033793077643, -2.5209190318712746, -2.5096650976089956, -2.493284775924872, -2.471844841051982, -2.445464934918464, -2.4143149114678266, -2.3786108408418296, -2.3386099331302708, -2.294604674188003, -2.246916470019737, -2.1958890780591087, -2.141882070807137, -2.0852645366031486, -2.0264091792422096, -1.9656869365102836, -1.9034621996410461, -1.8400886820696365, -1.7759059567533015, -1.7112366565671417, -1.6463843117499999, -1.5816317820971268, -1.51724022963718, -1.4534485698353743, -1.3904733356527292, -1.3285088885488054, -1.2677279130574273, -1.2082821361338176, -1.1503032183342916, -1.0939037704053525, -1.0391784555160042, -0.9862051437926369, -0.9350460917645669, -0.8857491246603255, -0.8383488041529515, -0.7928675681360284, -0.7493168324590868, -0.7076980473194736, -0.6680037032673835, -0.6302182836019083, -0.5943191613861316 ], [ -2.3768269939670565, -2.4099770670335174, -2.4397677005627743, -2.4658933186973373, -2.4880603838246556, -2.5059935118059498, -2.519441940312069, -2.528186096435364, -2.5320439462495603, -2.530876768696134, -2.524593991502887, -2.5131567649587083, -2.4965800289809446, -2.4749329394864104, -2.448337644226876, -2.4169665165417857, -2.3810380516702727, -2.3408116948384587, -2.2965819012941084, -2.248671729709554, -2.1974262490906638, -2.143206003523276, -2.0863807360038154, -2.0273235279181745, -1.9664054683012524, -1.9039909289346628, -1.8404334883469582, -1.77607251975903, -1.7112304345671334, -1.6462105537504301, -1.5812955644861622, -1.5167465082114233, -1.4528022392913345, -1.3896792900740293, -1.3275720779703746, -1.2666533926696817, -1.207075105998888, -1.1489690525713674, -1.0924480356510813, -1.0376069190922625, -0.9845237724452702, -0.9332610421057955, -0.8838667265886352, -0.8363755385677613, -0.7908100402372444, -0.7471817418457913, -0.7054921559949966, -0.6657338025335466, -0.6278911606935242, -0.5919415665653048 ], [ -2.378717249952248, -2.411796407703757, -2.4415027732347987, -2.4675307123675014, -2.4895868780447525, -2.5073963539656674, -2.5207091426351322, -2.5293067406192487, -2.5330084806465845, -2.5316772807181804, -2.525224437009883, -2.5136131371593784, -2.4968604520651185, -2.475037676794212, -2.448269016905914, -2.4167287357016307, -2.3806369741442093, -2.3402545188655006, -2.29587682292595, -2.2478275830068175, -2.1964521530579812, -2.1421110364616647, -2.085173654012175, -2.0260125392684993, -1.964998069984841, -1.9024938064192494, -1.8388524749861186, -1.7744126087086027, -1.7094958336771755, -1.6444047727349211, -1.579421523597659, -1.514806658432229, -1.4507986854181705, -1.3876139097470837, -1.3254466314493585, -1.2644696198191216, -1.2048348084047364, -1.1466741599180588, -1.0901006564296414, -1.035209376401482, -0.9820786261195327, -0.9307710986921082, -0.8813350388394728, -0.8338053961507426, -0.7882049533170282, -0.7445454190939365, -0.7028284784489864, -0.6630467945731315, -0.625184959241809, -0.5892203894628605 ], [ -2.3779907308569266, -2.410923448687564, -2.440474732126485, -2.4663398628383573, -2.4882266775340147, -2.505861711009292, -2.518996669254314, -2.5274149737603095, -2.530938056349421, -2.529431045981727, -2.522807487226399, -2.5110327712512053, -2.494126042637546, -2.4721604581955634, -2.4452617995567487, -2.4136055599758905, -2.377412721071634, -2.336944497645584, -2.2924963564471943, -2.2443916121337004, -2.19297487844753, -2.1386056133546196, -2.081651951194255, -2.022484968656658, -1.9614734884962417, -1.8989794873181987, -1.8353541421085642, -1.7709345240861623, -1.706040927268926, -1.6409748022462207, -1.5760172526180956, -1.5114280421615185, -1.4474450548191187, -1.3842841468146112, -1.3221393301929147, -1.2611832293544292, -1.2015677561313631, -1.1434249540667092, -1.086867968283538, -1.031992103245305, -0.9788759364786178, -0.9275824617343927, -0.8781602399627488, -0.8306445408067163, -0.7850584610651137, -0.7414140097581412, -0.6997131520941654, -0.6599488068388683, -0.622105793386321, -0.5861617262849071 ], [ -2.374650724124591, -2.407362548749059, -2.4366891172482905, -2.462327594649577, -2.4839879831749307, -2.501399235335141, -2.5143156774550435, -2.5225234848794678, -2.525846890609703, -2.524153773578938, -2.5173602728750923, -2.5054341163702, -2.4883964345665808, -2.466321942249462, -2.4393374943978423, -2.40761913948697, -2.371387886742526, -2.3309044647227566, -2.286463375043248, -2.2383865414325914, -2.187016828337531, -2.1327116635441508, -2.0758369533930465, -2.0167614329970305, -1.955851551254646, -1.8934669533751523, -1.829956592632658, -1.7656554777947342, -1.700882042402539, -1.6359361061132873, -1.5710973861411055, -1.5066245081235985, -1.442754460251486, -1.3797024319533202, -1.3176619784588934, -1.2568054547142775, -1.1972846658697658, -1.1392316863884129, -1.0827598052490497, -1.0279645603435863, -0.9749248306850332, -0.9237039602325472, -0.874350891868588, -0.8269012942611961, -0.781378667994275, -0.737795420465696, -0.6961539016765846, -0.656447395214144, -0.6186610605204992, -0.5827728239944553 ], [ -2.3687155998513783, -2.401133914349842, -2.430168056456729, -2.4555180205206693, -2.4768969282156466, -2.4940370826198763, -2.5066963083915654, -2.514664321231204, -2.5177688134698544, -2.5158809100232062, -2.5089196510883007, -2.4968552006838616, -2.479710561399904, -2.457561685017211, -2.4305359892622804, -2.3988094043584134, -2.362602163732111, -2.322173612162778, -2.277816330046543, -2.229849868418337, -2.1786143634572674, -2.124464259783263, -2.0677623264680576, -2.008874104104204, -1.948162879286989, -1.885985246431528, -1.8226872865276604, -1.7586013678914656, -1.694043554479991, -1.6293115921518342, -1.5646834318035272, -1.5004162401926309, -1.4367458441756666, -1.3738865517482188, -1.3120312933236253, -1.251352028701932, -1.1920003686921126, -1.1341083648836614, -1.077789426180563, -1.0231393260399528, -0.970237269608841, -0.9191469949181664, -0.869917886840391, -0.8225860865750723, -0.777175582974178, -0.73369927506399, -0.6921599976982507, -0.6525515044306863, -0.6148594034744713, -0.5790620440715409 ], [ -2.3602185606511954, -2.392273310555565, -2.4209499338616682, -2.4459521642969557, -2.466997153691083, -2.48382143887378, -2.4961871664422217, -2.5038883223272244, -2.5067566605880485, -2.504666996674133, -2.4975415346341983, -2.4853529406229677, -2.468125954326105, -2.4459374354939083, -2.4189148587942304, -2.387233379157161, -2.351111677004382, -2.3108068495419234, -2.2666086388300313, -2.2188332834649027, -2.1678172555556925, -2.1139111063328198, -2.057473599479919, -1.9988662667759698, -1.9384484795816972, -1.876573094069194, -1.8135826984724868, -1.7498064667494269, -1.6855576042023812, -1.6211313560602323, -1.5568035391599542, -1.4928295492303387, -1.4294437915302025, -1.3668594804113297, -1.3052687534190208, -1.2448430474129453, -1.1857336874614484, -1.128072643498943, -1.0719734145403104, -1.0175320052735575, -0.964827964831033, -0.9139254622734487, -0.8648743776786687, -0.8177113916387461, -0.7724610594063744, -0.7291368589007468, -0.6877422043104087, -0.6482714191556744, -0.6107106644400214, -0.5750388189749335 ], [ -2.349207151630971, -2.3808315121112624, -2.409088778553279, -2.4336872850140105, -2.454349067057112, -2.470815714809616, -2.4828544527115666, -2.490264198356872, -2.4928813047013114, -2.4905846644328493, -2.4832998616105155, -2.471002098263019, -2.4537177001201265, -2.4315241064575215, -2.4045483593810784, -2.372964211467157, -2.3369880537971373, -2.296873920846602, -2.2529078525405883, -2.2054018905079706, -2.154687961793708, -2.1011118666410824, -2.0450275444123, -1.9867917487127529, -1.926759222955101, -1.8652784329121497, -1.8026878839218738, -1.7393130271282013, -1.6754637408447683, -1.6114323590954667, -1.5474922089854672, -1.4838966112989256, -1.420878294223762, -1.3586491680321582, -1.2974004085530275, -1.2373027989868908, -1.1785072826380838, -1.1211456830805275, -1.0653315527637592, -1.0111611157901401, -0.9587142752980788, -0.9080556603826367, -0.8592356916484101, -0.8122916482481595, -0.7672487225832748, -0.7241210517299033, -0.6829127171277991, -0.6436187061621444, -0.606225831020682, -0.570713601661242 ], [ -2.3357425464696275, -2.3668735136402894, -2.394653395882377, -2.4187959278402986, -2.439028813456698, -2.4550994405783015, -2.466780789147541, -2.4738772924529044, -2.476230367508011, -2.47372330899361, -2.4662852494447858, -2.453893930250058, -2.4365771010653345, -2.4144124604864174, -2.3875261546680187, -2.3560899480878623, -2.320317259198543, -2.2804583055821923, -2.2367946264987677, -2.1896332483808743, -2.1393007369083263, -2.0861373448605356, -2.03049142456573, -1.972714232635194, -1.913155216323791, -1.8521578372676453, -1.7900559602539547, -1.7271708119837028, -1.663808496961913, -1.6002580440241911, -1.536789946961695, -1.473655155729128, -1.4110844704031946, -1.3492882880456873, -1.288456652569164, -1.2287595592477802, -1.1703474682919017, -1.113351985551562, -1.0578866725933984, -1.0040479528175035, -0.9519160847087473, -0.9015561775740116, -0.8530192290820737, -0.8063431675239778, -0.7615538849149504, -0.7186662498603617, -0.6776850915238942, -0.6386061480933503, -0.6014169748744673, -0.5660978085916694 ], [ -2.3198986340450793, -2.3504775273290175, -2.3777262738917067, -2.4013647389437534, -2.421127001171783, -2.4367669067966533, -2.4480637832026395, -2.4548280801221916, -2.456906667834365, -2.4541875040244285, -2.4466033909239986, -2.4341345851519183, -2.416810091759765, -2.39470756309301, -2.367951819865458, -2.3367121027980504, -2.301198236804158, -2.2616559388784143, -2.2183615235951297, -2.171616258948391, -2.121740605536466, -2.0690685402519726, -2.013942127787174, -1.9567064643112144, -1.8977050810372285, -1.8372758630492063, -1.77574751152166, -1.7134365553592077, -1.650644900880465, -1.5876578948732092, -1.524742866562922, -1.4621481072523475, -1.4001022421805538, -1.338813947143977, -1.2784719622723508, -1.2192453567123864, -1.1612840004960279, -1.104719203223309, -1.0496644830616992, -0.9962164336867689, -0.9444556609418321, -0.8944477650114437, -0.8462443476682159, -0.7998840275927385, -0.7553934498462199, -0.712788278286825, -0.6720741620741859, -0.633247669425269, -0.5962971834988225, -0.5612037567277034 ], [ -2.3017609367345404, -2.331733803702104, -2.3584023052496432, -2.3814930895186928, -2.400747231349241, -2.41592560656306, -2.426814391863453, -2.433230468075119, -2.4350264707894307, -2.432095218340407, -2.4243732584617668, -2.411843314355263, -2.3945354756759807, -2.372527062576754, -2.3459411803787367, -2.3149440665733407, -2.2797414003825036, -2.240573791470717, -2.1977116866230544, -2.1514499333021284, -2.102102221657921, -2.0499955975684228, -1.9954652042252152, -1.9388493732400383, -1.8804851515090952, -1.8207043191035641, -1.7598299271564135, -1.698173363224572, -1.6360319346058743, -1.5736869470680883, -1.5114022468541832, -1.4494231871642722, -1.387975976150321, -1.3272673614149093, -1.2674846057318767, -1.208795709867415, -1.151349840647252, -1.0952779254769271, -1.0406933780909597, -0.9876929241337765, -0.9363574990565253, -0.8867531945914803, -0.8389322336293008, -0.7929339566009982, -0.7487858054202485, -0.7065042936589144, -0.6660959539164855, -0.6275582553203459, -0.5908804857841317, -0.5560445950838592 ], [ -2.28142539601328, -2.3107433157303827, -2.3367873697229893, -2.359291558843937, -2.37800448657163, -2.392694537399958, -2.403155147811842, -2.4092099582921325, -2.41071760589296, -2.4075759061370086, -2.3997251856176054, -2.3871505643313813, -2.3698830470360037, -2.3479993589582, -2.3216205431624832, -2.2909094141494353, -2.2560670255943025, -2.217328353624814, -2.1749574186861302, -2.1292420704230617, -2.0804886451368096, -2.0290166793524094, -1.9751538309188965, -1.9192311251081162, -1.861578610491472, -1.8025214799089369, -1.742376686571339, -1.681450064503636, -1.6200339459453765, -1.5584052555490067, -1.4968240517665128, -1.4355324792167172, -1.374754091653565, -1.3146935030316995, -1.2555363237404358, -1.1974493400244806, -1.1405808966148425, -1.0850614453644059, -1.03100422595216, -0.9785060482563325, -0.9276481496094033, -0.878497103688419, -0.8311057611555576, -0.7855142052766615, -0.7417507085694247, -0.6998326790533084, -0.6597675868916643, -0.6215538641469354, -0.5851817720326489, -0.5506342314658705 ], [ -2.25899706315005, -2.28761634843646, -2.31299682378761, -2.3348803273364647, -2.353023433379965, -2.3672024219817644, -2.3772183097702566, -2.3829017418634018, -2.384117520360923, -2.3807685371967575, -2.372798892551431, -2.3601960157770003, -2.3429916614434028, -2.321261722586909, -2.2951248778941395, -2.2647401600338117, -2.2303035905490276, -2.1920440673027253, -2.150218711475459, -2.1051078837125194, -2.0570100665806357, -2.0062367874705114, -1.95310772698624, -1.8979461265886526, -1.8410745787376466, -1.7828112549229345, -1.7234666028095034, -1.6633405236059096, -1.6027200246023496, -1.541877329291009, -1.4810684181464966, -1.4205319665723988, -1.3604886423016473, -1.3011407223010518, -1.2426719886310642, -1.1852478634316077, -1.1290157449442928, -1.0741055089624403, -1.0206301430752756, -0.9686864843225992, -0.9183560342247821, -0.8697058284584737, -0.8227893416093182, -0.7776474103802092, -0.7343091613266478, -0.6927929316108179, -0.6531071734119767, -0.6152513345112739, -0.57921670920136, -0.5449872550754047 ], [ -2.234588732755829, -2.2624710355651123, -2.2871539427090823, -2.308387528534436, -2.3259366909941916, -2.3395859027929387, -2.3491439945489128, -2.3544487818746216, -2.3553713278932324, -2.3518196277657184, -2.343741515736233, -2.331126628875303, -2.31400731278355, -2.292458417611996, -2.2665960003305496, -2.2365750131025743, -2.202586110812974, -2.164851748477414, -2.1236217595394713, -2.079168609751793, -2.031782511222759, -1.9817665611158937, -1.9294320434007737, -1.8750940034991848, -1.8190671773829115, -1.7616623305166368, -1.7031830390663882, -1.6439229264532829, -1.5841633526394823, -1.5241715412518977, -1.4641991204214513, -1.4044810466481736, -1.345234876711382, -1.2866603502693488, -1.2289392450014773, -1.1722354666283683, -1.1166953376146815, -1.0624480505537552, -1.0096062549160996, -0.9582667488136293, -0.908511250519727, -0.8604072275587241, -0.8140087641407536, -0.7693574504987274, -0.7264832802449906, -0.6854055441824176, -0.6461337110748056, -0.6086682877089326, -0.5730016521785686, -0.5391188557056485 ], [ -2.20831955499305, -2.2354318821814325, -2.25938835686992, -2.2799476044644758, -2.296883113040999, -2.309987759480557, -2.3190783410572626, -2.3239999366072617, -2.3246299047333814, -2.3208813238723582, -2.3127056932254906, -2.3000947450480473, -2.2830812654193737, -2.2617388776177236, -2.236180803084217, -2.2065576726574365, -2.1730545091394613, -2.1358870370787564, -2.0952974951223937, -2.0515501309078483, -2.004926550500551, -1.9557210770791777, -1.9042362504091628, -1.8507785727888386, -1.7956545811276339, -1.7391673004044197, -1.6816131120393765, -1.6232790522125227, -1.564440539984733, -1.5053595230748218, -1.446283020032348, -1.3874420309763935, -1.329050784692822, -1.2713062873557677, -1.2143881371434984, -1.1584585692577185, -1.1036626970533217, -1.0501289168944097, -0.9979694467489583, -0.9472809712288981, -0.8981453686148468, -0.850630498250421, -0.8047910294552847, -0.7606692957221671, -0.7182961603893618, -0.6776918821930686, -0.6388669710946825, -0.6018230265494963, -0.5665535519431899, -0.5330447402846363 ], [ -2.180313658827483, -2.206628307791295, -2.229834518938616, -2.2496997027132424, -2.266006122008179, -2.278555189663772, -2.287171747720315, -2.291708164819946, -2.2920480747689433, -2.288109578573687, -2.279847746427084, -2.2672562853982057, -2.250368280931375, -2.2292559715329046, -2.2040295706011377, -2.174835201213146, -2.1418520535005845, -2.1052889062957947, -2.065380173303203, -2.022381639420383, -1.976566046805981, -1.92821867558886, -1.8776330437431905, -1.8251068274279323, -1.770938079316191, -1.715421799810204, -1.6588468956358058, -1.6014935427084853, -1.5436309555521572, -1.4855155538641494, -1.4273895078400543, -1.3694796373068479, -1.3119966352466057, -1.255134583608874, -1.199070728105746, -1.1439654786761642, -1.0899626032339416, -1.0371895839408016, -0.9857581073613357, -0.9357646622807368, -0.8872912215487462, -0.840405986933999, -0.7951641785420253, -0.7516088528015474, -0.7097717353151302, -0.6696740569762555, -0.6313273836642441, -0.5947344315396641, -0.5598898614816512, -0.5267810475442336 ], [ -2.150698814284055, -2.176193239321809, -2.1986302323435942, -2.2177861465075854, -2.233452128271958, -2.245438185296933, -2.2535772153846008, -2.2577288449674713, -2.25778291514138, -2.2536624541049495, -2.245325988810503, -2.232769075692678, -2.2160249686551015, -2.1951643884420005, -2.17029440629061, -2.1415565012052626, -2.1091238897401228, -2.0731982565536518, -2.034006031614925, -1.9917943658802677, -1.9468269529365978, -1.8993798317831057, -1.8497372881705916, -1.7981879512118253, -1.745021160408901, -1.690523657399831, -1.6349766376726387, -1.5786531808424413, -1.521816064091547, -1.464715952041667, -1.4075899475091878, -1.3506604810514256, -1.2941345126650732, -1.2382030161602842, -1.1830407153230458, -1.1288060407271905, -1.0756412767193986, -1.0236728694507518, -0.9730118686691165, -0.9237544781468648, -0.8759826919557481, -0.8297649962015579, -0.7851571182070299, -0.7422028074195071, -0.7009346344759491, -0.6613747968552279, -0.6235359213733344, -0.5874218554249462, -0.5530284403489262, -0.5203442616012126 ], [ -2.1196051567144245, -2.144261777588548, -2.1659152650384144, -2.18435100188234, -2.199369057616698, -2.2107880281296657, -2.2184488187186076, -2.2222182307289975, -2.221992204078333, -2.217698570027343, -2.2092991821106858, -2.1967913180312224, -2.1802082798602287, -2.1596191609336746, -2.135127791287311, -2.1068709149482117, -2.0750156879805104, -2.0397566130125875, -2.0013120425857687, -1.959920389998504, -1.9158361834655442, -1.869326089224237, -1.8206650138837868, -1.7701323779868026, -1.718008633314533, -1.6645720773872161, -1.6100960009218634, -1.554846188344013, -1.4990787781156931, -1.4430384787095845, -1.386957127438249, -1.3310525728502025, -1.2755278567950008, -1.2205706692791634, -1.1663530476251687, -1.1130312909588842, -1.0607460614529252, -1.0096226448356518, -0.9597713442482815, -0.9112879834362214, -0.8642544973592357, -0.8187395904897137, -0.7747994452548824, -0.7324784652040826, -0.6918100395032991, -0.6528173172468574, -0.6155139818149887, -0.5799050170885179, -0.5459874587575118, -0.5137511252331142 ], [ -2.087163991000409, -2.1109699551588124, -2.131830066208044, -2.1495387590972252, -2.1639050037256506, -2.174755919919129, -2.1819403208674397, -2.1853320567124226, -2.184833024000743, -2.1803757097522896, -2.1719251519199463, -2.159480220814201, -2.1430741571089755, -2.122774338625484, -2.0986812867157623, -2.070926960016261, -2.0396724152703736, -2.005104939342895, -1.9674347721307046, -1.9268915466440004, -1.8837205709159874, -1.8381790681025358, -1.7905324779964997, -1.7410509070720843, -1.690005796764838, -1.637666862331777, -1.5842993383094501, -1.5301615519335416, -1.4755028332488502, -1.4205617601456761, -1.365564728170505, -1.3107248285389954, -1.256241013128895, -1.2022975221257435, -1.149063548199876, -1.0966931103819346, -1.0453251109581094, -0.995083549528974, -0.9460778696911121, -0.8984034154548521, -0.8521419763782832, -0.8073624023715822, -0.7641212711259604, -0.7224635930866035, -0.6824235407747936, -0.6440251910417486, -0.6072832704869195, -0.5722038957876353, -0.538785302061044, -0.5070185536151564 ], [ -2.0535066887201956, -2.0764535981320864, -2.0965145977198723, -2.1134931392071366, -2.1272070155148244, -2.1374917561639393, -2.144203939030242, -2.1472243009800467, -2.1464605256731355, -2.1418495905392954, -2.1333595673379473, -2.120990791512674, -2.1047763433852436, -2.0847818167690204, -2.061104384851646, -2.0338712060515576, -2.0032372411414103, -1.9693825751032463, -1.9325093517193839, -1.8928384355714902, -1.8506059155252461, -1.8060595571319928, -1.7594553002195907, -1.711053883876368, -1.6611176655307582, -1.609907685122473, -1.5576810103757623, -1.504688385553914, -1.4511721941676865, -1.3973647360927306, -1.3434868114331835, -1.2897465971578068, -1.2363387978719111, -1.1834440488813138, -1.1312285477444246, -1.079843889588366, -1.0294270813844268, -0.9801007109544865, -0.9319732475470329, -0.8851394522370344, -0.8396808780454477, -0.795666441443796, -0.7531530487271495, -0.7121862625458212, -0.6728009956378673, -0.6350222204704951, -0.5988656850588111, -0.5643386266734495, -0.5314404764684757, -0.5001635492565801 ], [ -2.018763686818393, -2.0408472995245974, -2.06010728698236, -2.076356031295873, -2.089420023591076, -2.0991430464008043, -2.105389262819748, -2.1080461051998696, -2.1070268533354777, -2.102272796277117, -2.09375488363012, -2.081474791113749, -2.0654653500624693, -2.045790319443803, -2.022543509331107, -1.9958472939405292, -1.9658505778940323, -1.9327262994467393, -1.896668567921353, -1.8578895392424115, -1.8166161336925886, -1.7730866947893915, -1.727547678779524, -1.68025045203838, -1.6314482599374545, -1.5813934166084316, -1.5303347513531613, -1.478515334836565, -1.42617049703981, -1.3735261394389262, -1.320797336060359, -1.2681872118959239, -1.215886082513899, -1.1640708354197369, -1.1129045316158583, -1.0625362047001046, -1.0131008345441044, -0.964719472936357, -0.9174994994072218, -0.8715349866393074, -0.8269071562927238, -0.7836849076459164, -0.7419254030935569, -0.7016746961944751, -0.6629683895818328, -0.6258323116022764, -0.5902832020199864, -0.5563293984916813, -0.5239715167813437, -0.4932031188361945 ], [ -1.9830635923839282, -2.004283507789904, -2.022744103546488, -2.0382665614310675, -2.0506859055899356, -2.059853979551808, -2.065642322721721, -2.067944848726672, -2.06668022631406, -2.0617938679855, -2.053259442541968, -2.041079844876601, -2.0252875786031272, -2.0059445327360548, -1.9831411605151732, -1.9569950943380392, -1.927649253570644, -1.8952695201460972, -1.8600420693526454, -1.8221704497487181, -1.7818725070219976, -1.7393772425963778, -1.694921689936782, -1.648747880967952, -1.6010999629355331, -1.552221513383827, -1.502353088500546, -1.4517300284700103, -1.400580533071392, -1.3491240117745578, -1.297569705106139, -1.24611556806305, -1.1949474017529753, -1.1442382161091273, -1.0941478043038284, -1.0448225082074183, -0.9963951537414618, -0.9489851351029719, -0.9026986274474874, -0.8576289085881948, -0.8138567714878392, -0.7714510107008551, -0.7304689673917913, -0.6909571190561566, -0.652951701557846, -0.6164793525410512, -0.5815577666517824, -0.5481963542994619, -0.5163968968924804, -0.4861541925884214 ], [ -1.9465323948173001, -1.9668917305749958, -1.984557758286179, -1.9993602908773405, -2.011142686644999, -2.0197646293579403, -2.025104802594534, -2.027063369626613, -2.0255641694076885, -2.0205565438541075, -2.0120167218613427, -1.9999487010266788, -1.984384587904425, -1.965384380335034, -1.9430351991613282, -1.9174499995724064, -1.8887658126484241, -1.857141584038447, -1.8227556882157288, -1.785803203102757, -1.7464930312359053, -1.7050449506451355, -1.661686672119698, -1.6166509704944971, -1.5701729469988237, -1.5224874684342518, -1.4738268177190843, -1.4244185797038116, -1.3744837765099223, -1.3242352582033425, -1.2738763474918664, -1.2235997313431988, -1.1735865879002398, -1.1240059337171056, -1.0750141740242352, -1.0267548373078483, -0.9793584748131146, -0.9329427055098977, -0.887612387465702, -0.8434598973352566, -0.800565500700361, -0.7589977971916451, -0.7188142256267674, -0.6800616157523428, -0.642776774536002, -0.606987096289162, -0.5727111871857316, -0.5399594959614444, -0.5087349437205646, -0.4790335468352074 ], [ -1.9092927839692417, -1.92879785108798, -1.9456770212851742, -1.95976853844537, -1.970923868661767, -1.9790102924562598, -1.9839133877834323, -1.9855393234061565, -1.9838168821947235, -1.978699138568282, -1.9701647238134365, -1.9582186270400637, -1.9428924972345294, -1.9242444319928587, -1.9023582595345427, -1.8773423409046828, -1.849327937384849, -1.818467202862672, -1.7849308714855634, -1.748905717027113, -1.710591862141313, -1.6702000135332327, -1.6279486937365142, -1.584061532480316, -1.5387646713881173, -1.4922843257502876, -1.4448445370080267, -1.3966651398929926, -1.3479599592556064, -1.29893524372424, -1.2497883365919449, -1.2007065787627555, -1.1518664341739369, -1.1034328247656826, -1.055558659687349, -1.0083845418861759, -0.9620386343915072, -0.9166366683581945, -0.8722820751495359, -0.8290662253145901, -0.7870687581546737, -0.7463579865984297, -0.7069913632490884, -0.6690159946770985, -0.6324691922656065, -0.5973790491412616, -0.5637650339158903, -0.5316385931069887, -0.501003755184128, -0.4718577301964979 ], [ -1.8714635707261797, -1.8901235523847861, -1.9062261525588728, -1.9196178199534595, -1.9301578802849877, -1.9377209500035868, -1.9421992388994789, -1.9435046688035769, -1.9415707361088903, -1.9363540504543661, -1.9278354907069433, -1.9160209320239785, -1.9009415135473238, -1.8826534341004375, -1.8612372818400698, -1.83679692179573, -1.8094579813547016, -1.7793659869967309, -1.7466842152687714, -1.7115913268091945, -1.674278854238226, -1.6349486132821338, -1.5938101021613253, -1.5510779477339074, -1.5069694488620515, -1.461702258635198, -1.4154922380312054, -1.368551504797682, -1.3210866931466059, -1.2732974325135138, -1.2253750472764244, -1.1775014740131406, -1.129848388589886, -1.082576532062845, -1.0358352219511542, -0.9897620338006722, -0.9444826369902188, -0.9001107683238883, -0.856748326997532, -0.8144855749268894, -0.7734014270923266, -0.7335638174165516, -0.69503012668418, -0.657847660084736, -0.622054163072643, -0.5876783653567825, -0.5547405439335947, -0.5232530971430991, -0.4932211227421601, -0.46464299394514863 ], [ -1.833159204947495, -1.8509858433925857, -1.8663244383554511, -1.8790293965178457, -1.8889676383241993, -1.8960208427646352, -1.9000875804631578, -1.901085269271929, -1.8989518875020766, -1.8936473844200454, -1.8851547357355605, -1.8734806031955538, -1.858655571440805, -1.84073395106246, -1.8197931532206437, -1.7959326571089327, -1.7692726058974013, -1.7399520786869491, -1.7081270948576208, -1.6739684127023287, -1.6376591864160106, -1.5993925446283879, -1.5593691501836346, -1.5177947953534394, -1.4748780797315753, -1.4308282102865564, -1.3858529549693877, -1.340156773319805, -1.2939391400204698, -1.2473930705489558, -1.2007038521168094, -1.1540479780328887, -1.1075922794933042, -1.0614932455467883, -1.0158965195450107, -0.9709365586762047, -0.9267364421000283, -0.8834078126553354, -0.8410509370022483, -0.7997548692996312, -0.7595977040269498, -0.7206469042680197, -0.6829596926231385, -0.6465834928578783, -0.6115564113910765, -0.5779077487395621, -0.5456585320488319, -0.5148220608268723, -0.4854044589487969, -0.4574052269019968 ], [ -1.7944893845578407, -1.8114966794912213, -1.826085824907354, -1.838118922650568, -1.8474702108061047, -1.8540281491248953, -1.8576973932833436, -1.858400598565461, -1.856079994785349, -1.8506986786019115, -1.842241576810021, -1.830716044436964, -1.8161520739746209, -1.7986021060533428, -1.7781404463862982, -1.7548623079117243, -1.7288825098266614, -1.7003338758876534, -1.669365382422375, -1.6361401116795735, -1.6008330684227436, -1.5636289172464402, -1.5247196953303266, -1.484302550717485, -1.4425775502283635, -1.3997455943093549, -1.356006468931098, -1.3115570574887876, -1.2665897288269636, -1.2212909112405037, -1.175839856739523, -1.130407595089422, -1.0851560731707375, -1.0402374720293266, -0.9957936915546258, -0.951955990962796, -0.9088447720914853, -0.8665694918466617, -0.8252286898966144, -0.7849101178025314, -0.7456909561374304, -0.7076381067110743, -0.670808547733217, -0.6352497405645323, -0.6010000775860652, -0.5680893616323354, -0.5365393083566228, -0.5063640638084197, -0.47757073038871023, -0.4501598951959429 ], [ -1.7555587488903086, -1.771762669884633, -1.7856186410448687, -1.796996184820482, -1.8057765716344507, -1.811854755430936, -1.815141199502652, -1.8155635390018174, -1.8130680279782112, -1.8076207229247658, -1.79920836161471, -1.787838905223134, -1.7735417228544441, -1.7563674099773778, -1.7363872451142521, -1.7136923016186096, -1.6883922427329603, -1.6606138377002901, -1.6304992440463173, -1.598204106001272, -1.5638955213502093, -1.5277499289346255, -1.4899509668706827, -1.45068734768801, -1.4101507914677835, -1.3685340521081586, -1.3260290654789861, -1.2828252418005084, -1.239107918378932, -1.1950569830719904, -1.150845673686681, -1.1066395540161365, -1.0625956634390432, -1.0188618339277833, -0.9755761659061396, -0.9328666526083417, -0.890850941351235, -0.8496362193658868, -0.809319211471142, -0.769986276836968, -0.731713592315133, -0.6945674102496081, -0.6586043792682325, -0.6238719172567833, -0.5904086264902514, -0.5582447417136495, -0.5274026028017647, -0.49789714446371347, -0.46973639627890895, -0.4429219871429988 ], [ -1.7164666489924232, -1.7318848637306044, -1.7450254009473, -1.7557649211255446, -1.7639914369571892, -1.7696061082963352, -1.772524929579372, -1.7726802613980603, -1.7700221594879566, -1.7645194583125876, -1.7561605726388259, -1.7449539887706922, -1.7309284270163219, -1.714132667933626, -1.6946350462662203, -1.6725226275456528, -1.647900092441056, -1.6208883625289667, -1.5916230078290468, -1.5602524809730143, -1.5269362251913075, -1.4918427035171988, -1.4551473949555875, -1.417030800163213, -1.3776764948070217, -1.3372692635869103, -1.295993342285564, -1.2540307894595437, -1.211560003774451, -1.1687543977155457, -1.1257812336194015, -1.082800623760829, -1.0399646926383115, -0.9974168966362769, -0.9552914938828602, -0.9137131553237615, -0.8727967067425887, -0.8326469906122828, -0.7933588361968074, -0.7550171261744123, -0.7176969481640683, -0.6814638198520693, -0.6463739768885706, -0.6124747133133819, -0.5798047649422181, -0.5483947268689446, -0.5182674969933758, -0.48943873824683837, -0.4619173529443519, -0.43570596342905343 ], [ -1.6773069874799855, -1.691958606987305, -1.7044026784162254, -1.7145227129518097, -1.7222131736793382, -1.7273811389528204, -1.729947861006338, -1.7298501762815506, -1.7270417255982824, -1.7214939459833327, -1.7131968016387416, -1.702159228957972, -1.6884092793200478, -1.6719939531182428, -1.6529787285424833, -1.6314467984429326, -1.6074980375946106, -1.5812477303845232, -1.5528250949984526, -1.5223716443834527, -1.4900394265409798, -1.455989187136596, -1.42038849617826, -1.383409877879754, -1.3452289790977496, -1.3060228072342626, -1.2659680635442268, -1.2252395926615947, -1.1840089640965754, -1.1424431966494262, -1.1007036322728745, -1.0589449619869327, -1.017314403057684, -0.9759510238112971, -0.9349852101555772, -0.8945382660922182, -0.8547221391803796, -0.8156392610032657, -0.7773824921394797, -0.740035160894427, -0.7036711850514875, -0.6683552661097528, -0.6341431458411444, -0.6010819154871563, -0.5692103684909176, -0.5385593882968471, -0.5091523634233246, -0.4810056227055881, -0.45412888429895193, -0.428525712714789 ], [ -1.638168120596077, -1.6520734621149136, -1.6638410443440814, -1.6733609398874412, -1.680533771050515, -1.6852722503033908, -1.687502619218805, -1.687165946687741, -1.6842192489014274, -1.6786363970418177, -1.6704087837802486, -1.6595457263508908, -1.6460745918225905, -1.6300406388202555, -1.6115065788618543, -1.590551869175651, -1.567271756867692, -1.5417761012117128, -1.5141880063239228, -1.4846423003714038, -1.4532838996785007, -1.4202660966869316, -1.38574880983672, -1.349896831280527, -1.3128781051830034, -1.274862065465817, -1.23601805750966, -1.1965138637667405, -1.1565143486860558, -1.116180233984355, -1.0756670112401, -1.0351239951376374, -0.994693517498876, -0.9545102595329544, -0.9147007175091219, -0.8753827952931222, -0.8366655158486278, -0.798648842849595, -0.7614236029306539, -0.7250714987717048, -0.6896652031247431, -0.6552685240006838, -0.621936631502934, -0.5897163371873326, -0.5586464173139224, -0.5287579719088475, -0.5000748121514536, -0.47261386922399473, -0.44638561839285473, -0.42139451271836537 ], [ -1.5991328153527375, -1.612313183089308, -1.6234250594648705, -1.6323647896640092, -1.639038866842527, -1.643365357993792, -1.645275231863759, -1.6447135536257833, -1.6416405127108598, -1.6360322534081468, -1.627881482539123, -1.6171978344920659, -1.604007980903913, -1.5883554799341622, -1.5703003679785545, -1.5499185043897985, -1.5273006869017467, -1.5025515616391665, -1.4757883565685057, -1.4471394708326206, -1.4167429545458388, -1.3847449143334176, -1.3512978792922454, -1.3165591603037534, -1.2806892329602193, -1.2438501710084247, -1.2062041534051637, -1.1679120640367808, -1.1291321990738235, -1.0900190929717963, -1.0507224704146951, -1.0113863281186712, -0.9721481474257592, -0.9331382360507353, -0.8944791952029518, -0.8562855065772687, -0.8186632323677182, -0.7817098204702085, -0.7455140063670066, -0.7101558027847366, -0.6757065680485578, -0.6422291440790534, -0.6097780551596258, -0.5783997589083512, -0.5481329412910072, -0.519008847986036, -0.4910516449366158, -0.4642788014805268, -0.43870149002060566, -0.4143249967732441 ], [ -1.560278254959737, -1.5727557385973274, -1.5832333149692288, -1.5916133154697798, -1.5978078202738522, -1.601739977518975, -1.6033452283526004, -1.6025724060800823, -1.5993846793056625, -1.593760311948167, -1.5856932172709548, -1.5751932884350255, -1.5622864943239225, -1.5470147361903868, -1.5294354676858062, -1.509621087688858, -1.4876581217012186, -1.463646213122694, -1.437696950219809, -1.4099325579060398, -1.3804844854907954, -1.3494919223412734, -1.317100273023209, -1.28345962208478, -1.2487232164030293, -1.2130459901234776, -1.1765831538950915, -1.1394888665267566, -1.1019150035407947, -1.064010033520266, -1.0259180097548697, -0.9877776815726156, -0.9497217269571983, -0.9118761056278423, -0.8743595297092525, -0.837283047439654, -0.8007497340353574, -0.7648544828245624, -0.7296838890481654, -0.6953162182670757, -0.6618214510771756, -0.6292613957818227, -0.5976898607744637, -0.567152878611285, -0.5376889740799808, -0.5093294689713603, -0.482098816716392, -0.4560149605434327, -0.43108970932481805, -0.407329125805 ], [ -1.5216760861439385, -1.5334733767568778, -1.5433385141098288, -1.5511795335868825, -1.5569138245012848, -1.5604693500933566, -1.561785777370004, -1.560815488196156, -1.5575244446576575, -1.5518928844828004, -1.5439158261727355, -1.5336033683098653, -1.5209807730773466, -1.506088330068244, -1.488981002687154, -1.4697278655394195, -1.4484113468648585, -1.42512629504317, -1.3999788922710001, -1.3730854415483038, -1.344571055047154, -1.3145682727743695, -1.283215640244468, -1.2506562727679091, -1.2170364320796925, -1.1825041385552535, -1.1472078393590484, -1.1112951497146966, -1.0749116812283106, -1.0381999679698992, -1.0012984979295836, -0.9643408545976953, -0.927454970826902, -0.8907624948562342, -0.8543782664260483, -0.8184098992897505, -0.7829574651206838, -0.7481132728001201, -0.7139617363282129, -0.6805793240956013, -0.6480345819574139, -0.6163882224347272, -0.5856932724015627, -0.555995271772019, -0.5273325159580045, -0.4997363352007673, -0.4732314042709047, -0.4478360764637086, -0.4235627362759036, -0.40041816562287424 ], [ -1.483392502406166, -1.494532725211865, -1.5038075884881648, -1.511130554922316, -1.5164240521629113, -1.5196206007148343, -1.5206638557430614, -1.5195095370526834, -1.5161262230603214, -1.5104959871281691, -1.5026148581338272, -1.4924930914742929, -1.4801552416672472, -1.4656400330894774, -1.4490000309228894, -1.4303011197967033, -1.4096218026643976, -1.3870523369102605, -1.3626937283643923, -1.3366566066925056, -1.3090600074552217, -1.2800300869970624, -1.2496987962769839, -1.2182025388830606, -1.1856808369077263, -1.152275026239614, -1.1181270003048809, -1.0833780185103699, -1.0481675927408984, -1.0126324623608438, -0.9769056653657656, -0.9411157106995429, -0.9053858543522225, -0.8698334797200354, -0.8345695808598365, -0.7996983457110055, -0.7653168350811822, -0.7315147521833686, -0.6983742967496727, -0.6659700972075915, -0.6343692140613533, -0.6036312074484286, -0.573808261813052, -0.5449453607320673, -0.5170805051200442, -0.49024496831117914, -0.4644635818468277, -0.43975504617320316, -0.4161322608604008, -0.39360266937898913 ], [ -1.4454883577296265, -1.455994920971923, -1.4647018432821504, -1.4715277446131658, -1.4763998281027297, -1.4792549225287421, -1.480040442774048, -1.478715245137316, -1.47525035580435, -1.4696295531484818, -1.4618497877023544, -1.4519214275259225, -1.4398683211278505, -1.425727674883435, -1.4095497468102929, -1.3913973633854608, -1.371345270594298, -1.349479334398872, -1.325895609144503, -1.300699294977759, -1.2740036070688319, -1.2459285803057307, -1.2165998331945325, -1.1861473140328092, -1.1547040511250792, -1.122404927000789, -1.0893854944051617, -1.0557808493896044, -1.021724574251135, -0.9873477604660089, -0.9527781192218369, -0.9181391847467039, -0.8835496134167738, -0.8491225796324489, -0.814965267707972, -0.7811784575290697, -0.7478562004946502, -0.7150855812625324, -0.682946560047962, -0.6515118896587877, -0.6208471010701548, -0.5910105511217146, -0.5620535258396417, -0.5340203929226797, -0.5069487970657043, -0.4808698920077765, -0.45580860346722285, -0.4317839174493707, -0.4088091887692562, -0.38689246501091246 ], [ -1.4080193057273707, -1.4179157648841847, -1.4260771262300602, -1.4324269044765219, -1.4368968240260471, -1.4394277822390882, -1.439970734797957, -1.4384874823133964, -1.434951338721343, -1.4293476641822824, -1.4216742480699174, -1.411941531122309, -1.4001726597877613, -1.3864033700612677, -1.3706817024845126, -1.3530675542777812, -1.333632078597083, -1.3124569444962528, -1.2896334741855318, -1.2652616765167015, -1.2394491972359316, -1.2123102074152912, -1.1839642516296582, -1.1545350769463016, -1.124149462724961, -1.0929360696880168, -1.0610243248240763, -1.0285433565441706, -0.9956209922240583, -0.9623828279338934, -0.9289513778592233, -0.8954453087225154, -0.8619787624723176, -0.8286607686546862, -0.7955947462408465, -0.7628780932671406, -0.7306018614492527, -0.6988505119560237, -0.6677017477570076, -0.6372264173759219, -0.6074884844718507, -0.5785450574113874, -0.5504464728689913, -0.5232364274803367, -0.4969521516563693, -0.47162461982730175, -0.4472787916104257, -0.4239338786692666, -0.40160363234183305, -0.38029664745121927 ], [ -1.371035959684518, -1.3803458961282264, -1.3879840157215926, -1.3938784736363028, -1.3979652704177452, -1.400189141914155, -1.4005043753387285, -1.3988755326854156, -1.3952780640415963, -1.389698795328106, -1.3821362775999413, -1.3726009881719186, -1.3611153773730242, -1.3477137585337253, -1.3324420427097476, -1.315357323475048, -1.2965273207135326, -1.276029695558468, -1.2539512513514512, -1.2303870376316088, -1.2054393756703643, -1.1792168249214523, -1.151833109979166, -1.1234060272769428, -1.0940563498830644, -1.0639067474465822, -1.033080736707399, -1.0017016761073405, -0.9698918160151061, -0.9377714139930645, -0.9054579224617002, -0.8730652541190942, -0.8407031285972684, -0.8084765021190171, -0.7764850803818834, -0.744822913552765, -0.7135780711113194, -0.6828323933295444, -0.6526613154104247, -0.6231337597174108, -0.5943120910943959, -0.5662521299860784, -0.5390032179043742, -0.5126083297312267, -0.4871042273856001, -0.46252164949711183, -0.4388855319068121, -0.41621525404373183, -0.39452490649242855, -0.37382357536109634 ], [ -1.3345840694047626, -1.3433309826075757, -1.3504680238536464, -1.355927743186382, -1.3596501815992446, -1.361583693089878, -1.3616856968021123, -1.3599233423404722, -1.3562740725838118, -1.3507260701467472, -1.3432785759935915, -1.3339420715228467, -1.3227383186057389, -1.3097002554537265, -1.2948717496657007, -1.2783072132223559, -1.2600710874117205, -1.2402372085609605, -1.2188880679116436, -1.1961139809300412, -1.172012182745853, -1.146685867243369, -1.1202431876026575, -1.0927962358407883, -1.0644600181930346, -1.0353514420718888, -1.0055883289290493, -0.9752884657039151, -0.9445687057536012, -0.9135441282989553, -0.8823272635548143, -0.8510273888978772, -0.8197498997062898, -0.7885957569163118, -0.7576610119061272, -0.7270364080494544, -0.6968070571882461, -0.6670521883540153, -0.637844965315028, -0.6092523689334333, -0.5813351398691419, -0.5541477768530876, -0.5277385855567049, -0.5021497729923117, -0.4774175823765079, -0.45357246346153346, -0.43063927347533415, -0.40863750399722276, -0.38758152932227663, -0.36748087212328406 ], [ -1.2987047112036922, -1.3069119235670983, -1.3135698107834144, -1.318615081239873, -1.321991590302155, -1.3236510995847603, -1.3235539701597288, -1.3216697744623305, -1.3179778128145982, -1.3124675221559792, -1.3051387667028091, -1.2960020027872245, -1.2850783129590666, -1.2723993074627717, -1.2580068943027687, -1.241952922161631, -1.2242987033141484, -1.2051144262779496, -1.1844784701675315, -1.1624766345038737, -1.1392012995343523, -1.1147505329191008, -1.0892271589493014, -1.0627378063079027, -1.0353919498125042, -1.0073009606523626, -0.9785771784159341, -0.9493330167727988, -0.9196801130954901, -0.8897285306489683, -0.8595860202982138, -0.8293573470386068, -0.799143685082186, -0.7690420837669046, -0.7391450052199022, -0.7095399335143705, -0.6803090540201115, -0.6515290007626766, -0.6232706688717075, -0.5955990886085116, -0.5685733570072083, -0.54224662283111, -0.5166661203245357, -0.4918732471170062, -0.46790368159925366, -0.44478753512648006, -0.4225495345015966, -0.4012092303395016, -0.3807812271019657, -0.3612754308126629 ], [ -1.2634344878000325, -1.2711250611914897, -1.2773254071517008, -1.281976165166089, -1.2850247885967752, -1.2864262459063038, -1.2861436595480396, -1.2841488687853144, -1.280422903785634, -1.2749563598621807, -1.2677496626653249, -1.2588132174004287, -1.2481674376857472, -1.2358426523704051, -1.221878891402569, -1.2063255545641818, -1.1892409694667894, -1.1706918475385935, -1.1507526487456219, -1.1295048674202883, -1.1070362527783433, -1.0834399784738435, -1.0588137758746843, -1.0332590456618522, -1.0068799619015496, -0.9797825819619103, -0.9520739746022705, -0.9238613773149162, -0.8952513926084621, -0.8663492314473162, -0.8372580105562141, -0.8080781088098413, -0.778906586492838, -0.7498366698669895, -0.7209573022416416, -0.6923527616268514, -0.6641023440647077, -0.6362801108865609, -0.6089546974309807, -0.5821891801748266, -0.5560409987704603, -0.5305619291365611, -0.5057981035081649, -0.48179007320249023, -0.45857290978958254, -0.4361763403600616, -0.41462491264569157, -0.39393818586193663, -0.37413094329598784, -0.3552134228502577 ], [ -1.2288057352371518, -1.2360023983350583, -1.241766441755102, -1.2460422182303779, -1.2487805724327656, -1.2499394885511925, -1.2494846791299374, -1.247390102779257, -1.2436383993793627, -1.238221232793713, -1.231139532854486, -1.2224036304287063, -1.2120332816474795, -1.2000575798013038, -1.1865147558803253, -1.1714518711770734, -1.1549244076797054, -1.1369957640846902, -1.117736667078795, -1.0972245090276287, -1.0755426243271278, -1.0527795174062258, -1.029028055717513, -1.004384641032701, -0.9789483720050082, -0.952820210311064, -0.9261021617915131, -0.8988964829236114, -0.8713049217355523, -0.8434280009621431, -0.815364349892477, -0.7872100900148716, -0.7590582782579344, -0.7309984103878594, -0.7031159859735766, -0.6754921352878113, -0.6482033075839247, -0.6213210193799931, -0.5949116606935881, -0.5690363565999647, -0.5437508810281135, -0.5191056193553614, -0.4951455761039616, -0.4719104238727012, -0.4494345895438119, -0.4277473737800308, -0.4068730998600447, -0.38683128798256905, -0.3676368512924393, -0.3493003100379184 ], [ -1.194846734320047, -1.2015718198957455, -1.2069203720160444, -1.2108402482279357, -1.2132854874287136, -1.2142169078828833, -1.2136026499483903, -1.2114186523374162, -1.2076490516730753, -1.202286496377838, -1.1953323675104586, -1.1867969010093447, -1.1766992078396639, -1.1650671907081822, -1.1519373582246581, -1.1373545395717253, -1.1213715048176631, -1.1040484978970388, -1.0854526909319988, -1.0656575699241515, -1.0447422628815128, -1.0227908221400006, -0.9998914729942784, -0.9761358407812133, -0.951618168286293, -0.9264345348045534, -0.9006820874238942, -0.8744582941560233, -0.847860227464917, -0.8209838855805608, -0.7939235577785597, -0.7667712385926697, -0.7396160947392635, -0.712543987398053, -0.6856370514316862, -0.6589733321550397, -0.6326264793919762, -0.6066654977896246, -0.5811545516992567, -0.5561528223774744, -0.5317144148076751, -0.5078883110841577, -0.4847183670328017, -0.4622433485549309, -0.4404970040668461, -0.4195081693576903, -0.3993009011948738, -0.3798946360604569, -0.3613043704966761, -0.34354085966625614 ] ], "zauto": true, "zmax": 2.5330084806465845, "zmin": -2.5330084806465845 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.3063136237521388, 0.2951675351646879, 0.2843163190751589, 0.27380378926731647, 0.263679360159607, 0.2539995516979011, 0.2448291386599153, 0.236241663861131, 0.22831904943084788, 0.22115010347956254, 0.21482783357535457, 0.2094456367376668, 0.20509262019036914, 0.20184848776490885, 0.19977856302215422, 0.19892956821338986, 0.19932670629307297, 0.2009723998888637, 0.20384676643936747, 0.2079096255982348, 0.2131036207586155, 0.21935793964306866, 0.22659214219117518, 0.23471971259579652, 0.24365109678002647, 0.25329612449023436, 0.2635658217382482, 0.2743736869030627, 0.28563653601611017, 0.2972750283530057, 0.30921397210299817, 0.3213824899671503, 0.3337141023123057, 0.34614676504756436, 0.3586228828546203, 0.37108930650581023, 0.3834973154930443, 0.3958025832894272, 0.4079651213031884, 0.41994919802299935, 0.43172323121197526, 0.4432596527016992, 0.4545347469805871, 0.4655284661407898, 0.47622422474608256, 0.48660867879646114, 0.4966714932300091, 0.5064051023821315, 0.5158044675867011, 0.5248668357211574 ], [ 0.3026846433073804, 0.29139798474785933, 0.2803997908643828, 0.2697322745631529, 0.2594432169366703, 0.24958760203262148, 0.24022892252448597, 0.23143987185494747, 0.22330215226502323, 0.21590518905219747, 0.20934364960842958, 0.2037138128744245, 0.19910900410200796, 0.19561447725423814, 0.19330226298448894, 0.19222657042027028, 0.19242030562087667, 0.19389313404215178, 0.1966312841207161, 0.20059901460672191, 0.20574142094213935, 0.2119880991385311, 0.21925714780221878, 0.22745905658170237, 0.23650016052298733, 0.24628548722484145, 0.25672095168435527, 0.26771494458775613, 0.27917941102618254, 0.29103053483380925, 0.30318913910297085, 0.3155808958889479, 0.3281364156192122, 0.3407912646550989, 0.35348594084524526, 0.36616582295652367, 0.37878110054455433, 0.391286685425983, 0.40364210346378554, 0.4158113648990337, 0.4277628121285687, 0.4394689450105573, 0.4509062250538326, 0.46205486095827514, 0.4728985787986244, 0.4834243806487618, 0.49362229564849014, 0.5034851274699467, 0.5130082019066909, 0.5221891179450073 ], [ 0.2998137974683071, 0.28841270563700605, 0.2772935451367452, 0.2664969880123336, 0.2560692185748691, 0.24606366644224173, 0.23654243184936155, 0.22757711916245496, 0.21924881017337816, 0.21164697002650532, 0.20486718237090115, 0.19900774483408235, 0.1941653039613367, 0.19042985188459055, 0.1878795279279864, 0.18657574961127407, 0.18655921791586302, 0.18784727803492632, 0.1904329563220708, 0.19428575280079152, 0.1993539992571905, 0.20556836919982235, 0.2128460081501898, 0.2210947597003638, 0.23021706879692422, 0.24011329830228761, 0.25068434856214666, 0.2618335903197165, 0.27346819714274295, 0.285499997874155, 0.29784597322035433, 0.31042850563565105, 0.3231754684224562, 0.33602021560904416, 0.3489015128310188, 0.36176343291147955, 0.37455522832546445, 0.38723118559334485, 0.39975046286466387, 0.41207691048547856, 0.4241788742888177, 0.43602898202011847, 0.44760391423139223, 0.45888416185562825, 0.4698537733519374, 0.4805000947344992, 0.49081350596726064, 0.5007871571579812, 0.5104167077697463, 0.5197000717379751 ], [ 0.2977172915318755, 0.28622831951539, 0.2750147712701456, 0.26411592882022555, 0.25357652517613855, 0.2434485412544566, 0.233792708520719, 0.22467943707581944, 0.21618890895649617, 0.20841014094622912, 0.2014389229403852, 0.1953746604960806, 0.19031627395723794, 0.18635741683171125, 0.1835813686413794, 0.1820560346776145, 0.18182954259470266, 0.18292693931749496, 0.18534842149852965, 0.18906935177673373, 0.19404204148749454, 0.20019899229271934, 0.207457077910538, 0.21572207414240607, 0.22489301142423765, 0.23486598006239265, 0.2455371992527347, 0.2568053162976825, 0.26857300781405935, 0.280748008566952, 0.2932437070590799, 0.3059794350607608, 0.3188805540684009, 0.33187841458710193, 0.34491023962571093, 0.3579189643285461, 0.3708530497233327, 0.38366627952464294, 0.39631754372638206, 0.4087706102142101, 0.4209938848420799, 0.4329601605829842, 0.4446463569473946, 0.45603325152472024, 0.4671052060548624, 0.47784988979516646, 0.48825800309702955, 0.49832300406826163, 0.5080408410121038, 0.5174096930462823 ], [ 0.29640276408041355, 0.28485241601164785, 0.27357114037467967, 0.26259706323679954, 0.2519737129308577, 0.24175184560109073, 0.23199098013365665, 0.2227603684606488, 0.21413915391882968, 0.20621554083341523, 0.19908490116681174, 0.19284685702854068, 0.18760147735652372, 0.18344480011639308, 0.18046394497162102, 0.17873213890208284, 0.17830405659786291, 0.17921196219486885, 0.18146316894494458, 0.1850392367717257, 0.18989708001507882, 0.19597181977832898, 0.20318090811994688, 0.2114288840924584, 0.22061213168254493, 0.2306231566634476, 0.2413541044042368, 0.2526994322848489, 0.2645577885240223, 0.276833225455722, 0.2894359005431149, 0.30228241041930687, 0.3152958784183442, 0.3284058862572026, 0.34154831275826747, 0.35466511999134365, 0.367704110737596, 0.3806186701675412, 0.3933674979503872, 0.405914333447271, 0.4182276751067834, 0.4302804948353689, 0.44204994836062456, 0.4535170830554256, 0.4646665451207324, 0.4754862883252619, 0.48596728663519917, 0.4961032530449585, 0.5058903667699965, 0.5153270107219804 ], [ 0.2958693410686438, 0.2842836525180493, 0.2729609484607418, 0.26193850189651335, 0.25125896701211126, 0.24097219881945434, 0.2311367752897452, 0.2218209559151046, 0.2131028455836606, 0.2050696111938969, 0.19781570471629445, 0.1914401528750036, 0.18604305155676254, 0.18172143896033802, 0.17856473083562346, 0.17664992621583736, 0.17603687482937772, 0.17676403672599741, 0.1788452906442878, 0.18226834932470565, 0.1869951435315408, 0.19296417543440514, 0.20009445171246276, 0.20829034135046992, 0.2174466433542157, 0.22745327315738087, 0.23819919619525065, 0.2495754613703862, 0.26147735830742774, 0.27380582278861837, 0.2864682538508836, 0.299378903624976, 0.3124589766646319, 0.32563654368292333, 0.33884634395678204, 0.35202952529275555, 0.36513335151667986, 0.3781108944879228, 0.3909207194839427, 0.4035265681514258, 0.41589704091359153, 0.4280052798432321, 0.4398286529000301, 0.45134844065441454, 0.46254952691830475, 0.47342009493823844, 0.4839513309230255, 0.4941371366689208, 0.5039738529289471, 0.5134599949782664 ], [ 0.29610804160301146, 0.28451223830386624, 0.2731736801510087, 0.2621291390080619, 0.25142078446517746, 0.2410979648277529, 0.23121867352800224, 0.22185044397025785, 0.21307045995033463, 0.20496475658488583, 0.19762649853452216, 0.19115342543743336, 0.1856446151024313, 0.1811967177462164, 0.17789978000406445, 0.17583276261128866, 0.17505892451855123, 0.17562141680981325, 0.17753963348523005, 0.18080696561268245, 0.18539048139083586, 0.19123270371355316, 0.1982552115498788, 0.20636343841850663, 0.21545190448450252, 0.22540920277494955, 0.23612227880942271, 0.24747978990130115, 0.2593745306499775, 0.27170503603103524, 0.2843765283959389, 0.2973013802364348, 0.31039924272121244, 0.32359695758801377, 0.33682833735451684, 0.3500338711202019, 0.36316039212190754, 0.3761607284076435, 0.38899334838439864, 0.40162200724274244, 0.41401539714444957, 0.42614680260367255, 0.4379937619860893, 0.4495377360153631, 0.46076378431618287, 0.4716602511730545, 0.48221846176707567, 0.4924324301458498, 0.5022985800909818, 0.5118154798933039 ], [ 0.29710249292332697, 0.285520749615672, 0.27419092768991593, 0.26314967568361997, 0.25243909742712023, 0.24210846401413932, 0.2322155852717712, 0.222827593730062, 0.21402094763540236, 0.20588055687932064, 0.19849805408519558, 0.1919693354394368, 0.18639154394214455, 0.1818596436792152, 0.1784626603488665, 0.17627960717925192, 0.17537515739323636, 0.17579530155328707, 0.17756348182697193, 0.18067787731562904, 0.18511047282975607, 0.19080823518501755, 0.19769625930402074, 0.2056823308522511, 0.21466214156055188, 0.2245244240627925, 0.2351554717017539, 0.24644276273349014, 0.2582776290784182, 0.2705570565912025, 0.28318477576218043, 0.29607181788799364, 0.30913669506181246, 0.32230533143988854, 0.33551084011815124, 0.3486932108367988, 0.36179895093673214, 0.3747807055909316, 0.3875968723509184, 0.4002112181895253, 0.4125925032540539, 0.4247141134585215, 0.4365537030886479, 0.4480928482515504, 0.4593167119440205, 0.4702137215464252, 0.48077525957432693, 0.49099536849653264, 0.5008704703497332, 0.510399101755947 ], [ 0.2988298816244777, 0.2872851883731158, 0.2759875617109119, 0.2649739062194298, 0.25428667680400097, 0.2439754938951103, 0.23409838542989794, 0.22472241955285027, 0.21592355461255291, 0.2077856393479296, 0.20039862100895403, 0.19385612230443397, 0.18825258794117228, 0.1836801577966752, 0.18022531944575032, 0.17796529898597616, 0.17696415721369627, 0.17726872080605202, 0.17890475156318825, 0.18187399643824007, 0.1861527981188199, 0.19169270430076288, 0.19842307557565453, 0.20625524887461053, 0.2150875436862647, 0.22481036881947097, 0.23531084737531846, 0.24647661964504583, 0.2581987120345571, 0.2703735232880733, 0.28290406786037287, 0.2957006451877252, 0.30868109496088714, 0.3217707716997534, 0.33490234019865467, 0.3480154641116143, 0.3610564361981474, 0.3739777811266872, 0.38673784953794665, 0.399300414143952, 0.41163427379589834, 0.42371286868685315, 0.43551390839246035, 0.4470190137485586, 0.45821337326031525, 0.46908541461419384, 0.47962649179973416, 0.48983058828433085, 0.499694036599289, 0.5092152545884342 ], [ 0.3012620491624756, 0.28977617743531975, 0.27853302991904777, 0.26757012479411446, 0.2569306531874911, 0.24666497258939876, 0.23683169004062163, 0.22749811112632798, 0.21873990180230782, 0.2106399242180081, 0.20328633814880936, 0.19677016418855253, 0.19118253985510988, 0.18661184305088474, 0.18314073068323022, 0.18084301535509145, 0.17978027561438772, 0.1799982285342128, 0.18152315980099343, 0.18435897552291264, 0.1884855420060951, 0.19385881622943932, 0.20041288789447378, 0.2080636206708612, 0.21671327489254288, 0.22625540703047076, 0.23657944935990013, 0.2475745851230471, 0.2591327555056654, 0.271150805730616, 0.2835318800788633, 0.29618621822158653, 0.3090315070398829, 0.3219929219568869, 0.33500296357583226, 0.3480011674302003, 0.36093374090136093, 0.3737531630597298, 0.38641777005450206, 0.3988913397925587, 0.4111426839453439, 0.42314525184350726, 0.4348767487986746, 0.44631877027156996, 0.4574564527054432, 0.46827814152107944, 0.47877507658097773, 0.48894109529792334, 0.49877235345039783, 0.5082670636604556 ], [ 0.30436663485471005, 0.2929601829729016, 0.2817926603195196, 0.2709025137216542, 0.2603339985001561, 0.25013852799632313, 0.24037557427597542, 0.23111290956524552, 0.2224260562829232, 0.21439693390241668, 0.20711182542088724, 0.2006588918417087, 0.19512549537374163, 0.19059552773531707, 0.18714679891714597, 0.18484839332835792, 0.1837578396859015, 0.18391803723158312, 0.1853541210361692, 0.18807072239733708, 0.19205022833791321, 0.19725255782658654, 0.20361666679586993, 0.2110636017423937, 0.2195006075629542, 0.2288256623919466, 0.23893186399894858, 0.24971126046394113, 0.2610579170620613, 0.2728701797532175, 0.28505220701919487, 0.29751489700743594, 0.3101763504064016, 0.32296199801826614, 0.3358044992559794, 0.3486434927024968, 0.3614252572285871, 0.3741023238962124, 0.38663306521381624, 0.39898127867337, 0.4111157750208047, 0.42300997753251746, 0.43464153596903393, 0.44599195730192115, 0.4570462543712606, 0.46779261306912895, 0.47822207829651636, 0.4883282587114261, 0.4981070501219115, 0.5075563772527367 ], [ 0.30810817837734117, 0.2968006679255528, 0.2857288645651801, 0.2749323995717604, 0.26445684376523004, 0.2543548942780598, 0.2446870750163059, 0.2355217555254884, 0.2269343773798693, 0.21900590196524936, 0.2118206302639853, 0.20546365097553207, 0.20001820393250105, 0.19556317769311485, 0.19217081119301785, 0.18990450464792633, 0.1888165559836214, 0.18894569653091683, 0.19031450283482285, 0.19292702036723436, 0.19676710964207592, 0.20179800603348144, 0.20796336155941766, 0.21518970592784814, 0.22338996559886307, 0.23246751779418606, 0.24232025617185066, 0.25284426295684587, 0.2639368486962266, 0.2754988764855969, 0.28743640093106976, 0.2996617169251615, 0.3120939380867971, 0.3246592230005182, 0.3372907516631051, 0.3499285337999483, 0.3625191103294438, 0.37501519182712906, 0.3873752641763029, 0.39956318151450826, 0.41154775949442884, 0.4233023770704816, 0.4348045918561953, 0.44603577205498457, 0.456980746663677, 0.46762747481662, 0.4779667346012896, 0.48799183132271234, 0.49769832495624355, 0.5070837763663826 ], [ 0.3124491129235843, 0.3012591053049987, 0.2903021682550174, 0.27961930205455543, 0.26925755510295013, 0.2592710327706395, 0.24972138606657168, 0.24067760172315816, 0.23221500445336063, 0.2244135092926448, 0.2173552987455277, 0.21112220380132493, 0.205793096947148, 0.20144153587511826, 0.19813374443044612, 0.19592684274562372, 0.19486712717844634, 0.19498822203632615, 0.19630908754363618, 0.19883210200263088, 0.20254162129781766, 0.20740345239511218, 0.21336553218298582, 0.2203598418586635, 0.22830532186448743, 0.2371113797149098, 0.24668154155803923, 0.256916867374773, 0.2677188773961549, 0.2789918719432496, 0.2906446352205386, 0.30259158346837783, 0.31475345198273696, 0.3270576233512268, 0.3394381912891466, 0.3518358391205464, 0.36419759484317854, 0.3764765089571815, 0.38863128816655074, 0.40062590794250863, 0.41242921948008543, 0.42401456128052883, 0.4353593819279369, 0.4464448781413297, 0.45725565051379613, 0.46777937823463567, 0.4780065133450242, 0.4879299945796683, 0.4975449805160245, 0.506848601537109 ], [ 0.31735060491696326, 0.30629581007149165, 0.29547203082866563, 0.2849217428678728, 0.2746935395667797, 0.26484295203205166, 0.25543272082520097, 0.24653235953480507, 0.23821694280868466, 0.23056517900548895, 0.2236569622965925, 0.21757070026763295, 0.21238074003427132, 0.20815514641628813, 0.20495393385617028, 0.20282767458586623, 0.20181627806618696, 0.201947727308134, 0.20323668110585436, 0.20568305434827852, 0.20927087231444202, 0.213967765760768, 0.21972539457841525, 0.22648089521973408, 0.23415922503651024, 0.24267610866499018, 0.2519412224399185, 0.2618612796595771, 0.2723427680453935, 0.2832941993244411, 0.29462782792776515, 0.30626086564286925, 0.3181162593330313, 0.3301231148555654, 0.3422168499555443, 0.3543391494789964, 0.3664377831522215, 0.3784663328007813, 0.39038386400054975, 0.40215456743557415, 0.41374738771901415, 0.4251356518402439, 0.4362967053554138, 0.44721156156916886, 0.45786456694637906, 0.4682430845991364, 0.4783371967347675, 0.48813942629689544, 0.49764447759432817, 0.5068489954298392 ], [ 0.32277322152042126, 0.3118705775032693, 0.30119745095486333, 0.29079781929081105, 0.2807217947634159, 0.2710262494945718, 0.2617748715293956, 0.25303751200917596, 0.2448887778483008, 0.23740595024411346, 0.2306664397270632, 0.2247450847385637, 0.21971162472075495, 0.21562860980725843, 0.21254986010955468, 0.21051940826774027, 0.20957072137376015, 0.2097259647053935, 0.21099515865369478, 0.21337525243488203, 0.21684931259059145, 0.22138611880882245, 0.2269404327083639, 0.23345407365162593, 0.2408577594416486, 0.2490735173851042, 0.2580173877051694, 0.2676021358007398, 0.27773974308940336, 0.2883435273338605, 0.29932982495359395, 0.3106192329988561, 0.3221374512488484, 0.33381578685700686, 0.34559139023599206, 0.3574072872165673, 0.3692122637536092, 0.38096064896792875, 0.3926120321285658, 0.4041309402971667, 0.41548649610898386, 0.42665206951381773, 0.4376049330308732, 0.4483259269178748, 0.45879913836362923, 0.46901159717036955, 0.47895298922984236, 0.4886153882882459, 0.4979930059463189, 0.5070819594831222 ], [ 0.328677429157302, 0.3179431399237475, 0.3074373790679624, 0.2972055747719159, 0.2872992454344607, 0.27777642856174456, 0.2687015285874738, 0.2601444646420755, 0.2521790938950765, 0.24488100854520156, 0.23832492862480945, 0.23258200244068403, 0.2277173465803255, 0.2237880893740092, 0.2208420372279303, 0.21891690747702794, 0.21803992931234367, 0.21822756308464647, 0.21948514859426743, 0.22180643621821342, 0.22517311520694258, 0.22955456042588748, 0.23490803009953895, 0.24117946598290213, 0.24830491464584736, 0.2562124580064327, 0.2648244543465362, 0.2740598637265643, 0.2838364561572733, 0.2940727562887715, 0.304689642638338, 0.3156115764210522, 0.32676747688195734, 0.338091285312328, 0.3495222712512894, 0.3610051357915061, 0.372489962376599, 0.3839320580992759, 0.3952917203695502, 0.40653395613361004, 0.4176281741621897, 0.4285478654655292, 0.43927028258072187, 0.4497761251653249, 0.46004923683931387, 0.47007631637565284, 0.4798466450023888, 0.48935183062871007, 0.49858556915124097, 0.5075434225628412 ], [ 0.33502394243234584, 0.3244734699634549, 0.3141509747418603, 0.30410321416419145, 0.2943829247577776, 0.28504905884976367, 0.2761664372096531, 0.26780472002690786, 0.2600366920309807, 0.2529359747905475, 0.24657439531515615, 0.24101932171457113, 0.23633129213976053, 0.2325621962591225, 0.22975413014942525, 0.22793887633455212, 0.22713781887852316, 0.22736204072702018, 0.22861238810527373, 0.2308794042023519, 0.2341431786436589, 0.23837327014208817, 0.2435288969402849, 0.24955954786287213, 0.2564060722182381, 0.2640022002651662, 0.2722763634247438, 0.2811536436434133, 0.2905576843319808, 0.30041242862946843, 0.3106435978749865, 0.321179870110613, 0.3319537565793855, 0.34290220026314994, 0.3539669350282305, 0.3650946493449701, 0.37623699775937514, 0.38735049894227536, 0.39839635319229616, 0.40934020601477134, 0.4201518785769688, 0.43080508079481916, 0.44127711863643476, 0.4515486038957134, 0.4616031720954166, 0.47142721220497963, 0.4810096103887128, 0.4903415089335279, 0.4994160807556363, 0.5082283193814068 ], [ 0.3417739524001336, 0.33142196681619496, 0.32129775308239256, 0.3114492155181935, 0.30193005986613736, 0.29279984645843876, 0.2841234655090306, 0.27596995803977764, 0.26841069683490476, 0.2615170523360988, 0.2553577751154141, 0.2499963991776918, 0.24548898073727896, 0.24188242150242548, 0.23921349445217185, 0.23750853000963332, 0.23678358286811052, 0.23704483075274307, 0.2382889767089162, 0.24050352160266478, 0.2436669008571746, 0.2477485882843448, 0.25270932313608335, 0.2585016038439925, 0.2650705289874893, 0.2723549829317025, 0.28028909013474274, 0.288803817277188, 0.29782859096499525, 0.30729281461953617, 0.3171271999044021, 0.3272648643292731, 0.33764217933761453, 0.34819937797847167, 0.35888094719015545, 0.36963583782442805, 0.3804175277445837, 0.3911839716695183, 0.40189746761968387, 0.4125244650997467, 0.42303533533710447, 0.43340411944621554, 0.4436082665233169, 0.4536283704586317, 0.4634479116611973, 0.47305300786090787, 0.4824321766037649, 0.4915761109089865, 0.500477468735669, 0.5091306763450645 ], [ 0.3488892665655824, 0.338749563274165, 0.3288376630635598, 0.3192023861236107, 0.30989811365080605, 0.30098467047268795, 0.29252664451296706, 0.284592086937516, 0.27725062388120486, 0.2705711132688856, 0.26461907667483514, 0.2594541992295522, 0.25512819582751195, 0.2516832780494947, 0.2491513334843145, 0.24755377994572553, 0.2469019265807772, 0.24719760275817662, 0.2484338231858695, 0.2505953338533737, 0.2536589940705271, 0.25759405268501384, 0.2623624383224115, 0.2679191913400007, 0.2742131273526464, 0.28118776025303927, 0.28878245056556384, 0.29693370028661586, 0.3055764954427366, 0.31464560067895114, 0.32407672910735946, 0.3338075368502329, 0.343778418081153, 0.35393309840973386, 0.36421904026054813, 0.37458768344280496, 0.3849945484311639, 0.39539923039863434, 0.40576531013126094, 0.41606020472534916, 0.426254977224314, 0.4363241206130249, 0.44624532815217405, 0.45599925904834904, 0.46556930596324875, 0.47494136885571564, 0.48410363808031753, 0.49304638847951066, 0.5017617853425073, 0.5102437025035318 ], [ 0.3563323916180999, 0.34641778756736663, 0.3367311342659757, 0.3273219010741002, 0.31824482243253976, 0.3095596263601756, 0.3013302221022233, 0.2936233097234395, 0.28650645659815366, 0.2800457796016943, 0.27430345745825846, 0.26933535114241086, 0.2651890105979701, 0.26190228447661507, 0.25950263593542716, 0.25800713044749135, 0.25742294027966595, 0.2577481401269186, 0.2589725668805995, 0.2610785767769199, 0.2640416280704304, 0.26783071176674245, 0.2724087177278498, 0.27773284490329736, 0.28375514574539, 0.29042325104742994, 0.29768127123789767, 0.3054708289556849, 0.31373215382776093, 0.3224051648584728, 0.3314304747956027, 0.34075026822838167, 0.3503090252124648, 0.3600540806811173, 0.36993602445387563, 0.37990895655686696, 0.38993061814589736, 0.3999624204337774, 0.4099693936725277, 0.41992007634894113, 0.42978636205066717, 0.4395433184741132, 0.44916899011753836, 0.45864419353332736, 0.46795231170267787, 0.47707909217710004, 0.4860124520961921, 0.4947422920081871, 0.5032603195443899, 0.5115598833815802 ], [ 0.364066585321551, 0.3543888072594088, 0.34493911934915816, 0.335767351076152, 0.32692825511924867, 0.31848110065724705, 0.31048875446073615, 0.30301622968301617, 0.29612875867390903, 0.28988953073018275, 0.28435731050719454, 0.2795841969703854, 0.27561377879729515, 0.2724798833960199, 0.27020601258201915, 0.2688054336059352, 0.2682817833495781, 0.2686299764277819, 0.2698372002142039, 0.27188382690121327, 0.2747441530716596, 0.2783869620026718, 0.28277596793215726, 0.28787023124699096, 0.2936246289117321, 0.2999904355179903, 0.30691603141644813, 0.3143477184766549, 0.32223059935119064, 0.33050946544445137, 0.3391296405099611, 0.34803773698629414, 0.35718229641297916, 0.36651429987656886, 0.37598754702561743, 0.3855589116165195, 0.3951884876211915, 0.404839643037281, 0.4144789993512088, 0.42407635381611786, 0.4336045599412421, 0.44303937933453713, 0.4523593156474328, 0.4615454390703653, 0.47058120775760665, 0.47945229078882023, 0.48814639582431696, 0.4966531034721989, 0.5049637095302432, 0.5130710756552336 ], [ 0.3720558977749921, 0.3626254745099788, 0.3534231499115177, 0.34449881487878076, 0.33590690658622824, 0.32770588706625997, 0.3199572430933807, 0.3127240022467503, 0.3060688300981708, 0.300051848641084, 0.2947283803627491, 0.29014685788456573, 0.28634713151413876, 0.28335935162648773, 0.28120350839868336, 0.2798895999271276, 0.27941829983693156, 0.2797819328662954, 0.2809655551586371, 0.2829479722467637, 0.28570259498801553, 0.2891981084174845, 0.29339898925943325, 0.2982659419233813, 0.30375632807568853, 0.3098246477422691, 0.31642310106657984, 0.32350222995201144, 0.3310116154796768, 0.33890059376567067, 0.34711894978304264, 0.3556175533223042, 0.3643489105249835, 0.3732676153102292, 0.38233069530239777, 0.39149785524839853, 0.4007316268732129, 0.4099974377051488, 0.41926361297195, 0.4285013247144202, 0.4376845012761706, 0.44678970873056517, 0.45579601393058883, 0.4646848369527129, 0.47343979891000254, 0.4820465695257664, 0.4904927175317337, 0.498767565894327, 0.5068620530658317, 0.514768600876375 ], [ 0.38026521570607047, 0.37109138429935945, 0.362145414630929, 0.353476962057143, 0.34513982767379925, 0.33719134321446476, 0.3296913141558126, 0.32270052853612496, 0.3162789023879769, 0.3104833985820345, 0.30536591025633564, 0.3009713277756798, 0.2973359977743173, 0.29448673113769297, 0.2924404320415609, 0.2912043212215438, 0.29077663767019474, 0.2911476455458876, 0.2923007589177938, 0.29421362438347515, 0.2968590572887449, 0.3002057921418249, 0.3042190638689982, 0.3088610721886959, 0.3140913932702797, 0.31986739477383885, 0.32614469015324155, 0.3328776442465967, 0.3400199213923482, 0.3475250533959999, 0.35534699858799346, 0.3634406638628924, 0.37176236684349145, 0.3802702228705677, 0.3889244494613144, 0.39768758790591596, 0.4065246470977825, 0.41540317832528545, 0.4242932917217612, 0.43316762567819145, 0.4420012801294633, 0.4507717235762264, 0.459458682294049, 0.4680440186382837, 0.47651160384010466, 0.48484718931329807, 0.4930382793126866, 0.5010740068285667, 0.5089450138662642, 0.5166433367278866 ], [ 0.38866031746039564, 0.37975095060989383, 0.3710688615579192, 0.3626631846449948, 0.3545867869342284, 0.34689558017739197, 0.3396474298467208, 0.3329006789940281, 0.3267123613241575, 0.3211362348964831, 0.31622081316604705, 0.31200759109499987, 0.30852965166715307, 0.30581079045493986, 0.30386522049880993, 0.3026978327393885, 0.3023049088016915, 0.3026751310429086, 0.30379071938781677, 0.3056285447515195, 0.3081611144616851, 0.3113573806718741, 0.31518337333207463, 0.31960269451622353, 0.3245769269004934, 0.33006600784989276, 0.3360286074581734, 0.3424225306468578, 0.34920514578139256, 0.3563338289030303, 0.3637664051043357, 0.3714615665419692, 0.37937924878071144, 0.38748095192138404, 0.3957299987195762, 0.4040917274653661, 0.4125336220292028, 0.42102538485108815, 0.42953896072258824, 0.43804852013478063, 0.44653041098155216, 0.45496308678255054, 0.4633270185694162, 0.47160459636872215, 0.47978002497255184, 0.4878392175229901, 0.4957696894187651, 0.5035604542151665, 0.5112019225408381, 0.5186858045867025 ], [ 0.39720794142847327, 0.38856950050396866, 0.38015732144455067, 0.37201975138555293, 0.3642084549608317, 0.35677767308775804, 0.349783118329527, 0.3432805325563431, 0.33732398259947904, 0.33196401834561223, 0.3272458548967927, 0.3232077557272264, 0.3198797801068448, 0.3172830145407647, 0.3154293414410456, 0.3143217223089359, 0.3139549041263924, 0.3143164112863381, 0.31538766962147435, 0.31714512366811554, 0.3195612452669224, 0.3226053786825084, 0.3262444122609837, 0.33044330021009416, 0.3351654762988994, 0.34037320475092936, 0.34602790616136336, 0.352090482999522, 0.35852165490035, 0.36528230189519606, 0.3723338057256036, 0.37963837572365206, 0.3871593457514064, 0.3948614312229021, 0.4027109390752172, 0.4106759276952941, 0.41872631753515144, 0.42683395606034386, 0.43497264263122476, 0.44311811995121664, 0.4512480389743165, 0.4593419038363674, 0.46738100265749516, 0.47534832913242847, 0.48322849882467367, 0.4910076631157765, 0.4986734229028363, 0.5062147434255908, 0.5136218710532054, 0.520886252465838 ], [ 0.40587586701523487, 0.3975133826081769, 0.389375645952495, 0.3815099758824668, 0.37396660030809964, 0.3667978800253692, 0.36005720815640785, 0.35379761677523264, 0.34807016588143513, 0.342922231089519, 0.3383958364738704, 0.33452618960952324, 0.33134056156845104, 0.3288576152916131, 0.32708722745774726, 0.32603078313957184, 0.3256818629908269, 0.32602720163920157, 0.32704778039700744, 0.32871992748315676, 0.3310163285958494, 0.33390689015018304, 0.33735943667940765, 0.34134025502216875, 0.34581451697611126, 0.3507466188489048, 0.35610047328275457, 0.36183977968650255, 0.3679282884164743, 0.37433006349216924, 0.3810097409002387, 0.38793277506180057, 0.39506566458511866, 0.4023761492754516, 0.40983337263755426, 0.41740800695903624, 0.425072340867949, 0.43280033160590303, 0.44056762594665627, 0.4483515546799333, 0.4561311059385863, 0.4638868825016938, 0.47160104770537253, 0.4792572638815183, 0.48684062644670434, 0.4943375959762759, 0.5017359298898686, 0.5090246147849369, 0.5161938000014848, 0.5232347326833822 ], [ 0.4146330048857386, 0.4065500845585481, 0.39868985319141, 0.3910983892144325, 0.38382428602448027, 0.3769178571113507, 0.37043005451038, 0.364411136077034, 0.35890915473462615, 0.35396837729928776, 0.34962776446119004, 0.34591965032559013, 0.3428687455455335, 0.34049155282574217, 0.338796232808387, 0.3377829015993164, 0.3374442897774657, 0.33776665661541755, 0.3387308382781986, 0.34031331535238496, 0.342487208583772, 0.34522314449597413, 0.34848996639826546, 0.35225529456170523, 0.35648595828051527, 0.3611483313563708, 0.3662086027751324, 0.3716330087828536, 0.3773880442512985, 0.38344066270631205, 0.3897584673758485, 0.3963098909033566, 0.403064359042291, 0.40999243330224777, 0.41706592854058994, 0.42425800324701923, 0.43154322221384, 0.4388975930381559, 0.44629857924074195, 0.45372509362358016, 0.4611574758377387, 0.46857745807229206, 0.47596812241077613, 0.48331385284823497, 0.49060028432330094, 0.49781425048081257, 0.5049437313029517, 0.5119778012690955, 0.5189065783443679, 0.5257211738549862 ], [ 0.4234494919536165, 0.41564835320816357, 0.4080672728984126, 0.4007509081105006, 0.39374605703504195, 0.3871008595743944, 0.38086374693854846, 0.3750821780373936, 0.36980123268020054, 0.3650621601105476, 0.36090100023955796, 0.35734739881433863, 0.35442372370414527, 0.35214455813896584, 0.35051660275764596, 0.34953896962011266, 0.3492038071429311, 0.34949716333903214, 0.3503999806358414, 0.3518891194537647, 0.3539383261945544, 0.3565190883049447, 0.3596013480007574, 0.36315407150114304, 0.3671456887901297, 0.3715444288952586, 0.3763185782734934, 0.3814366871093437, 0.38686774252065775, 0.3925813209606346, 0.3985477260457374, 0.40473811349560995, 0.41112460211205054, 0.417680368591635, 0.4243797240664732, 0.4311981711295057, 0.43811244129108723, 0.44510051399598954, 0.45214161928576796, 0.4592162268119139, 0.46630602416941097, 0.4733938874677615, 0.4804638467612032, 0.487501048508631, 0.49449171671101144, 0.5014231138513887, 0.5082835022936082, 0.5150621064149193, 0.5217490754708192, 0.5283354470189617 ], [ 0.43229678618692596, 0.4247783115305158, 0.41747668428098206, 0.41043499109077225, 0.40369811048630644, 0.39731192092437984, 0.3913222909939318, 0.38577389053233535, 0.38070888872082137, 0.37616562860389774, 0.3721773820487977, 0.3687712907919502, 0.3659675857803419, 0.3637791493257519, 0.3622114466643716, 0.3612628118735591, 0.36092503524390185, 0.36118417171743455, 0.3620214768967782, 0.36341437902510504, 0.3653374096676663, 0.3677630379087589, 0.3706623773783828, 0.37400575770360545, 0.3777631689667719, 0.38190459819548767, 0.3864002811325884, 0.3912208918991352, 0.39633768946540543, 0.4017226348159179, 0.40734848769074145, 0.41318888766300343, 0.4192184214501206, 0.42541267676344735, 0.4317482824547901, 0.4382029348925834, 0.44475541106186156, 0.4513855695514618, 0.45807434117072615, 0.4648037113131907, 0.47155669631602704, 0.47831731596554283, 0.4850705640192374, 0.49180237821838774, 0.4984996108184117, 0.5051500002260141, 0.5117421439473381, 0.5182654727490956, 0.5247102257283106, 0.5310674258760211 ], [ 0.4411477565447463, 0.4339115668684049, 0.42688844075712734, 0.42011977666776884, 0.41364844328402767, 0.4075180048324129, 0.4017717589072974, 0.3964516254543141, 0.3915969485078987, 0.38724329127447377, 0.3834213162399332, 0.3801558419577657, 0.3774651555509732, 0.3753606356425614, 0.3738467078427488, 0.37292111942200584, 0.37257548746595803, 0.3727960509676749, 0.37356454527649485, 0.3748591177378828, 0.37665521434108956, 0.37892638511117355, 0.3816449765782368, 0.38478269909181173, 0.38831107232335255, 0.3922017627227661, 0.39642683195022954, 0.40095891627841507, 0.40577135498626726, 0.41083828222537305, 0.4161346928903481, 0.4216364894651795, 0.4273205140765713, 0.43316456818161053, 0.43914742135628404, 0.44524881032404423, 0.4514494294269683, 0.4577309139749009, 0.46407581814185234, 0.4704675892074246, 0.476890539916673, 0.4833298205530861, 0.4897713920166611, 0.4962020008195689, 0.5026091565071577, 0.508981111629169, 0.5153068440615154, 0.5215760412363666, 0.5277790856876022, 0.5339070412583974 ], [ 0.44997676400196823, 0.4430213062211502, 0.436274577258723, 0.42977619948756823, 0.42356697312863073, 0.4176881266009741, 0.41218040681857726, 0.40708304713095517, 0.402432669750054, 0.3982621948054982, 0.39459983645008667, 0.3914682652404506, 0.3888840043311587, 0.3868571057671454, 0.38539112524257735, 0.3844833834984571, 0.38412547497051663, 0.38430396367906683, 0.3850011954008031, 0.38619615451968664, 0.3878653022519756, 0.389983347381353, 0.3925239178363704, 0.3954601182393372, 0.39876497261707466, 0.402411761528412, 0.40637426869430465, 0.41062695434598856, 0.4151450718989888, 0.4199047422955044, 0.42488299739810886, 0.4300578008815507, 0.43540805259307486, 0.4409135805196144, 0.4465551233089906, 0.45231430562445646, 0.4581736083012999, 0.46411633515492, 0.47012657822590237, 0.4761891831473546, 0.48228971613597915, 0.48841443383208827, 0.494550256863562, 0.5006847476188097, 0.5068060923241269, 0.5129030871683885, 0.5189651279320363, 0.5249822023758247, 0.5309448845345172, 0.5368443300380522 ], [ 0.45875973048131913, 0.45208237543302093, 0.44560889721421265, 0.4393770819728058, 0.433425631206356, 0.4277934430620382, 0.42251875808539746, 0.4176382055512746, 0.41318580237318075, 0.40919196880609576, 0.4056826312051346, 0.40267848011034835, 0.4001944412350387, 0.39823939843590034, 0.39681618388241996, 0.39592182500002543, 0.39554801430312336, 0.3956817504382833, 0.3963060888680725, 0.3974009392539816, 0.3989438527637142, 0.4009107540872956, 0.4032765872168772, 0.40601585844823795, 0.40910307259873196, 0.412513067921907, 0.41622126126197445, 0.4202038179066877, 0.4244377610383259, 0.42890103447536215, 0.433572530326809, 0.4384320908717818, 0.44346049184600467, 0.4486394125821519, 0.453951397170152, 0.45937980992817096, 0.4649087879016898, 0.4705231927195543, 0.4762085638289766, 0.48195107483216426, 0.4877374943142574, 0.49355515217459356, 0.4993919120626992, 0.505236150102345, 0.5110767396924648, 0.51690304183205, 0.5227049001500178, 0.5284726396439189, 0.5341970680469308, 0.5398694787450128 ], [ 0.46747419344686314, 0.4610713403003189, 0.45486703766329595, 0.44889720049795506, 0.44319842623772737, 0.43780731130380884, 0.43275965372088615, 0.4280895759789319, 0.4238286153466204, 0.420004838517985, 0.4166420417693293, 0.4137590953097028, 0.4113694808187261, 0.4094810551176491, 0.40809605256101933, 0.40721131698391516, 0.406818734092377, 0.4069058198511309, 0.4074564115470112, 0.40845140635845045, 0.4098694967523598, 0.4116878612210374, 0.4138827806492645, 0.41643016286921947, 0.41930596902394063, 0.4224865441350946, 0.4259488603153588, 0.42967068447191636, 0.4336306835648015, 0.43780848012911006, 0.4421846694694635, 0.4467408082185626, 0.45145938220097387, 0.45632375998607144, 0.46131813724612836, 0.4664274760580383, 0.4716374425458221, 0.47693434567995124, 0.4823050795555646, 0.4877370710093289, 0.4932182339717156, 0.49873693147846926, 0.5042819457906437, 0.5098424566168974, 0.5154080270193842, 0.5209685962390307, 0.5265144784148557, 0.5320363660051006, 0.5375253366460335, 0.5429728622002568 ], [ 0.47609934482040744, 0.4699665286620662, 0.4640265121037148, 0.4583133263281055, 0.45286148079152583, 0.44770531779716377, 0.44287827211707853, 0.4384120675564949, 0.4343358930397091, 0.4306756083939195, 0.4274530329451776, 0.4246853672676256, 0.42238478971624144, 0.4205582554893765, 0.41920750861888534, 0.4183292988456076, 0.4179157783856376, 0.417955040396366, 0.41843175302657215, 0.41932784080246893, 0.420623168287646, 0.4222961882144097, 0.4243245259558291, 0.4266854825957263, 0.42935644853279575, 0.432315227554993, 0.4355402771703346, 0.43901087464815164, 0.4427072199900826, 0.4466104873609497, 0.45070283585540466, 0.4549673892958713, 0.4593881933888742, 0.46395015723225963, 0.46863898498120043, 0.473441102481266, 0.4783435828449292, 0.4833340742414123, 0.4884007325416844, 0.49353216087317286, 0.4987173575700253, 0.5039456734491022, 0.5092067788074618, 0.5144906400410283, 0.5197875053469283, 0.5250878986128767, 0.5303826203299135, 0.5356627541966577, 0.5409196780128547, 0.5461450774788993 ], [ 0.48461605369706307, 0.4787480534292356, 0.47306673159690626, 0.46760424247549304, 0.4623930416548801, 0.45746528030590333, 0.4528521209378136, 0.44858300414593894, 0.4446849045429972, 0.44118161997855, 0.43809314005150785, 0.4354351370318891, 0.4332186145277937, 0.431449737247252, 0.43012985043330965, 0.4292556819228309, 0.42881970537546915, 0.4288106318712184, 0.42921399002946187, 0.4300127525282354, 0.43118796908297025, 0.4327193716379208, 0.434585925430064, 0.4367663083370071, 0.4392393093277546, 0.44198414404253067, 0.44498069106640625, 0.44820965621740483, 0.4516526742969664, 0.4552923585633808, 0.4591123080609753, 0.4630970822254568, 0.46723215117980643, 0.47150382904194776, 0.4758991965088125, 0.4804060180174682, 0.48501265792246084, 0.4897079993529419, 0.4944813686985835, 0.4993224679979939, 0.5042213168550593, 0.5091682048869272, 0.5141536551215103, 0.5191683982282567, 0.524203357001754, 0.5292496401396513, 0.5342985440761074, 0.5393415614541168, 0.5443703947423069, 0.5493769735148722 ], [ 0.49300687302361146, 0.48739781721988823, 0.48196900536283555, 0.47675073829028614, 0.47177346664407577, 0.46706722547318313, 0.4626610044819152, 0.45858208098390074, 0.4548553496583362, 0.4515026877594502, 0.44854239554903924, 0.44598874883500306, 0.4438516935866373, 0.4421367022664392, 0.4408447989465261, 0.439972747032793, 0.4395133811797694, 0.4394560552256612, 0.439787171735376, 0.4404907564270875, 0.4415490421723169, 0.44294303169256544, 0.44465301451183753, 0.44665902106517963, 0.4489412041216485, 0.4514801441107365, 0.4542570800965684, 0.45725407186067385, 0.46045410089497296, 0.46384111928177185, 0.46740005572545557, 0.47111678768386617, 0.47497808787053325, 0.47897155254724894, 0.4830855181222534, 0.48730897168056286, 0.4916314602273878, 0.4960430026264518, 0.5005340074547457, 0.5050951992656529, 0.5097175550504855, 0.5143922520189506, 0.5191106271933034, 0.5238641487447769, 0.5286443985111433, 0.5334430647355659, 0.5382519437692431, 0.5430629492872003, 0.5478681274748637, 0.5526596766433041 ], [ 0.5012560309503109, 0.4958994998034515, 0.49071652259113796, 0.485735584035333, 0.48098519059248196, 0.47649334523807657, 0.47228696999082914, 0.46839130082792174, 0.4648292853063043, 0.4616210166760692, 0.4587832388119089, 0.45632895348437147, 0.4542671553785202, 0.4526027113737264, 0.45133638990014113, 0.45046503495828555, 0.44998186898337883, 0.44987690035511885, 0.4501374058403765, 0.4507484559794405, 0.4516934522646226, 0.45295464838363747, 0.4545136330187707, 0.4563517578266159, 0.4584505004568183, 0.4607917581600624, 0.4633580722696953, 0.46613278742840636, 0.4691001518705058, 0.47224536649195564, 0.4755545910453558, 0.4790149158051198, 0.48261430665990823, 0.4863415309665189, 0.4901860707571119, 0.49413802910245264, 0.4981880346368969, 0.5023271484632389, 0.5065467768831953, 0.5108385926448107, 0.515194466666623, 0.5196064114993912, 0.5240665371334444, 0.5285670191695898, 0.5331000788604591, 0.5376579741108901, 0.5422330002094876, 0.5468174988519695, 0.5514038739068418, 0.5559846123562323 ], [ 0.5093494079753016, 0.5042385299309504, 0.49929431751236586, 0.49454348793718117, 0.4900126734100205, 0.485727935307529, 0.48171423636607813, 0.47799489319613564, 0.4745910359824114, 0.4715211048407349, 0.46880041242205467, 0.466440799685583, 0.46445040637396784, 0.4628335700729221, 0.46159085863229554, 0.46071923120048414, 0.4602123142744688, 0.46006077196669565, 0.4602527448320563, 0.46077432940702484, 0.4616100710242093, 0.4627434450857091, 0.4641573061939098, 0.46583428964630885, 0.4677571551309736, 0.4699090674633666, 0.47227381350551473, 0.4748359578055931, 0.47758094194615575, 0.48049513416307993, 0.48356583663435077, 0.48678125810419987, 0.49013045936533844, 0.49360327870744325, 0.4971902438581892, 0.5008824762662559, 0.5046715928490504, 0.5085496095778315, 0.5125088505148953, 0.516541865162877, 0.5206413562463735, 0.5248001193347865, 0.529010995048588, 0.5332668339864284, 0.5375604739839486, 0.5418847288803184, 0.5462323876341043, 0.550596222398984, 0.5549690040391205, 0.5593435235249129 ], [ 0.5172745012825163, 0.5124020433604408, 0.50768921994047, 0.5031610382966724, 0.49884233311847215, 0.49475731884012425, 0.4909291086238425, 0.48737922011104234, 0.4841270916683565, 0.481189634790209, 0.47858084814135515, 0.47631151622267287, 0.4743890109068491, 0.47281720751288114, 0.4715965193354961, 0.47072404645994925, 0.47019382716062547, 0.4699971739936087, 0.4701230724216046, 0.4705586177364467, 0.47128946614518236, 0.4723002778698022, 0.4735751335031535, 0.4750979091045294, 0.4768526000587442, 0.47882358809716025, 0.48099584975039045, 0.48335510767226125, 0.4858879286716172, 0.4885817739401121, 0.4914250079612211, 0.4944068730507602, 0.4975174365390101, 0.5007475173733059, 0.5040885984897809, 0.5075327307424156, 0.5110724335340076, 0.5147005965991156, 0.5184103866654238, 0.5221951619849429, 0.5260483969961721, 0.5299636186701464, 0.5339343554249933, 0.5379540988836425, 0.5420162782140129, 0.5461142463439875, 0.5502412769933335, 0.5543905712148485, 0.5585552719848211, 0.5627284853207175 ], [ 0.5250203778454929, 0.5203788290025583, 0.5158897935463335, 0.5115766332180308, 0.5074624666689855, 0.503569758331765, 0.4999198811897931, 0.49653267149108776, 0.4934259963127807, 0.49061535628916525, 0.48811354543350854, 0.4859303876692463, 0.4840725655323204, 0.4825435508521672, 0.4813436406138858, 0.48047009433433235, 0.4799173628689489, 0.4796773932467028, 0.47973999038050874, 0.48009321456472304, 0.4807237935514756, 0.481617529481331, 0.48275968366406924, 0.4841353257173808, 0.4857296374263724, 0.4875281654929902, 0.4895170208037109, 0.4916830247665116, 0.494013805567, 0.49649784886494264, 0.4991245085505314, 0.5018839837911214, 0.5047672688212644, 0.5077660818543476, 0.5108727792022547, 0.5140802602429216, 0.5173818683212845, 0.5207712920414209, 0.5242424707328185, 0.5277895071732929, 0.5314065899449928, 0.5350879271077594, 0.5388276922154822, 0.5426199830948099, 0.5464587932685776, 0.5503379954520938, 0.5542513361880106, 0.558192440418623, 0.5621548246214546, 0.5661319170482761 ], [ 0.5325776179495528, 0.5281592651338356, 0.5238862640809169, 0.5197804004076384, 0.5158631611760334, 0.5121553584637458, 0.5086767328610746, 0.5054455530245032, 0.5024782296692387, 0.4997889633787327, 0.4973894450935495, 0.49528862601889057, 0.4934925700538101, 0.49200439698444326, 0.49082431905237384, 0.4899497676666579, 0.4893756015576321, 0.4890943830963291, 0.48909670621580975, 0.4893715575818307, 0.4899066923888855, 0.49068900724994613, 0.4917048948216276, 0.49294056770808514, 0.49438234245129303, 0.49601687771362724, 0.4978313638305638, 0.49981366357991963, 0.5019524061847099, 0.5042370382144984, 0.5066578362015547, 0.5092058865013919, 0.5118730382749961, 0.5146518355257865, 0.5175354339547785, 0.5205175080582427, 0.5235921534277096, 0.526753788657495, 0.5299970606481256, 0.5333167564392235, 0.5367077240346948, 0.5401648040176428, 0.5436827731129198, 0.5472563002609013, 0.5508799152340481, 0.5545479893717518, 0.5582547276382157, 0.5619941709270093, 0.5657602073438001, 0.5695465910901792 ], [ 0.5399382507920814, 0.5357352475777337, 0.5316704396602947, 0.5277641093289827, 0.5240361979831103, 0.5205059624079464, 0.5171916159598924, 0.5141099690329589, 0.5112760849405862, 0.5087029680261054, 0.5064013002194607, 0.5043792403248946, 0.5026422971452795, 0.5011932833693237, 0.5000323523426977, 0.4991571148696358, 0.4985628285227125, 0.498242648002921, 0.4981879222134035, 0.49838852207064577, 0.4988331827063287, 0.4995098445010558, 0.5004059791211443, 0.5015088891219301, 0.5028059724387173, 0.5042849459348941, 0.5059340248903125, 0.5077420577301405, 0.5096986173185696, 0.5117940517344377, 0.5140194986132176, 0.5163668679179352, 0.5188287984425949, 0.5213985935126667, 0.5240701412829472, 0.5268378247918889, 0.5296964265541249, 0.5326410319932293, 0.5356669354633252, 0.5387695520062696, 0.5419443373639053, 0.54518671813447, 0.5484920333496354, 0.5518554881733281, 0.5552721199025643, 0.5587367759978235, 0.5622441034955916, 0.5657885488636475, 0.5693643671507561, 0.5729656391525197 ], [ 0.5470956837724334, 0.5431001116545998, 0.5392356250745135, 0.5355210778003358, 0.5319749517308145, 0.5286150438019905, 0.5254581418934682, 0.5225197025053517, 0.5198135443449784, 0.5173515724006321, 0.5151435464426798, 0.5131969061431048, 0.5115166622280252, 0.5101053594825278, 0.5089631133228929, 0.50808771741097, 0.5074748157964142, 0.5071181296845643, 0.5070097264090289, 0.5071403166956701, 0.5074995658737639, 0.5080764052434709, 0.5088593311802745, 0.5098366815256676, 0.5109968811384983, 0.5123286509340649, 0.5138211771245496, 0.5154642395489403, 0.5172482998490303, 0.5191645517638425, 0.5212049369695158, 0.5233621307045063, 0.5256295019265362, 0.5280010529910137, 0.5304713438648039, 0.5330354057352045, 0.5356886485781426, 0.5384267668438436, 0.5412456469302893, 0.5441412795699864, 0.5471096796773436, 0.5501468156144791, 0.5532485492536479, 0.5564105876639299, 0.5596284467453679, 0.5628974266891481, 0.5662125987675648, 0.5695688026580255, 0.5729606532824836, 0.5763825559946081 ], [ 0.5540446269946183, 0.5502485495686151, 0.5465765319048091, 0.5430460749031504, 0.5396742863435835, 0.5364775963241417, 0.5334714650315722, 0.5306700941667495, 0.5280861544000933, 0.5257305414881192, 0.5236121730326851, 0.5217378362886254, 0.5201120950023381, 0.5187372601695858, 0.5176134260914249, 0.5167385694883305, 0.5161087060205364, 0.5157180956442545, 0.5155594860313347, 0.5156243819288933, 0.5159033278733167, 0.5163861920466234, 0.5170624401459074, 0.5179213897538519, 0.5189524376553881, 0.5201452546524156, 0.5214899445194032, 0.5229771656879644, 0.5245982159587242, 0.5263450819634591, 0.5282104562213183, 0.5301877254565107, 0.532270934393614, 0.5344547295519959, 0.5367342876573179, 0.5391052332097445, 0.5415635495272474, 0.5441054872471344, 0.5467274738461262, 0.5494260272533621, 0.5521976761045359, 0.5550388886408796, 0.557946011714368, 0.5609152208392787, 0.5639424817466808, 0.5670235234661719, 0.5701538225882755, 0.5733285980575344, 0.57654281561257, 0.5797912008236946 ], [ 0.5607810143902767, 0.5571765247454782, 0.5536891860424874, 0.5503352218446984, 0.5471304495989197, 0.5440900225237463, 0.5412281665243689, 0.5385579221517425, 0.5360909024260434, 0.5338370774645469, 0.5318045962114921, 0.5299996541535934, 0.5284264137909024, 0.5270869819678452, 0.5259814451652896, 0.5251079607621103, 0.5244628993528881, 0.524041030692821, 0.5238357439165825, 0.5238392914604443, 0.5240430456445494, 0.5244377571095087, 0.5250138051521228, 0.5257614313316081, 0.5266709493626816, 0.5277329261178157, 0.5289383303871588, 0.5302786477762675, 0.5317459616763229, 0.5333330015669026, 0.5350331609833193, 0.5368404882963113, 0.5387496540236746, 0.5407558987432053, 0.5428549658303011, 0.5450430232296437, 0.5473165783157229, 0.5496723896275051, 0.5521073789025738, 0.5546185464086975, 0.5572028920979385, 0.559857344611009, 0.5625786996574823, 0.5653635688087695, 0.5682083392815879, 0.5711091448732994, 0.5740618478470676, 0.5770620312608531, 0.580105000992754, 0.5831857965356666 ], [ 0.5673019227372076, 0.5638811844698138, 0.5605708340078752, 0.5573858921972321, 0.5543409677003902, 0.5514500233048912, 0.5487261394156308, 0.5461812835799471, 0.5438260954973939, 0.5416696969866571, 0.5397195357603041, 0.5379812705932914, 0.5364587036274834, 0.5351537632576129, 0.5340665384697665, 0.533195362857615, 0.5325369440366466, 0.5320865320066892, 0.5318381183320953, 0.531784656916019, 0.5319182966774894, 0.5322306165748603, 0.5327128540840339, 0.5333561193263199, 0.5341515884217134, 0.5350906711888868, 0.5361651499036074, 0.5373672873627002, 0.5386899039051112, 0.5401264242643851, 0.5416708961398815, 0.5433179831679639, 0.5450629355539782, 0.5469015420050252, 0.5488300668018699, 0.5508451758879543, 0.5529438557572119, 0.5551233287129514, 0.5573809677694175, 0.5597142140970861, 0.562120499492831, 0.5645971759065918, 0.5671414535957854, 0.5697503490246973, 0.5724206431938609, 0.5751488506868366, 0.5779311993688863, 0.5807636203706568, 0.583641747743742, 0.5865609269844823 ], [ 0.5736054897082341, 0.570360772004027, 0.5672198492764206, 0.5641966127244363, 0.561304541048487, 0.5585564892229857, 0.5559644761625118, 0.5535394790863837, 0.5512912428326128, 0.549228112321137, 0.54735689577419, 0.5456827651731719, 0.5442091988235612, 0.5429379689181592, 0.5418691747802111, 0.5410013202011874, 0.5403314311379026, 0.5398552081604328, 0.5395672065742763, 0.5394610361622034, 0.539529572038372, 0.5397651681664047, 0.540159865609449, 0.5407055884687781, 0.5413943216256208, 0.5422182657214915, 0.5431699661943229, 0.5442424145441878, 0.5454291212649792, 0.5467241609984695, 0.5481221914150795, 0.5496184480877714, 0.5512087182006697, 0.5528892963302801, 0.55465692576831, 0.5565087289382354, 0.5584421304117922, 0.5604547758759661, 0.5625444501552727, 0.5647089970775572, 0.5669462436030149, 0.5692539302340136, 0.5716296493050597, 0.5740707923340544, 0.5765745072124011, 0.5791376656348581, 0.5817568408301406, 0.5844282953571678, 0.5871479784837217, 0.5899115324655881 ], [ 0.5796908319429532, 0.5766145392065267, 0.5736356396365035, 0.5707669658082328, 0.5680209421946054, 0.5654093945381853, 0.562943359454418, 0.5606329011414767, 0.5584869423951933, 0.55651311702644, 0.5547176502213633, 0.5531052723801841, 0.5516791705678479, 0.5504409799994316, 0.54939081608576, 0.5485273456202304, 0.5478478938401771, 0.5473485824777391, 0.5470244926333138, 0.5468698454318051, 0.5468781929906625, 0.5470426122325895, 0.5473558944739512, 0.5478107244454536, 0.548399843372152, 0.5491161918668497, 0.5499530295895095, 0.550904029820203, 0.5519633482232087, 0.5531256660998118, 0.5543862093071307, 0.555740744743569, 0.5571855568631922, 0.5587174070845587, 0.5603334792135507, 0.5620313141174237, 0.5638087368838518, 0.5656637795906302, 0.5675946026159145, 0.5695994171526769, 0.5716764112714731, 0.5738236815195155, 0.5760391716673765, 0.5783206198325561, 0.5806655148351137, 0.583071062286346, 0.5855341605866067, 0.5880513867198638, 0.5906189914851586, 0.5932329036008965 ], [ 0.585557963995722, 0.5826426605110866, 0.5798185564331565, 0.5770974943076891, 0.5744909167746406, 0.572009694776885, 0.5696639570300609, 0.5674629268041027, 0.5654147722937424, 0.5635264767206009, 0.5618037337906089, 0.5602508732373895, 0.5588708199588138, 0.5576650887759732, 0.5566338152118658, 0.5557758210168984, 0.5550887115787132, 0.5545690009545108, 0.554212259144703, 0.5540132754494064, 0.5539662313438184, 0.5540648762731215, 0.5543027000717946, 0.5546730963038617, 0.5551695116331734, 0.5557855772936814, 0.5565152197673858, 0.5573527488274789, 0.5582929221120602, 0.559330986317832, 0.5604626959141518, 0.5616843109579924, 0.5629925761317199, 0.5643846835278677, 0.5658582219736281, 0.5674111158320247, 0.5690415562485961, 0.5707479277456112, 0.5725287329149121, 0.5743825177405447, 0.5763077998087105, 0.5783030013502721, 0.5803663887247683, 0.5824960196083845, 0.5846896988041279, 0.5869449432615967, 0.5892589565852988, 0.5916286130315497, 0.5940504507494657, 0.596520673814301 ], [ 0.5912077188805472, 0.5884461489833461, 0.5857698063956891, 0.5831896095180729, 0.5807160880504351, 0.578359228382503, 0.5761283210226462, 0.5740318153850071, 0.5720771874069475, 0.5702708253129991, 0.5686179383618322, 0.5671224926198296, 0.5657871767372945, 0.5646133994249692, 0.5636013189232278, 0.5627499033198606, 0.5620570192031843, 0.5615195449262479, 0.5611335037804683, 0.5608942116859638, 0.5607964336284306, 0.5608345430098026, 0.5610026783099032, 0.5612948919379684, 0.5617052868328534, 0.5622281371892376, 0.5628579905843508, 0.5635897497001595, 0.564418732731949, 0.5653407124077975, 0.5663519342866966, 0.5674491156377832, 0.5686294267194679, 0.5698904566723119, 0.571230166515748, 0.5726468319025956, 0.5741389783459787, 0.5757053116018216, 0.5773446457788762, 0.5790558315703114, 0.5808376867696775, 0.5826889309630069, 0.5846081259910606, 0.5865936234637592, 0.5886435202941925, 0.590755622912447, 0.5929274205285471, 0.5951560675459422, 0.5974383749873436, 0.5997708105866117 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.285971 (SEM: 0)
x1: 0.520121
x2: 0.56451
x3: 0.463311
x4: 0.854645
x5: 0.442079
x6: 0.24786", "Arm 10_0
hartmann6: -0.0138907 (SEM: 0)
x1: 0.654027
x2: 0.53009
x3: 0.280559
x4: 0.767185
x5: 0.633093
x6: 0.857299", "Arm 11_0
hartmann6: -0.00276232 (SEM: 0)
x1: 0.988632
x2: 0.414808
x3: 0.793026
x4: 0.861748
x5: 0.38466
x6: 0.225989", "Arm 12_0
hartmann6: -1.49337 (SEM: 0)
x1: 0.32919
x2: 0.0609424
x3: 0.15992
x4: 0.517931
x5: 0.262061
x6: 0.727396", "Arm 13_0
hartmann6: -1.55357 (SEM: 0)
x1: 0.30418
x2: 0.065447
x3: 0.160912
x4: 0.448855
x5: 0.209716
x6: 0.803778", "Arm 14_0
hartmann6: -1.49314 (SEM: 0)
x1: 0.25439
x2: 0.135706
x3: 0.103883
x4: 0.45936
x5: 0.183895
x6: 0.747375", "Arm 15_0
hartmann6: -0.748745 (SEM: 0)
x1: 0.281821
x2: 0.0307016
x3: 0.116187
x4: 0.54834
x5: 0.184394
x6: 0.865703", "Arm 16_0
hartmann6: -1.97975 (SEM: 0)
x1: 0.32857
x2: 0.0703583
x3: 0.188458
x4: 0.424926
x5: 0.238912
x6: 0.75985", "Arm 17_0
hartmann6: -2.38859 (SEM: 0)
x1: 0.350501
x2: 0.0752834
x3: 0.22081
x4: 0.380157
x5: 0.25911
x6: 0.72933", "Arm 18_0
hartmann6: -2.72967 (SEM: 0)
x1: 0.362513
x2: 0.0718014
x3: 0.246187
x4: 0.318689
x5: 0.276292
x6: 0.676909", "Arm 19_0
hartmann6: -2.69748 (SEM: 0)
x1: 0.346962
x2: 0.0539948
x3: 0.229261
x4: 0.258723
x5: 0.274662
x6: 0.63558", "Arm 1_0
hartmann6: -0.000504945 (SEM: 0)
x1: 0.981024
x2: 0.990254
x3: 0.322903
x4: 0.977798
x5: 0.432948
x6: 0.393665", "Arm 20_0
hartmann6: -2.801 (SEM: 0)
x1: 0.356877
x2: 0.0728134
x3: 0.318401
x4: 0.297039
x5: 0.261627
x6: 0.637245", "Arm 21_0
hartmann6: -2.43046 (SEM: 0)
x1: 0.433172
x2: 0.0619654
x3: 0.292759
x4: 0.29454
x5: 0.240672
x6: 0.624907", "Arm 22_0
hartmann6: -3.03311 (SEM: 0)
x1: 0.323668
x2: 0.107886
x3: 0.324027
x4: 0.292964
x5: 0.31108
x6: 0.653166", "Arm 23_0
hartmann6: -3.11532 (SEM: 0)
x1: 0.260923
x2: 0.108402
x3: 0.347032
x4: 0.288039
x5: 0.338514
x6: 0.654144", "Arm 24_0
hartmann6: -3.1649 (SEM: 0)
x1: 0.233778
x2: 0.17192
x3: 0.348594
x4: 0.261123
x5: 0.316666
x6: 0.682689", "Arm 25_0
hartmann6: -3.03899 (SEM: 0)
x1: 0.255449
x2: 0.102892
x3: 0.377802
x4: 0.236611
x5: 0.328763
x6: 0.719058", "Arm 26_0
hartmann6: -3.17992 (SEM: 0)
x1: 0.225291
x2: 0.205351
x3: 0.379593
x4: 0.260913
x5: 0.320843
x6: 0.637262", "Arm 27_0
hartmann6: -3.26105 (SEM: 0)
x1: 0.200771
x2: 0.184147
x3: 0.40611
x4: 0.290496
x5: 0.306636
x6: 0.656344", "Arm 28_0
hartmann6: -3.19915 (SEM: 0)
x1: 0.121394
x2: 0.143877
x3: 0.428325
x4: 0.288635
x5: 0.29985
x6: 0.641089", "Arm 2_0
hartmann6: -0.00875763 (SEM: 0)
x1: 0.972735
x2: 0.269433
x3: 0.821132
x4: 0.467754
x5: 0.0160413
x6: 0.152753", "Arm 3_0
hartmann6: -0.152172 (SEM: 0)
x1: 0.741795
x2: 0.436468
x3: 0.471613
x4: 0.662252
x5: 0.142551
x6: 0.542754", "Arm 4_0
hartmann6: -0.00742292 (SEM: 0)
x1: 0.97486
x2: 0.716346
x3: 0.160395
x4: 0.329067
x5: 0.734143
x6: 0.629946", "Arm 5_0
hartmann6: -0.178936 (SEM: 0)
x1: 0.0106245
x2: 0.276293
x3: 0.79798
x4: 0.538783
x5: 0.706059
x6: 0.60548", "Arm 6_0
hartmann6: -0.0836622 (SEM: 0)
x1: 0.482116
x2: 0.0976002
x3: 0.796983
x4: 0.22529
x5: 0.997678
x6: 0.671225", "Arm 7_0
hartmann6: -0.00027371 (SEM: 0)
x1: 0.934072
x2: 0.25213
x3: 0.0745047
x4: 0.936178
x5: 0.925068
x6: 0.0719297", "Arm 8_0
hartmann6: -1.34762 (SEM: 0)
x1: 0.381106
x2: 0.116609
x3: 0.195239
x4: 0.547182
x5: 0.307989
x6: 0.725849", "Arm 9_0
hartmann6: -0.533614 (SEM: 0)
x1: 0.700815
x2: 0.612732
x3: 0.759378
x4: 0.0453937
x5: 0.0112251
x6: 0.839867" ], "type": "scatter", "x": [ 0.5201213955879211, 0.6540268240496516, 0.9886318789795041, 0.3291900736272408, 0.30418000348225377, 0.25439019782073036, 0.2818212740543817, 0.32857009669039855, 0.3505010558669389, 0.36251331992355423, 0.3469618485177505, 0.9810235192999244, 0.3568765719857234, 0.43317224186739955, 0.32366805012104716, 0.2609234447336215, 0.23377758869029028, 0.25544851248149025, 0.22529131087597012, 0.20077079317566962, 0.12139364084394769, 0.9727348070591688, 0.7417948422953486, 0.9748596828430891, 0.010624509304761887, 0.48211614042520523, 0.9340720316395164, 0.38110622111707926, 0.7008149353787303 ], "xaxis": "x", "y": [ 0.5645101070404053, 0.5300895357504487, 0.41480783093720675, 0.06094240928307713, 0.06544701918154586, 0.13570609934795055, 0.030701642392336297, 0.07035829835196712, 0.07528339117969156, 0.07180139381645063, 0.053994781172355275, 0.9902544226497412, 0.07281343672398156, 0.06196542841942193, 0.10788594000547123, 0.10840157355223352, 0.17191992293839015, 0.10289181816992808, 0.2053510490049847, 0.18414731315311933, 0.14387662163998938, 0.2694327924400568, 0.4364676708355546, 0.7163457497954369, 0.27629290614277124, 0.09760016202926636, 0.2521300548687577, 0.11660931445658207, 0.6127321626991034 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
hartmann6: -0.285971 (SEM: 0)
x1: 0.520121
x2: 0.56451
x3: 0.463311
x4: 0.854645
x5: 0.442079
x6: 0.24786", "Arm 10_0
hartmann6: -0.0138907 (SEM: 0)
x1: 0.654027
x2: 0.53009
x3: 0.280559
x4: 0.767185
x5: 0.633093
x6: 0.857299", "Arm 11_0
hartmann6: -0.00276232 (SEM: 0)
x1: 0.988632
x2: 0.414808
x3: 0.793026
x4: 0.861748
x5: 0.38466
x6: 0.225989", "Arm 12_0
hartmann6: -1.49337 (SEM: 0)
x1: 0.32919
x2: 0.0609424
x3: 0.15992
x4: 0.517931
x5: 0.262061
x6: 0.727396", "Arm 13_0
hartmann6: -1.55357 (SEM: 0)
x1: 0.30418
x2: 0.065447
x3: 0.160912
x4: 0.448855
x5: 0.209716
x6: 0.803778", "Arm 14_0
hartmann6: -1.49314 (SEM: 0)
x1: 0.25439
x2: 0.135706
x3: 0.103883
x4: 0.45936
x5: 0.183895
x6: 0.747375", "Arm 15_0
hartmann6: -0.748745 (SEM: 0)
x1: 0.281821
x2: 0.0307016
x3: 0.116187
x4: 0.54834
x5: 0.184394
x6: 0.865703", "Arm 16_0
hartmann6: -1.97975 (SEM: 0)
x1: 0.32857
x2: 0.0703583
x3: 0.188458
x4: 0.424926
x5: 0.238912
x6: 0.75985", "Arm 17_0
hartmann6: -2.38859 (SEM: 0)
x1: 0.350501
x2: 0.0752834
x3: 0.22081
x4: 0.380157
x5: 0.25911
x6: 0.72933", "Arm 18_0
hartmann6: -2.72967 (SEM: 0)
x1: 0.362513
x2: 0.0718014
x3: 0.246187
x4: 0.318689
x5: 0.276292
x6: 0.676909", "Arm 19_0
hartmann6: -2.69748 (SEM: 0)
x1: 0.346962
x2: 0.0539948
x3: 0.229261
x4: 0.258723
x5: 0.274662
x6: 0.63558", "Arm 1_0
hartmann6: -0.000504945 (SEM: 0)
x1: 0.981024
x2: 0.990254
x3: 0.322903
x4: 0.977798
x5: 0.432948
x6: 0.393665", "Arm 20_0
hartmann6: -2.801 (SEM: 0)
x1: 0.356877
x2: 0.0728134
x3: 0.318401
x4: 0.297039
x5: 0.261627
x6: 0.637245", "Arm 21_0
hartmann6: -2.43046 (SEM: 0)
x1: 0.433172
x2: 0.0619654
x3: 0.292759
x4: 0.29454
x5: 0.240672
x6: 0.624907", "Arm 22_0
hartmann6: -3.03311 (SEM: 0)
x1: 0.323668
x2: 0.107886
x3: 0.324027
x4: 0.292964
x5: 0.31108
x6: 0.653166", "Arm 23_0
hartmann6: -3.11532 (SEM: 0)
x1: 0.260923
x2: 0.108402
x3: 0.347032
x4: 0.288039
x5: 0.338514
x6: 0.654144", "Arm 24_0
hartmann6: -3.1649 (SEM: 0)
x1: 0.233778
x2: 0.17192
x3: 0.348594
x4: 0.261123
x5: 0.316666
x6: 0.682689", "Arm 25_0
hartmann6: -3.03899 (SEM: 0)
x1: 0.255449
x2: 0.102892
x3: 0.377802
x4: 0.236611
x5: 0.328763
x6: 0.719058", "Arm 26_0
hartmann6: -3.17992 (SEM: 0)
x1: 0.225291
x2: 0.205351
x3: 0.379593
x4: 0.260913
x5: 0.320843
x6: 0.637262", "Arm 27_0
hartmann6: -3.26105 (SEM: 0)
x1: 0.200771
x2: 0.184147
x3: 0.40611
x4: 0.290496
x5: 0.306636
x6: 0.656344", "Arm 28_0
hartmann6: -3.19915 (SEM: 0)
x1: 0.121394
x2: 0.143877
x3: 0.428325
x4: 0.288635
x5: 0.29985
x6: 0.641089", "Arm 2_0
hartmann6: -0.00875763 (SEM: 0)
x1: 0.972735
x2: 0.269433
x3: 0.821132
x4: 0.467754
x5: 0.0160413
x6: 0.152753", "Arm 3_0
hartmann6: -0.152172 (SEM: 0)
x1: 0.741795
x2: 0.436468
x3: 0.471613
x4: 0.662252
x5: 0.142551
x6: 0.542754", "Arm 4_0
hartmann6: -0.00742292 (SEM: 0)
x1: 0.97486
x2: 0.716346
x3: 0.160395
x4: 0.329067
x5: 0.734143
x6: 0.629946", "Arm 5_0
hartmann6: -0.178936 (SEM: 0)
x1: 0.0106245
x2: 0.276293
x3: 0.79798
x4: 0.538783
x5: 0.706059
x6: 0.60548", "Arm 6_0
hartmann6: -0.0836622 (SEM: 0)
x1: 0.482116
x2: 0.0976002
x3: 0.796983
x4: 0.22529
x5: 0.997678
x6: 0.671225", "Arm 7_0
hartmann6: -0.00027371 (SEM: 0)
x1: 0.934072
x2: 0.25213
x3: 0.0745047
x4: 0.936178
x5: 0.925068
x6: 0.0719297", "Arm 8_0
hartmann6: -1.34762 (SEM: 0)
x1: 0.381106
x2: 0.116609
x3: 0.195239
x4: 0.547182
x5: 0.307989
x6: 0.725849", "Arm 9_0
hartmann6: -0.533614 (SEM: 0)
x1: 0.700815
x2: 0.612732
x3: 0.759378
x4: 0.0453937
x5: 0.0112251
x6: 0.839867" ], "type": "scatter", "x": [ 0.5201213955879211, 0.6540268240496516, 0.9886318789795041, 0.3291900736272408, 0.30418000348225377, 0.25439019782073036, 0.2818212740543817, 0.32857009669039855, 0.3505010558669389, 0.36251331992355423, 0.3469618485177505, 0.9810235192999244, 0.3568765719857234, 0.43317224186739955, 0.32366805012104716, 0.2609234447336215, 0.23377758869029028, 0.25544851248149025, 0.22529131087597012, 0.20077079317566962, 0.12139364084394769, 0.9727348070591688, 0.7417948422953486, 0.9748596828430891, 0.010624509304761887, 0.48211614042520523, 0.9340720316395164, 0.38110622111707926, 0.7008149353787303 ], "xaxis": "x2", "y": [ 0.5645101070404053, 0.5300895357504487, 0.41480783093720675, 0.06094240928307713, 0.06544701918154586, 0.13570609934795055, 0.030701642392336297, 0.07035829835196712, 0.07528339117969156, 0.07180139381645063, 0.053994781172355275, 0.9902544226497412, 0.07281343672398156, 0.06196542841942193, 0.10788594000547123, 0.10840157355223352, 0.17191992293839015, 0.10289181816992808, 0.2053510490049847, 0.18414731315311933, 0.14387662163998938, 0.2694327924400568, 0.4364676708355546, 0.7163457497954369, 0.27629290614277124, 0.09760016202926636, 0.2521300548687577, 0.11660931445658207, 0.6127321626991034 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "hartmann6" }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x=\"x1\", param_y=\"x2\", metric_name=\"hartmann6\"))" ] }, { "cell_type": "code", "execution_count": 8, "id": "f2d34a70", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:35:31.619074Z", "iopub.status.busy": "2024-07-23T19:35:31.618478Z", "iopub.status.idle": "2024-07-23T19:35:32.099966Z", "shell.execute_reply": "2024-07-23T19:35:32.099253Z" }, "papermill": { "duration": 0.539204, "end_time": "2024-07-23T19:35:32.104023", "exception": false, "start_time": "2024-07-23T19:35:31.564819", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 0.9270711049690954, 0.926297664825028, 0.9260647677365244, 0.9263806124759064, 0.927250821450696, 0.9286783172170321, 0.9306632630648342, 0.9332030718147304, 0.9362924776774283, 0.9399236569097096, 0.9440863780429295, 0.9487681653045612, 0.9539544706197727, 0.9596288672157806, 0.9657732941048386, 0.9723683861823347, 0.9793939117182392, 0.9868293066599446, 0.9946542526441655, 1.0028492111782297, 1.0113958189949253, 1.0202770765835514, 1.0294773129359402, 1.0389819622017102, 1.048777221797638, 1.0588496688122457, 1.0691858976912554, 1.079772218737982, 1.0905944341969944, 1.1016376920842805, 1.1128864084952101, 1.1243242453873572, 1.135934130674318, 1.1476983090790605, 1.1595984144055413, 1.1716155560532626, 1.1837304144476937, 1.195923341514511, 1.208174463413665, 1.220463783531747, 1.2327712842750287, 1.2450770265743114, 1.2573612462566968, 1.2696044465985135, 1.2817874864796712, 1.2938916636332527, 1.3058987925426941, 1.3177912765911608, 1.329552174121295, 1.3411652581209301 ], [ 0.9261453055801527, 0.9253895713304451, 0.9251785686605618, 0.9255205759395476, 0.926421225866649, 0.9278833787165416, 0.9299070683469701, 0.9324895267671801, 0.9356252811438439, 0.9393063045193714, 0.943522193563627, 0.9482603486637482, 0.9535061457557524, 0.9592431122253962, 0.9654531420471923, 0.9721167961143209, 0.9792137222222017, 0.9867231928984094, 0.9946247082067273, 1.0028985666783745, 1.011526294681137, 1.0204908534646817, 1.0297766018922865, 1.039369054088125, 1.049254509999908, 1.0594196442887924, 1.069851122139031, 1.0805352835653004, 1.0914579124490669, 1.1026040887249138, 1.1139581125278177, 1.1255034857274229, 1.1372229366025628, 1.1490984754577545, 1.1611114715090767, 1.1732427437354582, 1.1854726603535954, 1.1977812430851702, 1.21014827349233, 1.2225533994365876, 1.234976240248549, 1.247396489546096, 1.259794014865263, 1.2721489534109924, 1.2844418033276037, 1.2966535099538063, 1.3087655465795116, 1.3207599892725912, 1.3326195853985974, 1.3443278155174998 ], [ 0.925707309234039, 0.924971904240384, 0.9247846500888913, 0.925153873491962, 0.9260851913328751, 0.9275813808430922, 0.9296423318118225, 0.932265088972661, 0.9354439779429414, 0.9391707913882755, 0.9434350003299763, 0.9482239560207976, 0.9535230641121939, 0.9593159414096719, 0.9655845955968239, 0.972309685201203, 0.979470907969927, 0.9870475266566627, 0.9950189823890523, 1.0033654922969184, 1.0120685089331876, 1.0211109483424645, 1.0304771585927532, 1.0401526693113337, 1.0501238061779745, 1.0603772623181733, 1.0708996996473277, 1.0816774235403896, 1.0926961469057304, 1.1039408410026936, 1.1153956605691728, 1.127043927658611, 1.138868159237733, 1.1508501259326713, 1.1629709320455328, 1.1752111094632536, 1.187550720115633, 1.1999694631823012, 1.212446784363958, 1.224961985305845, 1.2374943317802714, 1.2500231595686107, 1.2625279771937963, 1.274988564783186, 1.2873850684237476, 1.2996980894292338, 1.3119087679886912, 1.3239988607169264, 1.3359508116857581, 1.3477478165823547 ], [ 0.9257638896223658, 0.9250514752815031, 0.9248898227722417, 0.9252872748955568, 0.9262494080417516, 0.927778899811226, 0.929875488036849, 0.932536032274221, 0.9357546711632573, 0.9395230478401104, 0.9438305593752717, 0.9486645847044392, 0.9540106638316087, 0.9598526354347052, 0.9661727775388835, 0.9729520191441023, 0.9801702844999127, 0.9878069908438138, 0.995841655463245, 1.004254506129603, 1.0130269632653983, 1.022141890085189, 1.0315835754870373, 1.0413374886114541, 1.051389891349494, 1.061727404353809, 1.0723366025510248, 1.0832036851464415, 1.0943142366931335, 1.1056530764205874, 1.1172041830141766, 1.128950678873322, 1.1408748586210153, 1.152958249078018, 1.1651816907334251, 1.1775254332985177, 1.189969239997144, 1.2024924968016906, 1.2150743239394315, 1.2276936877586915, 1.240329511550621, 1.2529607842425428, 1.2655666660754346, 1.2781265904962908, 1.290620361569902, 1.3030282462683127, 1.3153310610451527, 1.3275102521568034, 1.3395479692564458, 1.3514271318624682 ], [ 0.9263199200409785, 0.9256331834168743, 0.9254989803676612, 0.9259256375162909, 0.9269186689879074, 0.9284806426124629, 0.9306111464327631, 0.9333068697782586, 0.9365617927628054, 0.9403674522262427, 0.9447132311769924, 0.9495866149380516, 0.9549733773357727, 0.9608577002509601, 0.9672222745019936, 0.974048459096635, 0.981316572547754, 0.9890063484610654, 0.9970975188352821, 1.0055704207712777, 1.0144064908033812, 1.0235885357411825, 1.033100737633328, 1.0429284269959649, 1.0530577085907293, 1.06347503534585, 1.0741668075065842, 1.0851190433819453, 1.0963171394923488, 1.107745718231367, 1.1193885508316859, 1.1312285400087778, 1.1432477472308262, 1.1554274519053231, 1.167748232538883, 1.1801900624581632, 1.1927324147348477, 1.2053543725069207, 1.2180347419966164, 1.230752166282324, 1.243485238376365, 1.2562126124709945, 1.2689131124003175, 1.2815658364764648, 1.2941502579273272, 1.3066463202148944, 1.319034526565616, 1.3312960231042046, 1.343412675055288, 1.355367135563602 ], [ 0.9273782855450396, 0.9267199264821713, 0.9266150123960206, 0.9270718226021175, 0.9280957914854114, 0.9296893753141057, 0.9318520272181687, 0.9345802975797044, 0.9378680542957074, 0.9417067872717604, 0.9460859359916667, 0.9509931728248573, 0.9564145965128443, 0.9623348353890382, 0.9687371107043512, 0.9756033441402393, 0.9829143924295725, 0.9906504507535926, 0.998791596651609, 1.0073183757983346, 1.0162122954758677, 1.0254561117548304, 1.0350338617192838, 1.0449306674106442, 1.0551323894344122, 1.0656252220354216, 1.0763953056659938, 1.0874284043213438, 1.0987096672764487, 1.1102234752539795, 1.1219533603679481, 1.1338819852887814, 1.145991167228368, 1.1582619343823062, 1.1706746050424826, 1.1832088820162012, 1.1958439569860024, 1.2085586209643835, 1.2213313780897983, 1.2341405607557023, 1.2469644445505281, 1.2597813617867837, 1.2725698125768958, 1.2853085725178213, 1.2979767961134674, 1.3105541151183686, 1.3230207310429476, 1.3353575011299468, 1.3475460171965141, 1.3595686768353605 ], [ 0.9289398334138532, 0.9283125532861177, 0.9282387600557146, 0.9287266571591745, 0.9297815874043376, 0.9314059033955225, 0.9335989524075421, 0.9363571951595273, 0.9396744532891431, 0.9435422468185427, 0.9479501536895083, 0.9528861153914321, 0.9583366359306382, 0.9642868707002763, 0.970720657191809, 0.9776205760320743, 0.9849681307487992, 0.9927440942634906, 1.0009290016649, 1.009503699438089, 1.0184498241706994, 1.0277500989133426, 1.0373883941639503, 1.0473495710610419, 1.0576191747843218, 1.0681830626116733, 1.0790270392999428, 1.0901365471561755, 1.1014964325052852, 1.1130907912355472, 1.1249028851320266, 1.1369151161871192, 1.1491090456076976, 1.1614654457946305, 1.1739643758234237, 1.1865852731831295, 1.1993070564201778, 1.21210823479716, 1.2249670221382645, 1.2378614527630332, 1.2507694978836805, 1.2636691811348875, 1.2765386920773905, 1.2893564966188595, 1.302101443363148, 1.3147528649573683, 1.327290673572665, 1.3396954497351101, 1.3519485238223474, 1.36403204965717 ], [ 0.9310033698884084, 0.9304098650820048, 0.930369024619023, 0.9308889517910582, 0.9319748929419824, 0.9336291152706567, 0.9358509033421861, 0.9386366946482041, 0.9419803486874823, 0.9458735084369826, 0.9503059816618729, 0.9552660604795566, 0.960740722012049, 0.9667157050144297, 0.9731755150867828, 0.9801034482649447, 0.9874817226033819, 0.9952917683755026, 1.0035146629588056, 1.012131631433107, 1.0211244976472456, 1.0304759808103148, 1.040169782829673, 1.0501904746434583, 1.0605232373365427, 1.0711535323343846, 1.082066767793251, 1.093248007495694, 1.1046817457965616, 1.116351754283019, 1.1282409947728502, 1.140331588126329, 1.152604827145538, 1.1650412227770475, 1.1776205746503456, 1.1903220589349193, 1.203124328224789, 1.2160056195313111, 1.2289438674782525, 1.241916820494968, 1.2549021582617013, 1.2678776089441801, 1.280821064920982, 1.293710695807604, 1.306525057651172, 1.3192431972353595, 1.3318447505125488, 1.344310034276276, 1.3566201303030514, 1.3687569613266677 ], [ 0.9335657073308726, 0.933008670888831, 0.9330026328991455, 0.9335555785002345, 0.934672660799883, 0.9363560900845947, 0.9386051436121217, 0.9414163155823906, 0.9447836005167869, 0.9486988672105525, 0.9531522487304628, 0.958132465117195, 0.9636270206997433, 0.9696222707799654, 0.9761034098208765, 0.983054468871742, 0.9904584087972849, 0.9982973590099914, 1.006552992707866, 1.0152069714183147, 1.0242413582846526, 1.0336389056614352, 1.0433831632777564, 1.0534584069080501, 1.0638494304499944, 1.0745412638841012, 1.0855188768965565, 1.0967669120846666, 1.1082694724501199, 1.1200099716982606, 1.131971045093417, 1.1441345129787224, 1.1564813871373376, 1.168991910435854, 1.181645621491966, 1.194421437708917, 1.2072977515266368, 1.2202525359828686, 1.2332634566156249, 1.2463079873977574, 1.259363528826679, 1.2724075265601105, 1.285417589146368, 1.2983716034959132, 1.3112478468138682, 1.3240250937885834, 1.3366827179217737, 1.3492007860002337, 1.361560144844788, 1.373742499627201 ], [ 0.9366217599044073, 0.9361038939137014, 0.9361345556479824, 0.9367216021424304, 0.9378701052988955, 0.9395822560966671, 0.9418573886199081, 0.9446921411189335, 0.9480807452344308, 0.9520153996881336, 0.9564866548203749, 0.9614837270004405, 0.9669946874849309, 0.9730065217033055, 0.9795051091955485, 0.9864752065514768, 0.9939005132055074, 1.001763866059269, 1.0100475574483507, 1.01873372101129, 1.0278047008041595, 1.0372433218776593, 1.0470330120345461, 1.0571577682795303, 1.0676019987182568, 1.078350290140042, 1.0893871525877876, 1.1006967811786297, 1.1122628600665323, 1.1240684193927797, 1.1360957459616443, 1.1483263424925656, 1.1607409277461362, 1.1733194694234799, 1.1860412424894393, 1.1988849067727685, 1.2118285989375865, 1.2248500349965097, 1.2379266203707695, 1.2510355650993021, 1.2641540021917168, 1.2772591073637503, 1.2903282185380571, 1.3033389535864435, 1.3162693248659096, 1.3290978491857561, 1.3418036519501368, 1.3543665643541802, 1.3667672126705013, 1.3789870988408688 ], [ 0.9401646789092037, 0.9396887179977433, 0.9397580649297934, 0.9403804478748432, 0.9415608781241517, 0.9433015717675652, 0.9456019876763447, 0.948458995334475, 0.9518671610434639, 0.9558191089716666, 0.9603058871098722, 0.9653172632475286, 0.9708419012278005, 0.9768674154972113, 0.9833803506885089, 0.9903661604007908, 0.9978092557135237, 1.0056931639320905, 1.0140007945228955, 1.0227147678262076, 1.0318177375298347, 1.0412926384271786, 1.0511228143543565, 1.0612920155844074, 1.0717842860283187, 1.0825837789032116, 1.0936745433133344, 1.1050403173787682, 1.1166643519439101, 1.1285292772512456, 1.1406170158732385, 1.152908739365839, 1.1653848631209633, 1.178025072922789, 1.1908083769326407, 1.2037131776123404, 1.2167173590404918, 1.2297983859509074, 1.2429334115266417, 1.2560993914940792, 1.2692732023997164, 1.2824317621594612, 1.295552151094446, 1.3086117317511603, 1.3215882658814417, 1.3344600270530298, 1.3472059074855538, 1.35980551786231, 1.3722392790518256, 1.3844885048757283 ], [ 0.9441860132514218, 0.9437547565197184, 0.9438649093520163, 0.944524079458713, 0.9457372451954071, 0.9475066955606155, 0.9498320803636976, 0.9527105797088793, 0.9561371787521891, 0.9601050055634521, 0.9646056681636828, 0.9696295246743197, 0.9751658444234481, 0.9812028602070877, 0.9877277535430066, 0.9947266370418093, 1.0021845938002125, 1.0100858081205677, 1.0184137862153113, 1.027151632298847, 1.036282325351188, 1.0457889408548935, 1.0556547784912147, 1.0658633828917998, 1.0763984695861746, 1.0872437846559724, 1.098382932005769, 1.1097991987212181, 1.1214754007754015, 1.133393762133581, 1.1455358324857001, 1.1578824433510813, 1.1704136991134897, 1.183108998136896, 1.1959470788668545, 1.2089060862068304, 1.2219636540940824, 1.2350970008525601, 1.2482830344492801, 1.2614984651851764, 1.2747199236167492, 1.2879240816634168, 1.301087774950064, 1.3141881245026859, 1.327202655992088, 1.3401094148245387, 1.3528870755199673, 1.3655150439973083, 1.3779735515957312, 1.3902437398895946 ], [ 0.9486758782245347, 0.9482922242147563, 0.9484454848664277, 0.9491431636429905, 0.9503902380249764, 0.9521891169538225, 0.9545397000684959, 0.9574395434148391, 0.9608841155839656, 0.9648671047027035, 0.969380719970736, 0.9744159319359402, 0.9799626175560461, 0.9860096120183377, 0.9925447033014586, 0.9995546228562174, 1.0070250815680564, 1.014940879186878, 1.0232860870665133, 1.0320442779475476, 1.041198760421884, 1.0507327738588708, 1.0606296110714053, 1.0708726552750192, 1.0814453374845152, 1.0923310345106727, 1.1035129337791907, 1.114973890198472, 1.1266962949208807, 1.1386619689090849, 1.150852087784448, 1.163247139526599, 1.1758269134283688, 1.1885705170361722, 1.2014564171936688, 1.2144625013368986, 1.2275661555271145, 1.240744356130268, 1.2539737724309439, 1.2672308777488333, 1.2804920668023052, 1.293733777160913, 1.3069326126831002, 1.3200654668831648, 1.333109644242556, 1.3460429775925113, 1.3588439398538825, 1.3714917486223324, 1.383966462322967, 1.396249066914546 ], [ 0.9536231175742198, 0.9532900956148425, 0.9534889841923795, 0.9542272040422561, 0.955509764780297, 0.9573392374403267, 0.959715818807974, 0.9626374882597573, 0.9661002399886911, 0.9700983546933011, 0.974624662829963, 0.979670754033472, 0.9852271064902558, 0.9912831393182453, 0.9978272177425425, 1.0048466540274035, 1.0123277433695015, 1.0202558573793241, 1.0286155957934688, 1.0373909769316014, 1.0465656347354841, 1.0561229879691725, 1.0660463548273202, 1.0763190000952707, 1.0869241169497237, 1.0978447570652126, 1.109063728707046, 1.120563483093188, 1.1323260061188627, 1.1443327275859048, 1.156564455013969, 1.1690013349204587, 1.1816228414991325, 1.1944077908503064, 1.2073343780535468, 1.2203802341177956, 1.2335224999163734, 1.246737914415218, 1.2600029147059875, 1.2732937455001498, 1.2865865758161572, 1.299857620615613, 1.3130832651495763, 1.326240189796579, 1.3393054932350361, 1.352256811909419, 1.3650724339250653, 1.3777314057312748, 1.3902136302153434, 1.4024999551123494 ], [ 0.9590154487042111, 0.958736240612406, 0.9589835170535197, 0.9597646397715247, 0.9610846810171977, 0.9629464078631771, 0.9653503474571944, 0.9682949308148553, 0.9717766979846599, 0.975790533038578, 0.9803298893751838, 0.9853869695442738, 0.9909528399829405, 0.9970174841010787, 1.0035698175385976, 1.0105976991975139, 1.0180879685897473, 1.0260265273485198, 1.034398466044662, 1.0431882221409245, 1.0523797450447165, 1.0619566418808157, 1.0719022825566693, 1.082199852520931, 1.0928323527829327, 1.1037825560409422, 1.1150329332951745, 1.1265655668345564, 1.1383620638891867, 1.1504034819023692, 1.1626702725642422, 1.1751422483249139, 1.187798572486786, 1.20061777223448, 1.2135777729642663, 1.226655951811593, 1.2398292081280964, 1.2530740486603196, 1.2663666852146929, 1.2796831425997828, 1.292999374603737, 1.3062913857071359, 1.3195353561805292, 1.3327077682021575, 1.3457855306785473, 1.3587461005698198, 1.3715675987108211, 1.3842289183662693, 1.3967098250461416, 1.4089910464160789 ], [ 0.9648395868196361, 0.9646175350736526, 0.9649162023433744, 0.965742914312274, 0.967102831045567, 0.9689989394012989, 0.9714321154142669, 0.9744012521449248, 0.9779034366814654, 0.9819341494209719, 0.9864874538738836, 0.9915561494380971, 0.9971318727738125, 1.00320515106675, 1.009765425665739, 1.0168010717642453, 1.024299437475701, 1.0322469161883654, 1.0406290536016178, 1.0494306793231922, 1.058636045277429, 1.068228950950417, 1.078192838585946, 1.0885108482874395, 1.0991658311902937, 1.1101403261320626, 1.1214165100634448, 1.1329761343707263, 1.1448004587575196, 1.1568701922394058, 1.1691654480649847, 1.1816657166955422, 1.1943498587640768, 1.2071961183328395, 1.2201821557376582, 1.233285098714156, 1.2464816101880818, 1.2597479709429653, 1.273060175254923, 1.286394037456786, 1.2997253072499644, 1.3130297914393911, 1.3262834796540979, 1.3394626715639517, 1.352544103132576, 1.365505069564823, 1.3783235428080791, 1.3909782817339436, 1.4034489334381883, 1.4157161244295704 ], [ 0.9710813488489949, 0.9709199500276435, 0.9712732391261071, 0.9721485254644291, 0.9735510750235133, 0.975484107429372, 0.97794885246415, 0.9809446604280222, 0.9844691515398617, 0.9885183820811316, 0.9930870022846714, 0.9981683851080076, 1.0037547154643076, 1.0098370427329841, 1.0164053105291617, 1.0234483829675924, 1.0309540850045915, 1.0389092675406284, 1.0472998987644253, 1.0561111746172744, 1.0653276353947039, 1.0749332734955346, 1.0849116191745236, 1.0952457958557151, 1.105918542521391, 1.11691220627028, 1.1282087121751736, 1.1397895195836039, 1.1516355741534219, 1.1637272637295428, 1.1760443842961712, 1.1885661202254494, 1.2012710412565946, 1.2141371172411832, 1.2271417507019275, 1.2402618265992444, 1.253473778274042, 1.2667536682320173, 1.2800772821777648, 1.2934202344553347, 1.3067580828027376, 1.320066450098568, 1.333321150603272, 1.3464983181045993, 1.3595745333853702, 1.3725269485468514, 1.3853334059306266, 1.397972549666538, 1.4104239282063056, 1.422668086556772 ], [ 0.9777257410737832, 0.9776286257131285, 0.978039965297153, 0.9789670676828819, 0.980415315144939, 0.9823881629231032, 0.984887187800747, 0.987912180634466, 0.9914612698756042, 0.9955310579862453, 1.0001167513726912, 1.0052122682031865, 1.0108103165439035, 1.0169024450411328, 1.0234790764906743, 1.03052953848261, 1.0380421042003039, 1.0460040515105886, 1.0544017417772602, 1.063220713451239, 1.0724457810088448, 1.0820611280622372, 1.0920503845047504, 1.1023966807485128, 1.113082676391202, 1.1240905648748276, 1.1354020589861453, 1.1469983639554115, 1.1588601454356398, 1.1709674990896428, 1.1832999273099394, 1.195836327152208, 1.2085549921765446, 1.221433629727231, 1.2344493942865589, 1.247578936880995, 1.2607984700266242, 1.2740838473006906, 1.2874106562595808, 1.300754323065688, 1.3140902268383132, 1.3273938214347991, 1.340640762129795, 1.353807034526865, 1.3668690830226653, 1.3798039362530905, 1.3925893271665424, 1.4052038056676561, 1.4176268421247338, 1.4298389204066315 ], [ 0.9847570354631416, 0.9847279370033919, 0.9852009117274688, 0.9861832754478006, 0.9876805296611217, 0.9896963593309546, 0.9922326723818854, 0.9952896749664796, 0.9988659715011768, 1.0029586750311548, 1.0075635130647875, 1.0126749172152816, 1.0182860911168043, 1.0243890582497286, 1.0309746971789115, 1.038032774533617, 1.0455519853558197, 1.053520006958572, 1.0619235675967096, 1.0707485265497907, 1.0799799588071257, 1.0896022360605253, 1.0995990962398985, 1.1099536959726652, 1.1206486433994278, 1.1316660119435276, 1.14298733825359, 1.1545936092403568, 1.1664652438325234, 1.1785820749368108, 1.1909233363805758, 1.2034676586303743, 1.2161930760513362, 1.2290770475432307, 1.2420964916170232, 1.2552278363533615, 1.2684470841670916, 1.2817298908377497, 1.2950516578175557, 1.3083876363821152, 1.321713041758535, 1.3350031749837106, 1.3482335499510443, 1.3613800229301696, 1.3744189218078173, 1.3873271723990745, 1.4000824193967174, 1.412663139834804, 1.4250487473058058, 1.4372196855580637 ], [ 0.9921588393173947, 0.9922015554374378, 0.9927398573180459, 0.9937810726934659, 0.9953308186446437, 0.9973929969861514, 0.9999698242796919, 1.0030618910136797, 1.0066682408231657, 1.0107864583781005, 1.0154127546191312, 1.0205420406442334, 1.0261679861460948, 1.0322830635137745, 1.0388785829496807, 1.0459447260365915, 1.053470584776068, 1.0614442106935607, 1.069852675139883, 1.078682138471973, 1.0879179232116019, 1.0975445850470589, 1.1075459757591741, 1.117905293577389, 1.1286051186340267, 1.1396274335346321, 1.1509536311224335, 1.1625645129745306, 1.1744402829242495, 1.1865605400199393, 1.198904274975833, 1.2114498735430557, 1.2241751295008811, 1.2370572692582054, 1.2500729894160159, 1.263198508078303, 1.2764096301850625, 1.2896818266419512, 1.3029903265155638, 1.3163102210495237, 1.329616577758335, 1.3428845624132857, 1.3560895663904589, 1.369207336641776, 1.3822141054915906, 1.3950867175527408, 1.407802751274505, 1.4203406329484565, 1.4326797413715688, 1.4448005017630527 ], [ 0.9999141616916667, 1.0000325112570703, 1.0006398878446956, 1.0017436301403586, 1.0033494617926737, 1.005461483392704, 1.0080821931694253, 1.0112125315904024, 1.0148519424384643, 1.0189984414917803, 1.0236486842127672, 1.0287980259421607, 1.0344405715114036, 1.0405692149656778, 1.0471756731515554, 1.0542505184667355, 1.0617832158517395, 1.0697621674325737, 1.078174765758693, 1.0870074540665033, 1.0962457900491616, 1.1058745086054793, 1.1158775790722721, 1.1262382533784514, 1.1369391030806633, 1.147962044975413, 1.15928835658081, 1.1708986840012499, 1.1827730454226453, 1.1948908337467217, 1.2072308217579544, 1.2197711728561682, 1.2324894599029461, 1.245362694210639, 1.2583673661929748, 1.2714794987039948, 1.2846747136012548, 1.2979283115587161, 1.3112153646141271, 1.324510820375276, 1.3377896162606462, 1.3510268016599642, 1.3641976655158448, 1.3772778665881744, 1.3902435635847081, 1.4030715424219395, 1.4157393380949796, 1.4282253489510623, 1.4405089415388106, 1.4525705446088952 ], [ 1.0080054787813844, 1.0082032571520672, 1.0088834594578304, 1.0100534302072126, 1.0117189864769671, 1.0138844059686327, 1.0165524389183727, 1.0197243397545266, 1.0233999125400723, 1.0275775633238813, 1.0322543528827322, 1.0374260449685342, 1.0430871476978452, 1.0492309484592908, 1.055849544928462, 1.0629338759309221, 1.0704737558009607, 1.078457914745093, 1.0868740459764294, 1.095708858560211, 1.1049481334476614, 1.1145767793617873, 1.1245788851312166, 1.1349377656678021, 1.1456359998504875, 1.1566554598504408, 1.167977332662324, 1.1795821356072285, 1.1914497282447365, 1.2035593234635373, 1.2158895005602688, 1.2284182229479155, 1.2411228628390443, 1.2539802348881441, 1.266966640384781, 1.2800579231698808, 1.2932295379919128, 1.3064566315146449, 1.3197141356319095, 1.3329768721565514, 1.3462196673694273, 1.359417474390439, 1.3725455009204794, 1.3855793396393772, 1.3984950984499045, 1.4112695278261622, 1.4238801427341106, 1.4363053369042986, 1.4485244876151744, 1.4605180495499748 ], [ 1.0164147993452262, 1.0166957341532163, 1.017452466405459, 1.0186923380131567, 1.0204212433915276, 1.0226436134432775, 1.0253624194288289, 1.0285791933035378, 1.0322940597888122, 1.036505774873163, 1.0412117657979538, 1.0464081688382378, 1.0520898630439963, 1.0582505000918643, 1.0648825320043418, 1.0719772393545164, 1.079524762558513, 1.0875141380892612, 1.0959333402190148, 1.1047693275769175, 1.1140080927148492, 1.123634712226726, 1.133633394849562, 1.1439875253526866, 1.1546797027629627, 1.165691772404161, 1.1770048521678016, 1.1885993542417914, 1.2004550041168005, 1.212550859043768, 1.2248653282517563, 1.2373761971989545, 1.2500606579744158, 1.2628953477336442, 1.2758563967574144, 1.2889194873736007, 1.3020599245661928, 1.315252718607878, 1.3284726794964627, 1.3416945223769836, 1.3548929825328546, 1.3680429379874692, 1.3811195373260157, 1.3940983300665268, 1.406955396800106, 1.4196674763768116, 1.432212087614111, 1.4445676433106116, 1.4567135547217507, 1.4686303250560293 ], [ 1.0251237304499417, 1.025491439332094, 1.0263283118877076, 1.02764167656092, 1.029437487078299, 1.0317203024588533, 1.0344932836881657, 1.0377582042608917, 1.0415154708694123, 1.0457641501597306, 1.0505019977999708, 1.055725487059708, 1.061429835460635, 1.0676090294990737, 1.074255848611369, 1.0813618902000632, 1.0889175975680263, 1.0969122920928078, 1.1053342101156012, 1.114170544066432, 1.1234074865337464, 1.1330302754754646, 1.143023238634674, 1.1533698354533921, 1.164052695290622, 1.1750536514268495, 1.1863537710511969, 1.1979333820740656, 1.2097720981192508, 1.2218488433962684, 1.2341418793400603, 1.246628834956617, 1.259286742757964, 1.2720920820307628, 1.2850208309706668, 1.2980485289250594, 1.3111503496126673, 1.324301185725528, 1.3374757447750782, 1.35064865544926, 1.3637945831485336, 1.3768883528206965, 1.3899050767756491, 1.4028202848709928, 1.4156100543387988, 1.4282511365700181, 1.440721078361017, 1.4529983354236846, 1.4650623763248032, 1.4768937754169342 ], [ 1.034113543341124, 1.0345714945816946, 1.0354919807415968, 1.0368823042296142, 1.0387484589459823, 1.0410951065758725, 1.0439255669277712, 1.0472418200680509, 1.051044517345688, 1.055332998179483, 1.060105309754225, 1.0653582274896063, 1.0710872751452525, 1.0772867444720906, 1.083949715176612, 1.0910680764528933, 1.09863255138897, 1.1066327252142771, 1.1150570777559383, 1.1238930197878914, 1.1331269323525428, 1.142744207735788, 1.1527292906429207, 1.1630657182564208, 1.1737361582085664, 1.1847224439904114, 1.196005607858854, 1.207565911816315, 1.2193828776691038, 1.2314353174936938, 1.243701366048321, 1.256158516771251, 1.2687836630196219, 1.28155314613289, 1.2944428117549382, 1.3074280756102512, 1.3204839995944595, 1.333585378605277, 1.3467068380177265, 1.359822941128812, 1.3729083053085056, 1.3859377250539038, 1.3988862997062879, 1.4117295632979823, 1.4244436138682417, 1.4370052396222295, 1.4493920394830582, 1.4615825358699506, 1.4735562778883597, 1.4852939335041075 ], [ 1.043365239010789, 1.0439167156423892, 1.0449241127161644, 1.0463946929717327, 1.0483344708824829, 1.050748185576218, 1.0536392856665064, 1.0570099242104607, 1.0608609615404467, 1.065191973577965, 1.0700012634609426, 1.0752858748522678, 1.0810416060306198, 1.0872630246283461, 1.0939434835099016, 1.1010751386548592, 1.108648969970826, 1.1166548057398722, 1.125081350986462, 1.1339162195646262, 1.1431459693157098, 1.1527561393378412, 1.1627312882854335, 1.1730550326883635, 1.1837100845189907, 1.1946782875871542, 1.2059406527492025, 1.2174773923209992, 1.2292679544443887, 1.2412910584461592, 1.2535247324401246, 1.2659463545529157, 1.2785326992095594, 1.291259989891607, 1.3041039596760131, 1.317039920664736, 1.330042843115375, 1.3430874446792604, 1.3561482896591126, 1.3691998976446464, 1.3822168603184508, 1.3951739647013677, 1.4080463206806308, 1.4208094903745057, 1.4334396167558563, 1.4459135489817698, 1.4582089620387264, 1.4703044685803162, 1.4821797211723535, 1.4938155035335274 ], [ 1.0528596129673573, 1.0535076805896428, 1.0546050752909224, 1.0561590059541817, 1.0581754880518686, 1.0606593135759939, 1.06361403113093, 1.067041934791708, 1.0709440599945008, 1.0753201846370686, 1.0801688337432824, 1.0854872864454619, 1.0912715845768055, 1.09751654272483, 1.1042157600610065, 1.1113616345442854, 1.1189453801587106, 1.1269570477040678, 1.135385549371231, 1.1442186869830275, 1.1534431834532357, 1.1630447167755955, 1.1730079557469506, 1.1833165966602748, 1.1939534003628756, 1.2049002293264617, 1.2161380846795695, 1.2276471434683902, 1.2394067967072342, 1.25139568903377, 1.263591760983924, 1.2759722950418557, 1.2885139666973102, 1.3011929017486275, 1.3139847410160435, 1.3268647134626432, 1.339807718451067, 1.3527884174910696, 1.365781335370445, 1.378760970039801, 1.3917019100854413, 1.4045789581270596, 1.4173672580688237, 1.4300424238519054, 1.442580667224313, 1.4549589220605363, 1.4671549629111884, 1.4791475157137068, 1.4909163589158942, 1.5024424136219314 ], [ 1.0625773187470258, 1.0633247971304272, 1.064515035227016, 1.0661551737218071, 1.0682512098969643, 1.0708079649600037, 1.073829060093449, 1.0773169001472764, 1.081272663651141, 1.0856962977660736, 1.090586516930836, 1.0959408042563528, 1.1017554151164737, 1.108025382794854, 1.1147445263915876, 1.1219054614099782, 1.129499613504106, 1.1375172357795664, 1.1459474298426822, 1.1547781705438973, 1.1639963341187567, 1.17358772924543, 1.1835371304442743, 1.1938283132528396, 1.2044440907139504, 1.2153663508920893, 1.2265760953593998, 1.2380534788366087, 1.2497778504139314, 1.2617277969937077, 1.2738811897778466, 1.2862152347601625, 1.298706528268627, 1.3113311186231564, 1.3240645749202362, 1.3368820638108023, 1.3497584348946448, 1.3626683150110688, 1.3755862112774166, 1.3884866222400876, 1.4013441560028064, 1.4141336537301956, 1.4268303165399263, 1.4394098335295828, 1.4518485085546236, 1.4641233833831904, 1.4762123549875819, 1.4880942849653975, 1.4997490993853226, 1.5111578776938444 ], [ 1.0724989297866425, 1.0733483682097955, 1.0746340282671731, 1.0763629682538884, 1.0785411487114402, 1.0811733975287672, 1.0842633825679966, 1.087813590995369, 1.091825314318271, 1.0962986380912463, 1.1012324353569172, 1.1066243631094665, 1.112470861359385, 1.1187671546820173, 1.1255072563896158, 1.1326839756332776, 1.1402889277971073, 1.1483125484943644, 1.1567441113411163, 1.1655717495058058, 1.1747824808548541, 1.1843622363731894, 1.1942958914591382, 1.2045672996867864, 1.2151593286943743, 1.226053897981277, 1.2372320185620154, 1.2486738346128916, 1.26035866743834, 1.2722650622647997, 1.2843708385283947, 1.2966531444477492, 1.3090885167557038, 1.3216529464887208, 1.3343219516879614, 1.3470706577373892, 1.3598738858421613, 1.3727062498358718, 1.38554226111048, 1.3983564410151335, 1.4111234396081496, 1.4238181592152577, 1.4364158808894492, 1.4488923916170573, 1.4612241099900665, 1.473388208068953, 1.4853627272806649, 1.4971266864126205, 1.5086601800462551, 1.5199444660969657 ], [ 1.082604999372824, 1.0835586555751113, 1.0849420265937908, 1.086762074515536, 1.0890247054035196, 1.0917347325210063, 1.0948958460786073, 1.0985105888946611, 1.1025803372256355, 1.1071052859965924, 1.1120844377402195, 1.1175155947174784, 1.1233953539083943, 1.1297191047876807, 1.13648102999277, 1.143674109122223, 1.1512901259521608, 1.1593196793301246, 1.1677521979152128, 1.17657595880818, 1.1857781099843405, 1.195344696333799, 1.205260689046828, 1.2155100180676095, 1.2260756073779882, 1.2369394129573514, 1.2480824633844774, 1.2594849031883653, 1.2711260392052803, 1.2829843903463078, 1.2950377413123146, 1.3072632009023566, 1.3196372656330013, 1.3321358894087472, 1.3447345599417657, 1.3574083825005478, 1.3701321713631736, 1.3828805490621898, 1.3956280531470615, 1.4083492497816095, 1.4210188530716252, 1.4336118486240692, 1.446103619510696, 1.458470072577084, 1.4706877629206243, 1.482734014361478, 1.4945870338396308, 1.5062260178698246, 1.5176312494501236, 1.528784184125589 ], [ 1.0928761184705902, 1.0939359410682374, 1.0954190038057499, 1.0973321592770071, 1.0996812422552522, 1.1024710313586998, 1.1057052163961256, 1.1093863709501617, 1.1135159296569, 1.1180941696214595, 1.1231201954681471, 1.128591927646795, 1.1345060937774318, 1.1408582229846007, 1.1476426433193532, 1.1548524824692694, 1.162479672001106, 1.1705149553684422, 1.1789478998562777, 1.18776691254705, 1.196959260296259, 1.206511093622963, 1.216407474364396, 1.2266324069250643, 1.2371688729696584, 1.2479988694649224, 1.2591034500590221, 1.2704627698916056, 1.2820561340419068, 1.2938620499382245, 1.3058582841594732, 1.3180219241477373, 1.3303294454086017, 1.3427567847902455, 1.3552794203885359, 1.367872458513196, 1.3805107279604274, 1.3931688815732644, 1.4058215047415805, 1.4184432301232475, 1.4310088574860202, 1.4434934772127423, 1.4558725957144012, 1.468122260783887, 1.4802191848144892, 1.492140863806046, 1.5038656901802931, 1.5153730576097961, 1.5266434563111613, 1.5376585575404438 ], [ 1.1032929713077861, 1.1044605855098104, 1.1060449972834554, 1.1080529370915397, 1.11049015260088, 1.1133613690775235, 1.1166702547461886, 1.1204193908064137, 1.1246102457235778, 1.1292431533992315, 1.1343172948700055, 1.1398306832765273, 1.1457801519647706, 1.1521613457098872, 1.1589687151654968, 1.166195514722687, 1.1738338040025345, 1.1818744532034646, 1.1903071524864, 1.1991204255193733, 1.2083016472326986, 1.2178370657720696, 1.227711828589926, 1.2379100125938816, 1.248414658277083, 1.25920780778861, 1.2702705469582427, 1.2815830513635778, 1.2931246366119726, 1.3048738130966988, 1.3168083455690818, 1.328905317935391, 1.3411412037282175, 1.353491942704788, 1.365933023976613, 1.3784395759652315, 1.3909864633018756, 1.4035483905457498, 1.4161000122971927, 1.428616048947028, 1.4410714069602268, 1.4534413022714965, 1.4657013851020495, 1.4778278643160425, 1.489797629335931, 1.5015883676352362, 1.513178675916386, 1.524548163250824, 1.5356775446874182, 1.5465487241060478 ], [ 1.1138363886456237, 1.1151130851056312, 1.1168001678847765, 1.1189042333972543, 1.1214309274191419, 1.12438490446975, 1.127769791546253, 1.1315881560120422, 1.1358414773831846, 1.1405301227479536, 1.1456533255885317, 1.1512091678441807, 1.1571945651472717, 1.1636052552611256, 1.1704357898369626, 1.1776795296722993, 1.1853286436890829, 1.1933741118534154, 1.2018057322357096, 1.210612132367507, 1.2197807849997744, 1.2292980283178365, 1.2391490906285723, 1.2493181195124086, 1.259788215429543, 1.2705414697859616, 1.2815590074994687, 1.2928210341545467, 1.3043068878931323, 1.3159950962501181, 1.3278634382002523, 1.339889011729083, 1.3520483072637433, 1.3643172872891032, 1.3766714724203664, 1.38908603409423, 1.4015358938744482, 1.4139958291434873, 1.4264405846809536, 1.4388449893287272, 1.451184076635037, 1.4634332080839882, 1.4755681972772896, 1.4875654332646504, 1.4994020011309408, 1.511055797948038, 1.522505642281955, 1.533731375602992, 1.5447139541601713, 1.5554355301364953 ], [ 1.1244873987009902, 1.125874125346193, 1.127664856956701, 1.1298660447485545, 1.1324832188695027, 1.1355209469941476, 1.1389827967481296, 1.1428713018483565, 1.147187931803957, 1.1519330650164605, 1.157105965144702, 1.1627047606540784, 1.1687264275409721, 1.1751667752992436, 1.1820204362655136, 1.1892808585336152, 1.1969403026604288, 1.204989842393719, 1.2134193696393496, 1.2222176038568806, 1.2313721060341896, 1.240869297353343, 1.250694482625895, 1.2608318785521078, 1.271264646848317, 1.2819749322901848, 1.292943905736575, 1.3041518122268305, 1.3155780242802368, 1.3272011005651578, 1.3389988501409784, 1.3509484025016438, 1.3630262836546123, 1.3752084984459907, 1.3874706192802255, 1.3997878812740951, 1.4121352837261802, 1.424487697576669, 1.4368199782857198, 1.4491070832885178, 1.4613241929108776, 1.473446833374835, 1.485451000311385, 1.4973132810465657, 1.5090109738497084, 1.520522202334559, 1.531826023281528, 1.542902526296049, 1.5537329239179112, 1.564299631038231 ], [ 1.1352272757063995, 1.1367246323920293, 1.1386196406685494, 1.1409185961993065, 1.1436269008121014, 1.146749020509341, 1.1502884468558987, 1.1542476617007407, 1.158628105156949, 1.1634301467615114, 1.1686530597579772, 1.1742949984883593, 1.1803529789362643, 1.1868228625240804, 1.193699343323368, 1.2009759388823553, 1.2086449849034913, 1.216697634014706, 1.225123858872656, 1.233912459816429, 1.2430510772631052, 1.252526209004943, 1.2623232325387839, 1.2724264325344194, 1.2828190335324525, 1.2934832379561576, 1.3044002695243986, 1.3155504221640102, 1.3269131145363002, 1.3384669503113067, 1.3501897843388564, 1.3620587948713967, 1.3740505619827983, 1.386141152290398, 1.3983062100180295, 1.4105210543280675, 1.422760782699294, 1.4350003799351891, 1.4472148321637923, 1.45937924494668, 1.4714689643704402, 1.483459699768462, 1.4953276465330685, 1.5070496073457729, 1.518603110086636, 1.5299665206882178, 1.541119149274237, 1.552041348060177, 1.5627145996826828, 1.5731215948529238 ], [ 1.1460375861006422, 1.147645821944407, 1.1496453816757792, 1.1520423958587291, 1.1548421263442228, 1.1580489238733307, 1.1616661886683926, 1.1656963340234436, 1.1701407528823706, 1.1749997873927789, 1.180272701441882, 1.1859576562160525, 1.1920516888704933, 1.198550694445125, 1.2054494112092156, 1.2127414096555165, 1.2204190853911494, 1.2284736561849077, 1.2368951634299856, 1.2456724782684754, 1.2547933126036317, 1.2642442352005385, 1.2740106930494544, 1.2840770381421596, 1.2944265597911597, 1.3050415226075867, 1.3159032102446346, 1.3269919750105288, 1.3382872934549805, 1.3497678280341043, 1.3614114949562843, 1.3731955383003553, 1.3850966104706057, 1.397090859004679, 1.4091540196733985, 1.4212615157004576, 1.4333885627847587, 1.445510279428912, 1.457601801872996, 1.46963840271351, 1.4815956120693607, 1.493449339956582, 1.5051759983685078, 1.516752621441996, 1.5281569820342775, 1.5393677030428548, 1.5503643618729057, 1.5611275865872623, 1.5716391424539338, 1.5818820078242357 ], [ 1.156900232342145, 1.1586192455976843, 1.1607232781175336, 1.1632182866301417, 1.1661093823695776, 1.1694007884292756, 1.1730957997668507, 1.1771967459150439, 1.1817049564389341, 1.1866207291807855, 1.1919433013506764, 1.1976708235504792, 1.2038003368565038, 1.2103277531269805, 1.2172478387400258, 1.2245542020013447, 1.23223928448474, 1.2402943565824485, 1.248709517544346, 1.2574737002776015, 1.266574681162933, 1.27599909512242, 1.2857324561496426, 1.2957591834888473, 1.3060626336256715, 1.316625138231675, 1.3274280481865457, 1.3384517837869163, 1.3496758912367892, 1.3610791055004976, 1.3726394195806533, 1.384334160256927, 1.39614007028111, 1.4080333969644656, 1.4199899870094435, 1.4319853873258999, 1.4439949514311183, 1.4559939508653934, 1.467957690866489, 1.4798616293488154, 1.4916814980369222, 1.503393424426087, 1.5149740530965885, 1.5264006648079265, 1.5376512917523026, 1.5487048273585367, 1.5595411291081716, 1.5701411129510605, 1.5804868380797565, 1.5905615810317324 ], [ 1.1677974943302447, 1.169626834660812, 1.1718349099383067, 1.1744274951257925, 1.1774095411952086, 1.1807851323718646, 1.1845574457382206, 1.1887287132873625, 1.1933001865076465, 1.1982721035833799, 1.2036436593120663, 1.2094129778644567, 1.2155770885459152, 1.2221319047526713, 1.2290722063506607, 1.23639162573447, 1.244082637846054, 1.252136554447289, 1.2605435229443493, 1.2692925300580593, 1.2783714106219508, 1.287766861771956, 1.2974644627687626, 1.3074487006692965, 1.3177030020369003, 1.328209770854278, 1.3389504327769717, 1.3499054858403734, 1.3610545577076838, 1.3723764695188876, 1.3838493063688997, 1.39545049440294, 1.4071568844649425, 1.4189448421654713, 1.430790344146359, 1.4426690802054818, 1.4545565608089381, 1.4664282293592794, 1.4782595784147883, 1.4900262688744337, 1.5017042509671856, 1.5132698857259035, 1.5247000654978724, 1.5359723319559824, 1.5470649900371676, 1.5579572162497695, 1.5686291598619486, 1.5790620356049074, 1.5892382066905246, 1.5991412571463073 ], [ 1.178712068409874, 1.180650941423578, 1.1829622825096953, 1.1856516777333945, 1.188723909129598, 1.1921829119632936, 1.1960317340963642, 1.2002724975802377, 1.204906362588869, 1.209933493812439, 1.2153530294472286, 1.2211630529401882, 1.2273605676754649, 1.233941474820628, 1.2409005545808354, 1.2482314511358286, 1.255926661555732, 1.2639775290054795, 1.2723742405534688, 1.2811058298978766, 1.2901601853145168, 1.2995240631135783, 1.30918310687143, 1.319121872677715, 1.3293238606096116, 1.3397715526143612, 1.3504464569493124, 1.361329159295151, 1.3723993806229888, 1.3836360418572706, 1.3950173353334756, 1.4065208029977012, 1.4181234212327747, 1.429801692118552, 1.4415317408388684, 1.4532894188339978, 1.465050412163438, 1.4767903543943703, 1.4884849431687046, 1.5001100594365964, 1.5116418881846938, 1.5230570393453977, 1.5343326674593423, 1.5454465885874948, 1.5563773929387064, 1.5671045516978783, 1.5776085166106801, 1.587870810998817, 1.5978741110424366, 1.6076023163631337 ], [ 1.1896271039255901, 1.1916743778313217, 1.1940878675137734, 1.1968729637927706, 1.2000342720359527, 1.2035755695465622, 1.2074997648397239, 1.2118088589490574, 1.216503908905446, 1.221584993536928, 1.2270511817541694, 1.2329005035071108, 1.239129923624372, 1.2457353187747782, 1.2527114578174077, 1.2600519858313832, 1.267749412136208, 1.2757951026268313, 1.2841792767547995, 1.2928910094850459, 1.3019182385505668, 1.3112477773115552, 1.3208653335049676, 1.3307555341439496, 1.34090195679632, 1.3512871674366158, 1.3618927650295498, 1.372699432962221, 1.3836869973992423, 1.394834492587522, 1.4061202330841098, 1.417521892820105, 1.4290165908419699, 1.440580983487996, 1.452191362658659, 1.4638237597246546, 1.475454054485923, 1.4870580884514844, 1.498611781558244, 1.510091251293525, 1.5214729330410663, 1.5327337003408994, 1.5438509836525824, 1.5548028861442804, 1.565568295007286, 1.5761269868175138, 1.5864597255373796, 1.5965483518676589, 1.6063758628181597, 1.615926480559262 ], [ 1.200526237281566, 1.202680451521834, 1.205194641037924, 1.2080739958278348, 1.2113229377795123, 1.214945078287027, 1.2189431775667847, 1.2233191058346982, 1.2280738065076156, 1.2332072616017458, 1.2387184595160092, 1.2446053654089482, 1.250864894401244, 1.2574928878617355, 1.2644840930598547, 1.2718321464896936, 1.279529561189806, 1.2875677183961185, 1.2959368638715318, 1.3046261092562736, 1.313623438775174, 1.3229157216240004, 1.3324887303361461, 1.3423271654038758, 1.3524146863962916, 1.3627339497789688, 1.3732666535988494, 1.3839935891521953, 1.3948946997041012, 1.405949146272319, 1.417135380428187, 1.428431223998133, 1.4398139554716316, 1.4512604028317782, 1.4627470424228608, 1.474250103353283, 1.4857456768047623, 1.497209829480469, 1.5086187202814156, 1.5199487191574426, 1.5311765269451052, 1.5422792948870205, 1.5532347424358213, 1.5640212718879216, 1.5746180783738912, 1.5850052537586095, 1.5951638830760175, 1.6050761322391998, 1.614725325923071, 1.6240960147077164 ], [ 1.211393623458176, 1.213652999170388, 1.2162661188226385, 1.2192379667695623, 1.2225727754981461, 1.2262739835630379, 1.2303441950602794, 1.2347851408152961, 1.2395976414662657, 1.2447815726345923, 1.2503358323901756, 1.2562583112386447, 1.2625458648804024, 1.2691942900149613, 1.2761983034872957, 1.2835515250940464, 1.2912464643849773, 1.2992745118075368, 1.307625934549033, 1.316289877431089, 1.3252543692038692, 1.334506334573756, 1.3440316122771938, 1.3538149794858763, 1.3638401827947082, 1.3740899760047558, 1.3845461648683064, 1.39518965891371, 1.4060005304122, 1.4169580804883157, 1.4280409123085214, 1.439227011207783, 1.4504938315303817, 1.4618183898676607, 1.473177364270617, 1.4845471988995915, 1.49590421344746, 1.507224716539604, 1.5184851221768234, 1.529662068153526, 1.5407325352577201, 1.5516739659516017, 1.5624643811477017, 1.573082493644492, 1.5835078167720171, 1.5937207668267674, 1.6037027579479464, 1.6134362882025863, 1.622905015802236, 1.6320938245626386 ], [ 1.2222139649320807, 1.224576417085802, 1.2272863885997638, 1.2303486541018653, 1.2337672516207687, 1.2375454409225681, 1.241685663247995, 1.2461895026376684, 1.2510576490407732, 1.2562898634147204, 1.2618849450391874, 1.2678407012874318, 1.2741539201191385, 1.280820345581264, 1.2878346566255827, 1.2951904495707987, 1.3028802245540076, 1.310895376327941, 1.319226189766603, 1.3278618404421172, 1.3367904006285145, 1.345998851074181, 1.355473098863721, 1.3651980016618372, 1.375157398596876, 1.3853341480006027, 1.3957101721732659, 1.406266509290068, 1.4169833725055971, 1.427840216248093, 1.4388158096230343, 1.449888316766254, 1.4610353838994568, 1.4722342327435092, 1.483461759839064, 1.4946946412079272, 1.5059094416649206, 1.5170827279604446, 1.5281911848030516, 1.5392117326832295, 1.5501216463023284, 1.5608986723094027, 1.5715211449716824, 1.5819680983591315, 1.5922193736135926, 1.6022557199044654, 1.612058887746508, 1.6216117134707257, 1.6308981937935176, 1.6399035496171044 ], [ 1.2329725379471774, 1.2354356889998406, 1.2382401394588685, 1.2413904508624571, 1.2448904625599198, 1.248743250524878, 1.2529510874515202, 1.2575154043310255, 1.2624367537152097, 1.2677147748873048, 1.2733481611763737, 1.2793346296707275, 1.285670893606482, 1.2923526377284777, 1.2993744969414882, 1.3067300385880052, 1.3144117487043443, 1.3224110226181038, 1.3307181602552072, 1.3393223665250635, 1.348211757144698, 1.357373370248858, 1.366793184111816, 1.376456141277584, 1.3863461793598537, 1.3964462687301997, 1.4067384572638382, 1.417203922256464, 1.4278230295640073, 1.4385753999477071, 1.4494399825323794, 1.460395135202176, 1.4714187116678188, 1.482488154839936, 1.4935805960357489, 1.5046729594307944, 1.5157420710451477, 1.5267647714277781, 1.5377180310757692, 1.5485790675031483, 1.5593254627622672, 1.569935280125516, 1.5803871785637011, 1.590660523615864, 1.6007354932392848, 1.6105931772613378, 1.6202156691295586, 1.6295861487717638, 1.6386889555319106, 1.6475096503342377 ], [ 1.2436552160866274, 1.2462164109969176, 1.2491126881845842, 1.252348393436769, 1.2559271640113405, 1.2598518879947904, 1.2641246648441953, 1.2687467673177861, 1.2737186050104974, 1.2790396897242153, 1.2847086029197647, 1.2907229655160595, 1.2970794103216305, 1.303773557404598, 1.3107999927259082, 1.3181522503783698, 1.3258227987885962, 1.3338030312486056, 1.3420832611494666, 1.3506527222881701, 1.3594995746115832, 1.3686109157468684, 1.377972798646314, 1.387570255644874, 1.3973873291928864, 1.407407109482548, 1.4176117791360952, 1.4279826650662484, 1.438500297555565, 1.449144476529663, 1.4598943449221113, 1.4707284689429634, 1.4816249249703786, 1.4925613926840933, 1.5035152539514438, 1.5144636968618013, 1.5253838241843678, 1.536252765401636, 1.547047791347539, 1.5577464303616861, 1.5683265847643757, 1.5787666463662762, 1.5890456096597203, 1.59914318130037, 1.6090398844844636, 1.6187171568615906, 1.6281574406982193, 1.6373442641229552, 1.6462623124381723, 1.6548974886688006 ], [ 1.254248491103817, 1.2569048135385068, 1.2598900025159443, 1.263208186093024, 1.2668627968048356, 1.2708565316295826, 1.2751913130544417, 1.2798682514534585, 1.2848876090003214, 1.2902487653541288, 1.2959501853728193, 1.3019893891277825, 1.3083629245120427, 1.3150663427540135, 1.3220941771673769, 1.3294399254834077, 1.337096036126001, 1.3450538987986893, 1.3533038397570516, 1.3618351221388463, 1.3706359517162272, 1.3796934884191916, 1.3889938639582877, 1.3985222058441602, 1.4082626680654189, 1.4181984686416866, 1.4283119342173414, 1.4385845518028246, 1.4489970277052207, 1.459529353616405, 1.4701608797487318, 1.480870394820307, 1.4916362125986085, 1.5024362646096001, 1.5132481985113397, 1.5240494815168895, 1.5348175081324253, 1.5455297113557938, 1.55616367636103, 1.5666972555803647, 1.577108683992336, 1.5873766933378057, 1.597480623921912, 1.6074005326249956, 1.6171172957433302, 1.6266127053175246, 1.6358695576814508, 1.644871733080989, 1.6536042653650531, 1.6620534009374721 ], [ 1.2647394909789833, 1.2674877805474862, 1.2705587212911624, 1.2739562222194905, 1.2776835092658922, 1.2817430859162613, 1.2861366948700215, 1.290865280948956, 1.2959289554823257, 1.301326962412339, 1.3070576463807955, 1.3131184230759942, 1.319505752137673, 1.326215112936427, 1.3332409835610344, 1.3405768233628153, 1.3482150594182274, 1.3561470772792945, 1.3643632163850163, 1.37285277050474, 1.38160399357621, 1.3906041112857126, 1.3998393387156303, 1.4092949043548204, 1.4189550807302984, 1.4288032218740776, 1.4388218077869641, 1.4489924960023133, 1.4592961802861175, 1.4697130564366208, 1.4802226950662563, 1.4908041211611287, 1.5014359001186528, 1.5120962298625957, 1.522763038526849, 1.5334140870860002, 1.5440270761936237, 1.554579756370734, 1.5650500405699148, 1.575416118029957, 1.5856565682359016, 1.5957504737160568, 1.6056775303464281, 1.6154181538001355, 1.6249535807793822, 1.6342659637047614, 1.6433384576131103, 1.6521552981309562, 1.6607018695434397, 1.6689647621647936 ], [ 1.2751159951809925, 1.277952865531002, 1.2811061714563003, 1.2845796022424625, 1.288376176065713, 1.292498201336778, 1.2969472390210683, 1.3017240661540028, 1.3068286407837935, 1.312260068590203, 1.318016571444324, 1.3240954581926485, 1.3304930979665175, 1.3372048963358119, 1.344225274642088, 1.3515476528607906, 1.359164436353056, 1.3670670068756459, 1.3752457182195599, 1.3836898968456257, 1.3923878478761287, 1.401326866786221, 1.41049325711633, 1.4198723544966396, 1.429448557238086, 1.4392053636991178, 1.4491254165858225, 1.4591905542834867, 1.4693818692515341, 1.4796797734396614, 1.490064070602862, 1.5005140353050572, 1.5110084983064778, 1.5215259379290182, 1.5320445768865318, 1.542542483955006, 1.552997679742051, 1.5633882456988313, 1.5736924354032882, 1.5838887870354386, 1.5939562358687318, 1.6038742255204272, 1.6136228166455842, 1.6231827917281805, 1.6325357546242647, 1.6416642235500702, 1.6505517162849361, 1.6591828264741157, 1.667543290069602, 1.6756200411317574 ], [ 1.285366447127529, 1.2882883047363602, 1.2915203819329286, 1.2950661482211288, 1.2989284135584118, 1.3031092904617085, 1.307610157044601, 1.3124316212066531, 1.3175734862102995, 1.3230347178962634, 1.3288134138058805, 1.3349067744955616, 1.3413110773464896, 1.348021653189335, 1.3550328660791588, 1.3623380965689522, 1.3699297288405268, 1.377799142058051, 1.3859367063111312, 1.3943317835110218, 1.402972733594221, 1.4118469263715987, 1.420940759338722, 1.4302396817330747, 1.4397282250867383, 1.449390040478542, 1.4592079426381594, 1.4691639609951312, 1.4792393976999016, 1.489414892570266, 1.4996704948364836, 1.5099857414708127, 1.520339741793238, 1.530711267944801, 1.5410788507138524, 1.5514208800900333, 1.5617157098066774, 1.5719417650189058, 1.5820776521518765, 1.5921022698491534, 1.6019949198560255, 1.611735416594948, 1.6213041941333324, 1.63068240921492, 1.6398520390286244, 1.6487959724273091, 1.657498093385831, 1.6659433556030399, 1.6741178473041192, 1.6820088454836282 ], [ 1.2954799638526622, 1.2984830273509769, 1.3017900943590055, 1.3054044151367918, 1.3093285916252926, 1.313564540356423, 1.3181134562589836, 1.3229757775824558, 1.3281511521757379, 1.33363840537361, 1.3394355097604285, 1.345539557097664, 1.3519467327184418, 1.3586522927084352, 1.3656505442068074, 1.3729348291731687, 1.3804975119757703, 1.3883299711618844, 1.3964225957719312, 1.404764786555135, 1.4133449624345085, 1.422150572552551, 1.431168114206608, 1.4403831569525956, 1.449780373119256, 1.4593435749306338, 1.4690557583832564, 1.4788991539658614, 1.488855284243729, 1.4989050282570253, 1.509028692602523, 1.5192060889818138, 1.5294166179058892, 1.5396393581464507, 1.5498531614199682, 1.5600367516810918, 1.5701688282907365, 1.5802281722114884, 1.5901937542743405, 1.6000448444571653, 1.609761121023784, 1.6193227782967599, 1.6287106317821864, 1.637906219337431, 1.646891897076625, 1.655650928747631, 1.6641675673913359, 1.6724271282085676, 1.6804160517106081, 1.688121956411709 ] ], "zauto": true, "zmax": 1.688121956411709, "zmin": -1.688121956411709 }, { "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.03570411928579394, 0.03349982108917016, 0.03143757214443823, 0.029514155253539832, 0.027726582543194177, 0.026073312450758238, 0.024555558913364244, 0.02317846916961773, 0.02195186740016424, 0.020890215826301302, 0.020011479143095517, 0.019334757178909496, 0.018876921516379232, 0.01864899179881771, 0.018653361463278124, 0.01888288324345419, 0.01932215002705627, 0.019950429259704677, 0.020745194610333365, 0.021685274577087636, 0.022753068280934426, 0.023935706167306278, 0.025225284172980922, 0.026618393674419705, 0.028115185023035064, 0.029718190219927845, 0.0314311040583301, 0.0332576825829873, 0.035200865357066, 0.03726217195990296, 0.03944137332277668, 0.04173640226561681, 0.044143447599772026, 0.046657170843957325, 0.04927098986254866, 0.05197738483237328, 0.05476819483961861, 0.05763488538675193, 0.06056877676125223, 0.06356123020287419, 0.06660379333107196, 0.06968830886003537, 0.07280699178769358, 0.07595248048384369, 0.07911786679893203, 0.08229670973616948, 0.08548303655011444, 0.08867133445929705, 0.09185653554484513, 0.09503399687600372 ], [ 0.03407156083277943, 0.03186195951158487, 0.029798201539786753, 0.027875958449853445, 0.02609078723115015, 0.024439461538843965, 0.022921466615739884, 0.021540421682346114, 0.020305095734844028, 0.019229614711953554, 0.018332468397068806, 0.01763409232986971, 0.017153201925851777, 0.016902660057716127, 0.016886178440094348, 0.017097116290208682, 0.017519841547572353, 0.018133013182781113, 0.018913498756602844, 0.019839772521981137, 0.020894206155253336, 0.022064181544854983, 0.023342220918936334, 0.024725402051732293, 0.02621432012097973, 0.027811833876130444, 0.02952180179485587, 0.031347968533521155, 0.03329310430192153, 0.035358439249172285, 0.0375433829618439, 0.03984548346454803, 0.04226056265538363, 0.04478296314288616, 0.047405849806761, 0.050121522716763345, 0.05292171212930761, 0.05579783859296371, 0.058741230636475336, 0.06174329898925515, 0.06479567022918332, 0.06789028478951571, 0.07101946499200845, 0.07417595870473129, 0.07735296371522965, 0.08054413720900956, 0.08374359400223014, 0.08694589648149006, 0.09014603859401378, 0.09333942572168644 ], [ 0.0327442513270174, 0.03053235358406669, 0.028469720980518327, 0.026551032887763483, 0.02477049977591983, 0.02312328113730466, 0.021607134702108708, 0.020224051966770372, 0.018981522480322435, 0.017892984900435803, 0.01697701361648599, 0.01625493825078243, 0.015747002003866438, 0.015467839643542654, 0.015422708445630194, 0.015605961949466297, 0.016002383760596064, 0.016590686775085604, 0.017347701821428804, 0.01825194888374947, 0.01928597163174224, 0.02043741065917888, 0.02169906452967889, 0.023068238295858676, 0.024545654550754862, 0.026134170042540702, 0.02783750560239134, 0.02965914854354331, 0.03160152522051892, 0.03366547800328029, 0.03585002819582408, 0.0381523721882629, 0.040568043468208276, 0.04309117413848108, 0.0457148002889593, 0.0484311702475369, 0.051232029271579216, 0.05410886636172713, 0.05705311779407865, 0.060056327816147045, 0.06311027031811313, 0.06620703686449357, 0.06933909687320756, 0.07249933544305315, 0.07568107369741944, 0.07887807575271585, 0.08208454566511159, 0.08529511702767367, 0.08850483731078512, 0.09170914856670322 ], [ 0.031739156211473434, 0.029527478302679915, 0.02746781835141359, 0.025554033656161552, 0.02377919233756931, 0.022137049049310308, 0.0206238064701729, 0.019239910549807657, 0.01799150508440354, 0.016891079623851016, 0.01595682814676857, 0.015210371723346812, 0.014672895170296065, 0.014360441537818422, 0.014279837611851491, 0.01442687197170459, 0.014787475250818223, 0.015341225586977205, 0.01606561281858455, 0.016939664860807974, 0.017946293779944916, 0.01907335860270511, 0.020313717635521613, 0.021664579657891484, 0.0231264296953481, 0.024701770980762826, 0.02639388931238877, 0.028205796312136364, 0.030139444834895727, 0.032195245336895086, 0.03437185985879159, 0.036666217939804735, 0.03907368649097162, 0.041588328693550974, 0.04420319889919636, 0.04691063555119359, 0.04970252842196516, 0.05257054798911261, 0.05550633300194348, 0.05850163751933646, 0.06154844157821767, 0.06463903088301602, 0.06776605109321338, 0.07092254188367726, 0.07410195527289265, 0.07729816195448083, 0.0805054486401473, 0.08371850878357738, 0.08693242852473945, 0.09014266927194886 ], [ 0.031066500026873174, 0.0288566573855103, 0.02680058041029598, 0.02489151395179322, 0.02312167575371348, 0.021483764062750817, 0.019972784603792107, 0.018587937452368437, 0.017334177093490707, 0.016222970047683263, 0.015271766623570254, 0.014501842827589166, 0.013934549754871808, 0.013586670661058155, 0.013466303395600378, 0.013570873872418631, 0.01388807945316609, 0.014399161235808542, 0.01508299004502662, 0.01591958677542551, 0.01689243316607369, 0.017989558169207297, 0.01920365354830616, 0.020531507929546444, 0.02197301978874414, 0.02353002199381664, 0.025205119260853635, 0.027000691941322215, 0.02891815706614853, 0.030957514098363448, 0.033117152200519175, 0.035393865162372445, 0.037783009154958434, 0.04027874212164138, 0.042874295420670734, 0.04556224276767944, 0.048334744968489565, 0.05118375962450354, 0.05410121252326584, 0.05707913213820069, 0.06010975119992092, 0.0631855803365919, 0.06629945887709443, 0.06944458748824714, 0.07261454666192524, 0.07580330435676624, 0.07900521543295852, 0.08221501494424267, 0.08542780688441827, 0.08863904962154902 ], [ 0.03072815418787878, 0.028520428266039215, 0.026466887093310517, 0.024560400260340846, 0.022792695937688946, 0.021155879506047453, 0.01964427949159254, 0.018256352874011193, 0.016996254437994837, 0.01587459644738371, 0.014907939583939626, 0.014116717819613723, 0.013521674858245037, 0.013139492031743596, 0.012978910119523327, 0.01303879187691736, 0.013308847414646822, 0.013772502285416028, 0.014410567619817316, 0.015204474716733724, 0.016138475318181786, 0.017200761542363642, 0.01838370068799185, 0.019683422486381507, 0.021098985255563484, 0.02263133470791326, 0.024282247559418893, 0.02605340994225358, 0.0279457220601041, 0.029958860023090342, 0.032091077216396036, 0.03433919787387474, 0.03669874444184315, 0.0391641430291797, 0.041728961675904695, 0.04438614917623934, 0.04712825439309883, 0.04994761575501593, 0.052836517528604694, 0.05578731380272305, 0.05879252348040507, 0.061844900556754234, 0.06493748407950589, 0.0680636318298529, 0.07121704118758897, 0.07439176002192112, 0.0775821898695607, 0.08078308316878627, 0.08398953592442585, 0.08719697687891605 ], [ 0.030717100909840565, 0.02851013922108612, 0.02645621555686201, 0.0245480808490394, 0.022777378010743202, 0.021136154523539116, 0.019618683807464385, 0.018223319072479798, 0.016953980372358277, 0.015820812740201463, 0.014839597743711606, 0.01402969618197679, 0.01341067907067922, 0.012998338372786855, 0.012801251893460597, 0.012819110134513418, 0.013043343958276069, 0.01345956526718495, 0.014050698617849368, 0.014799792739572092, 0.015692017126553864, 0.01671578039968609, 0.017863094002188, 0.019129346931313226, 0.02051266637094928, 0.022013046759844026, 0.02363142327003278, 0.02536883420067501, 0.02722576596366503, 0.029201719030413808, 0.03129498726116378, 0.03350261366151468, 0.035820473137016584, 0.038243433270262764, 0.04076555218392533, 0.04338028349576339, 0.04608066904997548, 0.04885950888258233, 0.051709504240033295, 0.05462337358210876, 0.05759394382077442, 0.06061422009456228, 0.06367743761122784, 0.0667770988624829, 0.0699069990706198, 0.07306124222447243, 0.07623424959087999, 0.07942076219046142, 0.08261583841500923, 0.08581484773340717 ], [ 0.0310182583471689, 0.028809061416830598, 0.026750110361424245, 0.024834308933799783, 0.023053635072066987, 0.021400631270524342, 0.01987016179053191, 0.018461154258112226, 0.017177929020763826, 0.016030674807846593, 0.015034703888714895, 0.014208349557399925, 0.013569756257236498, 0.013133284296476418, 0.01290659229535686, 0.012889362222022934, 0.013073984089394856, 0.013447686827485763, 0.013995172828541316, 0.014700975450645411, 0.015551183312027452, 0.016534488636578627, 0.01764263404880362, 0.018870356060660187, 0.020214941326815998, 0.02167553609648543, 0.023252359509249556, 0.02494595456881778, 0.02675657142324116, 0.028683730094828018, 0.03072596761859942, 0.03288074544158358, 0.03514447840802645, 0.03751264402375725, 0.03997993563460983, 0.0425404315732373, 0.04518776125284321, 0.04791525691702211, 0.050716085614032395, 0.05358335992793932, 0.056510228373692024, 0.05948994756253676, 0.06251593866163702, 0.06558183062791197, 0.06868149242197079, 0.07180905605600839, 0.07495893198814312, 0.07812581808866303, 0.08130470318446532, 0.08449086603263165 ], [ 0.03161050777395687, 0.029394769394691544, 0.027324954607599854, 0.02539440075048329, 0.02359582892096196, 0.02192279442727287, 0.02037134472558403, 0.018941600485498988, 0.01763887375613613, 0.016473910757210233, 0.015461946953338898, 0.014620517949817762, 0.01396636098440113, 0.013512159894754773, 0.013264110271545863, 0.013221071030707288, 0.013375423827880506, 0.01371507116796292, 0.014225736454721121, 0.014892953184484645, 0.01570351392519853, 0.016646387951022842, 0.0177131747211357, 0.018898152768447106, 0.02019799128966451, 0.02161121994132821, 0.023137574520819226, 0.02477733450961513, 0.02653074341762074, 0.028397565806526484, 0.030376798267676967, 0.03246652370980546, 0.0346638819571142, 0.0369651237689193, 0.03936571691445442, 0.041860478518961984, 0.044443714837171, 0.0471093561668295, 0.04985107992292984, 0.0526624187161477, 0.055536852746153664, 0.05846788722096869, 0.06144911616773876, 0.06447427418830858, 0.06753727764919397, 0.07063225662633214, 0.07375357873878599, 0.07689586584767776, 0.08005400448235753, 0.0832231507835567 ], [ 0.03246937464630165, 0.030242113810043915, 0.02815521998187513, 0.026202743033433614, 0.02437851573430035, 0.022677544433889227, 0.02109753790766687, 0.019640293549845655, 0.018312573405059155, 0.01712609319898215, 0.016096365806751885, 0.015240410724245737, 0.014573727874741326, 0.014107307992003383, 0.013845591288623149, 0.013785999627529067, 0.013920023698518039, 0.014235241694540485, 0.014717476095096632, 0.015352563984765347, 0.01612759374696479, 0.017031673527897726, 0.01805632572576439, 0.019195564859327118, 0.02044570061384207, 0.021804924965588342, 0.023272766488802707, 0.02484950418857869, 0.026535622017800395, 0.02833136010171937, 0.030236389603518637, 0.032249613061131235, 0.03436907490158218, 0.036591958187258966, 0.03891464183019677, 0.0413327951033356, 0.04384149100277979, 0.04643532518666591, 0.049108531825292935, 0.05185509130144936, 0.05466882723758839, 0.057543491945389665, 0.06047284032147278, 0.06345069267878724, 0.06647098719517835, 0.06952782271507059, 0.07261549264246245, 0.07572851066015483, 0.07886162901862225, 0.08200985015982575 ], [ 0.033569683762817694, 0.03132601088891144, 0.029216331661168965, 0.027235668837144435, 0.025379271579818157, 0.023643925414025036, 0.02202932826831589, 0.02053926095831027, 0.019182209805759715, 0.01797110455918634, 0.016921963498131062, 0.01605151007243196, 0.01537419934445956, 0.0148994299953343, 0.014629802406009645, 0.014560955587240309, 0.014682879413822195, 0.014982042586221971, 0.015443552714949592, 0.01605285218306996, 0.016796836365129682, 0.017664499594130703, 0.018647242611029465, 0.01973892261959385, 0.0209356868848373, 0.022235627667157788, 0.02363831260370919, 0.025144257863263332, 0.02675441076386719, 0.028469694863899234, 0.030290650104719062, 0.032217179989401795, 0.03424840141359494, 0.036382582366058465, 0.03861714801970221, 0.04094873537568307, 0.04337327893676184, 0.045886113400514406, 0.048482083031315105, 0.051155650588116656, 0.05390100120730644, 0.056712138456516896, 0.059582971000746256, 0.0625073891124383, 0.06547933076036053, 0.06849283734318914, 0.07154209937066788, 0.07462149258194069, 0.07772560514757854, 0.08084925673338474 ], [ 0.0348876554879765, 0.03262349464597252, 0.030486597790239697, 0.028473183536775293, 0.026580140717497532, 0.024806237336303757, 0.023153326573409076, 0.02162729240293397, 0.02023842258622706, 0.019000914426308153, 0.017931351363470485, 0.01704625384576718, 0.016359161936226083, 0.01587801269247608, 0.015603626014904124, 0.015529770034671257, 0.015644658466509274, 0.01593320836882521, 0.016379277615031895, 0.016967384086903105, 0.017683792309097866, 0.01851708887952714, 0.019458413294382092, 0.02050145781792136, 0.021642292787571425, 0.022879049584572413, 0.024211496240269127, 0.02564055126413857, 0.027167786335396713, 0.028794963960087596, 0.030523644262588967, 0.03235488011936441, 0.0342890057483562, 0.03632551301396702, 0.0384630029119759, 0.040699196650282224, 0.04303099053068796, 0.04545454039944555, 0.04796536383619293, 0.05055845082032355, 0.0532283759553011, 0.05596940727415338, 0.05877560817167215, 0.06164093016812078, 0.06455929508837181, 0.06752466591712002, 0.0705311061240297, 0.07357282767921969, 0.07664422832034457, 0.07973991889700828 ], [ 0.03640219739029405, 0.034114830353689486, 0.031948071581910924, 0.029899504814317922, 0.02796779107460152, 0.026153758783010784, 0.02446142887762678, 0.022898735747099525, 0.02147766489408682, 0.02021355563558127, 0.01912344931123665, 0.01822361521370393, 0.017526714709253793, 0.017039337946253123, 0.01676067511655617, 0.016682744945050856, 0.016792015406268897, 0.01707175842931029, 0.017504372387620468, 0.01807316739533747, 0.018763480325334602, 0.019563234944396584, 0.020463130300904922, 0.021456598588248336, 0.022539609955519273, 0.02371036171281961, 0.024968877839794446, 0.02631654862905606, 0.027755646443671986, 0.02928885491203897, 0.030918844119406742, 0.03264791529438794, 0.03447772781763271, 0.036409111387895425, 0.03844195829027019, 0.04057518547384691, 0.04280675345024446, 0.045133728373418724, 0.047552374416786135, 0.050058265124589774, 0.05264640431127062, 0.05531134900426571, 0.05804732870052272, 0.06084835676249292, 0.0637083311026361, 0.06662112241042883, 0.06958064908432861, 0.07258093876389413, 0.07561617693127529, 0.07868074348121913 ], [ 0.03809541214466003, 0.03578378131561976, 0.033586524754311044, 0.03150269595064835, 0.02953276881528078, 0.027679594888385034, 0.025949242819625087, 0.024351502119992725, 0.022899806947891527, 0.021610370984897945, 0.020500453325241138, 0.01958590918166406, 0.01887847641118163, 0.018383488107698714, 0.018098710207622725, 0.01801467982718104, 0.01811637816521738, 0.018385617117256926, 0.01880340884575009, 0.01935181564836824, 0.020015122952757456, 0.020780428783494037, 0.021637831146562137, 0.02258037010108288, 0.02360382058533098, 0.024706383604212647, 0.025888300332313253, 0.02715140961596203, 0.028498673338837835, 0.0299336981354707, 0.03146028234365775, 0.03308201340102294, 0.03480193424619902, 0.03662228929364015, 0.038544352683591625, 0.04056833482666716, 0.04269335834453999, 0.04491749150326149, 0.04723782597034298, 0.04965058584342761, 0.052151255977931285, 0.054734719292273186, 0.05739539463722989, 0.06012736875421644, 0.06292451766932418, 0.06578061449067804, 0.06868942195475695, 0.07164476918935418, 0.0746406130332848, 0.07767108489338319 ], [ 0.039952502157747934, 0.03761727391622262, 0.03539084610230153, 0.03327377746419798, 0.031268309525074714, 0.0293791815306502, 0.02761428535622211, 0.02598496560604928, 0.02450575618190031, 0.023193386335155452, 0.022065012985736848, 0.021135849062072408, 0.02041661913035601, 0.01991147423622818, 0.019616989224547465, 0.019522567934635804, 0.01961209883455934, 0.019866297612444846, 0.020265063452307278, 0.020789363934375037, 0.02142247006188335, 0.02215060325140319, 0.022963158525669602, 0.02385266254293725, 0.024814574236016063, 0.025846986073217004, 0.02695025368951902, 0.02812657035956512, 0.029379502925041795, 0.030713509943460036, 0.032133466266633805, 0.0336442188671059, 0.035250196146489145, 0.03695508777747112, 0.0387616053836339, 0.04067132717938243, 0.04268462309154265, 0.04480065160571872, 0.04701741602290012, 0.04933186603419404, 0.051740030320855813, 0.05423716690132995, 0.05681791976436171, 0.059476472561104485, 0.06220669246533345, 0.06500225952369999, 0.0678567787650179, 0.07076387394684193, 0.0737172630694964, 0.07671081669817267 ], [ 0.04196130084013217, 0.03960473290578746, 0.03735217624856576, 0.03520566300434338, 0.033169082278477834, 0.031248848721192844, 0.02945437957158434, 0.027798209902978037, 0.02629557270065448, 0.024963317151589066, 0.023818155577017497, 0.022874419066421767, 0.022141724437509086, 0.02162311506152034, 0.021314213965637534, 0.021203661679663484, 0.02127469606583866, 0.021507381269094496, 0.02188088702168317, 0.022375366017355, 0.022973236819142144, 0.023659899487352424, 0.024424020340381474, 0.025257534323260805, 0.026155476155043784, 0.027115705929503717, 0.02813856180653612, 0.02922645591218092, 0.030383425537833186, 0.03161465437213634, 0.03292598308862966, 0.034323432168623914, 0.035812760853392904, 0.03739908413241648, 0.03908656496165706, 0.04087819226243812, 0.04277564776945351, 0.044779257622568805, 0.046888018691249804, 0.04909968558575279, 0.05141090233481443, 0.05381736262090611, 0.05631398384680483, 0.058895082645550136, 0.06155454224131927, 0.06428596491238675, 0.0670828054130242, 0.06993848341081102, 0.07284647472186119, 0.07580038238126544 ], [ 0.04411163746253523, 0.041737312431903185, 0.03946301659764509, 0.03729216330182407, 0.035230109512235624, 0.03328467935123898, 0.03146647534336745, 0.029788832176386445, 0.028267273922405346, 0.026918385709043324, 0.02575811937128162, 0.02479971711183961, 0.024051619779628663, 0.02351584661820002, 0.02318729714578878, 0.02305419553565049, 0.02309955255880737, 0.023303228232731347, 0.0236440799468551, 0.02410178813641221, 0.02465816211465257, 0.025297920737465087, 0.026009051322684506, 0.026782876428969787, 0.027613935300758938, 0.028499749122053275, 0.029440507173001455, 0.030438691605250253, 0.03149865095956901, 0.032626132906343974, 0.033827791007374465, 0.0351106854412361, 0.03648180144019588, 0.03794761033047791, 0.039513695987165996, 0.041184464373290396, 0.04296294644073494, 0.04485069628086145, 0.04684777840527606, 0.04895283158481063, 0.05116319250155069, 0.05347506076531422, 0.055883687342137, 0.05838357057334432, 0.06096864706215284, 0.06363246815220104, 0.06636835604187959, 0.06916953646322913, 0.0720292471547064, 0.07494082304365958 ], [ 0.046394687908241375, 0.04400717612747445, 0.04171646023657161, 0.03952719340741197, 0.03744597846965339, 0.03548175294790817, 0.033645951314981014, 0.03195232412871737, 0.030416307268131156, 0.029053885766545995, 0.027879994933156012, 0.026906640064233177, 0.026141060204522802, 0.0255843462078331, 0.025230879599015977, 0.0250687649132443, 0.02508114937190668, 0.025248087363900305, 0.025548519009935145, 0.02596200582990566, 0.026470030305762227, 0.027056827282906926, 0.027709817363005384, 0.028419748126215953, 0.02918063954390551, 0.029989601741785957, 0.030846564914317427, 0.031753941227176445, 0.03271622850323448, 0.03373956348748879, 0.03483123565274268, 0.035999178071973156, 0.03725145750771545, 0.03859578969958501, 0.040039106579816776, 0.04158719923472034, 0.04324445410742377, 0.04501369123356954, 0.04689610376095014, 0.04889128926778113, 0.05099735677810387, 0.053211089588954104, 0.05552814312168329, 0.057943258508092815, 0.06045047574804033, 0.06304333420311428, 0.0657150522190751, 0.06845868130502107, 0.07126723326686907, 0.07413378090547103 ], [ 0.048802405084292115, 0.04640691053536899, 0.04410561378781816, 0.04190423089747902, 0.03981036439470249, 0.03783376096981585, 0.0359863451862187, 0.03428193275325998, 0.03273554576396006, 0.03136230263203738, 0.0301759418194815, 0.02918715174116142, 0.028401988799554294, 0.02782072108685714, 0.02743738856413789, 0.027240211442803225, 0.027212758771873045, 0.027335602329862367, 0.027588104302407556, 0.02795003444192606, 0.028402835134795964, 0.028930483142432285, 0.02951998823156203, 0.030161609391632073, 0.030848870655499325, 0.03157843982798382, 0.032349910311386315, 0.03316550749749649, 0.03402972997522788, 0.03494893185044848, 0.035930854110959795, 0.036984118096036224, 0.03811770061604815, 0.039340416089242075, 0.04066043444989069, 0.04208486327997328, 0.0436194181803406, 0.04526819735581786, 0.047033566143449675, 0.048916146654113014, 0.05091489866995781, 0.05302727176242881, 0.05524940580321825, 0.05757635740583349, 0.060002332595540074, 0.0625209101753681, 0.06512524489845987, 0.06780824395452328, 0.07056271398744203, 0.07338147869209903 ], [ 0.051327074001128355, 0.048929102770369305, 0.04662322252902665, 0.0444160141846342, 0.04231582681602015, 0.040332922690556265, 0.038479405069519836, 0.036768854382905954, 0.03521562043169448, 0.033833765653321836, 0.03263572821325094, 0.03163086354015127, 0.030824103168804413, 0.03021500301732552, 0.029797407299801598, 0.02955982642725777, 0.029486457337369584, 0.029558629614626117, 0.02975639595336628, 0.0300600132016806, 0.030451149176265412, 0.030913752508686804, 0.03143460122103079, 0.03200358695864193, 0.0326138008345033, 0.033261476526808616, 0.03394582892199512, 0.03466881035336414, 0.035434795247438935, 0.03625019873116516, 0.03712303487298934, 0.03806242440215231, 0.03907806829194342, 0.0401797106105747, 0.041376619577444554, 0.04267711807452351, 0.0440881928358197, 0.0456152050414024, 0.047261715051535716, 0.049029422382211266, 0.05091821093667756, 0.05292628086962905, 0.055050343405177844, 0.057285853654087726, 0.05962725838837275, 0.062068239784612414, 0.06460194120147164, 0.06722116614868279, 0.06991854607986363, 0.07268667616523057 ], [ 0.05396100181586541, 0.051566078028263546, 0.049261476719436766, 0.047054438325486066, 0.04495381311064355, 0.04297011044171933, 0.04111534386310794, 0.03940261711633787, 0.037845419574766045, 0.03645664246294726, 0.03524738837037267, 0.0342257158221217, 0.033395517369220376, 0.032755747004497196, 0.03230017018749233, 0.03201770872051631, 0.03189332312104316, 0.031909264018108556, 0.03204647046621956, 0.03228590728380982, 0.032609696096905894, 0.03300197249571679, 0.033449466610119195, 0.03394184339382785, 0.03447185262877444, 0.035035335049504436, 0.03563111913569499, 0.036260829985877006, 0.03692862132205608, 0.037640835804413526, 0.038405597701965326, 0.039232344970263296, 0.04013131379875889, 0.041112996148811275, 0.04218759782108316, 0.04336452919547633, 0.0446519613410261, 0.04605647588766379, 0.04758282824603182, 0.049233831976846276, 0.05101035961889963, 0.052911444424357634, 0.054934459969556364, 0.057075351267089174, 0.059328891555013794, 0.06168894241801095, 0.06414870004023561, 0.0667009160076596, 0.0693380862761998, 0.07205260617742322 ], [ 0.05669633171919145, 0.05430977297501139, 0.05201196076778082, 0.049810594342032465, 0.047714799000319864, 0.045735097439599144, 0.043883194303140166, 0.042171535736366145, 0.04061262870614193, 0.0392181423443109, 0.037997862919864435, 0.03695862602403944, 0.03610338821413068, 0.03543060709261728, 0.03493406111360971, 0.03460316155115733, 0.034423711126516286, 0.03437897944463083, 0.034450921762254345, 0.03462137310260982, 0.03487309256715375, 0.03519059048705926, 0.03556072314650346, 0.03597307469020977, 0.036420161708134995, 0.036897497213819484, 0.037403543610729825, 0.03793957433118531, 0.03850945490961434, 0.03911934837812405, 0.03977734786526117, 0.040493041137549396, 0.04127701695366728, 0.04214033037675881, 0.04309395198626976, 0.0441482322832277, 0.045312415555710445, 0.046594235684678915, 0.04799961950319398, 0.049532512344420854, 0.05119482738350677, 0.05298650783675318, 0.054905681291633125, 0.05694887977816847, 0.05911129791017536, 0.061387063817530986, 0.06376950239996845, 0.06625137629799666, 0.06882509576630684, 0.07148289360499398 ], [ 0.05952495867944044, 0.057151713155499814, 0.054865703150064594, 0.05267489984809748, 0.050588504358981656, 0.04861685856978755, 0.04677118923102334, 0.04506316063839319, 0.04350423272566864, 0.042104853164954555, 0.04087355092808507, 0.039816036844863276, 0.038934442090814515, 0.03822682568808949, 0.0376870497684174, 0.03730506034394918, 0.037067537721969704, 0.03695881700900894, 0.036961944121254725, 0.03705973294017769, 0.03723571782836811, 0.03747493782846889, 0.037764529630228194, 0.03809413629847793, 0.03845615490925425, 0.0388458505753982, 0.039261360952565966, 0.0397036083864402, 0.04017612963613259, 0.04068482768288278, 0.04123764764332828, 0.04184417968135427, 0.0425151959150785, 0.04326213496125415, 0.04409655569094711, 0.045029589223517866, 0.04607142315733071, 0.047230852764992816, 0.04851492942823106, 0.04992872725716646, 0.051475236224512944, 0.053155376704772696, 0.05496811862022445, 0.05691068040197705, 0.058978779522860715, 0.06116690716637371, 0.06346860357326456, 0.06587671633334627, 0.06838363003668851, 0.07098146128775457 ], [ 0.062438521588000236, 0.0600830622920513, 0.05781328876202819, 0.05563727745723534, 0.05356413711648334, 0.051603875273537, 0.0497671190410387, 0.04806467613569445, 0.046506941330808085, 0.045103179741838, 0.043860748292151516, 0.042784343992328513, 0.04187538365482856, 0.041131616091084136, 0.04054704074572393, 0.04011215979592668, 0.03981453554890089, 0.03963957698647321, 0.03957145144243492, 0.039594014703961476, 0.0396916713975709, 0.03985010767653601, 0.040056869463284496, 0.04030178430091431, 0.04057724006144623, 0.040878339789926346, 0.04120295128531068, 0.04155166561285352, 0.04192767322520988, 0.04233656166804938, 0.04278603620920537, 0.043285564849461014, 0.04384595225386797, 0.044478852890674284, 0.04519624121802277, 0.0460098646706663, 0.04693071159623416, 0.04796852925245641, 0.04913142509680077, 0.05042557752472803, 0.0518550709105022, 0.05342185637946788, 0.05512582682171784, 0.05696498460206988, 0.058935674670412566, 0.061032854594047094, 0.0632503756694773, 0.065581254391343, 0.06801791972178882, 0.07055242762483388 ], [ 0.06542844747727161, 0.06309471533286094, 0.06084500271864264, 0.05868734850443367, 0.056630633057387116, 0.05468441462301721, 0.05285864076698263, 0.05116322878383847, 0.04960752562034548, 0.048199678999958535, 0.0469459740715711, 0.04585020905046285, 0.0449131928492471, 0.04413244229544589, 0.0435021342200478, 0.04301333171070043, 0.04265446243253309, 0.04241199076513036, 0.04227120347770879, 0.042217024571154296, 0.042234786633061155, 0.04231090733044798, 0.04243344319320032, 0.04259251286955415, 0.04278059558004313, 0.04299271717681588, 0.0432265373413706, 0.04348234903509501, 0.04376299735465282, 0.04407372108815531, 0.04442191773401309, 0.044816832343157184, 0.04526917270769645, 0.04579065815670904, 0.04639351603515744, 0.04708994775660938, 0.04789159352578162, 0.048809029544550395, 0.04985133207160812, 0.05102573819875569, 0.052337423929558285, 0.053789407648383025, 0.055382573755195376, 0.05711579965615548, 0.05898616137568733, 0.060989189649287595, 0.06311914920099612, 0.06536931792401378, 0.06773224844332772, 0.07020000070780918 ], [ 0.06848602703401248, 0.06617741290898607, 0.06395098281829535, 0.061814620247505433, 0.059776872204186086, 0.057846767410118634, 0.056033529193021486, 0.05434618263886578, 0.05279306959217317, 0.05138130180514097, 0.05011619936634081, 0.04900077469806421, 0.04803532764352274, 0.04721721112678233, 0.04654080871666275, 0.045997737845584016, 0.04557726133520711, 0.04526686258693502, 0.045052922446523466, 0.044921431184509315, 0.044858676160721755, 0.044851860557551984, 0.04488962604079933, 0.04496246804372568, 0.04506304398662159, 0.0451863813673771, 0.0453299948557906, 0.045493920568873095, 0.045680673054832206, 0.04589512750585517, 0.046144327446343114, 0.04643721742956835, 0.04678430167091222, 0.0471972332764876, 0.04768834459628707, 0.0482701365211204, 0.048954751981310884, 0.0497534648092169, 0.05067621775803138, 0.05173124154453123, 0.05292477998073292, 0.05426093547138661, 0.05574163633468504, 0.05736671501680405, 0.059134076557776846, 0.06103993102925741, 0.06307906240319891, 0.06524510874934039, 0.06753083354203965, 0.06992837380041377 ], [ 0.0716025050925823, 0.06932186088713721, 0.06712136542229857, 0.06500865354826957, 0.06299186224209588, 0.061079440243452805, 0.05927987029703428, 0.05760130737155012, 0.05605114778686004, 0.054635557178358836, 0.05335899755644275, 0.05222380256816013, 0.051229852531391465, 0.05037439483235635, 0.04965204063367403, 0.04905494768762038, 0.04857317560464228, 0.04819517925485667, 0.047908392337598874, 0.04769984864053387, 0.04755679262259918, 0.04746724114352891, 0.04742047099051346, 0.04740741916679179, 0.047420992584345026, 0.047456289943922286, 0.047510741307650546, 0.047584170918765274, 0.04767878721474402, 0.04779910174639705, 0.04795177678213589, 0.048145400512233316, 0.048390189560126154, 0.0486976213113374, 0.04908000341675543, 0.04954999430921812, 0.050120095770231604, 0.05080214510410942, 0.05160683868217464, 0.052543319040332236, 0.05361885354410681, 0.05483862411580789, 0.05620563600485517, 0.05772074121916062, 0.0593827613347749, 0.06118868677439734, 0.06313392615827762, 0.06521257982426623, 0.06741771515120494, 0.0697416266064268 ], [ 0.07476917422085154, 0.07251884408715906, 0.07034641565118793, 0.06825920465579871, 0.06626488612954913, 0.06437130291546236, 0.06258620268212613, 0.06091690916540422, 0.059369942745828075, 0.05795061543407041, 0.05666263424646893, 0.05550775275837509, 0.05448551136708441, 0.05359310124613438, 0.052825375223286196, 0.05217501255739131, 0.05163282683854229, 0.051188190512175304, 0.050829538799206785, 0.05054491160039984, 0.05032249414820177, 0.050151124087381246, 0.050020741991352015, 0.04992277176952865, 0.04985042530516187, 0.04979893110677578, 0.04976568962551988, 0.04975035857542373, 0.04975487076540739, 0.049783385376847164, 0.049842172045731506, 0.04993942620825296, 0.05008501451001989, 0.05029015107769819, 0.05056700929098489, 0.05092827921626009, 0.05138668747481089, 0.05195450295217929, 0.05264305699126501, 0.053462309066699305, 0.05442048729595493, 0.05552382718098035, 0.056776422403740166, 0.05818018996583554, 0.059734940610009835, 0.06143853631014831, 0.06328711101276975, 0.06527532915245055, 0.06739665825633734, 0.06964363613569398 ], [ 0.07797746339807683, 0.0757593275918543, 0.0736166374023731, 0.07155633926143534, 0.06958561517720634, 0.06771169566595123, 0.06594161492263433, 0.06428191529342012, 0.06273831557198445, 0.061315365193823204, 0.06001611275889903, 0.058841821005493414, 0.05779176008482954, 0.05686310603292162, 0.056050961938331964, 0.05534850677194822, 0.05474726333732893, 0.054237464781678325, 0.05380849066050296, 0.0534493398154744, 0.05314910828449431, 0.0528974450952419, 0.052684965516662394, 0.0525036085153776, 0.05234693147796078, 0.05221033993237677, 0.052091252778583036, 0.051989204579071344, 0.05190588618450932, 0.05184512392343312, 0.051812796348063996, 0.05181668666348906, 0.051866268987779955, 0.05197242792082423, 0.05214711381264061, 0.05240294064483438, 0.05275273924811115, 0.05320908492962664, 0.053783824335384645, 0.05448763016318736, 0.055329612916623305, 0.056317015510337194, 0.05745500930968655, 0.05874660016848493, 0.06019264199220052, 0.06179194530643521, 0.06354146092072198, 0.06543651495795692, 0.06747107129551129, 0.06963800013611915 ], [ 0.08121901692307712, 0.07903454234958897, 0.07692286188332276, 0.0748905198483723, 0.07294419113202459, 0.07109050238633599, 0.06933580716542452, 0.06768592261796329, 0.0661458412259904, 0.06471943674402676, 0.06340918796840375, 0.0622159462159696, 0.061138771558278904, 0.06017485854751782, 0.05931956466451597, 0.05856654502157679, 0.05790798651833574, 0.057334925413549356, 0.056837625611032845, 0.05640599170694329, 0.056029991065509537, 0.055700062241041695, 0.05540749187481173, 0.05514474759392597, 0.05490575942866683, 0.05468614618055431, 0.054483385720643755, 0.05429692939560568, 0.05412826081054631, 0.053980898614665415, 0.053860341972889504, 0.05377395661521087, 0.05373079915694531, 0.053741378178756134, 0.05381735265825616, 0.053971171904659415, 0.05421566605395031, 0.05456360197339772, 0.05502722525558422, 0.05561781369850183, 0.05634527002556827, 0.057217780602526705, 0.058241562172221775, 0.05942071061110408, 0.060757155690021006, 0.0622507155809678, 0.06389923618539602, 0.06569879458463074, 0.06764394357226183, 0.06972797507714007 ], [ 0.08448576106239442, 0.08233605406524303, 0.08025631539289653, 0.07825266895233969, 0.07633128177922552, 0.07449819603837833, 0.07275912474896193, 0.07111921889335328, 0.0695828181426745, 0.06815320163827804, 0.06683235837668765, 0.06562079802573831, 0.0645174218971405, 0.06351947011366926, 0.06262255501491938, 0.061820783310308366, 0.06110696153617112, 0.06047287223789577, 0.05990960302563739, 0.05940790786670853, 0.05895857976794623, 0.05855281596789461, 0.05818256017662177, 0.05784081043642929, 0.05752188507829748, 0.05722164247179637, 0.05693765251853226, 0.056669319061670644, 0.05641795269891655, 0.056186793135868725, 0.05598097951410591, 0.05580746644417585, 0.05567488313267601, 0.05559333337396269, 0.05557413559925167, 0.05562950486077051, 0.05577218261964483, 0.056015025275431424, 0.05637056795446396, 0.056850585255817744, 0.05746567431069485, 0.05822488654566073, 0.05913543221636491, 0.060202476024624696, 0.06142903367642567, 0.062815969488514, 0.06436208582632073, 0.06606428781362005, 0.06791780238775615, 0.06991642962771076 ], [ 0.0877699576325275, 0.08565581587129369, 0.08360866825697118, 0.08163421167531464, 0.0797381147539159, 0.07792586213954487, 0.07620257058216065, 0.074572784190892, 0.07304025975871334, 0.07160775614973282, 0.0702768438667445, 0.06904775155904722, 0.06791926503682646, 0.06688869124028576, 0.06595189482069211, 0.06510340910928043, 0.06433661709631246, 0.06364399249816993, 0.06301738680670019, 0.06244834585463546, 0.0619284389896819, 0.06144958518030279, 0.061004362787361266, 0.06058629273532707, 0.060190087842685445, 0.059811863686885736, 0.05944930831805403, 0.059101809299415234, 0.05877053698526529, 0.058458482796752045, 0.05817045073963964, 0.05791299978929392, 0.057694334339260356, 0.057524139978662875, 0.05741336273280908, 0.05737393182675294, 0.0574184291587835, 0.05755971295045262, 0.05781050814224052, 0.05818298137300091, 0.058688322871116964, 0.0593363602183042, 0.06013522878310249, 0.061091120171702144, 0.062208123511848575, 0.06348816571108894, 0.0649310474890069, 0.06653456359086198, 0.06829468946661682, 0.0702058135513486 ], [ 0.09106424483008407, 0.08898620615897948, 0.08697206738966622, 0.08502710096195902, 0.08315649397926278, 0.0813652054422612, 0.07965780188362678, 0.07803827827673018, 0.07650987379675346, 0.07507489427374808, 0.0737345545991964, 0.07248885458028718, 0.07133650055592457, 0.07027488247234326, 0.06930011228078727, 0.06840712490856231, 0.06758983826551875, 0.066841364416586, 0.06615426072052218, 0.06552080775005413, 0.06493330026014638, 0.06438433820725267, 0.06386710651032604, 0.06337563446322445, 0.06290502803950211, 0.06245167043025569, 0.062013387790526474, 0.061589578227937807, 0.06118130254379277, 0.06079133521341535, 0.06042417371316898, 0.060086003757949695, 0.05978461753262198, 0.05952928184051023, 0.05933055352477367, 0.05920004080814747, 0.059150111549614776, 0.05919355291080081, 0.05934319142263985, 0.059611487517605026, 0.06001012350716375, 0.0605496077660442, 0.06123891951973632, 0.06208521734502699, 0.06309363003907967, 0.06426714134366139, 0.06560657124111263, 0.06711064767281805, 0.06877615506024659, 0.07059814101846552 ], [ 0.0943616663078157, 0.0923200534012198, 0.0903391551147575, 0.08842382898615933, 0.08657880264886698, 0.08480854411578406, 0.0831171157883778, 0.08150801846822019, 0.07998403370665062, 0.07854707446424236, 0.07719805497879405, 0.07593679071839086, 0.07476193818741678, 0.07367098216982021, 0.07266027491749047, 0.07172512815952405, 0.07085995506028579, 0.07005845585239168, 0.06931383821086406, 0.0686190617742909, 0.06796709563890466, 0.06735117806017789, 0.06676506876776891, 0.06620328593381611, 0.06566132162133191, 0.06513583120934249, 0.06462479364759875, 0.06412764032354275, 0.06364535079519819, 0.06318051369193796, 0.06273735080044643, 0.06232170187084148, 0.06194096717008915, 0.061604004485539314, 0.06132097737907903, 0.06110315226666362, 0.060962643585118464, 0.06091210906951293, 0.06096440100752718, 0.061132184029651766, 0.061427535005973845, 0.06186154513359945, 0.06244394732489113, 0.06318279261210022, 0.06408419687933653, 0.06515217382180132, 0.0663885623088648, 0.06779304755177543, 0.06936326715201675, 0.07109498657506373 ], [ 0.09765568985984018, 0.09565064995443563, 0.09370307679727298, 0.09181742765825573, 0.08999799608995585, 0.08824879494229353, 0.08657342736008745, 0.0849749514062569, 0.08345574550984915, 0.08201738311041487, 0.0806605254515359, 0.07938484130348265, 0.07818896138606968, 0.07707047344662692, 0.07602596147456514, 0.07505108966026718, 0.07414072875760275, 0.07328911982433532, 0.07249006818345798, 0.07173715906483892, 0.07102398581950499, 0.07034438179446802, 0.06969264775976759, 0.06906376797797525, 0.0684536093692153, 0.0678590995424836, 0.06727838057326699, 0.06671093620275143, 0.0661576905683277, 0.06562107665495039, 0.06510507243334895, 0.06461520221519347, 0.06415850023521673, 0.0637434330319897, 0.06337977704657516, 0.06307844822640178, 0.06285128155530942, 0.06271076054044537, 0.06266969988215516, 0.06274088875656367, 0.0629367070093211, 0.06326873144820977, 0.06374735343679136, 0.06438143114528366, 0.06517799929062502, 0.06614205562439773, 0.06727643707879438, 0.0685817902859475, 0.0700566325215976, 0.07169749145177551 ], [ 0.10094021722292783, 0.09897175679260643, 0.0970574796122463, 0.0952014608533189, 0.09340758726411903, 0.09167945231950038, 0.09002024272691973, 0.08843262130117942, 0.08691861238987647, 0.08547949686222422, 0.08411572401669017, 0.08282684750818416, 0.08161149149669489, 0.08046735171203663, 0.07939123413577173, 0.07837913171784407, 0.07742633721430092, 0.0765275881032108, 0.07567723782304162, 0.07486944642756063, 0.0740983832217084, 0.07335843400268274, 0.07264440607440288, 0.07195172507840807, 0.07127661871898516, 0.07061628349243017, 0.06996903142602917, 0.06933441449655119, 0.06871332477827269, 0.06810806845429428, 0.06752241163635901, 0.0669615955359512, 0.06643231800594253, 0.06594267795772156, 0.0655020788246667, 0.06512108730003234, 0.06481124426430399, 0.06458482636903509, 0.06445455933693821, 0.0644332877099463, 0.06453361034254433, 0.06476749592250988, 0.06514589744057864, 0.06567838786775225, 0.06637284039238868, 0.0672351747683368, 0.06826918652543065, 0.06947646855756229, 0.07085642607877904, 0.07240637757186229 ], [ 0.10420958649808616, 0.10227760098172689, 0.10039650448881733, 0.09857001053892489, 0.09680162712741765, 0.0950945632421527, 0.09345162938537059, 0.09187513651288791, 0.09036679867653431, 0.08892764523603044, 0.08755794868742275, 0.08625717386310942, 0.08502395346947189, 0.08385609367893217, 0.08275061188232577, 0.08170380688543488, 0.0807113599819282, 0.07976846363892784, 0.07886997315085834, 0.07801057566279164, 0.0771849704838902, 0.07638805458788714, 0.07561510755824577, 0.07486197087068613, 0.07412521718736437, 0.07340230613920438, 0.07269172378690446, 0.07199310349344192, 0.07130732625859319, 0.07063659863549931, 0.06998450617683129, 0.06935603997824652, 0.06875759336528686, 0.06819692520755029, 0.06768308588285789, 0.06722630174000392, 0.0668378142456231, 0.0665296710902547, 0.06631446858548153, 0.06620504782786088, 0.0662141512756235, 0.06635405125954702, 0.06663616690995225, 0.0670706901521807, 0.0676662438249336, 0.06842959477506338, 0.06936544156374054, 0.07047629038902986, 0.07176242484520624, 0.0732219665234779 ], [ 0.10745856860434712, 0.1055628675001669, 0.10371477296048073, 0.10191765858196691, 0.10017468160133577, 0.09848869991675135, 0.09686218517518662, 0.09529713578260525, 0.09379499434252601, 0.09235657442688865, 0.09098200165606336, 0.0896706737637161, 0.08842124363698446, 0.08723162828774114, 0.08609904540576019, 0.08502007768520826, 0.08399076363882252, 0.08300671225777216, 0.0820632377593729, 0.0811555098736756, 0.08027871469230939, 0.07942822103030883, 0.07859974748392973, 0.07778952582474628, 0.07699445695691524, 0.07621225628257058, 0.07544158588150357, 0.074682171343755, 0.07393490134659694, 0.07320190811197017, 0.07248662671087233, 0.07179383081555986, 0.07112964198406069, 0.07050150897192944, 0.06991815302033717, 0.06938947472920301, 0.0689264181943449, 0.06854078880481045, 0.06824502269359625, 0.0680519084846772, 0.06797426571455589, 0.06802458893572663, 0.06821467155324026, 0.06855522813990289, 0.06905553736925786, 0.06972312886618422, 0.07056353555738638, 0.07158012839895854, 0.07277404321116117, 0.07414420088315665 ], [ 0.11068235903477797, 0.10882268678616881, 0.10700737035418101, 0.10523946565613737, 0.1035218065058998, 0.10185693124055745, 0.10024700700037727, 0.09869375501584964, 0.09719838073386539, 0.0957615128821727, 0.0943831555741169, 0.09306265726278734, 0.09179869976317002, 0.09058930970412603, 0.08943189371241532, 0.08832329745783088, 0.08725988750557118, 0.08623765383329088, 0.08525232996593665, 0.08429952702611505, 0.08337487762223769, 0.08247418539772867, 0.08159357620697676, 0.08072964720934221, 0.07987961060877131, 0.07904142923757095, 0.07821394161664574, 0.07739697445991497, 0.07659144078064097, 0.07579942177136673, 0.07502423045411578, 0.07427045474021131, 0.07354397702989242, 0.07285196688023807, 0.07220284267196192, 0.07160619775072226, 0.07107268639221, 0.07061386536575169, 0.07024198808573576, 0.06996975054715478, 0.06980999154032579, 0.0697753539416888, 0.06987791883093837, 0.0701288291463676, 0.07053792367865751, 0.07111340445746332, 0.07186156020875535, 0.07278656518760686, 0.07389036656870547, 0.07517266558135456 ], [ 0.11387656602101216, 0.11205261917050764, 0.11026982647785603, 0.10853094836159305, 0.1068385214740455, 0.1051947940367184, 0.10360166003819228, 0.10206059519943388, 0.10057259796125184, 0.09913813892186991, 0.09775712211176821, 0.09642886121824674, 0.09515207336629673, 0.09392489235291739, 0.0927449023695865, 0.09160919230159226, 0.09051442974201133, 0.08945695298122171, 0.08843287849823363, 0.08743822093702856, 0.08646902222452768, 0.08552148637578713, 0.08459211661194595, 0.0836778516440457, 0.08277619829631976, 0.08188535799590174, 0.08100434498417082, 0.08013309435589677, 0.079272558163879, 0.07842478780821567, 0.07759300074395148, 0.0767816291881154, 0.07599634800664724, 0.07524407835912353, 0.07453296305355743, 0.0738723090350479, 0.07327249216587409, 0.07274481965832727, 0.07230134642637473, 0.07195464344600354, 0.07171751909953034, 0.07160269841599488, 0.07162246986476793, 0.07178831438792772, 0.07211053587992876, 0.07259791540256495, 0.07325741218109419, 0.07409393230642955, 0.07511018105427976, 0.07630660744330614 ], [ 0.11703719604521313, 0.11524863714358967, 0.11349809472520794, 0.11178805540679505, 0.11012078359613262, 0.10849826466974011, 0.10692214792260832, 0.1053936917988182, 0.10391371416562412, 0.10248255050029222, 0.10110002279279195, 0.09976542171592642, 0.09847750418326509, 0.09723450782752889, 0.09603418322881167, 0.09487384395675459, 0.09375043372387477, 0.0926606092386837, 0.09160083674891854, 0.09056749981494275, 0.08955701557095076, 0.08856595661746991, 0.08759117572502537, 0.0866299306835069, 0.08568000686249357, 0.08473983530737778, 0.08380860443711283, 0.08288636358806604, 0.08197411672690222, 0.08107390460504721, 0.08018887342933366, 0.07932332777315886, 0.0784827649619354, 0.07767388757124588, 0.07690459004129295, 0.0761839148404153, 0.0755219732504015, 0.07492982588660548, 0.07441931872651657, 0.07400287192144464, 0.07369322117614481, 0.07350311504622142, 0.07344497596783109, 0.07353053778137758, 0.07377047725337035, 0.07417406075703652, 0.07474882893915868, 0.07550034119344187, 0.0764319978520472, 0.07754495157007667 ], [ 0.12016063747859768, 0.1184071062190423, 0.11668853031029174, 0.11500714348682524, 0.11336496132777542, 0.11176373145831864, 0.11020488419669547, 0.1086894858095062, 0.10721819671994294, 0.10579123707400588, 0.10440836199035147, 0.10306884859338251, 0.10177149656268217, 0.10051464344511352, 0.09929619540117561, 0.09811367343644449, 0.09696427454850312, 0.0958449466454192, 0.09475247560325253, 0.09368358245622965, 0.09263502846985563, 0.09160372573497884, 0.09058685092702368, 0.08958195997462584, 0.0885871015428852, 0.08760092742104728, 0.08662279807369327, 0.08565288173154663, 0.08469224542976381, 0.08374293632139831, 0.08280805138298632, 0.0818917932806063, 0.08099950968544661, 0.08013771274580096, 0.07931407479201692, 0.07853739576182169, 0.07781753741541232, 0.07716531933472708, 0.07659237217439287, 0.07611094486787279, 0.07573366467197061, 0.07547325214008305, 0.07534219726197097, 0.0753524077713572, 0.07551484541529377, 0.07583916999602244, 0.07633341334980627, 0.07700370536204382, 0.07785407124635402, 0.07888631379463591 ], [ 0.12324364298002896, 0.12152476499312895, 0.1198378681721159, 0.11818495331803629, 0.116567809025019, 0.11498796814490694, 0.11344666518677977, 0.11194479651350378, 0.11048288532631247, 0.10906105345696875, 0.10767900190284084, 0.10633600183956589, 0.10503089753554419, 0.10376212218906077, 0.10252772723834246, 0.10132542519001304, 0.10015264550794237, 0.09900660263755354, 0.09788437484048064, 0.09678299220350962, 0.09569953197602703, 0.09463121928275144, 0.09357553124363205, 0.09253030259158875, 0.09149383098542842, 0.09046498033974269, 0.08944328060402532, 0.08842902248838223, 0.08742334562452346, 0.08642831854383703, 0.08544700863184328, 0.08448353987153741, 0.08354313572138924, 0.08263214390932316, 0.08175803930817711, 0.08092940046864984, 0.08015585493772802, 0.0794479883388691, 0.07881721252371883, 0.07827558912816811, 0.07783560676126032, 0.07750991293116594, 0.07731100563109056, 0.07725089402248987, 0.07734074236898919, 0.0775905155717755, 0.07800864749343807, 0.07860175395057724, 0.07937441030893877, 0.08032900900831377 ], [ 0.12628331115974153, 0.12459870486150772, 0.12294320094828277, 0.12131858615066274, 0.11972644234109027, 0.11816810856449934, 0.11664464435031885, 0.11515679590848296, 0.11370496690191971, 0.112289195495243, 0.11090913929558525, 0.10956406962525955, 0.10825287630357076, 0.10697408378062351, 0.1057258790801253, 0.10450615159659553, 0.10331254438262527, 0.1021425161809888, 0.10099341312763142, 0.09986254879201885, 0.09874729104046268, 0.09764515410644672, 0.09655389422241675, 0.09547160719492724, 0.09439682636910571, 0.09332861950466738, 0.09226668314793984, 0.0912114331062668, 0.09016408958785141, 0.08912675544038831, 0.08810248568910681, 0.08709534623086823, 0.08611045908807786, 0.08515403108276474, 0.0842333621972373, 0.08335682931124552, 0.08253384054884441, 0.08177475527022325, 0.08109076497715538, 0.0804937312561729, 0.07999597853996332, 0.07961004204431633, 0.07934837473347695, 0.07922302139555194, 0.07924527245902198, 0.07942531441661661, 0.07977189686325471, 0.08029203742734285, 0.08099078471736917, 0.08187105566215298 ], [ 0.12927706790311963, 0.12762634974064335, 0.1260019573035409, 0.1244054809735917, 0.1228383146214162, 0.12130162257064825, 0.11979630808016307, 0.11832298472399706, 0.1168819521099224, 0.11547317737109426, 0.11409628378517048, 0.11275054772173569, 0.11143490489753138, 0.11014796664157757, 0.10888804655530442, 0.10765319761639898, 0.10644125944053204, 0.10524991510350774, 0.10407675665510965, 0.10291935823850515, 0.10177535557236404, 0.10064253045748803, 0.09951889892973925, 0.09840280168451879, 0.09729299542854017, 0.09618874385218416, 0.09508990693868727, 0.09399702731242505, 0.09291141225645504, 0.09183520988052633, 0.09077147768021371, 0.08972424138791216, 0.0886985415786897, 0.08770046497425414, 0.08673715682144224, 0.08581681016797225, 0.0849486274087297, 0.08414274925544564, 0.08341014644770486, 0.08276247024963898, 0.08221185923444349, 0.08177070217126829, 0.08145136001790206, 0.08126585394993818, 0.081225530679983, 0.08134072048504631, 0.08162040665639031, 0.08207192677350626, 0.0827007256921492, 0.08351017717186608 ], [ 0.1322226476570281, 0.13060543604846256, 0.12901188081014794, 0.12744339254395284, 0.12590119436260552, 0.12438629321844352, 0.12289945290341166, 0.1214411699089291, 0.1200116533749956, 0.1186108103428437, 0.11723823745119297, 0.11589322008313101, 0.1145747397842916, 0.11328149054272492, 0.11201190426002382, 0.11076418546757522, 0.10953635506784806, 0.1083263026245076, 0.10713184650049026, 0.10595080095986767, 0.1047810492129021, 0.10362062129418959, 0.10246777561626542, 0.10132108302605589, 0.10017951219541768, 0.09904251518354268, 0.09791011199991599, 0.09678297295324925, 0.0956624974759985, 0.09455088794968193, 0.09345121681026321, 0.09236748487858004, 0.09130466843952087, 0.09026875209945187, 0.08926674391547731, 0.08830666876620316, 0.0873975355032692, 0.08654927319811005, 0.08577263192036241, 0.08507904411356498, 0.08448044392863596, 0.08398904395730775, 0.08361707171203149, 0.08337647182343476, 0.0832785839864868, 0.08333381070165438, 0.08355129219037204, 0.08393860782296096, 0.08450152339116554, 0.08524380127062078 ], [ 0.13511807490537905, 0.13353399312519998, 0.13197100950860197, 0.13043037031403182, 0.1289131437511737, 0.12742019516600556, 0.12595216398747772, 0.12450944346128948, 0.12309216422222397, 0.12170018273673139, 0.1203330755798487, 0.11899014039594348, 0.1176704042360151, 0.11637263977299661, 0.11509538968146954, 0.11383699924158122, 0.112595657001796, 0.1113694431237152, 0.11015638484497718, 0.1089545183408107, 0.10776195614498349, 0.10657695920666942, 0.10539801260682033, 0.10422390392816269, 0.10305380325575282, 0.10188734376657514, 0.10072470183180281, 0.0995666754882466, 0.09841476002077278, 0.0972712192211314, 0.09613915063990823, 0.0950225428212281, 0.09392632210633259, 0.09285638612495513, 0.09181962059098867, 0.09082389552968911, 0.0898780366607657, 0.08899176744600681, 0.0881756174084299, 0.08744079288769797, 0.0867990075588458, 0.08626227192328241, 0.08584264362543784, 0.08555194377863687, 0.08540144826238129, 0.08540156676492025, 0.08556152562356455, 0.0858890726255837, 0.08639022230422497, 0.08706905854768408 ], [ 0.13796164599952912, 0.13641032421800345, 0.13487765622608947, 0.1333647382849607, 0.13187249826458236, 0.13040167423358362, 0.1289527948544939, 0.12752616247074605, 0.12612183978739858, 0.12473964102564472, 0.12337912837046454, 0.12203961443254621, 0.12072017131377441, 0.1194196467065558, 0.11813668727952824, 0.11686976941534692, 0.11561723718038941, 0.11437734723080548, 0.11314832020228367, 0.1119283979979504, 0.1107159062826539, 0.10950932141214448, 0.10830734096873082, 0.10710895703421566, 0.1059135312969162, 0.10472087105122113, 0.10353130509255577, 0.10234575842458167, 0.10116582456587393, 0.09999383405851639, 0.09883291753182237, 0.09768706135637206, 0.09656115353883074, 0.0954610170690014, 0.09439342746330937, 0.0933661107975269, 0.09238771815209805, 0.09146777219650205, 0.09061658172861674, 0.08984512049156794, 0.08916486764551326, 0.0885876089814257, 0.08812520037300138, 0.0877892980128021, 0.08759106346996982, 0.08754085518084342, 0.08764792114076111, 0.08792010973088477, 0.08836361625136824, 0.0889827814806299 ], [ 0.14075191146100935, 0.13923298810923798, 0.13773038969282975, 0.13624507578741082, 0.13477784729679862, 0.13332932804841763, 0.13189994820379472, 0.13048993025210814, 0.12909927836311255, 0.1277277718534209, 0.12637496346628044, 0.12504018308097575, 0.1237225473572012, 0.12242097568731693, 0.12113421268211692, 0.11986085726109033, 0.11859939826397102, 0.11734825635387885, 0.11610583184961189, 0.11487055800975149, 0.11364095919618511, 0.11241571326871308, 0.11119371750241898, 0.10997415726976008, 0.1087565766820841, 0.10754095033103361, 0.1063277551983022, 0.10511804170140272, 0.10391350270239419, 0.102716539116235, 0.10153032050815147, 0.10035883876194512, 0.09920695253634382, 0.09808041981644143, 0.09698591543620792, 0.09593103003647724, 0.09492424659063158, 0.09397489045880514, 0.0930930490229243, 0.09228945742581574, 0.09157534790551812, 0.09096226177689078, 0.09046182530962725, 0.09008549353850749, 0.08984426924872435, 0.08974840769624794, 0.08980712061179764, 0.09002829518317314, 0.09041824452001232, 0.09098150522200173 ], [ 0.14348765883689188, 0.14200078143618133, 0.14052801647040428, 0.13907019917075136, 0.13762801575987743, 0.13620198770107686, 0.13479245774786644, 0.1333995784612165, 0.1320233038651211, 0.13066338488947338, 0.1293193692018626, 0.12799060595827125, 0.12667625590944487, 0.1253753071892574, 0.12408659698888001, 0.12280883919199832, 0.12154065791764254, 0.12028062679395551, 0.11902731367294188, 0.11777933039591024, 0.11653538713317302, 0.11529435074877269, 0.11405530657866277, 0.1128176229540326, 0.11158101774370777, 0.11034562612281464, 0.10911206869016458, 0.10788151894474642, 0.10665576898319373, 0.10543729208710652, 0.10422930062592682, 0.10303579740562532, 0.10186161824952092, 0.10071246321690232, 0.0995949134707379, 0.0985164304349977, 0.09748533358927206, 0.09651075310696094, 0.09560255364422325, 0.09477122603381173, 0.09402774453484675, 0.09338338872158823, 0.09284953110044199, 0.09243739408608573, 0.09215778289925881, 0.09202080400147236, 0.09203558147187839, 0.09220998580322054, 0.0925503904989616, 0.09306147125400001 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.33834 (SEM: 0)
x1: 0.520121
x2: 0.56451
x3: 0.463311
x4: 0.854645
x5: 0.442079
x6: 0.24786", "Arm 10_0
l2norm: 1.58487 (SEM: 0)
x1: 0.654027
x2: 0.53009
x3: 0.280559
x4: 0.767185
x5: 0.633093
x6: 0.857299", "Arm 11_0
l2norm: 1.64924 (SEM: 0)
x1: 0.988632
x2: 0.414808
x3: 0.793026
x4: 0.861748
x5: 0.38466
x6: 0.225989", "Arm 12_0
l2norm: 1.00184 (SEM: 0)
x1: 0.32919
x2: 0.0609424
x3: 0.15992
x4: 0.517931
x5: 0.262061
x6: 0.727396", "Arm 13_0
l2norm: 1.00708 (SEM: 0)
x1: 0.30418
x2: 0.065447
x3: 0.160912
x4: 0.448855
x5: 0.209716
x6: 0.803778", "Arm 14_0
l2norm: 0.94727 (SEM: 0)
x1: 0.25439
x2: 0.135706
x3: 0.103883
x4: 0.45936
x5: 0.183895
x6: 0.747375", "Arm 15_0
l2norm: 1.08535 (SEM: 0)
x1: 0.281821
x2: 0.0307016
x3: 0.116187
x4: 0.54834
x5: 0.184394
x6: 0.865703", "Arm 16_0
l2norm: 0.981549 (SEM: 0)
x1: 0.32857
x2: 0.0703583
x3: 0.188458
x4: 0.424926
x5: 0.238912
x6: 0.75985", "Arm 17_0
l2norm: 0.959612 (SEM: 0)
x1: 0.350501
x2: 0.0752834
x3: 0.22081
x4: 0.380157
x5: 0.25911
x6: 0.72933", "Arm 18_0
l2norm: 0.912844 (SEM: 0)
x1: 0.362513
x2: 0.0718014
x3: 0.246187
x4: 0.318689
x5: 0.276292
x6: 0.676909", "Arm 19_0
l2norm: 0.849822 (SEM: 0)
x1: 0.346962
x2: 0.0539948
x3: 0.229261
x4: 0.258723
x5: 0.274662
x6: 0.63558", "Arm 1_0
l2norm: 1.82915 (SEM: 0)
x1: 0.981024
x2: 0.990254
x3: 0.322903
x4: 0.977798
x5: 0.432948
x6: 0.393665", "Arm 20_0
l2norm: 0.892639 (SEM: 0)
x1: 0.356877
x2: 0.0728134
x3: 0.318401
x4: 0.297039
x5: 0.261627
x6: 0.637245", "Arm 21_0
l2norm: 0.901317 (SEM: 0)
x1: 0.433172
x2: 0.0619654
x3: 0.292759
x4: 0.29454
x5: 0.240672
x6: 0.624907", "Arm 22_0
l2norm: 0.911383 (SEM: 0)
x1: 0.323668
x2: 0.107886
x3: 0.324027
x4: 0.292964
x5: 0.31108
x6: 0.653166", "Arm 23_0
l2norm: 0.908695 (SEM: 0)
x1: 0.260923
x2: 0.108402
x3: 0.347032
x4: 0.288039
x5: 0.338514
x6: 0.654144", "Arm 24_0
l2norm: 0.916654 (SEM: 0)
x1: 0.233778
x2: 0.17192
x3: 0.348594
x4: 0.261123
x5: 0.316666
x6: 0.682689", "Arm 25_0
l2norm: 0.94852 (SEM: 0)
x1: 0.255449
x2: 0.102892
x3: 0.377802
x4: 0.236611
x5: 0.328763
x6: 0.719058", "Arm 26_0
l2norm: 0.902294 (SEM: 0)
x1: 0.225291
x2: 0.205351
x3: 0.379593
x4: 0.260913
x5: 0.320843
x6: 0.637262", "Arm 27_0
l2norm: 0.921056 (SEM: 0)
x1: 0.200771
x2: 0.184147
x3: 0.40611
x4: 0.290496
x5: 0.306636
x6: 0.656344", "Arm 28_0
l2norm: 0.896166 (SEM: 0)
x1: 0.121394
x2: 0.143877
x3: 0.428325
x4: 0.288635
x5: 0.29985
x6: 0.641089", "Arm 2_0
l2norm: 1.3912 (SEM: 0)
x1: 0.972735
x2: 0.269433
x3: 0.821132
x4: 0.467754
x5: 0.0160413
x6: 0.152753", "Arm 3_0
l2norm: 1.31021 (SEM: 0)
x1: 0.741795
x2: 0.436468
x3: 0.471613
x4: 0.662252
x5: 0.142551
x6: 0.542754", "Arm 4_0
l2norm: 1.59164 (SEM: 0)
x1: 0.97486
x2: 0.716346
x3: 0.160395
x4: 0.329067
x5: 0.734143
x6: 0.629946", "Arm 5_0
l2norm: 1.36698 (SEM: 0)
x1: 0.0106245
x2: 0.276293
x3: 0.79798
x4: 0.538783
x5: 0.706059
x6: 0.60548", "Arm 6_0
l2norm: 1.54072 (SEM: 0)
x1: 0.482116
x2: 0.0976002
x3: 0.796983
x4: 0.22529
x5: 0.997678
x6: 0.671225", "Arm 7_0
l2norm: 1.63675 (SEM: 0)
x1: 0.934072
x2: 0.25213
x3: 0.0745047
x4: 0.936178
x5: 0.925068
x6: 0.0719297", "Arm 8_0
l2norm: 1.05739 (SEM: 0)
x1: 0.381106
x2: 0.116609
x3: 0.195239
x4: 0.547182
x5: 0.307989
x6: 0.725849", "Arm 9_0
l2norm: 1.46656 (SEM: 0)
x1: 0.700815
x2: 0.612732
x3: 0.759378
x4: 0.0453937
x5: 0.0112251
x6: 0.839867" ], "type": "scatter", "x": [ 0.5201213955879211, 0.6540268240496516, 0.9886318789795041, 0.3291900736272408, 0.30418000348225377, 0.25439019782073036, 0.2818212740543817, 0.32857009669039855, 0.3505010558669389, 0.36251331992355423, 0.3469618485177505, 0.9810235192999244, 0.3568765719857234, 0.43317224186739955, 0.32366805012104716, 0.2609234447336215, 0.23377758869029028, 0.25544851248149025, 0.22529131087597012, 0.20077079317566962, 0.12139364084394769, 0.9727348070591688, 0.7417948422953486, 0.9748596828430891, 0.010624509304761887, 0.48211614042520523, 0.9340720316395164, 0.38110622111707926, 0.7008149353787303 ], "xaxis": "x", "y": [ 0.5645101070404053, 0.5300895357504487, 0.41480783093720675, 0.06094240928307713, 0.06544701918154586, 0.13570609934795055, 0.030701642392336297, 0.07035829835196712, 0.07528339117969156, 0.07180139381645063, 0.053994781172355275, 0.9902544226497412, 0.07281343672398156, 0.06196542841942193, 0.10788594000547123, 0.10840157355223352, 0.17191992293839015, 0.10289181816992808, 0.2053510490049847, 0.18414731315311933, 0.14387662163998938, 0.2694327924400568, 0.4364676708355546, 0.7163457497954369, 0.27629290614277124, 0.09760016202926636, 0.2521300548687577, 0.11660931445658207, 0.6127321626991034 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.33834 (SEM: 0)
x1: 0.520121
x2: 0.56451
x3: 0.463311
x4: 0.854645
x5: 0.442079
x6: 0.24786", "Arm 10_0
l2norm: 1.58487 (SEM: 0)
x1: 0.654027
x2: 0.53009
x3: 0.280559
x4: 0.767185
x5: 0.633093
x6: 0.857299", "Arm 11_0
l2norm: 1.64924 (SEM: 0)
x1: 0.988632
x2: 0.414808
x3: 0.793026
x4: 0.861748
x5: 0.38466
x6: 0.225989", "Arm 12_0
l2norm: 1.00184 (SEM: 0)
x1: 0.32919
x2: 0.0609424
x3: 0.15992
x4: 0.517931
x5: 0.262061
x6: 0.727396", "Arm 13_0
l2norm: 1.00708 (SEM: 0)
x1: 0.30418
x2: 0.065447
x3: 0.160912
x4: 0.448855
x5: 0.209716
x6: 0.803778", "Arm 14_0
l2norm: 0.94727 (SEM: 0)
x1: 0.25439
x2: 0.135706
x3: 0.103883
x4: 0.45936
x5: 0.183895
x6: 0.747375", "Arm 15_0
l2norm: 1.08535 (SEM: 0)
x1: 0.281821
x2: 0.0307016
x3: 0.116187
x4: 0.54834
x5: 0.184394
x6: 0.865703", "Arm 16_0
l2norm: 0.981549 (SEM: 0)
x1: 0.32857
x2: 0.0703583
x3: 0.188458
x4: 0.424926
x5: 0.238912
x6: 0.75985", "Arm 17_0
l2norm: 0.959612 (SEM: 0)
x1: 0.350501
x2: 0.0752834
x3: 0.22081
x4: 0.380157
x5: 0.25911
x6: 0.72933", "Arm 18_0
l2norm: 0.912844 (SEM: 0)
x1: 0.362513
x2: 0.0718014
x3: 0.246187
x4: 0.318689
x5: 0.276292
x6: 0.676909", "Arm 19_0
l2norm: 0.849822 (SEM: 0)
x1: 0.346962
x2: 0.0539948
x3: 0.229261
x4: 0.258723
x5: 0.274662
x6: 0.63558", "Arm 1_0
l2norm: 1.82915 (SEM: 0)
x1: 0.981024
x2: 0.990254
x3: 0.322903
x4: 0.977798
x5: 0.432948
x6: 0.393665", "Arm 20_0
l2norm: 0.892639 (SEM: 0)
x1: 0.356877
x2: 0.0728134
x3: 0.318401
x4: 0.297039
x5: 0.261627
x6: 0.637245", "Arm 21_0
l2norm: 0.901317 (SEM: 0)
x1: 0.433172
x2: 0.0619654
x3: 0.292759
x4: 0.29454
x5: 0.240672
x6: 0.624907", "Arm 22_0
l2norm: 0.911383 (SEM: 0)
x1: 0.323668
x2: 0.107886
x3: 0.324027
x4: 0.292964
x5: 0.31108
x6: 0.653166", "Arm 23_0
l2norm: 0.908695 (SEM: 0)
x1: 0.260923
x2: 0.108402
x3: 0.347032
x4: 0.288039
x5: 0.338514
x6: 0.654144", "Arm 24_0
l2norm: 0.916654 (SEM: 0)
x1: 0.233778
x2: 0.17192
x3: 0.348594
x4: 0.261123
x5: 0.316666
x6: 0.682689", "Arm 25_0
l2norm: 0.94852 (SEM: 0)
x1: 0.255449
x2: 0.102892
x3: 0.377802
x4: 0.236611
x5: 0.328763
x6: 0.719058", "Arm 26_0
l2norm: 0.902294 (SEM: 0)
x1: 0.225291
x2: 0.205351
x3: 0.379593
x4: 0.260913
x5: 0.320843
x6: 0.637262", "Arm 27_0
l2norm: 0.921056 (SEM: 0)
x1: 0.200771
x2: 0.184147
x3: 0.40611
x4: 0.290496
x5: 0.306636
x6: 0.656344", "Arm 28_0
l2norm: 0.896166 (SEM: 0)
x1: 0.121394
x2: 0.143877
x3: 0.428325
x4: 0.288635
x5: 0.29985
x6: 0.641089", "Arm 2_0
l2norm: 1.3912 (SEM: 0)
x1: 0.972735
x2: 0.269433
x3: 0.821132
x4: 0.467754
x5: 0.0160413
x6: 0.152753", "Arm 3_0
l2norm: 1.31021 (SEM: 0)
x1: 0.741795
x2: 0.436468
x3: 0.471613
x4: 0.662252
x5: 0.142551
x6: 0.542754", "Arm 4_0
l2norm: 1.59164 (SEM: 0)
x1: 0.97486
x2: 0.716346
x3: 0.160395
x4: 0.329067
x5: 0.734143
x6: 0.629946", "Arm 5_0
l2norm: 1.36698 (SEM: 0)
x1: 0.0106245
x2: 0.276293
x3: 0.79798
x4: 0.538783
x5: 0.706059
x6: 0.60548", "Arm 6_0
l2norm: 1.54072 (SEM: 0)
x1: 0.482116
x2: 0.0976002
x3: 0.796983
x4: 0.22529
x5: 0.997678
x6: 0.671225", "Arm 7_0
l2norm: 1.63675 (SEM: 0)
x1: 0.934072
x2: 0.25213
x3: 0.0745047
x4: 0.936178
x5: 0.925068
x6: 0.0719297", "Arm 8_0
l2norm: 1.05739 (SEM: 0)
x1: 0.381106
x2: 0.116609
x3: 0.195239
x4: 0.547182
x5: 0.307989
x6: 0.725849", "Arm 9_0
l2norm: 1.46656 (SEM: 0)
x1: 0.700815
x2: 0.612732
x3: 0.759378
x4: 0.0453937
x5: 0.0112251
x6: 0.839867" ], "type": "scatter", "x": [ 0.5201213955879211, 0.6540268240496516, 0.9886318789795041, 0.3291900736272408, 0.30418000348225377, 0.25439019782073036, 0.2818212740543817, 0.32857009669039855, 0.3505010558669389, 0.36251331992355423, 0.3469618485177505, 0.9810235192999244, 0.3568765719857234, 0.43317224186739955, 0.32366805012104716, 0.2609234447336215, 0.23377758869029028, 0.25544851248149025, 0.22529131087597012, 0.20077079317566962, 0.12139364084394769, 0.9727348070591688, 0.7417948422953486, 0.9748596828430891, 0.010624509304761887, 0.48211614042520523, 0.9340720316395164, 0.38110622111707926, 0.7008149353787303 ], "xaxis": "x2", "y": [ 0.5645101070404053, 0.5300895357504487, 0.41480783093720675, 0.06094240928307713, 0.06544701918154586, 0.13570609934795055, 0.030701642392336297, 0.07035829835196712, 0.07528339117969156, 0.07180139381645063, 0.053994781172355275, 0.9902544226497412, 0.07281343672398156, 0.06196542841942193, 0.10788594000547123, 0.10840157355223352, 0.17191992293839015, 0.10289181816992808, 0.2053510490049847, 0.18414731315311933, 0.14387662163998938, 0.2694327924400568, 0.4364676708355546, 0.7163457497954369, 0.27629290614277124, 0.09760016202926636, 0.2521300548687577, 0.11660931445658207, 0.6127321626991034 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "l2norm" }, "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": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x=\"x1\", param_y=\"x2\", metric_name=\"l2norm\"))" ] }, { "cell_type": "markdown", "id": "f2f55fd2", "metadata": { "papermill": { "duration": 0.065493, "end_time": "2024-07-23T19:35:32.235050", "exception": false, "start_time": "2024-07-23T19:35:32.169557", "status": "completed" }, "tags": [] }, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "id": "bc19ce1a", "metadata": { "execution": { "iopub.execute_input": "2024-07-23T19:35:32.367775Z", "iopub.status.busy": "2024-07-23T19:35:32.367307Z", "iopub.status.idle": "2024-07-23T19:35:32.417000Z", "shell.execute_reply": "2024-07-23T19:35:32.416311Z" }, "papermill": { "duration": 0.118003, "end_time": "2024-07-23T19:35:32.418484", "exception": false, "start_time": "2024-07-23T19:35:32.300481", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -1.3476186848464113, -1.3476186848464113, -1.3476186848464113, -1.3476186848464113, -1.4933700338266076, -1.553568613977363, -1.553568613977363, -1.553568613977363, -1.97975073950328, -2.3885886454764287, -2.729667652676127, -2.729667652676127, -2.8010008405869753, -2.8010008405869753, -3.0331075958894984, -3.115323699248514, -3.1649037671752884, -3.1649037671752884, -3.1799183232050936, -3.261047538637134, -3.261047538637134, -3.2688254112934363 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -1.3476186848464113, -1.3476186848464113, -1.3476186848464113, -1.3476186848464113, -1.4933700338266076, -1.553568613977363, -1.553568613977363, -1.553568613977363, -1.97975073950328, -2.3885886454764287, -2.729667652676127, -2.729667652676127, -2.8010008405869753, -2.8010008405869753, -3.0331075958894984, -3.115323699248514, -3.1649037671752884, -3.1649037671752884, -3.1799183232050936, -3.261047538637134, -3.261047538637134, -3.2688254112934363 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -0.28597123000112445, -1.3476186848464113, -1.3476186848464113, -1.3476186848464113, -1.3476186848464113, -1.4933700338266076, -1.553568613977363, -1.553568613977363, -1.553568613977363, -1.97975073950328, -2.3885886454764287, -2.729667652676127, -2.729667652676127, -2.8010008405869753, -2.8010008405869753, -3.0331075958894984, -3.115323699248514, -3.1649037671752884, -3.1649037671752884, -3.1799183232050936, -3.261047538637134, -3.261047538637134, -3.2688254112934363 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "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": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple\n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array(\n", " [[trial.objective_mean for trial in experiment.trials.values()]]\n", ")\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.14" }, "papermill": { "default_parameters": {}, "duration": 151.069513, "end_time": "2024-07-23T19:35:34.675159", "environment_variables": {}, "exception": null, "input_path": "/tmp/tmp.DL1QmpHQMI/Ax-main/tutorials/gpei_hartmann_loop.ipynb", "output_path": "/tmp/tmp.DL1QmpHQMI/Ax-main/tutorials/gpei_hartmann_loop.ipynb", "parameters": {}, "start_time": "2024-07-23T19:33:03.605646", "version": "2.6.0" } }, "nbformat": 4, "nbformat_minor": 5 }