{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:21:32.259768Z", "iopub.status.busy": "2022-12-29T21:21:32.259410Z", "iopub.status.idle": "2022-12-29T21:21:34.931849Z", "shell.execute_reply": "2022-12-29T21:21:34.931198Z" } }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:34] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true, "execution": { "iopub.execute_input": "2022-12-29T21:21:34.992192Z", "iopub.status.busy": "2022-12-29T21:21:34.991316Z", "iopub.status.idle": "2022-12-29T21:21:34.995838Z", "shell.execute_reply": "2022-12-29T21:21:34.995290Z" } }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:21:34.998404Z", "iopub.status.busy": "2022-12-29T21:21:34.997778Z", "iopub.status.idle": "2022-12-29T21:23:46.764860Z", "shell.execute_reply": "2022-12-29T21:23:46.764244Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] 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 12-29 21:21:35] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning:\n", "\n", "In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning.\n", "\n", "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:47] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:21:54] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:02] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:10] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:20] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:28] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:37] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:46] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:22:54] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:01] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:08] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:14] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:19] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:25] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:31] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:36] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-29 21:23:41] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:23:46.768727Z", "iopub.status.busy": "2022-12-29T21:23:46.767564Z", "iopub.status.idle": "2022-12-29T21:23:46.776137Z", "shell.execute_reply": "2022-12-29T21:23:46.775623Z" } }, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.15987122390002484,\n", " 'x2': 0.16264215268809964,\n", " 'x3': 0.6554046172897687,\n", " 'x4': 0.3208931917266156,\n", " 'x5': 0.28074845522590525,\n", " 'x6': 0.727408997961325}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:23:46.779496Z", "iopub.status.busy": "2022-12-29T21:23:46.778629Z", "iopub.status.idle": "2022-12-29T21:23:46.784252Z", "shell.execute_reply": "2022-12-29T21:23:46.783761Z" } }, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -2.808040254603555, 'l2norm': 1.0920110125619271}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:23:46.787584Z", "iopub.status.busy": "2022-12-29T21:23:46.786740Z", "iopub.status.idle": "2022-12-29T21:23:46.792166Z", "shell.execute_reply": "2022-12-29T21:23:46.791664Z" } }, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:23:46.795482Z", "iopub.status.busy": "2022-12-29T21:23:46.794627Z", "iopub.status.idle": "2022-12-29T21:23:47.638752Z", "shell.execute_reply": "2022-12-29T21:23:47.638186Z" } }, "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.0248927010526083, -2.092257758277903, -2.1546545672093633, -2.21108119298927, -2.260556422068773, -2.302157592865508, -2.3350626428191754, -2.3585929429606853, -2.3722520409493177, -2.375754916691176, -2.369043329710462, -2.3522851996369867, -2.3258588830753153, -2.290325617548725, -2.2463946062435944, -2.1948851830459257, -2.1366896526902552, -2.0727392626008116, -2.0039746965890743, -1.9313216521936856, -1.8556714986120393, -1.777866669187277, -1.6986902618531317, -1.618859249024921, -1.539020694154365, -1.4597504069893559, -1.3815535247156272, -1.3048665697515711, -1.2300605998190386, -1.1574451278497184, -1.0872725460651291, -1.0197428391570984, -0.9550084156110679, -0.8931789240223993, -0.8343259531820952, -0.7784875413129171, -0.7256724417354052, -0.6758641100534345, -0.6290243922578405, -0.5850969044906691, -0.5440101040679295, -0.5056800581379788, -0.47001292140761375, -0.43690713799495684, -0.4062553849164723, -0.37794627619485555, -0.3518658472632673, -0.32789883939455045, -0.305929803436234, -0.28584404130393104 ], [ -2.0496795164249075, -2.1186264602553386, -2.182513828516532, -2.2403010238229393, -2.2909661843615288, -2.3335460479562524, -2.36718087165006, -2.3911607627626514, -2.404967944942073, -2.408308714057492, -2.401129909490084, -2.383617546561075, -2.356178759576531, -2.319411007099503, -2.2740637560566808, -2.2209976344831706, -2.1611449248228953, -2.0954739073301027, -2.024958364944499, -1.9505526797511628, -1.8731723817850157, -1.7936796859882267, -1.712873397349973, -1.6314825161566402, -1.5501628909691827, -1.4694963173677777, -1.38999154734268, -1.3120867463433774, -1.236153005942993, -1.1624985862627673, -1.0913736219657935, -1.0229750781045996, -0.957451787385591, -0.8949094388689276, -0.8354154203364524, -0.7790034432097996, -0.7256779006876714, -0.6754179273762366, -0.6281811427417623, -0.583907071786836, -0.5425202449363687, -0.5039329856404419, -0.46804789901477806, -0.43476007824303986, -0.40395904770618507, -0.3755304630897095, -0.3493575892261921, -0.3253225763106111, -0.3033075545143943, -0.2831955660414095 ], [ -2.0714254082796986, -2.141807189739877, -2.207042325602233, -2.2660539190563913, -2.3177819777278836, -2.361225164659833, -2.395488461538215, -2.419832931423876, -2.4337215021538694, -2.4368536139049164, -2.4291827341500403, -2.410914079325734, -2.382484039965316, -2.3445260257997917, -2.297828738474487, -2.2432924060771744, -2.181887089009595, -2.114615575439263, -2.042482066605836, -1.9664669334141136, -1.8875072636313663, -1.8064826189585141, -1.7242052933363525, -1.6414143403765764, -1.5587726731425495, -1.4768666047738628, -1.3962072761459179, -1.3172334966482246, -1.2403156005398879, -1.165759991238027, -1.093814108013415, -1.0246716035886994, -0.9584775673108412, -0.8953336674676555, -0.8353031186643851, -0.778415406753783, -0.7246707254032927, -0.6740440957228271, -0.6264891541382156, -0.5819416044715575, -0.5403223384915512, -0.5015402354555809, -0.4654946557395866, -0.43207764683739547, -0.40117588205224963, -0.3726723533031202, -0.3464478398000822, -0.32238217405692104, -0.3003553259390225, -0.28024832431189173 ], [ -2.089922938587364, -2.1615733246540705, -2.2279936525025743, -2.2880735844968862, -2.3407182069407444, -2.3848914976431015, -2.41966652789802, -2.4442784723651316, -2.458173766796758, -2.461047318793221, -2.4528609160661006, -2.433839872209902, -2.4044498112829955, -2.3653591325273093, -2.3173939696236454, -2.2614916912850838, -2.1986572393524932, -2.129924788040161, -2.056325788442495, -1.9788635222438513, -1.898493743796462, -1.8161107192406034, -1.7325378725574416, -1.6485222491777256, -1.5647320616969096, -1.4817566612085684, -1.400108365283313, -1.3202256604122602, -1.242477377851858, -1.1671675148773304, -1.0945404376081254, -1.0247862568154513, -0.9580462149503434, -0.8944179617856992, -0.8339606284042398, -0.7766996356684299, -0.7226311946293849, -0.6717264733582053, -0.6239354181211068, -0.5791902272838787, -0.5374084843447456, -0.4984959624933033, -0.4623491174350053, -0.42885728819818947, -0.39790462749235356, -0.36937178411120486, -0.3431373600402504, -0.3190791644844312, -0.29707528610920475, -0.27700500351114843 ], [ -2.1049779594353204, -2.17771247499198, -2.245136489684945, -2.30610953179161, -2.3595056421522713, -2.4042583827095463, -2.4394133010024914, -2.4641838647537817, -2.478003676750528, -2.4805659636061215, -2.471842641165211, -2.452079729892112, -2.421771468729202, -2.3816195108531613, -2.3324847933491535, -2.2753385812109954, -2.211217111322151, -2.141182249251779, -2.0662890728135, -1.987560349683455, -1.9059673559580417, -1.8224162434786053, -1.737739093437392, -1.6526888171649037, -1.5679371358750829, -1.4840749623659242, -1.4016146038611432, -1.320993297979872, -1.2425776790062362, -1.1666688473586369, -1.0935077809623701, -1.0232808834050242, -0.9561255110114707, -0.8921353602202932, -0.8313656288523796, -0.77383789100596, -0.7195446463050486, -0.6684535209037785, -0.620511110742687, -0.5756464676977224, -0.5337742369891115, -0.49479745996364144, -0.4586100604850989, -0.42509903595003196, -0.3941463756226097, -0.36563072974463007, -0.3394288528891659, -0.31541684443314744, -0.29347120795795534, -0.273469749970615 ], [ -2.1164119487394513, -2.190029333253525, -2.2582580626100643, -2.3199312246670525, -2.3738963001554874, -2.4190615526736425, -2.454450420446638, -2.4792599061503533, -2.4929153284780803, -2.4951116160396585, -2.4858326969106503, -2.465345555178196, -2.4341717649019485, -2.3930436828213253, -2.3428535862854614, -2.2846026265884154, -2.2193540965677148, -2.1481933309084167, -2.072195002498125, -1.9923976362669404, -1.9097846688944782, -1.8252711741086467, -1.7396953290640513, -1.6538137408729217, -1.5682998381289173, -1.4837446341568086, -1.400659272393125, -1.3194788622366185, -1.2405672023073753, -1.164222065954992, -1.0906807909442275, -1.0201259720805769, -0.9526911030228543, -0.888466052716768, -0.8275022938573819, -0.7698178265981621, -0.7154017613421038, -0.6642185407480525, -0.6162117938235028, -0.5713078247996201, -0.5294187469320584, -0.4904452768780935, -0.45427920921698317, -0.4208055932851855, -0.3899046360155696, -0.36145335508494814, -0.33532700654551895, -0.3114003103846168, -0.28954849625499324, -0.2696481900690677 ], [ -2.124063996447401, -2.1983481410079833, -2.2671672030925762, -2.329331848048917, -2.383668009143917, -2.429064533786716, -2.464529125984662, -2.4892485790216288, -2.502645328524662, -2.504419876787777, -2.4945700753712092, -2.473383734530347, -2.4414078064951164, -2.3994020031887784, -2.3482856894635287, -2.2890851888604864, -2.22288602510082, -2.1507923158451785, -2.0738939450362444, -1.9932412091847325, -1.9098261660433566, -1.8245697321549452, -1.7383135538052175, -1.6518157365958142, -1.5657496172008196, -1.480704871769867, -1.3971903654094955, -1.3156382493852754, -1.236408904080507, -1.1597964053651835, -1.0860342600629036, -1.0153012134456656, -0.9477269792158989, -0.8833977814326707, -0.8223616294872353, -0.7646332726496081, -0.710198800915471, -0.6590198747857094, -0.611037578990608, -0.5661759046824032, -0.5243448718026346, -0.48544330861636076, -0.4493613091369132, -0.41598239161167994, -0.38518538261696245, -0.3568460517948846, -0.3308385220097665, -0.30703647884394525, -0.2853142020241056, -0.26554743969492345 ], [ -2.1277923968966945, -2.202514689746171, -2.2716968787693004, -2.334131499020212, -2.388628382014054, -2.4340634745144083, -2.4694359317027956, -2.4939294572054314, -2.506969724382451, -2.5082670690372835, -2.497835149194052, -2.4759820673701456, -2.4432775678847447, -2.4005046557511394, -2.348604842578978, -2.2886243084652333, -2.2216654896048746, -2.1488462146768605, -2.0712669050489305, -1.9899854349938912, -1.9059988024396355, -1.8202305997585582, -1.7335232696403375, -1.6466342053606016, -1.5602348632263772, -1.4749121731858077, -1.391171648668973, -1.3094417023758471, -1.2300787683100198, -1.1533729112508107, -1.0795536735151243, -1.0087959662772725, -0.9412258601210797, -0.876926168191059, -0.8159417465537455, -0.7582844613566326, -0.7039377921448005, -0.6528610561965906, -0.6049932507657374, -0.5602565193303437, -0.518559254885882, -0.4797988584062174, -0.4438641741667386, -0.4106376259355812, -0.37999707929750737, -0.35181745574809953, -0.3259721238294627, -0.3023340916071261, -0.2807770233421991, -0.2611761014207912 ], [ -2.1274758593999454, -2.202397843707547, -2.271706134096946, -2.3341796751299513, -2.388617983843761, -2.4338910885638247, -2.4689973611759237, -2.493125140987765, -2.505709943908909, -2.5064764249028957, -2.4954558443149804, -2.4729757089812, -2.4396254552029033, -2.396206755261084, -2.343677791936368, -2.2830988216245833, -2.215583494375764, -2.1422579807230093, -2.0642283432335127, -1.982555681387308, -1.8982381466283476, -1.8121987773077644, -1.7252781108812973, -1.6382306148004022, -1.5517240935559404, -1.466341353098672, -1.3825835228440668, -1.3008745437067435, -1.2215664257752001, -1.1449449609706848, -1.071235645002086, -1.0006096202960535, -0.9331894987079961, -0.8690549611014767, -0.8082480616585753, -0.7507781892832502, -0.6966266577827129, -0.6457509116127607, -0.5980883456579116, -0.5535597464511561, -0.5120723689534029, -0.4735226679270037, -0.43779870637269425, -0.40478226570145126, -0.374350683475294, -0.3463784448322801, -0.3207385532497816, -0.29730370522844995, -0.27594729192677747, -0.256544248874516 ], [ -2.1230144030971165, -2.1978906466800296, -2.267081482358991, -2.3293570485254347, -2.383512597201995, -2.428419501592114, -2.463083405568829, -2.4867052666963265, -2.4987372089479805, -2.4989227038186823, -2.487312261767951, -2.464251631197209, -2.430346494202068, -2.386412200426827, -2.3334177840484993, -2.2724314945241693, -2.2045722443931037, -2.1309689758079715, -2.052728344122996, -1.9709102131706437, -1.8865100308368, -1.8004470127900034, -1.7135570763108863, -1.626589556105671, -1.5402068548671426, -1.4549863088311064, -1.3714236701896316, -1.2899377181551523, -1.210875606582511, -1.1345186381767225, -1.0610882242732986, -0.9907518462724749, -0.9236288815067738, -0.8597961940960477, -0.7992934215940595, -0.7421279122259863, -0.6882792863844688, -0.637703610760876, -0.590337184851715, -0.546099948260061, -0.5048985237343816, -0.4666289156584357, -0.43117888703480955, -0.39843004012418415, -0.3682596269931484, -0.3405421164336341, -0.31515054317878655, -0.2919576641817091, -0.27083694507545164, -0.25166339792931125 ], [ -2.114330034403883, -2.188911125206815, -2.257737864627612, -2.3195766215714926, -2.3732246253893967, -2.417561949333926, -2.4516095370924114, -2.4745888111422225, -2.4859750617897154, -2.4855348453879884, -2.4733393586838224, -2.4497512486071713, -2.4153888411511097, -2.3710760302917353, -2.317786744969907, -2.256591014923577, -2.1886069466519773, -2.1149605843250923, -2.0367540497523238, -1.9550414550728967, -1.870811654260161, -1.7849767579759908, -1.6983653512189612, -1.6117194449445917, -1.5256943157284368, -1.4408605167633746, -1.3577074663394035, -1.2766481306059965, -1.198024413791897, -1.1221129510832857, -1.0491310679773562, -0.9792427265249853, -0.9125643249974206, -0.8491702546907633, -0.7890981472574808, -0.7323537694275539, -0.6789155403964922, -0.6287386614910322, -0.5817588587893979, -0.53789574782887, -0.4970558358951087, -0.4591351820484906, -0.4240217382961986, -0.3915973973845104, -0.3617397737297424, -0.33432374416734, -0.3092227746013031, -0.28631005740523807, -0.2654594826939407, -0.2465464644880454 ], [ -2.1013673036348752, -2.1754029036259626, -2.243619310304755, -2.3047844082853994, -2.357703766356215, -2.4012734210405418, -2.434537311559776, -2.456744659326998, -2.4673999196801275, -2.4662965406121233, -2.453527562869699, -2.429471090416934, -2.394754510289414, -2.350205192900467, -2.296796068603366, -2.2355927766101633, -2.167706569116027, -2.0942549289953325, -2.0163303192812565, -1.9349765869750057, -1.8511721097661278, -1.7658186258328448, -1.679734697315178, -1.5936528474833858, -1.5082195335184714, -1.4239972456174153, -1.3414681457026252, -1.2610387693044902, -1.1830454100644716, -1.1077598877136872, -1.0353954682982405, -0.9661127612856444, -0.9000254635825814, -0.8372058569900911, -0.777689994681165, -0.7214825352239279, -0.6685612006432362, -0.618880848992522, -0.5723771627059326, -0.5289699622658182, -0.4885661609563635, -0.451062381058252, -0.4163472550501347, -0.3843034374232005, -0.3548093537389385, -0.3277407136937932, -0.3029718143161373, -0.28037665813271617, -0.25982990933583616, -0.24120770880245512 ], [ -2.084093807407645, -2.1573357036713467, -2.2246993868491267, -2.284959753015172, -2.336937097713556, -2.379550417120095, -2.4118737519761284, -2.433190641221391, -2.4430398647851366, -2.4412449169563386, -2.4279214930858153, -2.4034616602189285, -2.3684984289262476, -2.323857808643284, -2.2705060720606207, -2.209498495367416, -2.1419335811620286, -2.0689147013500175, -1.9915196199746799, -1.9107774718287387, -1.8276523310418966, -1.7430323443104627, -1.6577234047493963, -1.5724464254808024, -1.4878373898451562, -1.4044494811670394, -1.3227567155986477, -1.2431586102953367, -1.1659855137233073, -1.091504305114805, -1.0199242369172574, -0.9514027489623855, -0.8860511275981634, -0.8239399187525114, -0.7651040322997548, -0.7095474974958929, -0.6572478467849654, -0.6081601189285135, -0.5622204829723323, -0.5193494926746034, -0.47945498716511104, -0.44243465814797667, -0.40817830716094194, -0.3765698184495012, -0.34748887404324913, -0.32081243775049995, -0.29641603412607265, -0.27417484713613105, -0.2539646613763552, -0.23566266644490697 ], [ -2.0625006707905773, -2.1347057481777183, -2.2009814549246918, -2.2601153225092254, -2.3109486608263214, -2.352429991695213, -2.3836697833112295, -2.4039913998083047, -2.4129720924000857, -2.410467776351215, -2.3966171989874727, -2.371824844869459, -2.3367261170377915, -2.2921411614551293, -2.239024295091694, -2.178414787357719, -2.111392770308785, -2.039042174386172, -1.962421196789642, -1.8825399488867502, -1.8003444823893515, -1.7167062214077666, -1.6324158161112012, -1.5481805069131518, -1.4646241986484165, -1.3822895650817393, -1.3016416209052628, -1.2230723042591998, -1.1469057051147835, -1.0734036532581912, -1.0027714449448355, -0.9351635409221998, -0.8706891119943561, -0.809417343167959, -0.7513824351245153, -0.6965882636080057, -0.645012674433864, -0.5966114051719039, -0.5513216349152326, -0.5090651715380157, -0.4697512919368698, -0.433279255286633, -0.39954051256383205, -0.36842063767027766, -0.3398010065488972, -0.3135602508292593, -0.28957551187443686, -0.2677235197415053, -0.2478815196505535, -0.2299280662364369 ], [ -2.036603038272662, -2.107536074100806, -2.1724987189263114, -2.2302967732592025, -2.2797986019746084, -2.319988241894957, -2.3500180143253706, -2.369255517026674, -2.377319537720474, -2.3740999441915465, -2.3597584618068326, -2.3347103573061956, -2.299590400363265, -2.255208747696627, -2.202502900952746, -2.1424909060809973, -2.076229282309982, -2.004777506474074, -1.9291696009307602, -1.8503925512647021, -1.769370834517221, -1.686956153452469, -1.6039214460728624, -1.5209582998239508, -1.4386770003765452, -1.3576085581893622, -1.27820816726159, -1.2008596521574448, -1.1258805484889778, -1.0535275379644906, -0.9840020224978682, -0.9174556739663083, -0.8539958384638595, -0.7936907078087883, -0.7365741980270305, -0.6826504958184573, -0.631898250722537, -0.5842744037691348, -0.5397176535891448, -0.49815156886622036, -0.45948736208402385, -0.4236263440859399, -0.3904620822397621, -0.359882287140027, -0.33177045389564863, -0.30600728423301937, -0.28247191499197766, -0.261042977218354, -0.2415995081014508, -0.22402173562779082 ], [ -2.00644063675513, -2.075876809205746, -2.139314123448442, -2.1955821610572883, -2.243581988735065, -2.2823384518923913, -2.311050189230797, -2.3291323331028093, -2.336247199895422, -2.3323192855664105, -2.3175327025478323, -2.2923117140087026, -2.2572875903558463, -2.213256741789354, -2.161135466731717, -2.101915863646358, -2.0366260587961986, -1.9662964696483904, -1.891932678653032, -1.8144947248256706, -1.7348821850006328, -1.6539242215337906, -1.572373731351705, -1.4909047764011325, -1.4101125634887175, -1.3305153450816236, -1.2525577164706971, -1.1766148808271348, -1.1029975386124755, -1.0319571305630681, -0.9636912244513293, -0.8983488860818475, -0.8360359158385775, -0.7768198649494042, -0.7207347718072159, -0.6677855793967455, -0.6179522111884399, -0.5711932956736471, -0.5274495397633122, -0.4866467591263788, -0.44869857963058535, -0.41350882866813254, -0.38097363850520594, -0.35098328602143847, -0.3234237943978545, -0.29817832255120935, -0.275128367489087, -0.2541548033864117, -0.23513877920158577, -0.21796249422701752 ], [ -1.9720785249305894, -2.0398055528215657, -2.101520265102868, -2.156081297888478, -2.2024275524710912, -2.2396291980771137, -2.2669346750068557, -2.283808878662355, -2.2899586204518547, -2.285342860680559, -2.2701669595335057, -2.2448621766600603, -2.210053512729327, -2.166520205038812, -2.1151534338652374, -2.056915155841553, -1.9928008476295673, -1.923807740722241, -1.850909129198751, -1.775034633946989, -1.6970558907778275, -1.617776929366198, -1.5379284533813804, -1.4581652612536364, -1.3790661207294028, -1.3011355024250544, -1.2248066724819473, -1.1504457337638159, -1.0783562848524575, -1.0087844350221085, -0.9419239714795934, -0.8779215232641016, -0.8168816054611753, -0.7588714590585093, -0.7039256270939179, -0.6520502278596776, -0.6032269018426473, -0.5574164216535012, -0.5145619641280381, -0.474592051612468, -0.4374231755717255, -0.40296212036361556, -0.37110800848376924, -0.34175409092284037, -0.3147893075674819, -0.2900996428903482, -0.26756930159542414, -0.24708172752409718, -0.2285204871293125, -0.21177003636468816 ], [ -1.9336081666702756, -1.999428058780281, -2.059239580629224, -2.111935373665494, -2.1564967156381014, -2.192042794605964, -2.217874365099558, -2.233507289958686, -2.23869287186312, -2.2334235603462824, -2.2179242602022193, -2.1926309630856164, -2.1581596643478753, -2.115269287216287, -2.064822435721948, -2.007747275340631, -1.9450029400391315, -1.8775498824957753, -1.8063257362524718, -1.732226639481791, -1.6560935823603902, -1.5787031395708295, -1.5007618804359688, -1.4229037623810707, -1.3456898720205883, -1.2696099574557915, -1.195085280082764, -1.1224723956847176, -1.0520675484338684, -0.9841114258770942, -0.9187940777551645, -0.8562598471504543, -0.7966121999159828, -0.7399183687104216, -0.6862137523659061, -0.6355060308017166, -0.5877789712082822, -0.5429959135682265, -0.5011029334093925, -0.4620316875086775, -0.42570195445512615, -0.3920238867898458, -0.3608999950283577, -0.33222688633560304, -0.30589678202828985, -0.2817988384829878, -0.25982029550750074, -0.23984747489706737, -0.22176664989408013, -0.20546480378203158 ], [ -1.8911489220859994, -1.9548793877220363, -2.012625054272037, -2.063317148581806, -2.1059832440429367, -2.139794417740207, -2.164105305419433, -2.178482965611842, -2.182722269518674, -2.176847402918696, -2.161100551575079, -2.1359198850869663, -2.101909652877291, -2.0598055708837806, -2.0104386444994393, -1.9547001443396872, -1.8935097527695124, -1.827788119435545, -1.758434363683595, -1.6863085270071232, -1.612218626455329, -1.5369117650816269, -1.4610686772979402, -1.3853010855800079, -1.310151288494843, -1.2360934659380165, -1.1635362611713667, -1.0928262720405726, -1.0242521509273863, -0.9580490724002517, -0.8944033785468309, -0.8334572548524747, -0.77531332493808, -0.7200390814077386, -0.667671093459578, -0.6182189507286526, -0.5716689179215451, -0.5279872869106835, -0.48712342269093634, -0.4490125074322707, -0.41357799312905874, -0.380733778276075, -0.35038612773017797, -0.3224353575235013, -0.2967773079266406, -0.2733046285659173, -0.2519078989484207, -0.23247660644810875, -0.21490000180881064, -0.19906784971431157 ], [ -1.844849930882283, -1.9063255605037281, -1.9618615359793072, -2.010431855983467, -2.051113686965393, -2.083132063015448, -2.1058961611297278, -2.1190235359470098, -2.122350836059125, -2.1159314965775087, -2.10002218828853, -2.07506042271418, -2.0416359473100743, -2.000458605846753, -1.9523252001628044, -1.8980875389217702, -1.8386233314881797, -1.77481098351778, -1.7075087876121977, -1.6375385518839765, -1.5656733971250065, -1.492629269182535, -1.4190596295594815, -1.345552773403134, -1.2726312533730957, -1.200752940474976, -1.130313315271104, -1.0616486464577362, -0.9950397737690401, -0.9307162660747719, -0.8688607724323232, -0.809613423690991, -0.75307617548679, -0.6993170108330182, -0.6483739428269804, -0.600258776086539, -0.5549606001713512, -0.512449000106367, -0.47267697876387227, -0.4355835937021164, -0.4010963174095895, -0.36913313496179634, -0.3396043969762612, -0.3124144485096675, -0.2874630562110023, -0.2646466566623169, -0.24385944846748286, -0.2249943493948261, -0.2079438378968258, -0.19260069581622308 ], [ -1.7948921974119247, -1.8539655410364757, -1.9071675215004955, -1.9535186858055316, -1.9921484831457787, -2.0223372070108088, -2.0435483786304296, -2.0554484793727306, -2.0579133402166567, -2.051022491940727, -2.0350438230405605, -2.0104111130787716, -1.9776968573514582, -1.9375825912944544, -1.8908287131897645, -1.8382455232531076, -1.7806668116768158, -1.7189268773554927, -1.6538414171312004, -1.5861923545878267, -1.5167164073579393, -1.4460970228243455, -1.3749592271164928, -1.3038669088057775, -1.233322075400742, -1.1637656606751847, -1.0955795118990617, -1.029089240205275, -0.9645676697722827, -0.9022386695728295, -0.8422811939111292, -0.7848333945224459, -0.7299966978579475, -0.6778397668401301, -0.6284022875100581, -0.5816985382976487, -0.537720713799517, -0.49644198654401483, -0.45781929975306346, -0.42179589195774814, -0.3883035607576223, -0.35726467820081675, -0.3285939742932841, -0.30220010805874287, -0.2779870473834697, -0.2558552796156308, -0.23570287460458283, -0.21742642066488327, -0.20092185199071044, -0.18608518353383152 ], [ -1.741490526135693, -1.7980331718349358, -1.8487969976516583, -1.8928524376014935, -1.929383313657191, -1.9577257536865076, -1.9773966297308707, -1.988108989447781, -1.9897745417316992, -1.9824951964290962, -1.9665464212207686, -1.9423550325570598, -1.91047357907241, -1.871553097840587, -1.8263157804999284, -1.7755288705368342, -1.7199808416591238, -1.6604605781714592, -1.5977399389412885, -1.532559787768581, -1.4656193447846102, -1.3975685625854353, -1.3290031481882274, -1.2604618218318753, -1.1924254097588272, -1.1253173965284593, -1.0595056026630447, -0.9953046982846767, -0.9329793082225212, -0.8727475061161556, -0.8147845328832741, -0.7592266079969775, -0.7061747303166372, -0.6556983890511896, -0.6078391252985507, -0.5626139010645876, -0.5200182462853212, -0.4800291656705965, -0.4426077965879607, -0.4077018170431991, -0.3752476093189657, -0.3451721901428002, -0.3173949224351923, -0.2918290267550897, -0.2683829125156467, -0.24696134989943475, -0.22746650320957473, -0.20979884525298265, -0.19385797042499853, -0.17954332166224052 ], [ -1.6848948498196425, -1.7387985434448607, -1.787040779134841, -1.8287447279874312, -1.863150064711172, -1.889648630543363, -1.9078089297648466, -1.917387531822478, -1.9183281443766285, -1.9107509246804244, -1.8949350502162465, -1.8712970982445811, -1.840367103249379, -1.80276368853529, -1.7591694263928654, -1.7103074246427918, -1.6569199534685777, -1.5997496909433004, -1.5395239092502337, -1.4769416874750922, -1.4126640486445294, -1.3473067879358962, -1.281435681982434, -1.2155637356025435, -1.1501501201011928, -1.0856004756667967, -1.0222682806856667, -0.9604570267331033, -0.9004229753080556, -0.8423783083616803, -0.7864945177759991, -0.7329059084237388, -0.6817131150659326, -0.6329865552450973, -0.5867697588388824, -0.5430825304811393, -0.5019239140922805, -0.4632749397160669, -0.42710114210055594, -0.39335484826601697, -0.3619772378617999, -0.3329001855325072, -0.3060478988307772, -0.2813383684273352, -0.25868464946271363, -0.23799599386193948, -0.21917885333410814, -0.20213777170445546, -0.18677618333856982, -0.17299713193530175 ], [ -1.6253904734720934, -1.676568241513756, -1.722226707348291, -1.761544065966958, -1.7938166835173153, -1.818491320665129, -1.8351857524140902, -1.843696478378416, -1.8439949268316376, -1.8362151443975083, -1.8206360910413992, -1.79766091767969, -1.7677947870430941, -1.7316223003159608, -1.6897853798767235, -1.6429623533261741, -1.5918488625500684, -1.5371410535724301, -1.4795213108015874, -1.4196466159711298, -1.3581394608326383, -1.2955811329906695, -1.2325071254223425, -1.1694043858441776, -1.1067101139042053, -1.0448118241680382, -0.9840484142801837, -0.9247120053122078, -0.8670503514060346, -0.8112696458487417, -0.7575375790812406, -0.7059865299571318, -0.6567167944405456, -0.6097997758169914, -0.565281077564865, -0.5231834545951766, -0.4835095909620809, -0.4462446827184525, -0.4113588136346553, -0.3788091192410551, -0.3485417412427776, -0.32049357986182725, -0.2945938560996353, -0.27076549926017, -0.24892637729828615, -0.2289903886501914, -0.21086843419765022, -0.1944692870117941, -0.17970037568041242, -0.1664684945675442 ], [ -1.5632968345552696, -1.611683996067707, -1.6547181637316188, -1.6916341916454036, -1.721785291914141, -1.7446716984345303, -1.7599575467153106, -1.767475289614163, -1.7672196043162005, -1.7593340564723594, -1.7440935919135199, -1.7218849771086344, -1.693186438404564, -1.6585472834749375, -1.6185681245413388, -1.5738822594809911, -1.5251386859166842, -1.4729871007961006, -1.418065093752264, -1.3609876027020331, -1.3023385821444442, -1.2426647459447082, -1.1824711873958442, -1.1222186464370076, -1.0623221818254351, -1.003151009342481, -0.9450292808361007, -0.8882375990042506, -0.8330150861704426, -0.7795618496148722, -0.7280417097485659, -0.678585079584344, -0.6312919040452224, -0.5862345854675233, -0.5434608372364748, -0.5029964210119472, -0.4648477347040574, -0.42900422849916364, -0.39544063504300575, -0.3641190075312051, -0.33499056604366584, -0.30799735802723704, -0.28307374336859914, -0.26014771796265623, -0.2391420920245796, -0.2199755405940279, -0.20256354376597263, -0.18681923324751548, -0.17265416004975753, -0.1599789957047939 ], [ -1.4989645428425213, -1.5445194446281785, -1.5849105590525006, -1.6194302996124852, -1.6474881581962952, -1.668635774058406, -1.6825802920025277, -1.68918593137268, -1.6884661670128636, -1.6805699149700928, -1.6657646217920745, -1.6444180690160086, -1.6169798473291968, -1.5839630591337368, -1.5459267011649973, -1.5034591465102336, -1.4571630872568853, -1.407642204758207, -1.3554897250881788, -1.3012789125581699, -1.2455554653610648, -1.1888317087382698, -1.1315824327620025, -1.0742421920222958, -1.0172038703171997, -0.9608183115975214, -0.9053948256823601, -0.8512023907155056, -0.7984713915097421, -0.7473957518742762, -0.6981353382919869, -0.650818530915102, -0.605544875166578, -0.5623877429617146, -0.5213969466131152, -0.48260126091397315, -0.4460108198555788, -0.411619364097475, -0.37940632383371786, -0.34933872920382936, -0.32137294694559415, -0.29545624758563416, -0.2715282120737511, -0.249521990325842, -0.22936542658508752, -0.21098206780944373, -0.19429207146571914, -0.17921302824677676, -0.16566071349429434, -0.15354977873485665 ], [ -1.4327706820239765, -1.4754749802846543, -1.513225758602851, -1.5453730990738044, -1.5713814783546476, -1.5908513064846097, -1.603529066972286, -1.6093065227911194, -1.6082117115995527, -1.6003951174393083, -1.5861136618794218, -1.5657139989062936, -1.5396158026413325, -1.5082954310092382, -1.4722702973023134, -1.4320842709718844, -1.3882943819623543, -1.341459025546959, -1.292127780314988, -1.240832875346742, -1.188082278803377, -1.134354329774152, -1.0800937976337943, -1.0257092274786903, -0.9715714153058046, -0.9180128510146132, -0.8653279693124515, -0.8137740563318101, -0.7635726714336997, -0.7149114576927219, -0.6679462296464882, -0.6228032420755252, -0.5795815581959425, -0.5383554492984918, -0.4991767703667963, -0.46207726751820344, -0.4270707832879036, -0.39415533491778243, -0.3633150490107776, -0.3345219432368882, -0.3077375522495511, -0.28291440056569583, -0.259997329816094, -0.2389246914015657, -0.21962941811894565, -0.20203998970407144, -0.18608130749091278, -0.17167549259260206, -0.158742620336225, -0.14720140136067217 ], [ -1.3651125870117864, -1.4049709352708593, -1.4401047298710967, -1.4699210293828504, -1.4939373095577047, -1.51179963990967, -1.5232899858118114, -1.528323550830097, -1.5269390703552497, -1.5192853301467022, -1.5056062562144676, -1.486225750338517, -1.4615327360244499, -1.431966662536418, -1.398003711232493, -1.3601439524930647, -1.3188996598035407, -1.2747849209755104, -1.2283066208722802, -1.1799568157567382, -1.13020647644482, -1.0795005430906617, -1.028254206893456, -0.9768503128735341, -0.9256377632335347, -0.8749307926634952, -0.825008984779317, -0.7761179017996513, -0.7284702064174764, -0.682247164412193, -0.6376004277786458, -0.5946540101147841, -0.5535063780318012, -0.5142325939719093, -0.4768864567750416, -0.4415025965059679, -0.40809848941493854, -0.3766763674837552, -0.34722500484152596, -0.319721370437388, -0.2941321427144338, -0.2704150875828327, -0.24852030565387195, -0.2283913583689957, -0.2099662852479578, -0.19317852593385199, -0.1779577610359343, -0.16423068504611726, -0.1519217229943357, -0.14095370024477794 ], [ -1.2964005075208833, -1.3334395874751173, -1.3659989763646552, -1.3935412607310744, -1.4156343302687517, -1.4319664518178303, -1.4423511676115504, -1.44672326390155, -1.4451287741995187, -1.4377120981448497, -1.4247022855226545, -1.4063993949416211, -1.383161214749969, -1.355390488590182, -1.3235228194290136, -1.2880154403297261, -1.2493370030447681, -1.2079584780114705, -1.1643452087725514, -1.1189501275264102, -1.072208112584605, -1.0245314476363871, -0.9763063240871478, -0.9278903110768559, -0.8796107040407788, -0.8317636528607586, -0.7846139652806263, -0.7383954802247288, -0.6933119083948667, -0.6495380432031586, -0.6072212528406968, -0.5664831732705924, -0.5274215315064774, -0.49011203820488247, -0.45461029804065345, -0.42095369536151517, -0.3891632211418632, -0.3592452152397211, -0.3311930053871517, -0.30498843118499175, -0.28060324757390076, -0.2580004077289373, -0.23713522996540548, -0.2179564569302458, -0.20040721798231065, -0.1844259071720854, -0.16994698961649934, -0.15690174840420257, -0.1452189826221344, -0.1348256648965246 ], [ -1.227049688566996, -1.2613166163546685, -1.2913614779862435, -1.3167002797821243, -1.3369482769141117, -1.351832271411317, -1.3611935617242876, -1.3649829921185241, -1.3632509969332807, -1.3561354780325483, -1.3438492967992577, -1.3266680866855487, -1.3049185447746428, -1.2789672616077776, -1.2492101995934577, -1.2160629526423252, -1.1799518894829322, -1.1413062359553623, -1.100551114540188, -1.058101537739347, -1.0143573395907068, -0.9696990196251621, -0.9244844624259614, -0.8790464833742606, -0.8336911386147532, -0.7886967264907032, -0.7443133999331268, -0.7007633050889888, -0.6582411607654917, -0.616915195571873, -0.5769283642831318, -0.5383997712314008, -0.5014262358259148, -0.4660839431160462, -0.43243013028478805, -0.40050476785697675, -0.3703322020807559, -0.34192273230480363, -0.3152741041599564, -0.29037290589448383, -0.2671958612181491, -0.2457110173703393, -0.22587883170996848, -0.207653163796219, -0.19098218257300592, -0.17580919981380982, -0.16207344141934954, -0.14971076756169666, -0.1386543511909858, -0.12883532229529926 ], [ -1.1574724213487013, -1.1890326483613358, -1.2166378593967848, -1.2398548463817418, -1.258342879082767, -1.2718635884147609, -1.280282407502984, -1.2835630983220025, -1.2817580905132082, -1.2749972026116374, -1.263476301751527, -1.2474464684681168, -1.2272037407870122, -1.2030794308004196, -1.175431062300523, -1.1446340062921834, -1.1110738714543753, -1.0751396723669049, -1.0372177745794786, -0.9976866064045674, -0.956912125762365, -0.9152440289815985, -0.8730126833286398, -0.8305267559637378, -0.7880715007529078, -0.7459076530981501, -0.704270873462226, -0.6633716735900557, -0.6233957558989538, -0.584504695947659, -0.5468368998310895, -0.5105087722040174, -0.4756160358465692, -0.44223514976219636, -0.4104247793698096, -0.3802272791432747, -0.35167015487708375, -0.3247674794825198, -0.299521242736724, -0.2759226216131757, -0.2539531635971155, -0.23358588059739982, -0.2147862555577048, -0.19751316749605863, -0.18171974333628138, -0.16735414645689362, -0.15436031235874847, -0.14267864130995822, -0.13224665641787192, -0.1229996335291117 ], [ -1.0880705508827249, -1.1170054320634186, -1.1422583704606413, -1.1634439332572881, -1.1802619119483897, -1.192505154685684, -1.200059893399846, -1.2029000713827034, -1.2010781601335871, -1.194714760794083, -1.1839883643854403, -1.1691257537784565, -1.1503930755767007, -1.1280875240465207, -1.1025296254406487, -1.0740561426887894, -1.0430136136085102, -1.0097525168250088, -0.9746220494655734, -0.9379655025053564, -0.9001162267305224, -0.8613941874517499, -0.8221031056563469, -0.7825281770919426, -0.7429343507385773, -0.7035651367174105, -0.6646419030115607, -0.626363611818789, -0.5889069405632863, -0.5524267296442364, -0.5170566986108768, -0.4829103741709351, -0.4500821767638671, -0.41864861690470756, -0.3886695577503234, -0.36018950606527844, -0.33323889975022625, -0.30783536617338536, -0.28398493157366156, -0.2616831676457214, -0.24091626692814994, -0.22166204363818842, -0.20389086096401032, -0.1875664893779515, -0.17264690313510056, -0.15908502368418198, -0.1468294192213544, -0.1358249691260104, -0.12601350067753347, -0.1173344034847228 ], [ -1.0192288008225392, -1.045633014637821, -1.068631048457219, -1.0878820034844334, -1.1031226963326073, -1.114173780718966, -1.1209392902094077, -1.1234010126461411, -1.1216099089381784, -1.1156766024781515, -1.1057621666734805, -1.0920696504231455, -1.074836353119732, -1.0543267546481347, -1.0308260328481187, -1.0046341324733783, -0.9760603562409216, -0.9454184460278197, -0.9130221259381351, -0.8791810908352826, -0.8441974381569792, -0.8083625511134048, -0.7719544445387425, -0.7352355807937951, -0.6984511542211407, -0.6618278313392589, -0.6255729225300717, -0.5898739510364484, -0.5548985775237966, -0.5207948335597137, -0.48769161501280456, -0.45569938622786876, -0.42491104747767805, -0.39540292120087417, -0.3672358165443599, -0.34045613643509254, -0.3150969965704977, -0.29117933114475814, -0.268712965649723, -0.24769764254218696, -0.22812399078654266, -0.20997443508722768, -0.19322404483924538, -0.1778413262757974, -0.16378896383700792, -0.1510245183286577, -0.139501089960259, -0.12916795390552271, -0.11997117475668784, -0.11185420436164595 ], [ -0.9513091318756014, -0.975288110974329, -0.9961362149401194, -1.0135537325505364, -1.0273111086463425, -1.0372536559437942, -1.0433005714647843, -1.0454395299762613, -1.043718779967932, -1.0382385131343066, -1.029142611801986, -1.0166111948121799, -1.0008539765107276, -0.982104321454238, -0.9606138794888249, -0.9366477134921055, -0.9104798502664144, -0.8823891983776867, -0.8526557937364848, -0.8215573548781908, -0.7893661502287578, -0.7563461940320961, -0.7227507936342018, -0.6888204688504892, -0.6547812563058919, -0.6208434005959722, -0.587200422270026, -0.5540285417371005, -0.521486429290377, -0.48971524498605945, -0.4588389281266705, -0.42896469435894535, -0.40018369855650215, -0.37257182334393835, -0.3461905559834365, -0.3210879200875195, -0.2972994329910559, -0.2748490643982521, -0.2537501769260019, -0.23400643420949285, -0.21561266713454363, -0.1985556933222441, -0.18281508902374455, -0.1683639159072764, -0.1551694076861173, -0.1431936230470634, -0.13239407186462326, -0.12272432127927468, -0.11413458701376955, -0.10657231350690699 ], [ -0.8846462225746199, -0.906313708922371, -0.9251222960415014, -0.9408101072954841, -0.9531779849926426, -0.9620930472044869, -0.9674873686610361, -0.9693529020706653, -0.9677342878399948, -0.9627210862405214, -0.9544404268626643, -0.9430504857833966, -0.9287348186214006, -0.9116974214756319, -0.8921583675402192, -0.8703498874260818, -0.8465127877110536, -0.8208931291775656, -0.793739115240192, -0.7652981706386202, -0.7358142161663426, -0.7055251630598698, -0.6746606590619488, -0.6434401178502641, -0.612071056714167, -0.5807477567532597, -0.5496502478970606, -0.5189436095368833, -0.48877756768205693, -0.45928636187985294, -0.4305888498208307, -0.4027888144622048, -0.3759754373709938, -0.3502239024918369, -0.32559609636098186, -0.30214137362678795, -0.279897360343606, -0.25889077165459307, -0.23913822496445558, -0.22064703432512134, -0.20341597631669295, -0.18743602199863918, -0.17269103333311298, -0.15915842565629956, -0.14680980014265288, -0.135611551667572, -0.12552545799418846, -0.11650925583636551, -0.10851720821129018, -0.10150066579002293 ], [ -0.8195440681661907, -0.8390198588073816, -0.8559028628669714, -0.869965750047736, -0.8810367302885246, -0.8890021658074881, -0.8938050507416873, -0.8954403193560945, -0.8939483760461708, -0.8894081651041015, -0.8819306720863982, -0.8716532562035904, -0.8587348583102747, -0.8433519555406229, -0.8256950856061724, -0.805965774306991, -0.7843737306014962, -0.761134210808719, -0.7364654925193139, -0.7105864356296203, -0.6837141383212066, -0.6560617167115166, -0.6278362473996296, -0.5992369133397524, -0.5704533877255986, -0.5416644805505437, -0.5130370606581671, -0.4847252542870081, -0.4568699105795885, -0.4295983159455615, -0.40302413279099847, -0.3772475339151623, -0.3523555016354727, -0.32842226015765397, -0.30550981057386317, -0.2836685398705092, -0.2629378782078934, -0.2433469822655252, -0.2249154264132993, -0.20765388765939596, -0.19156481452938612, -0.17664307403640633, -0.1628765745014672, -0.15024686498798245, -0.13872971436693238, -0.12829567442588208, -0.11891063193906548, -0.11053635426959163, -0.10313103199946161, -0.09664982046821591 ], [ -0.7562736368056351, -0.7736815484318815, -0.7887547567221004, -0.8012973022452379, -0.8111619458678068, -0.818252007209408, -0.8225197339616765, -0.8239620196757731, -0.822614637964985, -0.8185461169160587, -0.811852045916377, -0.8026501969408587, -0.7910765188987868, -0.7772818816469054, -0.7614293793657873, -0.7436920030351122, -0.7242505231055426, -0.7032914671912618, -0.6810051239538123, -0.657583547000724, -0.633218567034882, -0.6080998441167744, -0.582413004374571, -0.5563379082213292, -0.5300470925294735, -0.503704419950116, -0.4774639570674687, -0.4514690912319177, -0.4258518850066736, -0.40073265794453305, -0.3762197782173362, -0.3524096414973473, -0.3293868113086018, -0.3072242936073305, -0.28598391836152914, -0.2657168021245361, -0.24646386779310536, -0.22825640067592823, -0.21111662345292992, -0.19505827636022954, -0.18008719277277863, -0.16620186405837056, -0.15339399093221684, -0.14164902135851776, -0.1309466771668828, -0.12126147287089595, -0.1125632306545914, -0.1048175951680872, -0.09798655075867302, -0.09202894223855373 ], [ -0.6950714934592265, -0.7105375500026684, -0.7239171666176967, -0.7350427227061518, -0.7437889251784349, -0.750074012737839, -0.753858074943532, -0.7551391777460126, -0.7539482694441704, -0.7503438186601709, -0.7444068798107424, -0.7362369427931029, -0.7259486342208801, -0.7136691558325825, -0.6995362660039274, -0.6836966004872018, -0.6663041575499643, -0.647518819291113, -0.6275048318056, -0.6064292136644898, -0.584460099766021, -0.5617650536201511, -0.5385093954796344, -0.5148545980002398, -0.4909567977520335, -0.46696546256332117, -0.4430222437451845, -0.419260030598931, -0.3958022135721929, -0.37276215281223934, -0.3502428410739926, -0.3283367440951648, -0.3071257975873567, -0.2866815377431938, -0.2670653414096684, -0.24832875259599196, -0.2305138735385026, -0.21365380091036268, -0.19777309071661875, -0.1828882387346492, -0.1690081668234774, -0.15613470881233094, -0.14426309277650207, -0.13338241912462623, -0.12347613589822826, -0.1145225139156586, -0.10649512483709822, -0.09936332491817224, -0.09309274626223274, -0.0876457959447593 ], [ -0.6361392895251352, -0.6497901254372127, -0.6615915401673266, -0.671401382226649, -0.6791139036744396, -0.6846604448519829, -0.688007742561899, -0.6891544462749248, -0.6881266522914163, -0.6849732565906539, -0.6797617291127593, -0.6725746338949198, -0.6635069649295997, -0.6526641933647074, -0.6401608352857098, -0.6261193313590505, -0.6106690545676852, -0.5939453087465565, -0.5760882334222275, -0.5572415796558141, -0.5375513614152161, -0.5171644149755111, -0.4962269149507684, -0.4748829013989735, -0.45327287043530895, -0.4315324735275241, -0.4097913604670056, -0.3881721897768986, -0.3667898193720851, -0.3457506804832414, -0.3251523296669524, -0.3050831673307537, -0.28562230660395216, -0.26683957346495646, -0.24879561761753755, -0.23154211348663223, -0.2151220316640985, -0.19956996295800844, -0.18491247966611757, -0.1711685215828893, -0.1583497973370599, -0.14646119472149333, -0.1355011965070151, -0.12546230063586172, -0.11633144551182262, -0.10809044223801434, -0.10071641605608539, -0.09418225894154564, -0.08845709440603777, -0.08350675420702813 ], [ -0.5796440112424266, -0.5916054796265227, -0.6019422198002815, -0.6105348532651664, -0.6172949703762574, -0.6221653910862379, -0.6251184883654304, -0.6261530694807627, -0.6252904880459881, -0.6225706568636618, -0.618048477192551, -0.6117909718608057, -0.6038751888940339, -0.5943867805938075, -0.5834190752191483, -0.5710724345500571, -0.5574537107102354, -0.542675659785845, -0.5268562222347827, -0.5101176300229858, -0.4925853414978718, -0.47438683445479146, -0.4556503055213018, -0.43650333137467656, -0.4170715467320679, -0.39747738800122856, -0.3778389422195825, -0.35826893027439655, -0.3388738427343263, -0.3197532368241799, -0.30099919466302505, -0.2826959361046385, -0.2649195744232993, -0.2477379996096586, -0.23121087204363056, -0.21538970861686502, -0.20031804379065765, -0.18603164938828898, -0.17255879892083203, -0.1599205647126528, -0.14813113880603113, -0.13719817136384926, -0.127123122845211, -0.11790162841263152, -0.10952387468807445, -0.1019749900034197, -0.09523544964600994, -0.08928149730530976, -0.08408558307253045, -0.07961681707786794 ], [ -0.5257188776800625, -0.5361148526737323, -0.5450977002023984, -0.5525682986596435, -0.5584535539886939, -0.5627063171960802, -0.5653037408730993, -0.566244495979447, -0.5655454081804163, -0.563238071634054, -0.5593658758604998, -0.5539816940038144, -0.5471462914729839, -0.5389273676565307, -0.5293990582972289, -0.5186416986494627, -0.5067416628259183, -0.49379113522024853, -0.4798877203010955, -0.4651338463297777, -0.44963595991124816, -0.433503538657386, -0.4168479682167042, -0.39978133878922095, -0.3824152171291314, -0.36485944529087677, -0.3472210091670219, -0.3296030099863575, -0.3121037617288325, -0.2948160277880054, -0.27782640173834583, -0.2612148300411118, -0.24505426905543948, -0.22941046479212934, -0.21434184135588163, -0.19989948282220193, -0.18612719321059323, -0.1730616200539269, -0.16073242861843173, -0.14916251588763818, -0.1383682557677276, -0.12835976938649019, -0.1191412166372594, -0.11071110707830367, -0.10306262978788705, -0.0961840026928178, -0.09005884218961258, -0.08466655358263664, -0.07998274205464273, -0.07597964269738666 ], [ -0.4744647781312924, -0.48341614188855164, -0.491152402091261, -0.49759236095970616, -0.5026763922918727, -0.5063660846652631, -0.5086426437470193, -0.5095044139465928, -0.508963984837434, -0.5070453449200995, -0.503781446477868, -0.49921239095306214, -0.49338428318711425, -0.4863486731679245, -0.47816242428480926, -0.4688878181159639, -0.4585927167853119, -0.44735064007010517, -0.4352406616406531, -0.4223470762528675, -0.4087588304904892, -0.3945687403850663, -0.3798725392086968, -0.36476780893222105, -0.3493528511603059, -0.33372554996047776, -0.3179822719457448, -0.30221683997055226, -0.2865196071804661, -0.270976648848143, -0.2556690810358079, -0.24067250799004003, -0.22605659445481419, -0.21188475480837388, -0.1982139480279438, -0.18509456584635542, -0.172570400933437, -0.16067868233379046, -0.14945016652808918, -0.1389092741505653, -0.12907426438027747, -0.1199574411175881, -0.11156538706008345, -0.10389922352508418, -0.09695489518339795, -0.09072347967172534, -0.08519152229461702, -0.08034139572720878, -0.07615168386170645, -0.07259758782806247 ], [ -0.42595213952192845, -0.4335759443967676, -0.4401688557372979, -0.4456654498653272, -0.45001788712566826, -0.45319533984398397, -0.4551824497324547, -0.455977124438653, -0.4555880612256943, -0.45403237994220247, -0.45133366572537914, -0.4475205940095909, -0.4426261740385038, -0.4366875338166708, -0.42974609688889176, -0.42184797250659845, -0.4130443882625331, -0.40339202595368173, -0.39295316475886966, -0.38179558062777386, -0.36999219025676156, -0.3576204585890138, -0.3447616093895117, -0.33149968978423017, -0.31792054332703246, -0.3041107441169314, -0.29015653863654933, -0.2761428339557458, -0.2621522620302985, -0.2482643409605475, -0.23455474588744651, -0.2210946950776438, -0.2079504508841159, -0.19518293073215054, -0.1828474200480369, -0.1709933770328812, -0.159664318255618, -0.1488977740380758, -0.13872530334790178, -0.12917255920741244, -0.12025939726388646, -0.1120000219476055, -0.10440316637368108, -0.09747230365147619, -0.09120588840983646, -0.08559762803193038, -0.08063678327565327, -0.07630849764705638, -0.0725941541622026, -0.06947175709038778 ], [ -0.3802231177884381, -0.3866319135891283, -0.39218018826433443, -0.3968163237778869, -0.40050274383909856, -0.4032151771903497, -0.4049411770194601, -0.4056781640528583, -0.405431317410058, -0.4042116279962079, -0.4020343600929124, -0.39891806008733666, -0.39488413610396444, -0.3899569344725714, -0.38416417421836, -0.3775375732633953, -0.37011350488619443, -0.3619335504138651, -0.3530448533021521, -0.3435002214321481, -0.3333579620881917, -0.3226814640064757, -0.31153856179699424, -0.3000007302935229, -0.2881421612909383, -0.27603877439840174, -0.2637672091065333, -0.2514038381705993, -0.2390238342893387, -0.22670031373729216, -0.21450357273322151, -0.2025004253147773, -0.19075364557773056, -0.17932151243262218, -0.16825745154430605, -0.15760976679228, -0.1474214523156523, -0.13773007584393593, -0.12856772439564412, -0.1199610043671755, -0.11193108933991491, -0.10449381041119621, -0.09765978531842678, -0.09143458391125425, -0.08581892849955208, -0.08080892817225005, -0.07639634630100967, -0.07256890012153827, -0.06931059058493971, -0.06660205969399913 ], [ -0.33729401350013477, -0.34259532829183614, -0.34719281326278395, -0.3510468645760829, -0.35412879584508705, -0.3564199798148241, -0.35791043482731066, -0.358597088195332, -0.35848198775394413, -0.35757072022571923, -0.35587123537293575, -0.35339318512521967, -0.3501477896194575, -0.34614815821275324, -0.34140993661556895, -0.33595212587296075, -0.32979792186604895, -0.32297544758328756, -0.31551828546246263, -0.30746575538554455, -0.29886291932687015, -0.28976032256172335, -0.2802135022287081, -0.27028230696267497, -0.2600300772920787, -0.2495227369917986, -0.23882784215200303, -0.2280136287840645, -0.21714809251128941, -0.20629812619196464, -0.19552873384771852, -0.18490233246245502, -0.17447814734653433, -0.16431170196764877, -0.1544543994786799, -0.14495319059348466, -0.13585032089167748, -0.12718314994969382, -0.11898403474569408, -0.11128027039790978, -0.10409408228820238, -0.09744266480948804, -0.09133826318265215, -0.08578829585763337, -0.08079551581761668, -0.07635820955545125, -0.07247043254520702, -0.06912227969541129, -0.06630018859694231, -0.06398727246088631 ], [ -0.29715782108547606, -0.3014537824606205, -0.30518922967706263, -0.30833495247722775, -0.3108699219183986, -0.3127803467944721, -0.3140583306350192, -0.3147003313571165, -0.3147056511139025, -0.3140751684230808, -0.3128104722839814, -0.31091348182849776, -0.3083865528070967, -0.3052330006201672, -0.30145792012267714, -0.2970691594706715, -0.2920783069249294, -0.28650156973119356, -0.2803604553169051, -0.2736821998764809, -0.2664999223965414, -0.25885250976997676, -0.2507842592211348, -0.24234431761807618, -0.23358596412000188, -0.22456578422139928, -0.21534278097133652, -0.20597746425836994, -0.19653095265859344, -0.1870641153210607, -0.1776367743620233, -0.1683069817132553, -0.15913037861763135, -0.1501596411581967, -0.14144401141782703, -0.13302891109392068, -0.1249556325756731, -0.11726110152722591, -0.10997770477184032, -0.10313317758242146, -0.09675054518151083, -0.09084811416618299, -0.08543951053402388, -0.08053376184704397, -0.07613542171084753, -0.07224473508127138, -0.06885784289939878, -0.06596702420141987, -0.06356097319910803, -0.061625107963086956 ], [ -0.2597868321998055, -0.2631739146289872, -0.266130848383649, -0.26863735914226383, -0.27067897485014514, -0.2722460272102736, -0.27333238133139337, -0.2739340699189764, -0.2740480232714936, -0.27367106871450186, -0.27279932653436667, -0.2714280643434076, -0.2695520020552765, -0.2671659986690501, -0.26426600935521904, -0.2608501809504248, -0.2569199547819122, -0.2524810630532588, -0.24754433251331232, -0.2421262405971315, -0.23624919967196734, -0.22994157110866498, -0.22323743092125758, -0.2161761222753641, -0.20880163774934002, -0.20116187683013853, -0.19330782291269555, -0.1852926802036049, -0.17717100542443265, -0.1689978628982255, -0.16082802512395056, -0.15271523476222404, -0.1447115383889649, -0.13686669761790204, -0.12922767934748314, -0.12183822397611277, -0.11473848841352063, -0.10796475951115903, -0.10154923302156604, -0.09551985323163503, -0.08990020884024197, -0.08470948130519707, -0.07996244261225238, -0.07566950008092888, -0.07183678630454005, -0.06846629254504821, -0.06555604382742775, -0.06310031360358392, -0.06108987522440823, -0.059512286643314205 ], [ -0.225135226139628, -0.22770410921286732, -0.22996077807727622, -0.23189259053193223, -0.23349065335213903, -0.23474879382018732, -0.23566236293703746, -0.23622702458652323, -0.23643769174148865, -0.2362877516871824, -0.235768680447915, -0.2348700904897778, -0.23358019638758643, -0.23188663120478825, -0.229777509642199, -0.2272426161244624, -0.22427459630594038, -0.22087004533023424, -0.21703041038667836, -0.2127626533802972, -0.20807964744259155, -0.20300030546542058, -0.19754945812444946, -0.19175751241912986, -0.18565992987007762, -0.1792965669551716, -0.1727109201262681, -0.16594931484853626, -0.15906007347144124, -0.15209269115516533, -0.14509704315732674, -0.1381226409971439, -0.13121794968861722, -0.12442977358715057, -0.11780271454788205, -0.11137870309421927, -0.10519660112521811, -0.09929187328430078, -0.09369632336726985, -0.08843789193550788, -0.08354051147641617, -0.0790240158684159, -0.0749041014174261, -0.07119233720595763, -0.06789622282864671, -0.06501929170382637, -0.06256125801147705, -0.06051820491203641, -0.05888281108422588, -0.05764461184818126 ], [ -0.19314159286835242, -0.19497711502387627, -0.19660651578044264, -0.19802362499130488, -0.19922426312553532, -0.20020520308625056, -0.2009630468580641, -0.20149315211375762, -0.20178874472109398, -0.20184033312751282, -0.20163550287700738, -0.20115912084279164, -0.20039392797937972, -0.19932145509362287, -0.1979231646689541, -0.1961817062051482, -0.1940821725639501, -0.19161325758533532, -0.18876823651896968, -0.18554571611895831, -0.1819501266981517, -0.17799195120321565, -0.17368770478020779, -0.1690596916911591, -0.16413557491644437, -0.1589477979163504, -0.15353289865198394, -0.14793075396496647, -0.14218378862308034, -0.13633617847751434, -0.13043307183845887, -0.12451984781769865, -0.11864142534705446, -0.11284163209212261, -0.10716263868290565, -0.10164446064183852, -0.09632452810899672, -0.09123732189485745, -0.08641407344809582, -0.08188252589498879, -0.07766675325765626, -0.07378703515427842, -0.07025978459159432, -0.06709752675879033, -0.0643089269231355, -0.061898865541752945, -0.05986855850300299, -0.05821571999341946, -0.05693476488149418, -0.056017046776350776 ], [ -0.1637313464164939, -0.16491253909973913, -0.1659825004833394, -0.16694050551431694, -0.16778632656643533, -0.16851920167946643, -0.1691367836308536, -0.1696341883312359, -0.1700032574781395, -0.17023213014041583, -0.17030518376908454, -0.17020336266895075, -0.16990486833914853, -0.16938614819985554, -0.16862309223902183, -0.16759233361364156, -0.16627254911544154, -0.16464566642556921, -0.16269790376789806, -0.16042059015124188, -0.15781073749177665, -0.15487135697706644, -0.15161152947095824, -0.14804625283860628, -0.14419609775125963, -0.14008670822663294, -0.13574818453960757, -0.13121438495803184, -0.12652217975898394, -0.12171068682677555, -0.11682051338082611, -0.1118930234763682, -0.1069696462013967, -0.10209123520218144, -0.09729748646278225, -0.09262641822434703, -0.0881139145775175, -0.08379333256542876, -0.07969517152568506, -0.0758468027781194, -0.0722722575149165, -0.06899207074639224, -0.06602317927747314, -0.06337887182634927, -0.06106878945640637, -0.05909897441062273, -0.05747196517820652, -0.056186935183422326, -0.05523987189118762, -0.05462379242433979 ] ], "zauto": true, "zmax": 2.5082670690372835, "zmin": -2.5082670690372835 }, { "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.28964713365200495, 0.2806757201721178, 0.27304084685053137, 0.2666816122159104, 0.2615228257448271, 0.2575113347784463, 0.2546501861797762, 0.2530197406159087, 0.25277687448631014, 0.254129076284416, 0.257288344107844, 0.26241749141554876, 0.2695850158038066, 0.27874156720224685, 0.28972243151182525, 0.3022710471578863, 0.3160732140860432, 0.33079177671686133, 0.34609515377088446, 0.3616772184566363, 0.3772689284427475, 0.3926434514943623, 0.4076167814948152, 0.42204554996563276, 0.43582329363389144, 0.4488760272402053, 0.46115765438372625, 0.4726455288909415, 0.4833363352162567, 0.49324236653899833, 0.5023882253362021, 0.5108079402085617, 0.5185424758514673, 0.5256376046712786, 0.5321421051601749, 0.5381062516595556, 0.5435805613330665, 0.5486147663359342, 0.5532569819111585, 0.5575530442280439, 0.5615459950373268, 0.5652756935032477, 0.5687785387396083, 0.5720872894761717, 0.5752309697756943, 0.5782348516992175, 0.5811205072101394, 0.5839059224033988, 0.5866056673914263, 0.5892311149744233 ], [ 0.2768032381198395, 0.2676315049044141, 0.25991938597100966, 0.25358551620028136, 0.24852518861235373, 0.24465392793598034, 0.2419500025031818, 0.24048229232800186, 0.24041217977399465, 0.24196501813001473, 0.24537677917040177, 0.2508311735632812, 0.2584070446553533, 0.26805181759694047, 0.2795858027925081, 0.29273052816657436, 0.3071482051409394, 0.32248033054734815, 0.33837826444126645, 0.35452361732595533, 0.37063946023187455, 0.38649463514140514, 0.40190349542560644, 0.4167229442410581, 0.43084808487380344, 0.44420732991446416, 0.45675747773387493, 0.4684790398613605, 0.47937196177730534, 0.48945179492609897, 0.49874632894917836, 0.5072926663414621, 0.5151347080470997, 0.5223210124401239, 0.5289029883966132, 0.5349333838521823, 0.5404650332848911, 0.5455498303905559, 0.5502378955119788, 0.5545769109583771, 0.5586116010612159, 0.5623833375120416, 0.5659298540563534, 0.5692850578058058, 0.572478927119041, 0.5755374880610337, 0.5784828628068243, 0.5813333840000857, 0.5841037690740101, 0.5868053480205597 ], [ 0.26464708980927387, 0.2553265411533466, 0.24760236400462862, 0.24137102499409702, 0.23649395040705248, 0.232849170566745, 0.23038345101338, 0.22914815990322823, 0.2293046945741834, 0.23109360838125165, 0.23477379989457758, 0.24054999714085393, 0.24851229500757402, 0.25860644534447996, 0.27063999897040425, 0.2843154134272239, 0.29927455381149737, 0.3151408663653466, 0.3315516708258187, 0.34817883470079064, 0.3647394781225455, 0.38099948738732947, 0.39677245656342247, 0.41191605078343646, 0.42632713563868063, 0.4399365062066882, 0.45270369647243996, 0.4646121244990564, 0.47566469216597396, 0.4858798791030627, 0.49528832650342597, 0.5039298834744134, 0.5118510776387418, 0.519102967543443, 0.5257393340160933, 0.5318151692172143, 0.5373854248608235, 0.5425039844434684, 0.5472228280944161, 0.5515913626873661, 0.5556558940039024, 0.5594592218563222, 0.5630403429793616, 0.5664342499882512, 0.5696718175858336, 0.5727797693344805, 0.5757807196045683, 0.5786932857675465, 0.5815322654020294, 0.5843088723874093 ], [ 0.253339803093972, 0.24392791236781575, 0.23626259167254557, 0.2302169564297032, 0.22561457144979413, 0.22228990444632465, 0.22015124923148618, 0.2192257236744727, 0.21966903875994376, 0.22173273306809455, 0.2256961024483913, 0.23178411158677895, 0.24009905403370516, 0.25058754651468673, 0.26304818611741104, 0.27716891220043804, 0.29257593123241776, 0.3088789302063107, 0.3257047478812728, 0.3427182136217159, 0.35963238361940303, 0.37621138031574525, 0.3922686856970752, 0.4076629728712611, 0.4222928352616691, 0.4360912300072073, 0.44902009088123307, 0.46106534219660145, 0.47223241335883365, 0.4825422794409986, 0.4920280132412962, 0.5007318142518774, 0.5087024711113496, 0.5159932113744421, 0.5226598929647501, 0.5287594939452608, 0.534348860462979, 0.5394836765210458, 0.5442176234189812, 0.548601701156247, 0.5526836886833011, 0.5565077244339292, 0.5601139928676081, 0.563538506554996, 0.5668129764293264, 0.5699647650256484, 0.5730169187419999, 0.5759882753846801, 0.5788936426107952, 0.5817440415545028 ], [ 0.24304027354617094, 0.2335983018650738, 0.22606498825992585, 0.2202895759634915, 0.21605451470730716, 0.21314532029896688, 0.21142523758716875, 0.21089021935882774, 0.21168367063026788, 0.21406237073506393, 0.21832183410295328, 0.2247053721150756, 0.23332832101554596, 0.24414161162661507, 0.25694021069167605, 0.27140367870671644, 0.28714851772185046, 0.3037757460116927, 0.32090565132612786, 0.33819879191299473, 0.355365925598361, 0.37217039361178483, 0.3884259774703373, 0.4039923762247985, 0.418769672053417, 0.4326925878027128, 0.4457249736789832, 0.4578547380718996, 0.4690893092209598, 0.47945164359622505, 0.4889767596864309, 0.4977087578153773, 0.5056982790745473, 0.5130003545840897, 0.5196725973919555, 0.5257736919880258, 0.5313621399613213, 0.5364952244535106, 0.5412281606137398, 0.5456134041269916, 0.549700094926249, 0.553533618203982, 0.5571552695537959, 0.5606020152162643, 0.5639063417075975, 0.5670961913688385, 0.5701949814763403, 0.5732217045107815, 0.5761911061258244, 0.5791139355319062 ], [ 0.23389622725165876, 0.22448583778715095, 0.2171548661724674, 0.21172895823860743, 0.20794740633640502, 0.20554279583008714, 0.20432797301297295, 0.2042613930870572, 0.2054671614784035, 0.20820029762843847, 0.21276672671269076, 0.21942493121688433, 0.22830371771668057, 0.2393622874305054, 0.2523983675101127, 0.2670904251602629, 0.2830521041096365, 0.2998813720303235, 0.31719610410465343, 0.3346553469206614, 0.35196919995673387, 0.36890103219230014, 0.3852651559245409, 0.40092214782120655, 0.41577319559934767, 0.42975427076677136, 0.4428305575016687, 0.45499134558661547, 0.46624546836894937, 0.47661729730752167, 0.4861432686261612, 0.4948689003102055, 0.5028462506451431, 0.5101317679140229, 0.5167844821493132, 0.522864492648849, 0.5284317086898224, 0.5335448052397644, 0.5382603603411618, 0.5426321461224033, 0.5467105508941109, 0.5505421152821521, 0.5541691705179728, 0.5576295715159894, 0.5609565209004672, 0.5641784824572452, 0.5673191834523176, 0.5703977048966724, 0.5734286573100028, 0.5764224371389777 ], [ 0.22603329191902452, 0.2167119422748466, 0.20964442419435275, 0.20463401490596161, 0.2013765612283123, 0.19954996633414684, 0.19891346816208536, 0.19938312737713662, 0.201057085335995, 0.20418084307693604, 0.20906352855466212, 0.21597422348735423, 0.2250547512318645, 0.23627632048283084, 0.24944606502739927, 0.26424906962502526, 0.2803033337776364, 0.29720961384805966, 0.3145875931773186, 0.33209755504189375, 0.34945052127881315, 0.3664106214800548, 0.3827928546412897, 0.39845846002766455, 0.41330929192690924, 0.427282008246924, 0.4403425085458465, 0.45248083261058547, 0.46370660239871875, 0.47404501990356895, 0.48353339688861197, 0.4922181747220096, 0.5001523851593161, 0.5073935010656544, 0.5140016271531063, 0.5200379835282377, 0.5255636385950502, 0.5306384523841926, 0.5353201965521013, 0.5396638229821071, 0.5437208589197716, 0.5475389125909255, 0.5511612789124455, 0.5546266398111039, 0.5579688574410808, 0.5612168609508816, 0.5643946282504089, 0.5675212634946948, 0.5706111689335203, 0.5736743067284858 ], [ 0.21954317050649433, 0.21035858477426644, 0.20359933944101746, 0.19904874665908473, 0.19636123761976398, 0.1951612584152354, 0.1951541386627218, 0.19621080013315134, 0.1983977547031144, 0.20194306937493428, 0.20715086655343146, 0.2142948634807018, 0.223528074014847, 0.23483635159564056, 0.24804213255396165, 0.2628443851180503, 0.27887245122071874, 0.29573562413816157, 0.3130596036312407, 0.33050868765912267, 0.3477964509316562, 0.3646885735649069, 0.38100095406306034, 0.3965953320203807, 0.41137383607142713, 0.42527328842078344, 0.4382597191574231, 0.4503233145911251, 0.4614738916352733, 0.471736916975906, 0.4811500509198529, 0.48976017648120196, 0.4976208657160323, 0.5047902326282917, 0.511329122491008, 0.5172995898146439, 0.5227636208273972, 0.5277820609420564, 0.5324137131240477, 0.5367145791822414, 0.5407372225265955, 0.544530237516579, 0.5481378167186703, 0.551599412724486, 0.55494949521357, 0.5582174063438603, 0.5614273181522115, 0.5645982944832808, 0.5677444572803757, 0.5708752532865384 ], [ 0.21447281101609186, 0.20545723715813038, 0.19902824650109832, 0.1949530488907062, 0.19284947347051704, 0.19229318023380176, 0.19293857562397274, 0.19461119178471778, 0.1973416753074085, 0.2013331292178155, 0.2068759529573178, 0.21424131505035934, 0.2235898981123583, 0.2349229844183659, 0.24808252972015662, 0.26278737541599506, 0.2786843858730783, 0.2953967404999053, 0.31256025485422945, 0.32984608541098354, 0.34697214348427285, 0.3637066340012856, 0.37986675154893884, 0.3953147413677043, 0.4099527596485441, 0.4237173932657565, 0.43657431920234274, 0.44851334945544963, 0.4595439692437195, 0.4696913982431473, 0.4789931620553696, 0.4874961390836964, 0.49525403750686375, 0.5023252529888904, 0.5087710573600548, 0.5146540703237302, 0.520036969614061, 0.5249813996446966, 0.5295470443660011, 0.5337908365784363, 0.5377662830223982, 0.5415228917479411, 0.5451056950357234, 0.5485548669333473, 0.5519054387745227, 0.5551871184752879, 0.5584242197617415, 0.5616357058253462, 0.5648353485152219, 0.5680319995590444 ], [ 0.21081698456646775, 0.2019822745164891, 0.19587807889603598, 0.19226109833661534, 0.19072034848818775, 0.19079080324768236, 0.19208202931955667, 0.1943762581402946, 0.19766555133412844, 0.20212127737175167, 0.20801138692940627, 0.21559645259078317, 0.22503961365864625, 0.2363561413263609, 0.24940945335517586, 0.2639423659016563, 0.2796241591586001, 0.29609655214095365, 0.3130093333317832, 0.33004340894992923, 0.34692301244680923, 0.36342011222641923, 0.3793538683668656, 0.39458729058413394, 0.40902253839755354, 0.4225957526559117, 0.4352719306815861, 0.4470401182360996, 0.457909047152882, 0.46790326349065736, 0.4770597437990247, 0.4854249714821896, 0.493052432149658, 0.5000004809326555, 0.5063305330693302, 0.512105530078718, 0.5173886368019054, 0.5222421291254576, 0.5267264380813242, 0.5308993229715815, 0.5348151538135358, 0.5385242912245574, 0.5420725592466331, 0.5455008128931951, 0.5488446067863059, 0.5521339736925763, 0.555393321843743, 0.5586414577039541, 0.5618917366648929, 0.5651523385967259 ], [ 0.2085164927747622, 0.19985109834953385, 0.19403729536021042, 0.19082871108941493, 0.18979607421823455, 0.1904446210000703, 0.19234753611796418, 0.19524760542139283, 0.19909689272399178, 0.20402920753500328, 0.21028176773818472, 0.2180961421481682, 0.2276313840158098, 0.23891319901806812, 0.2518260025303361, 0.2661385183519764, 0.28154573622526796, 0.29771160967917315, 0.31430333633744834, 0.3310144138631194, 0.34757755082572284, 0.36376998854681364, 0.3794138240850232, 0.39437338362690266, 0.4085510706989617, 0.4218825990811785, 0.4343321539407877, 0.44588778422364755, 0.456557179454626, 0.4663638940418187, 0.4753440296431128, 0.48354335637736684, 0.4910148374272371, 0.4978165133910413, 0.504009699477145, 0.509657448624664, 0.5148232360328495, 0.5195698249520111, 0.5239582796297158, 0.5280470986794301, 0.5318914503806744, 0.5355424999182532, 0.5390468265979976, 0.5424459358765882, 0.5457758759196603, 0.5490669708381374, 0.552343682498934, 0.5556246099388749, 0.5589226303353554, 0.5622451788880235 ], [ 0.20746315119810438, 0.19893179586200152, 0.19334707245936147, 0.19046863409572584, 0.18986149646836267, 0.19101393203979086, 0.19347253388824082, 0.19694549189005345, 0.20134440823690813, 0.20676070454314582, 0.2133933873772592, 0.2214568076680186, 0.23109866216983863, 0.242349925316817, 0.25511343359253746, 0.2691836466975667, 0.28428284983670987, 0.30009977738639754, 0.3163218547383489, 0.33265780150770274, 0.3488510079690555, 0.3646856987605859, 0.3799881455598689, 0.39462482350702743, 0.40849888757438024, 0.4215458831424955, 0.43372925882789753, 0.44503601288506434, 0.4554726514924468, 0.4650615419720869, 0.4738376862842154, 0.4818459059737952, 0.48913841005934783, 0.49577270658007017, 0.501809813409742, 0.5073127227150632, 0.5123450751389833, 0.5169700039095887, 0.521249115236223, 0.5252415791393359, 0.5290033137136139, 0.532586255027602, 0.536037713575819, 0.5393998255423341, 0.5427091123086005, 0.5459961640478426, 0.5492854626094585, 0.5525953553018642, 0.5559381851049875, 0.5593205750802164 ], [ 0.20751103662390116, 0.19905719773447797, 0.19361841963918214, 0.1909706433290089, 0.1906867943260638, 0.1922515894838204, 0.19519509463035745, 0.19919601725672414, 0.20412562481289892, 0.2100290921606236, 0.21706080135392777, 0.22540036925827647, 0.2351768113372906, 0.24642029707016316, 0.2590479664300089, 0.2728780728336078, 0.2876601671160199, 0.3031090804157254, 0.31893449895771164, 0.33486259852311717, 0.35064954808092186, 0.3660883402699471, 0.3810108352705733, 0.39528671093881707, 0.4088206117789187, 0.4215483932468257, 0.4334330419600745, 0.44446062592732555, 0.45463647644310745, 0.46398170466706745, 0.4725300938017085, 0.48032536944663784, 0.48741882752468085, 0.49386728567233534, 0.4997313168746483, 0.5050737215313154, 0.5099581950408826, 0.514448151789191, 0.5186056726734408, 0.5224905514823853, 0.5261594249322574, 0.5296649810951133, 0.5330552503832986, 0.5363729911626467, 0.5396551875416439, 0.5429326792422493, 0.5462299423761227, 0.5495650355373213, 0.5529497184295225, 0.5563897411938385 ], [ 0.20849191810801956, 0.20004260804634458, 0.19465182517979493, 0.19212250050775911, 0.19204908021970638, 0.19392570083937788, 0.1972754044679567, 0.20175226093427917, 0.20718765157154156, 0.21357756217058807, 0.22102655781440075, 0.229673086438977, 0.23962069739200814, 0.2508924805219767, 0.26341488395848783, 0.27702672469725165, 0.2915034193354661, 0.30658601852676065, 0.32200761790962784, 0.3375135259616451, 0.3528745067555743, 0.36789402817156447, 0.38241100741346645, 0.39629950902502586, 0.4094665709237947, 0.42184901261726376, 0.43340980310747246, 0.44413435656945566, 0.4540269763862574, 0.4631075687244927, 0.4714086817150953, 0.4789728844526116, 0.48585047360231415, 0.49209747922516667, 0.4977739322771345, 0.5029423522200154, 0.5076664132178738, 0.5120097508282191, 0.5160348774044783, 0.5198021830190377, 0.5233690088380253, 0.5267887905774491, 0.5301102798417434, 0.5333768596422345, 0.5366259761704215, 0.5398887111811894, 0.5431895177547212, 0.5465461368812812, 0.5499697038853788, 0.5534650432361162 ], [ 0.2102319522374263, 0.20170388426426472, 0.1962559277092706, 0.1937283641510976, 0.19374985753280685, 0.19583574982431853, 0.19951050216894956, 0.20440784083005012, 0.210319885174086, 0.21719135504299497, 0.22507309344431034, 0.23405726239614122, 0.244216130748951, 0.255559809316039, 0.26801878808646007, 0.28144843819868476, 0.2956476009270726, 0.3103826135789405, 0.32541023246771816, 0.34049591396190726, 0.35542641133256814, 0.37001715327564894, 0.3841155093882224, 0.3976011407789771, 0.41038446781644056, 0.42240404354139444, 0.43362339017757945, 0.4440276697755939, 0.4536204219946837, 0.46242050485564495, 0.470459307995665, 0.47777826362844433, 0.4844266512944987, 0.49045967389321526, 0.49593677140219455, 0.5009201332774962, 0.5054733697046508, 0.5096603049368345, 0.5135438623272661, 0.5171850196707456, 0.5206418242564715, 0.5239684685240351, 0.5272144381607484, 0.5304237535836898, 0.5336343318311393, 0.5368774980617353, 0.5401776737057455, 0.5435522619795483, 0.5470117416903435, 0.5505599682389063 ], [ 0.2125668236006111, 0.2038729805376511, 0.1982625675726064, 0.19562253674067984, 0.1956269213083132, 0.19782246312889235, 0.2017422532139493, 0.20700337187387663, 0.21335945589773192, 0.2207027214843788, 0.22902767488259748, 0.23837649116673829, 0.2487855577126323, 0.26024686719417156, 0.27268987748428425, 0.285982169744835, 0.2999428694998874, 0.31436181219966464, 0.3290188345272995, 0.34369986172906686, 0.35820851833256845, 0.3723733455797983, 0.38605137566246994, 0.3991290022120607, 0.4115210192185841, 0.42316853226902523, 0.4340362632925002, 0.44410961094399676, 0.4533917041568871, 0.46190059445212633, 0.4696666671597472, 0.4767303062145392, 0.4831398161682673, 0.4889495845135075, 0.4942184546530496, 0.4990082731842536, 0.5033825735593901, 0.5074053609251246, 0.5111399694095421, 0.5146479725771851, 0.5179881392567771, 0.5212154392614066, 0.5243801152739717, 0.5275268469063058, 0.5306940393269532, 0.5339132708913737, 0.5372089314236009, 0.5405980753592904, 0.5440905026975299, 0.5476890670084982 ], [ 0.21535330180410042, 0.2064091004181169, 0.2005367882909668, 0.19767772279980922, 0.19756054805777862, 0.19977190115376953, 0.203859568014616, 0.20942722924090607, 0.2161910694990846, 0.22399041582577206, 0.23276207743300156, 0.24249594121662935, 0.25318919598607975, 0.264811527353068, 0.2772867708952726, 0.2904903723695973, 0.30425820540817755, 0.3184011812207209, 0.3327209267879399, 0.3470234956692187, 0.3611297227103394, 0.37488201227710344, 0.38814800235692004, 0.4008217991832669, 0.41282348948019815, 0.42409753679303286, 0.43461053330244986, 0.4443486490080311, 0.45331501191702334, 0.461527168794963, 0.46901471350326035, 0.4758171247247267, 0.481981822919019, 0.48756243446989966, 0.4926172369420907, 0.49720775169275583, 0.5013974478420103, 0.5052505241217669, 0.5088307417478799, 0.5122002914068634, 0.5154186896726338, 0.5185417133486575, 0.5216203928247494, 0.5247000959264123, 0.5278197404286042, 0.5310111752828791, 0.5342987671298878, 0.537699220029677, 0.5412216434819964, 0.5448678682994544 ], [ 0.21847622605614558, 0.20920472760108802, 0.20298143788166637, 0.19980789186250209, 0.1994745124985173, 0.20161471169138526, 0.2057961415924748, 0.21161215841010192, 0.21874296631502138, 0.22697552241639546, 0.2361887726638141, 0.24631931015831748, 0.2573230230149857, 0.2691440749998534, 0.2816967055740174, 0.29486009143800795, 0.3084831620108429, 0.3223950604590025, 0.33641735607210743, 0.35037531101272407, 0.364106788721243, 0.3774683855182207, 0.39033897575639825, 0.4026211459677709, 0.4142410648349798, 0.42514729202401397, 0.4353089376810433, 0.4447134844666825, 0.4533644937432216, 0.4612793433113435, 0.46848708625430713, 0.4750264769050072, 0.48094417808827766, 0.4862931413055222, 0.4911311366993892, 0.4955194012904403, 0.4995213713283157, 0.5032014670366312, 0.5066239049179336, 0.5098515232973324, 0.5129446198025416, 0.5159598135677348, 0.5189489584194342, 0.5219581443676786, 0.5250268317305429, 0.5281871639108677, 0.53146350061747, 0.534872203393805, 0.538421690746674, 0.5421127627287 ], [ 0.22185087065927386, 0.21218671563497757, 0.20553678963047675, 0.2019663896970826, 0.20133277639775485, 0.2033215771452013, 0.20752491791296063, 0.2135290876836342, 0.22098046872665728, 0.22961514631584495, 0.23925514826543026, 0.24978389430317932, 0.26111491552947064, 0.2731645160635904, 0.28583399161450557, 0.2990024379135198, 0.31252816383364945, 0.32625546529226523, 0.34002360831895007, 0.3536756782847807, 0.3670659276698318, 0.3800650719550919, 0.39256352929964217, 0.4044728927891928, 0.41572603440990474, 0.42627624059513103, 0.4360957258451002, 0.4451737987526037, 0.4535148828495399, 0.46113653155524514, 0.4680675247621773, 0.4743460939922224, 0.48001829230518933, 0.48513650282180615, 0.48975806467370003, 0.49394398657711386, 0.49775771545119324, 0.5012639300546147, 0.5045273368957941, 0.5076114568417724, 0.5105774047304167, 0.5134826793390094, 0.5163799954468096, 0.5193162014936953, 0.5223313336568817, 0.5254578586508107, 0.5287201525276563, 0.5321342514562389, 0.5357078940749879, 0.539440855537995 ], [ 0.22542133906447262, 0.21531325215204267, 0.20817611097778077, 0.20414028778998278, 0.20313287516341427, 0.20489591852553854, 0.20905039290556246, 0.21517931364564824, 0.2228983326310496, 0.2318952021625174, 0.24193697626973842, 0.2528549325372815, 0.2645200056185233, 0.27681901060982955, 0.2896375106475799, 0.30285106781213716, 0.31632382645364465, 0.3299120754383868, 0.34347028890822096, 0.35685765206540554, 0.3699437981863431, 0.3826131380881115, 0.3947676368232502, 0.4063281748349313, 0.4172347626414573, 0.4274459109225329, 0.4369374353298437, 0.445700927774425, 0.4537420715915296, 0.46107892638230136, 0.4677402636094398, 0.47376399737607033, 0.47919572609203165, 0.48408737933320567, 0.48849594951862335, 0.4924822795880085, 0.4961098752835414, 0.49944371353806954, 0.5025490263059056, 0.5054900511069236, 0.5083287543672437, 0.511123549697331, 0.5139280485813881, 0.5167898934369158, 0.5197497306422376, 0.5228403823872881, 0.5260862703306158, 0.5295031313070794, 0.5330980470505675, 0.5368697882907494 ], [ 0.2291560708799681, 0.21856791549969493, 0.21089845421396705, 0.20634223499152338, 0.2048972225113225, 0.20636502895967712, 0.21039988973769305, 0.216586158848525, 0.2245129640837362, 0.23382331500362033, 0.24423208619447162, 0.25552011510041867, 0.2675160689341128, 0.28007616099907423, 0.2930678923315089, 0.30636019644996315, 0.31981971994870084, 0.3333116306569654, 0.34670301994438907, 0.3598672402963722, 0.3726880304385642, 0.385062791163973, 0.39690477285450787, 0.40814419449868694, 0.4187284530820185, 0.428621635858668, 0.43780354894191603, 0.44626844873795235, 0.4540236243516065, 0.46108793878702437, 0.4674903995206868, 0.47326879705147823, 0.47846842409296236, 0.48314086828247227, 0.48734285754438245, 0.49113512943193405, 0.4945812937353334, 0.4977466611385642, 0.5006970192681118, 0.5034973502923379, 0.5062105000507896, 0.5088958258068097, 0.5116078660279282, 0.5143950888198571, 0.5172987835999776, 0.5203521616134216, 0.5235797241436574, 0.526996943039241, 0.5306102779341881, 0.5344175307368757 ], [ 0.2330417620354769, 0.22195225840994, 0.2137201638766515, 0.20860129568100153, 0.20666375500273212, 0.20777096517861143, 0.2116150242602298, 0.21778719850059491, 0.22585547242627355, 0.23542268360736712, 0.24615498647154904, 0.25778491168638223, 0.2700995270201275, 0.28292367448935735, 0.29610482879108163, 0.30950254596622384, 0.32298290974867516, 0.3364170020881495, 0.3496819615393057, 0.362663286458743, 0.3752573809581288, 0.3873737262830019, 0.39893638358323064, 0.4098847611374747, 0.42017371468922976, 0.4297731145052761, 0.43866703032523796, 0.4468526749234731, 0.4543392224314414, 0.4611465877896528, 0.46730422395263965, 0.4728499665928683, 0.4778289334664625, 0.4822924680052682, 0.48629710443396623, 0.4899035249682709, 0.49317547850331067, 0.4961786345504941, 0.4989793556493655, 0.5016433852953494, 0.504234465324101, 0.5068129149034138, 0.5094342205925791, 0.5121477008941496, 0.514995317002085, 0.5180107022150786, 0.521218474830458, 0.524633883577783, 0.5282628124018595, 0.5321021453644171 ], [ 0.23707701848873725, 0.2254783879800487, 0.2166666602179365, 0.21095435209348096, 0.20847743877418104, 0.20916260005135331, 0.21274459731019843, 0.2188281001478584, 0.22696640828252207, 0.23672757828699748, 0.2477329644233555, 0.25966914698685967, 0.2722824247756228, 0.2853657186735864, 0.29874481536216313, 0.312267487444816, 0.32579650678707356, 0.33920613805671335, 0.3523811207286142, 0.3652170935601031, 0.3776216152412295, 0.3895152095926379, 0.4008321162392683, 0.4115206189494192, 0.4215429485557591, 0.43087482620677253, 0.4395047409506228, 0.4474330576350283, 0.4546710379905093, 0.4612398373797487, 0.46716951712350363, 0.47249809067285736, 0.4772706030470956, 0.4815382280115792, 0.48535735713350314, 0.4887886495877146, 0.49189601166013625, 0.4947454803525811, 0.49740399604507957, 0.49993806409682423, 0.5024123233072825, 0.5048880584917776, 0.5074217127379347, 0.5100634696130338, 0.5128559841811221, 0.5158333421905025, 0.5190203182248894, 0.5224319863166385, 0.5260737122539839, 0.5299415285280572 ], [ 0.2412668955585952, 0.22916283775852175, 0.2197658974998526, 0.21343950581018614, 0.21038402406314996, 0.21059008710288588, 0.2138399661364176, 0.21975889991493783, 0.22789278723818202, 0.237780885798184, 0.24900393888110794, 0.2612050105660531, 0.27409052534569345, 0.28742109650051834, 0.30099944398038353, 0.3146595074830596, 0.32825835713913293, 0.3416710087081048, 0.35478756054236826, 0.36751188644106847, 0.3797611968210443, 0.39146595871580225, 0.4025698521594521, 0.41302959482447127, 0.42281457615293194, 0.4319063095444983, 0.4402977453097693, 0.44799249789440904, 0.45500403684943536, 0.46135487869671266, 0.4670758008550925, 0.47220508229530433, 0.47678776066655293, 0.4808748836793264, 0.48452272449771083, 0.48779192746336003, 0.49074655207568507, 0.4934529899517404, 0.4959787412894749, 0.4983910534919334, 0.500755443836342, 0.5031341485351485, 0.5055845598375436, 0.5081577282406433, 0.510897015758968, 0.5138369864289748, 0.5170026107445449, 0.5204088418972187, 0.5240605954327029, 0.527953133432963 ], [ 0.2456191313657834, 0.23302263434357687, 0.22304446789297297, 0.21609246494161144, 0.21242697318848425, 0.21210252252618067, 0.21495348540515777, 0.22063309534985673, 0.22868759109334622, 0.2386337516288117, 0.25001602879707663, 0.2624364269989262, 0.27556244814338837, 0.2891221891171463, 0.30289422970169616, 0.3166970117488406, 0.33037990934118433, 0.3438166041936986, 0.35690057130046854, 0.3695421742846855, 0.38166683928662337, 0.3932138685455266, 0.4041355822523538, 0.4143965956651396, 0.423973130352396, 0.4328523207006938, 0.4410315132080242, 0.4485175726397392, 0.4553262119607336, 0.46148135727875483, 0.467014548885894, 0.47196436785474927, 0.4763758666802452, 0.4802999736981637, 0.48379283557635816, 0.4869150608794149, 0.4897308311049736, 0.49230685394187124, 0.49471114669180755, 0.49701165521771207, 0.4992747342182778, 0.5015635362063365, 0.5039363768225186, 0.5064451602116716, 0.5091339573277331, 0.5120378299751479, 0.5151819830130334, 0.5185813068359967, 0.5222403440447635, 0.5261536815720921 ], [ 0.2501424114121368, 0.23707389276648153, 0.22652666670705085, 0.21894618440372943, 0.21464773764832945, 0.21374884738649735, 0.2161399101415279, 0.2215093128150864, 0.22941141169066157, 0.23934694281966834, 0.2508284657551964, 0.26341945335671796, 0.2767495765540597, 0.29051446034044603, 0.3044678297179009, 0.31841138242891887, 0.33218522237106646, 0.3456599829422279, 0.35873082245407206, 0.3713130435524144, 0.383338955888662, 0.39475561636439244, 0.40552315509277304, 0.41561348021503036, 0.4250092286968716, 0.43370288540726, 0.44169602879672365, 0.4489986813329025, 0.45562875057289653, 0.46161154633006196, 0.4669793542371851, 0.47177103883858384, 0.476031642245798, 0.47981193893670077, 0.48316790464974074, 0.4861600584093885, 0.4888526421382547, 0.491312612396044, 0.4936084334863038, 0.49580867993527494, 0.49798047799202444, 0.5001878384503045, 0.5024899542351847, 0.5049395529043577, 0.5075814035641159, 0.5104510773415587, 0.5135740492958891, 0.5169652079125694, 0.5206288082800172, 0.5245588703690196 ], [ 0.2548464933458738, 0.24133264800567344, 0.23023609385005864, 0.22203319904156882, 0.21708869405371423, 0.21558118745084923, 0.21745988282643094, 0.2224546503281288, 0.230135374261976, 0.23999315079966244, 0.2515131808699194, 0.26422315633127164, 0.277716306897306, 0.2916562027989376, 0.3057714282510217, 0.3198461395530748, 0.33371002421121476, 0.3472293244025288, 0.3602994802833538, 0.37283938641780806, 0.38478702291274536, 0.3960961673147383, 0.4067339193224714, 0.4166788251837109, 0.4259194455125782, 0.43445325741815466, 0.44228581571540837, 0.4494301191765473, 0.4559061386725311, 0.461740467579079, 0.46696605378517486, 0.47162196944930423, 0.4757531712345104, 0.47941020162572967, 0.4826487822528645, 0.485529253796362, 0.4881158246785645, 0.49047560270801105, 0.4926774001430755, 0.49479032277346874, 0.49688217644227267, 0.49901774808460675, 0.5012570402986548, 0.5036535556933077, 0.5062527367552184, 0.5090906662994158, 0.5121931214672774, 0.5155750511593075, 0.5192405150359012, 0.5231830856652705 ], [ 0.259743593080905, 0.24581710271189672, 0.2341987434100716, 0.22538939523368343, 0.2197973295356227, 0.21765914029093963, 0.2189840196369592, 0.2235482999852704, 0.23094409824118245, 0.24065918158399166, 0.25215621023938595, 0.26493029733760903, 0.2785401278969721, 0.2926181492535965, 0.3068680192598516, 0.32105602338182204, 0.3350007034391812, 0.34856291708132353, 0.36163725670197, 0.37414505314615265, 0.3860288597437349, 0.3972481911356898, 0.407776274699612, 0.4175976004298751, 0.4267060962403441, 0.43510379457091103, 0.44279988677659016, 0.44981008281045387, 0.45615620631404186, 0.4618659615010348, 0.4669728104468345, 0.4715158996594069, 0.4755399748344451, 0.4790952238578861, 0.4822369914720487, 0.48502531538569843, 0.4875242435876049, 0.48980090657909076, 0.4919243361978537, 0.49396404420435375, 0.49598839774716474, 0.49806285337891826, 0.5002481339106479, 0.5025984500285613, 0.5051598781637202, 0.5079690050819154, 0.5110519367639683, 0.5144237448474708, 0.5180883906063232, 0.5220391282154477 ], [ 0.2648501889922724, 0.2505501861657889, 0.23844621368752048, 0.2290576288858063, 0.22282993776765855, 0.2200532271119072, 0.22079587734869183, 0.22488388751073946, 0.2319373494905294, 0.24144692686780844, 0.25285804398902784, 0.2656371549299798, 0.2793110296588259, 0.29348258354030404, 0.30783132684049636, 0.3221058184210447, 0.3361131151962264, 0.34970800815669517, 0.36278334777197946, 0.37526190939402143, 0.38708982123761343, 0.3982313945893015, 0.4086651407839472, 0.41838076382527034, 0.4273769443537728, 0.43565976145230856, 0.443241625328872, 0.4501406136136591, 0.4563801170808266, 0.4619887085476448, 0.46700015338363565, 0.47145348325741354, 0.4753930579481674, 0.4788685444174097, 0.48193474876673853, 0.48465124588470826, 0.48708176402784126, 0.48929329760937124, 0.49135494111281636, 0.49333645988272723, 0.4953066385241317, 0.49733147297037944, 0.49947229542404886, 0.5017839392818988, 0.5043130606924094, 0.5070967319971574, 0.5101614086669957, 0.5135223459587832, 0.5171835068866465, 0.5211379634361145 ], [ 0.2701883915317235, 0.25556134592121593, 0.24301774255791309, 0.23308972216012702, 0.22625326171465263, 0.22284594205946803, 0.22299231999816702, 0.22656920570777148, 0.23322926175390174, 0.24247220733496502, 0.2537322106631528, 0.2664519486520582, 0.28012984581074063, 0.2943416634859577, 0.30874415852170267, 0.32306877670795164, 0.33711110590273957, 0.35071945365895874, 0.3637842261309178, 0.37622878045467073, 0.38800189646522204, 0.39907177121548904, 0.4094213491279608, 0.4190447834972322, 0.4279448387616243, 0.43613106575114335, 0.4436186040222507, 0.4504274827731923, 0.45658230430808683, 0.4621122026685899, 0.4670509764381296, 0.47143730035113696, 0.4753149264360951, 0.47873279290011944, 0.48174496848567894, 0.48441037209256704, 0.4867922224415913, 0.48895719070806926, 0.4909742503838633, 0.4929132427399012, 0.49484320216069755, 0.49683051156869396, 0.498936981657902, 0.5012179656743693, 0.5037206308786377, 0.5064825060196656, 0.5095304098268105, 0.5128798392112042, 0.5165348601309709, 0.5204885032440554 ], [ 0.2757862329332474, 0.2608868013947255, 0.24796019435824754, 0.2375459030253415, 0.23014313742546474, 0.22612949362293353, 0.22568045786754504, 0.22872261686260237, 0.2349445185325446, 0.24386099787937882, 0.25490171640498516, 0.26749157721126343, 0.2811053164221976, 0.29529480088753784, 0.30969608000020504, 0.3240245617319921, 0.3380647030004623, 0.3516581344496487, 0.36469226683759337, 0.37709027243546356, 0.38880271116041804, 0.3998007705284539, 0.41007096382408004, 0.4196110934831044, 0.4284272877990963, 0.4365319337451221, 0.44394234535014393, 0.45068002125161155, 0.4567703559674765, 0.4622426779281795, 0.4671304947244952, 0.47147183362565576, 0.47530957415553327, 0.47869168000084983, 0.4816712501407999, 0.48430632408329255, 0.48665939366969535, 0.4887965942072206, 0.4907865706791881, 0.4926990400906904, 0.4946030976895494, 0.49656534118986884, 0.4986479107918564, 0.5009065607465983, 0.5033888873500604, 0.5061328359987513, 0.5091655950002583, 0.5125029567575312, 0.5161491903581529, 0.5200974279018504 ], [ 0.28167657721960465, 0.2665679647172229, 0.2533257429831481, 0.24249150501767192, 0.2345800491477409, 0.23000023706808062, 0.2289712179968897, 0.2314662069019718, 0.2372115748192796, 0.24574309901005165, 0.25649338623542745, 0.2688767033494487, 0.2823498919728866, 0.29644510962414955, 0.31078041604842754, 0.32505671405459463, 0.3390479693632464, 0.3525891378556895, 0.36556420767422315, 0.37789547293998094, 0.3895344378684827, 0.4004543916710633, 0.41064453591604316, 0.4201054882682137, 0.428845974799078, 0.43688052911377545, 0.44422802717799076, 0.45091089682322594, 0.456954849389038, 0.46238898852161825, 0.4672461589827649, 0.47156340747848524, 0.47538243865142477, 0.47874996277817167, 0.4817178474116019, 0.484343003167633, 0.4866869540536667, 0.4888150651756527, 0.49079542526029446, 0.492697407823284, 0.49458996212171125, 0.4965397116630054, 0.49860896166756535, 0.5008537345884903, 0.5033219615364242, 0.506051954720109, 0.5090712705281792, 0.5123960452254814, 0.516030848068224, 0.5199690543921326 ], [ 0.2878947272200531, 0.27264822949467604, 0.2591676167104658, 0.247991482857527, 0.23964233627172235, 0.2345506770007471, 0.23297048087475883, 0.23491658713124552, 0.24015370307406922, 0.24824389337659342, 0.25863060035076774, 0.270725550556257, 0.283974540444389, 0.29789510514723805, 0.3120907029111351, 0.3262497228107492, 0.3401365782837184, 0.35357974203544806, 0.3664594688086006, 0.37869654847401524, 0.3902426262084518, 0.4010722108803117, 0.411176298959341, 0.4205574619521745, 0.42922621971609404, 0.4371985184209976, 0.44449413557196243, 0.45113583956112707, 0.4571491363878426, 0.4625624420818634, 0.46740752706711153, 0.4717200890477121, 0.4755403243285002, 0.47891338370394954, 0.4818896178191902, 0.48452453784356075, 0.4868784401220209, 0.48901566802388363, 0.49100351034089124, 0.49291076294077685, 0.49480600814060804, 0.4967556929391469, 0.49882211061654486, 0.5010614074768164, 0.5035217447313585, 0.5062417422598923, 0.5092493150277688, 0.5125609848947235, 0.5161817130761616, 0.5201052560388285 ], [ 0.29447511375607544, 0.27916871097977336, 0.26553472607870515, 0.25410382111985585, 0.24539836852758748, 0.2398605339886833, 0.23776934825779555, 0.2391748507500136, 0.24387920192473095, 0.25147529495055043, 0.26142529152477845, 0.27314706048229187, 0.2860830282939603, 0.29974198860942525, 0.3137168235539154, 0.32768586117313026, 0.34140521566475573, 0.3546972743188287, 0.3674383791596676, 0.3795472700239305, 0.3909749742399137, 0.40169635689818933, 0.4117033153388205, 0.42099949860323793, 0.42959639124182214, 0.43751058617105576, 0.4447620666791519, 0.4513733166403266, 0.4573690789766903, 0.46277658594127635, 0.46762609186117765, 0.4719515501865387, 0.475791292038279, 0.47918858241917633, 0.48219195207541393, 0.4848552269084789, 0.48723720227233147, 0.4894009361073112, 0.49141266243013454, 0.4933403548684398, 0.49525199795178804, 0.4972136503748396, 0.4992874073465343, 0.5015293857788471, 0.5039878636422568, 0.5067017009929323, 0.5096991538220267, 0.5129971636283363, 0.5166011681115122, 0.5205054359957849 ], [ 0.3014476291300607, 0.286163713643799, 0.2724661936597562, 0.2608731076010597, 0.25189919726649956, 0.24598856815946712, 0.2434353280669373, 0.244317438363982, 0.24847236524483027, 0.25552724599435, 0.26497028597872796, 0.2762342359328907, 0.2887662823135345, 0.3020729508418662, 0.3157411316801202, 0.32944199743710195, 0.3429249539282562, 0.35600694106267516, 0.3685603746464731, 0.3805015099848154, 0.3917800693192794, 0.40237045285463335, 0.41226458533590904, 0.42146632146819557, 0.42998727420863, 0.43784390231620096, 0.4450556792452254, 0.4516441571673141, 0.45763273578210484, 0.46304694606861885, 0.46791506508418074, 0.4722688896924391, 0.4761445143077589, 0.47958297939575595, 0.4826306823190682, 0.48533946898586106, 0.4877663527629165, 0.4899728357174214, 0.4920238361362765, 0.4939862550965259, 0.49592724295670504, 0.49791225275989676, 0.5000029897569602, 0.5022553820910991, 0.5047177044903782, 0.5074289824022206, 0.5104177873279687, 0.5137015058426975, 0.5172861275169437, 0.5211665549714376 ], [ 0.3088341948711598, 0.29365669117764803, 0.2799867368513449, 0.2683254070066227, 0.25917298959352947, 0.2529666113621217, 0.2500059843665074, 0.25038947706544656, 0.2539866918671339, 0.2604610678875173, 0.2693330688350695, 0.2800585186871163, 0.29209747324855434, 0.30496096560555197, 0.3182349007684645, 0.3315866184276675, 0.34476076187229493, 0.3575697415173287, 0.3698822444550232, 0.3816117613568839, 0.3927061320884198, 0.4031385465638226, 0.4129001330462145, 0.4219941099413184, 0.430431397777599, 0.43822754550662363, 0.44540079965387075, 0.4519711280407285, 0.4579599996310392, 0.46339071882882765, 0.46828911694689784, 0.4726844156345645, 0.47661009597024134, 0.48010463118650504, 0.4832119688307636, 0.48598167794501845, 0.4884687073540896, 0.4907327316376591, 0.4928370914247305, 0.49484736395870405, 0.4968296278552879, 0.4988485115079691, 0.5009651359356344, 0.5032350777277843, 0.5057064836744519, 0.5084184636426144, 0.5113998713391343, 0.5146685544758772, 0.5182311190688446, 0.5220832113087059 ], [ 0.3166460546559675, 0.3016572903662655, 0.2881035853095852, 0.27646519042275786, 0.26722206139658283, 0.26079668268216627, 0.25748599105852166, 0.25740158651492295, 0.2604413433326561, 0.26630562338307917, 0.27455182298507746, 0.284665909022979, 0.29612838102091027, 0.3084614988771908, 0.32125541423280823, 0.33417729425791537, 0.3469693134934708, 0.3594405799748108, 0.37145650431000105, 0.3829277330771715, 0.39379979984201846, 0.4040440532959892, 0.4136500849087681, 0.42261969448934994, 0.4309623309480096, 0.43869188626671696, 0.4458246822014949, 0.45237846266868653, 0.4583721876171662, 0.4638264165800977, 0.46876407249551505, 0.47321138848560385, 0.47719886076775175, 0.4807620576587001, 0.48394216539147655, 0.4867861840844454, 0.4893467201113308, 0.49168135336255203, 0.4938515889732659, 0.49592143270869127, 0.497955656856244, 0.5000178482237699, 0.5021683501256925, 0.5044622239830577, 0.5069473611329905, 0.5096628697923579, 0.5126378450272359, 0.5158906017632531, 0.5194284147994328, 0.5232477694469574 ], [ 0.32488210457628164, 0.31015980588155984, 0.29680524581487444, 0.2852745891138961, 0.27602271707552956, 0.2694513478447014, 0.2658477502748507, 0.2653303734942726, 0.26782116594230215, 0.27305668925875626, 0.2806341777185214, 0.2900752507048559, 0.30088741766089155, 0.312610446729374, 0.32484394434243563, 0.33725877385614494, 0.34959723682481697, 0.36166667900891264, 0.3733299703595597, 0.38449507337622596, 0.39510498536217, 0.40512873584511394, 0.4145537577893828, 0.4233797410825648, 0.43161395333380786, 0.4392679356994267, 0.44635542873273415, 0.4528913457689141, 0.4588915863369825, 0.4643734694707618, 0.4693565667743169, 0.4738637269748208, 0.4779221055910684, 0.4815640425561741, 0.4848276642203364, 0.4877571215111114, 0.49040241121093014, 0.49281876115381845, 0.4950655920767529, 0.49720509859745393, 0.49930051894784844, 0.5014141868813384, 0.5036054782402382, 0.5059287771765377, 0.5084315909583442, 0.5111529360165464, 0.5141221006939415, 0.5173578627939807, 0.5208682048647486, 0.5246505309950137 ], [ 0.3335283689041906, 0.3191430952531281, 0.3060620653441992, 0.29471478819230174, 0.28552755774273764, 0.2788768491005947, 0.2750350338086164, 0.2741221063131913, 0.27607989563530755, 0.2806793307131347, 0.2875586195206705, 0.2962787480877813, 0.3063794359966187, 0.3174234498029426, 0.329024762185224, 0.34086183521963215, 0.3526799043542398, 0.3642863736276667, 0.37554259455945027, 0.3863542666003896, 0.39666184461649145, 0.4064317462198383, 0.4156487743192837, 0.42430993812636125, 0.43241971095092585, 0.43998666728032965, 0.44702137377137807, 0.45353535946780016, 0.4595409569114071, 0.4650517876249906, 0.4700836626367297, 0.47465568012335113, 0.47879132538971464, 0.4825194099020266, 0.4858747223770162, 0.48889830286646724, 0.491637288065873, 0.49414431133833875, 0.4964764735391812, 0.49869393039833754, 0.5008581686976538, 0.5030300661503366, 0.5052678476129758, 0.507625061436286, 0.5101487026234025, 0.512877602569461, 0.5158411879344185, 0.519058684413177, 0.5225388070858459, 0.5262799412471536 ], [ 0.3425585471185367, 0.32857177431115, 0.3158282681763332, 0.3047290582433777, 0.2956695627870319, 0.28899813463970453, 0.2849686631306636, 0.28369857517231994, 0.28514565890447263, 0.2891125835852291, 0.2952780921619132, 0.3032444398252121, 0.3125871958232577, 0.32289655083875357, 0.33380519788072816, 0.3450029338052655, 0.356240815531092, 0.36732833488474925, 0.37812660412152577, 0.3885397389330332, 0.3985058819471938, 0.40798875175074995, 0.4169702236037552, 0.42544420043245984, 0.4334118689214715, 0.4408783217617093, 0.4478504438357615, 0.45433589843817773, 0.46034300682026247, 0.4658812901528278, 0.47096243708011787, 0.4756014707446173, 0.4798179133672106, 0.4836367800902536, 0.48708927260144486, 0.49021308339111996, 0.493052260691681, 0.49565662062599647, 0.4980807261484317, 0.5003824817857683, 0.5026214188261864, 0.5048567670217503, 0.5071454251456997, 0.509539952525462, 0.5120867054349341, 0.514824234738483, 0.5177820439940749, 0.5209797811190388, 0.5244269038587991, 0.5281228230441193 ], [ 0.35193542746182616, 0.33839836828943326, 0.326044993323835, 0.3152467811015622, 0.3063671236593245, 0.2997248027824817, 0.29555312234496356, 0.2939639882381291, 0.29492767475666126, 0.29827549904496226, 0.3037250477065269, 0.3109201062627266, 0.31947415120402095, 0.32900800016062054, 0.33917665222846355, 0.34968461031613135, 0.3602915669852416, 0.37081123627124274, 0.3811059660225142, 0.3910791961023958, 0.40066721511537007, 0.40983116606112757, 0.41854988552194416, 0.42681390635100613, 0.43462077541444266, 0.44197170803035835, 0.44886950258685704, 0.4553175647337838, 0.4613198383417144, 0.4668814099618908, 0.47200954425848185, 0.4767149176888398, 0.48101284278548345, 0.4849243109416314, 0.4884767227228037, 0.49170421723088864, 0.494647552917121, 0.4973535297099905, 0.4998739756387968, 0.5022643501325711, 0.5045820408324498, 0.5068844508116894, 0.5092269878540459, 0.5116610757884585, 0.5142323085394209, 0.5169788594973693, 0.5199302417273489, 0.5231064892018389, 0.5265177977044335, 0.530164629440899 ], [ 0.36161289469983526, 0.3485660387805339, 0.33664383125215497, 0.32618784171423504, 0.3175292773086794, 0.310957093658955, 0.3066831411758397, 0.3048118811811013, 0.30532313576964043, 0.30807360341323703, 0.31281714103820096, 0.31923797805292575, 0.3269881014451387, 0.3357209021100484, 0.3451163686136821, 0.3548965486821089, 0.36483235549987647, 0.3747438417739831, 0.38449617538235886, 0.39399320283958966, 0.40317001542351316, 0.4119855023823042, 0.42041553659652814, 0.4284471856409782, 0.43607415358651147, 0.4432935157087936, 0.4501036965785802, 0.4565035560595443, 0.4624923862924649, 0.4680705859918463, 0.47324076566773543, 0.47800904613245904, 0.48238633841005923, 0.4863894304112809, 0.4900417489141155, 0.4933737097971843, 0.4964226117571535, 0.4992320669635084, 0.5018509954712014, 0.5043322386209925, 0.506730870210925, 0.5091023028369975, 0.5115002999965023, 0.5139750114542772, 0.5165711489522228, 0.5193264107652195, 0.5222702466772071, 0.5254230304589518, 0.5287956767891588, 0.5323897066735054 ], [ 0.37153824980156874, 0.35901152614717935, 0.3475504221505172, 0.33746687835270145, 0.3290605712971176, 0.3225913061276653, 0.31824957112647606, 0.31613130953277524, 0.31622350033278696, 0.31840500774078057, 0.3224628583537459, 0.3281196385501416, 0.33506522457329696, 0.34298634767674324, 0.35158972048904685, 0.3606171263367298, 0.3698529193903215, 0.379125465186785, 0.3883043462499517, 0.39729500088065683, 0.4060321306996573, 0.4144728632374711, 0.4225903546919615, 0.43036827672135325, 0.43779644043293936, 0.4448676580119543, 0.4515758193243399, 0.45791506414398925, 0.4638798605197719, 0.46946575698455806, 0.474670560180981, 0.4794956970749704, 0.48394754717996114, 0.48803856890622627, 0.4917880890963651, 0.4952226708226494, 0.4983760179390988, 0.5012884136096616, 0.5040057232533904, 0.5065780200182312, 0.5090579132458976, 0.5114986775119968, 0.5139522914477906, 0.5164675010347716, 0.5190880206010451, 0.5218509756991037, 0.5247856753248263, 0.5279127773361203, 0.531243882235882, 0.5347815593640218 ], [ 0.3816545916646248, 0.3696680140890201, 0.35868778999310447, 0.34899704781921614, 0.3408652121933733, 0.3345242887789579, 0.33014418865525186, 0.3278119213314471, 0.3275197420001972, 0.32916566797649033, 0.3325665658425927, 0.3374806333593856, 0.3436340696382013, 0.35074669208231163, 0.35855275825920946, 0.36681527673949355, 0.3753338000778932, 0.38394672930199203, 0.3925295670425439, 0.4009905508415576, 0.40926489168750635, 0.41730857664024573, 0.42509243841310146, 0.4325969722858201, 0.4398081929068531, 0.4467146654509878, 0.4533057137543869, 0.4595707022759304, 0.4654992108656137, 0.47108187294869897, 0.47631162838655694, 0.4811851486997188, 0.48570421891419036, 0.4898769001654957, 0.4937183435994178, 0.49725117341302, 0.5005054011378701, 0.5035178722565734, 0.5063312791272528, 0.5089928009945566, 0.5115524529423747, 0.514061241249875, 0.5165692326778897, 0.5191236493181559, 0.5217670981892616, 0.5245360352981616, 0.5274595474238701, 0.5305585122035442, 0.5338451698746776, 0.5373231106875306 ], [ 0.39190306724524243, 0.38046771041880867, 0.369979209717926, 0.36069312277199256, 0.35285034541308813, 0.34665688333544753, 0.34226331685248185, 0.33974778483534646, 0.33910638309899155, 0.34025355886981856, 0.34303268516081387, 0.34723446466021873, 0.3526191910438117, 0.35893869480707247, 0.36595478379290775, 0.3734524875204279, 0.38124779843804085, 0.38919054256943086, 0.39716347188897977, 0.405078774178962, 0.41287309574191444, 0.4205019847000608, 0.4279344548266192, 0.4351481715391322, 0.4421255820015995, 0.4488511519765666, 0.4553097344902366, 0.4614859825390949, 0.46736463375691933, 0.47293144177652213, 0.4781745067973063, 0.48308576317551977, 0.48766240860527266, 0.49190810024298076, 0.49583379066420696, 0.4994581248075674, 0.5028073638659439, 0.5059148410982576, 0.5088199869124128, 0.5115669864036074, 0.5142031522912562, 0.5167771102953389, 0.5193369025444431, 0.5219281173981106, 0.5245921507009897, 0.5273646936673334, 0.5302745264323927, 0.5333426745754262, 0.5365819601585184, 0.5399969512525857 ], [ 0.4022248599384805, 0.3913440243139668, 0.3813505136695101, 0.37247386719736447, 0.36492846011304425, 0.3588963584196217, 0.3545103312618178, 0.351840035932529, 0.3508843426572543, 0.3515717304454305, 0.35376889422043556, 0.35729580977244224, 0.3619442304011034, 0.36749632173824864, 0.37374076907368375, 0.38048478111170697, 0.38756150807731354, 0.39483320953184664, 0.40219097385737335, 0.40955196514713194, 0.41685515595983885, 0.4240563859521531, 0.4311234258809173, 0.4380315552546455, 0.4447599943690919, 0.45128937469828284, 0.45760029132994007, 0.46367286347557957, 0.46948713986240137, 0.47502412875597577, 0.4802672077350099, 0.4852036726451266, 0.4898262119603009, 0.49413413420649516, 0.49813422443843747, 0.501841154657293, 0.5052774181233101, 0.5084727963341058, 0.5114633991638183, 0.5142903434457778, 0.5169981537085079, 0.5196329813976146, 0.5222407460205034, 0.5248653032088444, 0.5275467404936736, 0.5303198914801535, 0.5332131432851432, 0.5362475913202991, 0.5394365711887935, 0.5427855716217387 ], [ 0.4125628449500391, 0.40223329244423334, 0.3927318258108878, 0.38426372423527927, 0.3770190027679335, 0.37115796230153125, 0.3667972096883974, 0.3639985136316778, 0.3627627471121394, 0.3630303482673859, 0.36468838987732266, 0.3675829341983523, 0.37153436284344343, 0.37635309446354126, 0.3818534940998309, 0.3878645603649342, 0.3942368260868745, 0.40084559822211424, 0.4075911060976747, 0.414396339248042, 0.42120339915932703, 0.4279691279422342, 0.43466065964462747, 0.4412513963390699, 0.44771775826814053, 0.4540369061626343, 0.460185493667419, 0.4661393875879488, 0.4718742011768005, 0.47736642580600036, 0.48259491989600517, 0.48754251744382177, 0.4921975452387441, 0.49655507965570905, 0.5006178227234392, 0.5043965263700277, 0.5079099388048831, 0.5111842854187157, 0.5142523275361284, 0.5171520660503656, 0.5199251740795268, 0.5226152539913741, 0.5252660198893392, 0.5279195070762883, 0.5306144050681754, 0.5333846004001009, 0.5362580000148169, 0.5392556861909275, 0.5423914310640454, 0.545671574629025 ], [ 0.42286288813989753, 0.4130760592277556, 0.4040587660970422, 0.3959939010127821, 0.38904932685756377, 0.3833657601753655, 0.37904531967524385, 0.37614258991093313, 0.37465990210497, 0.3745478851932444, 0.3757113306450862, 0.378019358322828, 0.3813181107285853, 0.3854439458416887, 0.39023533643987846, 0.39554224138965544, 0.40123236618371677, 0.4071943002256052, 0.4133379212498794, 0.41959268388721643, 0.42590449253678747, 0.4322318417714575, 0.4385418273683638, 0.4448065137025284, 0.4510000062121962, 0.4570964342795192, 0.46306891218972956, 0.46888942516831544, 0.4745294933672152, 0.4799614050773877, 0.4851597827177009, 0.4901032479765306, 0.494775979076363, 0.4991689950483132, 0.5032810508595856, 0.5071190764428997, 0.5106981374738188, 0.5140409336006158, 0.5171768799234995, 0.5201408401062492, 0.5229715953375724, 0.5257101432357394, 0.5283979252830608, 0.5310750807775407, 0.5337788196973802, 0.536541996390828, 0.5393919509518921, 0.5423496662451269, 0.545429267002395, 0.5486378648585903 ], [ 0.4330747992153106, 0.4238179502702111, 0.41527319675538027, 0.4076029565115278, 0.4009551174580626, 0.3954529233725625, 0.3911856332058542, 0.3882013963715821, 0.3865036277718212, 0.38605165079195436, 0.3867656128584058, 0.38853488625693444, 0.39122858410391226, 0.3947065965564496, 0.39882969308393046, 0.40346763319392065, 0.40850472489258094, 0.41384273448804304, 0.41940140665895426, 0.42511707829393514, 0.4309399763958932, 0.43683080568996085, 0.4427571817125077, 0.4486903712675569, 0.45460268086483646, 0.46046569955101857, 0.46624946925621613, 0.47192253653395416, 0.4774527453327435, 0.4828085681790051, 0.4879607447534993, 0.49288399920926745, 0.4975586339231891, 0.5019718391477632, 0.5061186068233154, 0.5100021857273522, 0.5136340594508629, 0.5170334658445683, 0.5202265057506189, 0.5232449103247907, 0.5261245508800273, 0.5289037838304372, 0.5316217266768916, 0.5343165594733271, 0.5370239400757253, 0.5397756109072024, 0.542598260346784, 0.5455126838690847, 0.5485332698301466, 0.5516678137705974 ], [ 0.44315297194835496, 0.4344101959805482, 0.42632359331798103, 0.41903700045764175, 0.4126804214284933, 0.4073616206180057, 0.4031585344991117, 0.40011362472848905, 0.3982311388070966, 0.3974778337810267, 0.39778713727114046, 0.3990661237120843, 0.4012042372172464, 0.4040825030666967, 0.4075820507707159, 0.41159105450805417, 0.41600957498342306, 0.42075216167724205, 0.42574838154517763, 0.4309416526281929, 0.4362868790047887, 0.44174742070210676, 0.4472919057164854, 0.4528913173956201, 0.4585166839817828, 0.4641375726977337, 0.46972146322849095, 0.4752339591636897, 0.48063970294946473, 0.4859037979286556, 0.49099351250788875, 0.49588004355107557, 0.5005401420833647, 0.5049574457650633, 0.5091234109257644, 0.5130377853054999, 0.5167086062797213, 0.5201517456791764, 0.5233900505373239, 0.5264521495283069, 0.5293710083642582, 0.5321823249612577, 0.5349228575472592, 0.5376287766076875, 0.5403341249860661, 0.5430694598708437, 0.5458607362225227, 0.5487284741089, 0.5516872334318385, 0.554745399953168 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.156926 (SEM: 0)
x1: 0.609558
x2: 0.38527
x3: 0.842799
x4: 0.427459
x5: 0.581037
x6: 0.242283", "Arm 1_0
hartmann6: -0.0781471 (SEM: 0)
x1: 0.464273
x2: 0.964537
x3: 0.393806
x4: 0.741423
x5: 0.374555
x6: 0.557693", "Arm 2_0
hartmann6: -0.950105 (SEM: 0)
x1: 0.22483
x2: 0.542636
x3: 0.93867
x4: 0.413404
x5: 0.313344
x6: 0.981889", "Arm 3_0
hartmann6: -0.152688 (SEM: 0)
x1: 0.375896
x2: 0.167969
x3: 0.0767304
x4: 0.724087
x5: 0.508891
x6: 0.506212", "Arm 4_0
hartmann6: -0.00463175 (SEM: 0)
x1: 0.710853
x2: 0.0418649
x3: 0.0822931
x4: 0.209533
x5: 0.854872
x6: 0.401944", "Arm 5_0
hartmann6: -0.0786275 (SEM: 0)
x1: 0.937608
x2: 0.595109
x3: 0.26793
x4: 0.19014
x5: 0.0626795
x6: 0.885384", "Arm 6_0
hartmann6: -0.0345872 (SEM: 0)
x1: 0.120472
x2: 0.556843
x3: 0.682256
x4: 0.928503
x5: 0.631362
x6: 0.41973", "Arm 7_0
hartmann6: -0.0911865 (SEM: 0)
x1: 0.264624
x2: 0.279927
x3: 0.240536
x4: 0.495718
x5: 0.803813
x6: 0.602432", "Arm 8_0
hartmann6: -0.00145489 (SEM: 0)
x1: 0.921266
x2: 0.809655
x3: 0.438727
x4: 8.80007e-05
x5: 0.744998
x6: 0.270863", "Arm 9_0
hartmann6: -0.0146737 (SEM: 0)
x1: 0.797808
x2: 0.740205
x3: 0.187059
x4: 0.857293
x5: 0.411034
x6: 0.457282", "Arm 10_0
hartmann6: -0.125528 (SEM: 0)
x1: 0.173432
x2: 0.76843
x3: 0.163187
x4: 0.0888458
x5: 0.10114
x6: 0.286822", "Arm 11_0
hartmann6: -0.0366825 (SEM: 0)
x1: 0.59742
x2: 0.531002
x3: 0.554584
x4: 0.55474
x5: 0.999257
x6: 0.573779", "Arm 12_0
hartmann6: -0.367209 (SEM: 0)
x1: 0.0703345
x2: 0.690299
x3: 0.320792
x4: 0.109058
x5: 0.0883175
x6: 0.583747", "Arm 13_0
hartmann6: -0.954092 (SEM: 0)
x1: 0.0907955
x2: 0.619497
x3: 0.529177
x4: 0.207686
x5: 0.169786
x6: 0.809718", "Arm 14_0
hartmann6: -0.959026 (SEM: 0)
x1: 0.0936221
x2: 0.605643
x3: 0.556463
x4: 0.22399
x5: 0.187507
x6: 0.878419", "Arm 15_0
hartmann6: -1.11188 (SEM: 0)
x1: 0.100608
x2: 0.608034
x3: 0.611621
x4: 0.224986
x5: 0.178161
x6: 0.797704", "Arm 16_0
hartmann6: -1.15037 (SEM: 0)
x1: 0.10625
x2: 0.604204
x3: 0.687468
x4: 0.230214
x5: 0.175157
x6: 0.753018", "Arm 17_0
hartmann6: -0.90932 (SEM: 0)
x1: 0.114978
x2: 0.616664
x3: 0.689686
x4: 0.245888
x5: 0.111512
x6: 0.795159", "Arm 18_0
hartmann6: -1.3647 (SEM: 0)
x1: 0.105047
x2: 0.591428
x3: 0.68324
x4: 0.230463
x5: 0.229862
x6: 0.753203", "Arm 19_0
hartmann6: -1.5106 (SEM: 0)
x1: 0.107005
x2: 0.576046
x3: 0.695174
x4: 0.235956
x5: 0.288874
x6: 0.750303", "Arm 20_0
hartmann6: -1.53788 (SEM: 0)
x1: 0.107604
x2: 0.564793
x3: 0.698066
x4: 0.239062
x5: 0.329937
x6: 0.751326", "Arm 21_0
hartmann6: -1.82678 (SEM: 0)
x1: 0.0885114
x2: 0.494253
x3: 0.686294
x4: 0.214039
x5: 0.318827
x6: 0.743235", "Arm 22_0
hartmann6: -1.98481 (SEM: 0)
x1: 0.0801436
x2: 0.446914
x3: 0.691899
x4: 0.204454
x5: 0.292384
x6: 0.741138", "Arm 23_0
hartmann6: -2.13691 (SEM: 0)
x1: 0.0678483
x2: 0.374346
x3: 0.708889
x4: 0.195153
x5: 0.285289
x6: 0.743248", "Arm 24_0
hartmann6: -2.12357 (SEM: 0)
x1: 0.0431209
x2: 0.306832
x3: 0.714573
x4: 0.16544
x5: 0.301903
x6: 0.742107", "Arm 25_0
hartmann6: -2.37682 (SEM: 0)
x1: 0.0799936
x2: 0.313235
x3: 0.717798
x4: 0.245628
x5: 0.288675
x6: 0.749132", "Arm 26_0
hartmann6: -2.57996 (SEM: 0)
x1: 0.0839778
x2: 0.245926
x3: 0.69269
x4: 0.296408
x5: 0.292079
x6: 0.738119", "Arm 27_0
hartmann6: -2.64922 (SEM: 0)
x1: 0.088011
x2: 0.19592
x3: 0.656921
x4: 0.342264
x5: 0.279115
x6: 0.715612", "Arm 28_0
hartmann6: -2.80806 (SEM: 0)
x1: 0.159871
x2: 0.162642
x3: 0.655405
x4: 0.320893
x5: 0.280748
x6: 0.727409" ], "type": "scatter", "x": [ 0.6095580458641052, 0.46427332516759634, 0.22483001183718443, 0.37589621637016535, 0.710853218100965, 0.9376077298074961, 0.12047221325337887, 0.2646239399909973, 0.9212664058431983, 0.7978077847510576, 0.1734319757670164, 0.5974199073389173, 0.07033450008774463, 0.09079547741327233, 0.09362208953210266, 0.10060839553609507, 0.10624994079175323, 0.1149784791706915, 0.10504711814755888, 0.10700470378779625, 0.10760366914557919, 0.08851138121389444, 0.08014364755496461, 0.06784834626592685, 0.04312088812470869, 0.07999361978694751, 0.08397776679336263, 0.08801102360378645, 0.15987122390002484 ], "xaxis": "x", "y": [ 0.3852703273296356, 0.9645370254293084, 0.542636320926249, 0.1679691094905138, 0.041864871978759766, 0.5951094664633274, 0.5568432779982686, 0.27992690820246935, 0.8096554977819324, 0.7402053559198976, 0.7684295950457454, 0.5310021433979273, 0.6902987748966037, 0.6194972201699956, 0.6056434996224355, 0.60803363140874, 0.6042040438396834, 0.616663715604231, 0.5914278420342505, 0.5760460768291786, 0.5647934082098882, 0.4942525068732854, 0.446914319451564, 0.3743464278207046, 0.3068323014502012, 0.31323463450819583, 0.24592578808444576, 0.19591965499752736, 0.16264215268809964 ], "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.156926 (SEM: 0)
x1: 0.609558
x2: 0.38527
x3: 0.842799
x4: 0.427459
x5: 0.581037
x6: 0.242283", "Arm 1_0
hartmann6: -0.0781471 (SEM: 0)
x1: 0.464273
x2: 0.964537
x3: 0.393806
x4: 0.741423
x5: 0.374555
x6: 0.557693", "Arm 2_0
hartmann6: -0.950105 (SEM: 0)
x1: 0.22483
x2: 0.542636
x3: 0.93867
x4: 0.413404
x5: 0.313344
x6: 0.981889", "Arm 3_0
hartmann6: -0.152688 (SEM: 0)
x1: 0.375896
x2: 0.167969
x3: 0.0767304
x4: 0.724087
x5: 0.508891
x6: 0.506212", "Arm 4_0
hartmann6: -0.00463175 (SEM: 0)
x1: 0.710853
x2: 0.0418649
x3: 0.0822931
x4: 0.209533
x5: 0.854872
x6: 0.401944", "Arm 5_0
hartmann6: -0.0786275 (SEM: 0)
x1: 0.937608
x2: 0.595109
x3: 0.26793
x4: 0.19014
x5: 0.0626795
x6: 0.885384", "Arm 6_0
hartmann6: -0.0345872 (SEM: 0)
x1: 0.120472
x2: 0.556843
x3: 0.682256
x4: 0.928503
x5: 0.631362
x6: 0.41973", "Arm 7_0
hartmann6: -0.0911865 (SEM: 0)
x1: 0.264624
x2: 0.279927
x3: 0.240536
x4: 0.495718
x5: 0.803813
x6: 0.602432", "Arm 8_0
hartmann6: -0.00145489 (SEM: 0)
x1: 0.921266
x2: 0.809655
x3: 0.438727
x4: 8.80007e-05
x5: 0.744998
x6: 0.270863", "Arm 9_0
hartmann6: -0.0146737 (SEM: 0)
x1: 0.797808
x2: 0.740205
x3: 0.187059
x4: 0.857293
x5: 0.411034
x6: 0.457282", "Arm 10_0
hartmann6: -0.125528 (SEM: 0)
x1: 0.173432
x2: 0.76843
x3: 0.163187
x4: 0.0888458
x5: 0.10114
x6: 0.286822", "Arm 11_0
hartmann6: -0.0366825 (SEM: 0)
x1: 0.59742
x2: 0.531002
x3: 0.554584
x4: 0.55474
x5: 0.999257
x6: 0.573779", "Arm 12_0
hartmann6: -0.367209 (SEM: 0)
x1: 0.0703345
x2: 0.690299
x3: 0.320792
x4: 0.109058
x5: 0.0883175
x6: 0.583747", "Arm 13_0
hartmann6: -0.954092 (SEM: 0)
x1: 0.0907955
x2: 0.619497
x3: 0.529177
x4: 0.207686
x5: 0.169786
x6: 0.809718", "Arm 14_0
hartmann6: -0.959026 (SEM: 0)
x1: 0.0936221
x2: 0.605643
x3: 0.556463
x4: 0.22399
x5: 0.187507
x6: 0.878419", "Arm 15_0
hartmann6: -1.11188 (SEM: 0)
x1: 0.100608
x2: 0.608034
x3: 0.611621
x4: 0.224986
x5: 0.178161
x6: 0.797704", "Arm 16_0
hartmann6: -1.15037 (SEM: 0)
x1: 0.10625
x2: 0.604204
x3: 0.687468
x4: 0.230214
x5: 0.175157
x6: 0.753018", "Arm 17_0
hartmann6: -0.90932 (SEM: 0)
x1: 0.114978
x2: 0.616664
x3: 0.689686
x4: 0.245888
x5: 0.111512
x6: 0.795159", "Arm 18_0
hartmann6: -1.3647 (SEM: 0)
x1: 0.105047
x2: 0.591428
x3: 0.68324
x4: 0.230463
x5: 0.229862
x6: 0.753203", "Arm 19_0
hartmann6: -1.5106 (SEM: 0)
x1: 0.107005
x2: 0.576046
x3: 0.695174
x4: 0.235956
x5: 0.288874
x6: 0.750303", "Arm 20_0
hartmann6: -1.53788 (SEM: 0)
x1: 0.107604
x2: 0.564793
x3: 0.698066
x4: 0.239062
x5: 0.329937
x6: 0.751326", "Arm 21_0
hartmann6: -1.82678 (SEM: 0)
x1: 0.0885114
x2: 0.494253
x3: 0.686294
x4: 0.214039
x5: 0.318827
x6: 0.743235", "Arm 22_0
hartmann6: -1.98481 (SEM: 0)
x1: 0.0801436
x2: 0.446914
x3: 0.691899
x4: 0.204454
x5: 0.292384
x6: 0.741138", "Arm 23_0
hartmann6: -2.13691 (SEM: 0)
x1: 0.0678483
x2: 0.374346
x3: 0.708889
x4: 0.195153
x5: 0.285289
x6: 0.743248", "Arm 24_0
hartmann6: -2.12357 (SEM: 0)
x1: 0.0431209
x2: 0.306832
x3: 0.714573
x4: 0.16544
x5: 0.301903
x6: 0.742107", "Arm 25_0
hartmann6: -2.37682 (SEM: 0)
x1: 0.0799936
x2: 0.313235
x3: 0.717798
x4: 0.245628
x5: 0.288675
x6: 0.749132", "Arm 26_0
hartmann6: -2.57996 (SEM: 0)
x1: 0.0839778
x2: 0.245926
x3: 0.69269
x4: 0.296408
x5: 0.292079
x6: 0.738119", "Arm 27_0
hartmann6: -2.64922 (SEM: 0)
x1: 0.088011
x2: 0.19592
x3: 0.656921
x4: 0.342264
x5: 0.279115
x6: 0.715612", "Arm 28_0
hartmann6: -2.80806 (SEM: 0)
x1: 0.159871
x2: 0.162642
x3: 0.655405
x4: 0.320893
x5: 0.280748
x6: 0.727409" ], "type": "scatter", "x": [ 0.6095580458641052, 0.46427332516759634, 0.22483001183718443, 0.37589621637016535, 0.710853218100965, 0.9376077298074961, 0.12047221325337887, 0.2646239399909973, 0.9212664058431983, 0.7978077847510576, 0.1734319757670164, 0.5974199073389173, 0.07033450008774463, 0.09079547741327233, 0.09362208953210266, 0.10060839553609507, 0.10624994079175323, 0.1149784791706915, 0.10504711814755888, 0.10700470378779625, 0.10760366914557919, 0.08851138121389444, 0.08014364755496461, 0.06784834626592685, 0.04312088812470869, 0.07999361978694751, 0.08397776679336263, 0.08801102360378645, 0.15987122390002484 ], "xaxis": "x2", "y": [ 0.3852703273296356, 0.9645370254293084, 0.542636320926249, 0.1679691094905138, 0.041864871978759766, 0.5951094664633274, 0.5568432779982686, 0.27992690820246935, 0.8096554977819324, 0.7402053559198976, 0.7684295950457454, 0.5310021433979273, 0.6902987748966037, 0.6194972201699956, 0.6056434996224355, 0.60803363140874, 0.6042040438396834, 0.616663715604231, 0.5914278420342505, 0.5760460768291786, 0.5647934082098882, 0.4942525068732854, 0.446914319451564, 0.3743464278207046, 0.3068323014502012, 0.31323463450819583, 0.24592578808444576, 0.19591965499752736, 0.16264215268809964 ], "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, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:23:47.645442Z", "iopub.status.busy": "2022-12-29T21:23:47.644999Z", "iopub.status.idle": "2022-12-29T21:23:48.129042Z", "shell.execute_reply": "2022-12-29T21:23:48.128488Z" } }, "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": [ [ 1.001634531716845, 0.9997578395111744, 0.9984772375882787, 0.9978144296438303, 0.9977874188244522, 0.9984099842939353, 0.9996912823415116, 1.0016356171521015, 1.0042423964598635, 1.0075062557751466, 1.0114173139701659, 1.0159615170192364, 1.021121031892234, 1.0268746624232667, 1.0331982684684977, 1.040065176690661, 1.0474465757408769, 1.0553118911588377, 1.0636291368007904, 1.072365240614188, 1.0814863434292685, 1.0909580702390664, 1.100745774194389, 1.1108147542093274, 1.1211304476194255, 1.1316585997393551, 1.1423654124273563, 1.153217673893072, 1.1641828720025935, 1.175229293262276, 1.1863261095226534, 1.1974434542539583, 1.208552490021667, 1.2196254685465893, 1.230635784480909, 1.2415580237769428, 1.2523680072793768, 1.2630428299398335, 1.2735608958428426, 1.2839019490490768, 1.294047100111624, 1.3039788480053884, 1.313681097132224, 1.3231391690249654, 1.332339808369764, 1.341271182997402, 1.34992287755381, 1.3582858806448643, 1.366352565352434, 1.3741166631332349 ], [ 1.0024528298675635, 1.0006138825377777, 0.9993777303305318, 0.9987667209187636, 0.9987994250914884, 0.9994900644352248, 1.0008480728245668, 1.0028778465127464, 1.0055787002659755, 1.0089450079730986, 1.012966482181428, 1.0176285426189446, 1.0229127324483915, 1.0287971536045915, 1.0352569032918701, 1.0422645008270126, 1.0497902980330964, 1.0578028685053034, 1.0662693722927075, 1.0751558934814691, 1.0844277490835519, 1.0940497685677362, 1.1039865442634191, 1.1142026536508327, 1.1246628551767919, 1.135332259681673, 1.146176479796617, 1.1571617597909445, 1.1682550883439005, 1.1794242966134858, 1.1906381438003975, 1.2018663921834207, 1.213079873347578, 1.2242505470541991, 1.2353515539243956, 1.2463572628317843, 1.2572433136364543, 1.2679866556471286, 1.2785655819773498, 1.2889597597715383, 1.2991502561218453, 1.309119559379002, 1.3188515954833875, 1.3283317389051776, 1.337546817782993, 1.346485112886523, 1.3551363500954925, 1.3634916861781754, 1.3715436877630722, 1.37928630351865 ], [ 1.0035957926659895, 1.0017986888870087, 1.0006105889533135, 1.0000544698953677, 1.0001494668625848, 1.0009102490428523, 1.002346538194019, 1.004462836193591, 1.0072583815050156, 1.010727306392382, 1.014858939692702, 1.0196381983147456, 1.0250460237111152, 1.031059835042927, 1.0376539822998905, 1.044800189377892, 1.0524679804710722, 1.0606250847580552, 1.0692378153853215, 1.078271419729301, 1.0876903990015911, 1.0974587963957536, 1.1075404540451834, 1.1178992399762984, 1.1284992469455633, 1.139304965532239, 1.1502814341349057, 1.1613943686217643, 1.172610274348321, 1.1838965431161605, 1.195221537434455, 1.2065546641858393, 1.2178664395096452, 1.2291285464138624, 1.2403138863227283, 1.251396625470463, 1.2623522367705606, 1.273157537530241, 1.2837907231498298, 1.2942313967489032, 1.304460594502279, 1.3144608063500232, 1.3242159916690885, 1.3337115894598384, 1.3429345226052827, 1.3518731958036072, 1.3605174868467054, 1.368858731017504, 1.3768896984957408, 1.384604564791343 ], [ 1.0050678119654801, 1.0033167814841475, 1.0021804374394636, 1.0016823621227984, 1.0018422441758201, 1.0026752010847424, 1.004191251944083, 1.0063950205454801, 1.0092856914031032, 1.0128571826037853, 1.0170984696196324, 1.0219939967139804, 1.0275241308185346, 1.0336656308447107, 1.0403921170870412, 1.047674531239811, 1.055481580054768, 1.0637801568429948, 1.0725357359919538, 1.0817127368332393, 1.0912748545560382, 1.1011853572619883, 1.1114073495350358, 1.1219040039516384, 1.1326387627330403, 1.1435755122476001, 1.1546787333376525, 1.1659136305160245, 1.1772462430003845, 1.1886435403685296, 1.2000735053619127, 1.211505206063888, 1.2229088593541608, 1.234255887208134, 1.2455189670791071, 1.256672077283356, 1.267690538009371, 1.2785510483001974, 1.2892317191179077, 1.2997121023948455, 1.3099732158145254, 1.3199975629443619, 1.329769148268132, 1.339273486633623, 1.3484976066418493, 1.3574300475512369, 1.36606084935144, 1.3743815357675044, 1.3823850900815025, 1.3900659237955335 ], [ 1.0068723032442652, 1.0051716873786003, 1.0040908906108812, 1.0036540657929058, 1.0038814350321466, 1.0047885590630479, 1.0063857624821346, 1.0086778103988128, 1.011663862156037, 1.0153376570430757, 1.019687855077685, 1.02469846397468, 1.0303493072189263, 1.036616508154735, 1.0434729759801282, 1.0508888840664687, 1.0588321326388457, 1.0672687887616867, 1.0761634977087862, 1.0854798613259342, 1.0951807807404608, 1.105228762490146, 1.1155861886431904, 1.1262155526598567, 1.1370796635791522, 1.1481418216248875, 1.1593659685652267, 1.1707168161872015, 1.1821599561193972, 1.193661953999649, 1.2051904306797732, 1.2167141328153885, 1.2282029948258475, 1.2396281938445033, 1.2509621989224329, 1.2621788154097904, 1.2732532251228923, 1.2841620226211605, 1.2948832476678944, 1.3053964137401493, 1.3156825322867705, 1.325724132313953, 1.3355052748035958, 1.345011561442284, 1.354230137153499, 1.3631496859801833, 1.3717604199525113, 1.3800540606911023, 1.3880238136292888, 1.3956643348849416 ], [ 1.009011635942702, 1.007365858574096, 1.0063444671098554, 1.005972139314051, 1.006269600383268, 1.007252842318096, 1.0089325015796704, 1.0113135072601462, 1.014395028953286, 1.0181706701069375, 1.0226288195997006, 1.0277530888980055, 1.0335227911834892, 1.0399134395697338, 1.0468972508595358, 1.0544436442164384, 1.0625197250201748, 1.071090745132971, 1.0801205323878322, 1.0895718841842008, 1.0994069222991723, 1.1095874080847474, 1.1200750189341657, 1.1308315881847468, 1.141819311488784, 1.1530009231777643, 1.1643398463411614, 1.175800320311681, 1.1873475090603116, 1.1989475937116252, 1.2105678520319185, 1.2221767273537258, 1.23374388899868, 1.2452402858635798, 1.2566381944519545, 1.2679112622727708, 1.279034547197757, 1.2899845530708154, 1.3007392616065767, 1.311278160400018, 1.321582266701131, 1.3316341464887815, 1.3414179283056495, 1.3509193112929374, 1.3601255668832986, 1.369025533672023, 1.377609605081932, 1.3858697095606678, 1.3937992831925257, 1.4013932347610252 ], [ 1.0114870827408722, 1.0099006104201567, 1.008942518065636, 1.0086379527933444, 1.0090081019107602, 1.0100693689816314, 1.011832706275594, 1.0143032323607593, 1.0174801683130104, 1.021357030565699, 1.0259219851143242, 1.031158289017481, 1.037044778102108, 1.0435563797276726, 1.0506646364077261, 1.0583382274367001, 1.0665434762522148, 1.075244832695297, 1.0844053216586618, 1.093986952388582, 1.1039510854562016, 1.1142587568170912, 1.12487096027376, 1.1357488910139397, 1.1468541537618873, 1.1581489395340647, 1.1695961751250885, 1.1811596493528365, 1.1928041198360335, 1.204495403722326, 1.2162004553733505, 1.227887433577456, 1.2395257604208987, 1.2510861735193193, 1.26254077290429, 1.2738630634791317, 1.2850279936125903, 1.2960119901311835, 1.3067929897061945, 1.3173504664121327, 1.3276654550639388, 1.3377205698200154, 1.3475000174693128, 1.3569896048004266, 1.3661767394770261, 1.3750504239119716, 1.3836012417356625, 1.391821336586905, 1.3997043831059495, 1.4072455501736374 ], [ 1.0142987974756772, 1.0127760888137045, 1.011885183726978, 1.011651636229956, 1.0120970455670861, 1.0132381994976756, 1.0150863668554406, 1.0176468824900864, 1.02091906346563, 1.024896390385599, 1.0295668546901025, 1.0349133990161528, 1.040914412237284, 1.0475442584160992, 1.054773823146647, 1.0625710609760055, 1.0709015284650083, 1.0797288898177633, 1.0890153853419244, 1.098722256572972, 1.10881012518038, 1.1192393254797661, 1.129970192411674, 1.1409633082378763, 1.1521797120418789, 1.1635810765119805, 1.1751298565449833, 1.1867894140345858, 1.198524122880705, 1.210299457836542, 1.2220820703433526, 1.2338398540208502, 1.2455420020038082, 1.257159057855972, 1.268662961361645, 1.2800270900961828, 1.2912262973176591, 1.3022369464038615, 1.313036941787686, 1.3236057561208774, 1.3339244532252257, 1.343975706270911, 1.353743810555124, 1.3632146902384088, 1.3723758984281296, 1.3812166100732015, 1.3897276072463143, 1.3979012565307585, 1.4057314783903507, 1.413213708574244 ], [ 1.0174458319013953, 1.0159912792452916, 1.0151713934478597, 1.0150120713875324, 1.0155352685659398, 1.0167581232789273, 1.0186922175123678, 1.0213431274213363, 1.0247103091044563, 1.0287872554347708, 1.0335618267254214, 1.0390166857254715, 1.0451298002987623, 1.0518749912282663, 1.0592225044415051, 1.0671395868284619, 1.075591046674735, 1.0845397834549502, 1.0939472762370146, 1.1037740243415421, 1.113979937674732, 1.124524677107459, 1.1353679473959404, 1.14646974652425, 1.1577905761281646, 1.16929161797198, 1.1809348814251976, 1.1926833266285162, 1.2045009676364937, 1.2163529593396767, 1.2282056714475678, 1.240026752286521, 1.2517851846533374, 1.2634513354772727, 1.2749970005898834, 1.2863954454866262, 1.297621442592188, 1.30865130521493, 1.3194629180989927, 1.3300357642560685, 1.340350947587286, 1.350391210686797, 1.360140947155306, 1.3695862077397245, 1.3787146996532584, 1.3875157785121104, 1.3959804324451797, 1.4041012580827346, 1.4118724283024584, 1.419289651792479 ], [ 1.0209261993341516, 1.0195440696670148, 1.0187989247725227, 1.018716945980207, 1.01932038990118, 1.0206267083206442, 1.022647787619558, 1.0253894637010812, 1.0288513664665795, 1.0330270392491807, 1.037904244512103, 1.0434653911868386, 1.0496880466929865, 1.0565455066890663, 1.0640073959767655, 1.07204027453477, 1.0806082261300036, 1.0896734123076839, 1.0991965802925374, 1.1091375185004957, 1.1194554575512339, 1.130109417804268, 1.1410585066040666, 1.1522621697659974, 1.1636804025377847, 1.1752739254939872, 1.187004330705216, 1.198834203181428, 1.2107272221116139, 1.2226482458739374, 1.2345633842150419, 1.2464400604281527, 1.2582470658107017, 1.2699546081690891, 1.2815343556628438, 1.2929594768513306, 1.3042046774217693, 1.3152462337439423, 1.3260620231142632, 1.3366315503238575, 1.3469359700114885, 1.3569581041459173, 1.3666824539201423, 1.3760952053332707, 1.385184227778817, 1.3939390650473713, 1.4023509182803142, 1.4104126205700926, 1.418118603084517, 1.4254648527844365 ], [ 1.0247369869929632, 1.023431372955683, 1.0227645317313305, 1.0227628839743892, 1.0234489401544984, 1.024840429130595, 1.0269495263710229, 1.0297823336050849, 1.033338673323621, 1.0376121608130597, 1.042590479533932, 1.0482558006146752, 1.0545853066485735, 1.0615517860310264, 1.069124264228283, 1.0772686405819987, 1.0859483047960459, 1.0951247143221399, 1.1047579207549962, 1.114807039185364, 1.1252306589790557, 1.1359871977051783, 1.147035202100751, 1.158333601248208, 1.1698419177599728, 1.1815204428935946, 1.1933303813119098, 1.205233970778281, 1.2171945815250873, 1.2291767994242402, 1.2411464964628027, 1.2530708914162862, 1.2649186030327952, 1.2766596975022635, 1.2882657314929027, 1.2997097915927336, 1.3109665306012228, 1.3220122007749604, 1.3328246838451483, 1.3433835173936706, 1.3536699170007427, 1.3636667934611466, 1.373358764307373, 1.382732158874344, 1.3917750161895097, 1.4004770750682425, 1.408829755930793, 1.41682613402675, 1.4244609039434026, 1.4317303354781534 ], [ 1.0288745081984985, 1.027649302091908, 1.027064138296558, 1.0271456507683623, 1.0279165709579403, 1.0293948729500835, 1.0315929985819399, 1.0345173041026356, 1.038167801146722, 1.042538177082351, 1.0476160388415132, 1.0533833261251535, 1.0598168491601039, 1.0668889088795026, 1.0745679585203847, 1.082819270201521, 1.0916055778080915, 1.1008876761956996, 1.1106249646237385, 1.1207759287151087, 1.1312985600148042, 1.142150715557796, 1.1532904220086861, 1.1646761301629684, 1.1762669261322962, 1.1880227055739396, 1.1999043170268184, 1.211873679910911, 1.2238938821249694, 1.2359292615090955, 1.247945474765693, 1.2599095567840228, 1.2717899727050361, 1.283556664502711, 1.2951810933489358, 1.3066362785737071, 1.3178968336304477, 1.3289389991301066, 1.3397406727170953, 1.3502814353277774, 1.3605425731974092, 1.3705070948670555, 1.3801597423842034, 1.3894869958923546, 1.3984770708580347, 1.4071199072871665, 1.4154071504274943, 1.4233321226322553, 1.4308897862619718, 1.4380766977151977 ], [ 1.033334472335936, 1.0321933737822508, 1.0316930714947907, 1.0318604073461677, 1.032718318169396, 1.0342849982500848, 1.0365731256215185, 1.0395892803550144, 1.0433336354925937, 1.0477999287819018, 1.0529756781500859, 1.0588425911899324, 1.0653771178634455, 1.0725510957359348, 1.0803324398654939, 1.0886858365994776, 1.0975734103427077, 1.1069553424004634, 1.1167904297004656, 1.1270365780239162, 1.1376512293654524, 1.1485917264540673, 1.1598156196150038, 1.1712809223260654, 1.1829463222791787, 1.194771354710399, 1.2067165443802375, 1.2187435220036538, 1.2308151202413888, 1.2428954536405, 1.2549499861944222, 1.2669455895107338, 1.2788505939394221, 1.2906348344346288, 1.3022696924001655, 1.3137281343025757, 1.32498474742751, 1.3360157728033615, 1.3467991350229938, 1.3573144684596397, 1.3675431391982695, 1.3774682618889502, 1.3870747106741166, 1.3963491233449212, 1.405279897941089, 1.4138571811182958, 1.4220728477596105, 1.4299204714965907, 1.437395286016823, 1.4444941372603008 ], [ 1.0381121388560728, 1.0370586997722904, 1.0366462869611888, 1.0369019612912207, 1.0378488642036405, 1.0395053914266188, 1.0418844206919031, 1.0449927084225508, 1.048830541007577, 1.0533916679557467, 1.0586634958627243, 1.0646274969320055, 1.0712597758641205, 1.0785317371632441, 1.0864107994491294, 1.0948611126736427, 1.1038442455428126, 1.1133198214788251, 1.1232460907679176, 1.1335804337380855, 1.144279795010268, 1.1553010523779035, 1.1666013260352377, 1.1781382350153242, 1.1898701080928396, 1.2017561562822696, 1.2137566136037798, 1.2258328521343596, 1.2379474766120264, 1.2500644030860704, 1.2621489253476479, 1.2741677721623492, 1.2860891576671305, 1.2978828266978981, 1.3095200962789346, 1.3209738940306106, 1.332218793838101, 1.3432310487676415, 1.3539886209213163, 1.3644712076846184, 1.3746602636456047, 1.384539017349804, 1.3940924820014187, 1.403307459228296, 1.412172535090455, 1.420678067629039, 1.4288161654124385, 1.4365806567349533, 1.4439670493456074, 1.4509724808214657 ], [ 1.0432024166650493, 1.042240117105986, 1.0419185282064074, 1.0422649478701378, 1.0433027285824656, 1.0450504517383046, 1.0475211543050327, 1.050721712079666, 1.054652466266208, 1.0593071324963739, 1.064672982028694, 1.0707312514633136, 1.0774577213045657, 1.0848234006234192, 1.0927952607123308, 1.1013369712697956, 1.110409604985723, 1.119972288060752, 1.129982783975398, 1.1403980053790441, 1.151174454415772, 1.1622685954545373, 1.1736371664075658, 1.18523743595003, 1.197027414296128, 1.2089660249950345, 1.2210132446796085, 1.2331302169784497, 1.245279345995019, 1.2574243739346458, 1.269530446666113, 1.2815641702625489, 1.2934936608890815, 1.3052885897928184, 1.316920224606814, 1.3283614676981463, 1.3395868918714118, 1.3505727733801014, 1.3612971218998893, 1.371739706879613, 1.381882079509058, 1.3917075894275732, 1.4012013952450566, 1.4103504679553285, 1.4191435863889854, 1.4275713239746777, 1.4356260262465605, 1.4433017787429694, 1.4505943651750908, 1.4575012159921046 ], [ 1.0485998752806192, 1.047732214174759, 1.0475043669263673, 1.0479438808175472, 1.049074322449518, 1.050914441395474, 1.0534773927870578, 1.0567701156117397, 1.0607929504367226, 1.0655395392217992, 1.0709970019411186, 1.0771463483717354, 1.0839630645348646, 1.091417809200462, 1.0994771615539367, 1.1081043719997992, 1.1172600806624218, 1.1269029801455452, 1.1369904093058805, 1.1474788727460257, 1.1583244864807956, 1.1694833540667502, 1.1809118797789386, 1.192567026551449, 1.2044065266976456, 1.216389053171679, 1.228474358533036, 1.2406233879928936, 1.2527983720590676, 1.2649629034315961, 1.2770820019746036, 1.2891221708243354, 1.301051445999089, 1.3128394412547126, 1.324457389376712, 1.3358781806146243, 1.3470763985415075, 1.3580283532599586, 1.3687121115759833, 1.379107523521114, 1.3891962444257768, 1.3989617516304405, 1.4083893548690956, 1.417466199368946, 1.4261812607815783, 1.4345253311874056, 1.4424909955917662, 1.4500725985479817, 1.457266200787373, 1.4640695259951229 ], [ 1.0542986486203192, 1.0535292278994266, 1.0533980944531998, 1.053933038944689, 1.0551578314516685, 1.0570913662982049, 1.0597468790601607, 1.0631313274031737, 1.0672450127893134, 1.0720814823442057, 1.077627706044403, 1.0838644896469158, 1.090767064663641, 1.098305791559356, 1.1064469169088025, 1.115153335331671, 1.1243853193525681, 1.134101192543545, 1.1442579319465773, 1.1548116941876563, 1.1657182657981728, 1.1769334423056592, 1.1884133430413222, 1.2001146697464375, 1.211994917318719, 1.224012544721989, 1.2361271134186524, 1.2482993998414686, 1.2604914875122466, 1.272666843511925, 1.28479038315313, 1.2968285259209074, 1.308749245041455, 1.3205221124070274, 1.3321183400292238, 1.343510818702984, 1.3546741541391656, 1.3655847004604884, 1.3762205906526133, 1.3865617633202985, 1.3965899849185044, 1.4062888665105695, 1.4156438740529926, 1.4246423312167802, 1.4332734138292427, 1.4415281351514004, 1.4493993213908123, 1.4568815770750123, 1.463971240167083, 1.4706663270754994 ], [ 1.0602922325161752, 1.059624813155464, 1.0595934659728776, 1.0602261911488855, 1.0615469306839065, 1.0635746921369926, 1.0663227612507975, 1.0697980905806883, 1.074000931904074, 1.078924744544839, 1.0845563733716321, 1.0908764598971743, 1.0978600316809188, 1.1054772085043472, 1.1136939661913297, 1.122472907610364, 1.1317740023133527, 1.1415552687661612, 1.1517733843312656, 1.1623842171115384, 1.1733432802463586, 1.1846061135016754, 1.1961285994523756, 1.207867222681353, 1.2197792806257857, 1.231823054318319, 1.2439579465444832, 1.2561445940390283, 1.2683449593939196, 1.2805224074147254, 1.2926417697879622, 1.3046694011220665, 1.3165732287099319, 1.328322797725221, 1.3398893130053182, 1.3512456780831505, 1.3623665317046094, 1.3732282817028898, 1.3838091357979008, 1.3940891286432542, 1.4040501442615967, 1.4136759328894137, 1.4229521211978855, 1.4318662148679164, 1.4404075925722588, 1.4485674905551555, 1.4563389771897428, 1.4637169171295934, 1.470697924937162, 1.4772803083547874 ], [ 1.0665731982980389, 1.0660117118019778, 1.0660833302410062, 1.0668161974470751, 1.0682343726583514, 1.0703569377876276, 1.073197209543631, 1.0767621376866527, 1.081051946996219, 1.0860600481186695, 1.0917732111194558, 1.098171970007936, 1.1052312084118503, 1.1129208671366124, 1.1212067139666253, 1.130051123294164, 1.139413824966497, 1.149252594832533, 1.159523871406412, 1.170183292593661, 1.1811861532551586, 1.1924877887895937, 1.2040438923980352, 1.215810774777241, 1.2277455751269617, 1.239806431902733, 1.2519526209559553, 1.264144667757215, 1.2763444394111212, 1.2885152212121653, 1.3006217816000445, 1.312630428565368, 1.324509059837027, 1.3362272085457958, 1.3477560854991755, 1.3590686187124308, 1.370139490414915, 1.3809451713850756, 1.3914639521618204, 1.4016759704328492, 1.4115632337149793, 1.4211096363196056, 1.4303009695401805, 1.439124924008711, 1.4475710832461641, 1.4556309075715217, 1.4632977077322056, 1.4705666078626358, 1.4774344976558298, 1.4838999739273022 ], [ 1.073132863195175, 1.0726813705370843, 1.0728592023382806, 1.0736945505398416, 1.075211517100446, 1.0774292154761946, 1.080360987622505, 1.0840138094371825, 1.0883879331581452, 1.093476789034343, 1.0992671445679887, 1.1057394967725478, 1.112868652408752, 1.1206244375845673, 1.1289724748596945, 1.1378749724338226, 1.1472914824016962, 1.1571795991910265, 1.1674955821368131, 1.1781948962413735, 1.1892326722647262, 1.2005640917591978, 1.2121447051007606, 1.2239306915691142, 1.235879070577456, 1.2479478726203894, 1.2600962776604323, 1.2722847276844125, 1.2844750191451209, 1.2966303800286367, 1.3087155353877544, 1.3206967643717717, 1.3325419510629186, 1.344220630795629, 1.3557040330776093, 1.3669651217432297, 1.3779786325452772, 1.3887211080248674, 1.399170929191914, 1.4093083432982954, 1.4191154867979372, 1.4285764024618361, 1.4376770495573745, 1.4464053060111568, 1.4547509615520529, 1.462705700976029, 1.4702630768774771, 1.477418471445562, 1.484169047212106, 1.4905136869447337 ], [ 1.0799609710203022, 1.0796235713737699, 1.079910852783601, 1.0808509386165999, 1.0824678872797304, 1.0847808021856489, 1.0878030585935003, 1.0915417092583972, 1.095997111726437, 1.1011628038773142, 1.1070256366124156, 1.113566148415092, 1.1207591400481525, 1.1285743885994415, 1.1369774344882428, 1.1459303818598345, 1.1553926667508394, 1.1653217630725665, 1.1756738103151319, 1.1864041574669417, 1.1974678248770665, 1.2088198902062115, 1.2204158069286395, 1.2322116647167882, 1.2441644009797406, 1.256231972212507, 1.2683734929092976, 1.2805493487695463, 1.292721289891408, 1.3048525086628557, 1.3169077061599992, 1.3288531500539493, 1.3406567263130855, 1.3522879863580588, 1.3637181907745135, 1.374920350203808, 1.3858692636085985, 1.3965415537445562, 1.4069156993596164, 1.4169720633897656, 1.4266929162273247, 1.436062453009078, 1.4450668038084582, 1.4536940356251866, 1.461934145143171, 1.4697790413754677, 1.4772225175247713, 1.4842602116494108, 1.4908895560243232, 1.4971097154044648 ], [ 1.0870454409229755, 1.08682614310209, 1.0872259906076147, 1.088272913524556, 1.0899908396629379, 1.092398827322055, 1.0955103043817347, 1.0993324632502839, 1.103865854216175, 1.1091042165874074, 1.11503457318106, 1.1216375832439707, 1.1288881128522243, 1.1367559565202896, 1.1452066368384506, 1.1542022175276656, 1.1637020817452242, 1.173663645050971, 1.1840429873436293, 1.1947953990375326, 1.2058758439751744, 1.2172393458228061, 1.2288413068200565, 1.2406377684560344, 1.2525856234615058, 1.2646427878104847, 1.2767683404717822, 1.2889226376014447, 1.301067406822888, 1.3131658262570076, 1.3251825920697782, 1.337083977503657, 1.3488378856548031, 1.3604138976353077, 1.3717833172147005, 1.3829192125544023, 1.3937964552281215, 1.404391756355031, 1.4146836993613436, 1.4246527686300008, 1.4342813731006683, 1.4435538637491907, 1.4524565438096153, 1.4609776706073716, 1.4691074479514015, 1.4768380081826658, 1.4841633831916348, 1.491079463987949, 1.4975839487142364, 1.5036762793263727 ], [ 1.094372235258301, 1.0942748135148037, 1.0947901072895603, 1.0959457354842561, 1.0977654186147614, 1.1002681449583038, 1.1034674201349215, 1.107370638125002, 1.1119786225859374, 1.11728539839682, 1.1232782398115906, 1.1299380001237231, 1.137239679659763, 1.1451531574725082, 1.1536440052065713, 1.1626743131622312, 1.1722034781617072, 1.1821889224698812, 1.1925867288749037, 1.2033521882108027, 1.214440262684914, 1.2258059723713328, 1.237404714111863, 1.249192522582316, 1.2611262829719978, 1.2731639039543872, 1.2852644586337358, 1.2973883000887418, 1.3094971570892817, 1.3215542145867234, 1.3335241826939197, 1.3453733570843032, 1.3570696730457632, 1.368582754813769, 1.3798839612707077, 1.3909464286231368, 1.4017451102505416, 1.4122568135536204, 1.4224602333159275, 1.4323359808335896, 1.4418666078654219, 1.4510366243180086, 1.4598325085099422, 1.4682427088626344, 1.476257635943582, 1.4838696439402703, 1.4910730008632707, 1.4978638470551267, 1.5042401419007625, 1.5102015989764384 ], [ 1.1019253786964842, 1.101953238777114, 1.1025865206750542, 1.103852433974277, 1.1057744337267046, 1.1083714239323472, 1.111657011183202, 1.1156388385918592, 1.120318061787648, 1.1256890524717134, 1.1317393976037522, 1.1384502066982265, 1.145796679032777, 1.1537488461278467, 1.1622723992807122, 1.1713295272053101, 1.1808797117061653, 1.1908804509065196, 1.201287896163357, 1.2120574000380495, 1.2231439795331513, 1.2345027025037618, 1.2460890067766925, 1.2578589618432892, 1.2697694825682384, 1.281778503524235, 1.2938451215436249, 1.3059297130109813, 1.3179940313846954, 1.3300012894754327, 1.341916230142388, 1.3537051882985252, 1.3653361464367508, 1.3767787852902904, 1.3880045307114481, 1.3989865973839295, 1.4097000295678115, 1.420121738710884, 1.4302305374433562, 1.4400071692092584, 1.4494343325813563, 1.4584966991619694, 1.4671809238989684, 1.4754756466450594, 1.4833714838673873, 1.490861009568024, 1.497938724701489, 1.5046010146608888, 1.51084609473252, 1.516673943771053 ], [ 1.109687132256677, 1.1098432112340022, 1.1105966166869679, 1.1119740783161216, 1.1139987488476684, 1.1166894410819412, 1.1200598754940105, 1.1241179666356613, 1.1288652282868805, 1.1342964093806023, 1.1403994476286006, 1.147155757346062, 1.1545407963649414, 1.1625248174218268, 1.171073706139998, 1.1801498267634183, 1.1897128225995668, 1.1997203412572328, 1.2101286718664104, 1.2208932926259475, 1.2319693335856048, 1.2433119629724017, 1.2548767067626654, 1.2666197113792284, 1.2784979588796603, 1.290469443127782, 1.3024933144123452, 1.3145299989181105, 1.3265412984372285, 1.3384904747703845, 1.3503423224228164, 1.3620632324499289, 1.3736212496451767, 1.3849861246772233, 1.3961293622633868, 1.4070242660031866, 1.417645980082383, 1.4279715276908884, 1.4379798456796355, 1.4476518147122002, 1.456970283955395, 1.465920089203705, 1.4744880632532895, 1.482663037338869, 1.4904358325232134, 1.4977992400849425, 1.5047479901804983, 1.511278708347906, 1.5173898597576092, 1.5230816814772494 ], [ 1.1176382951723263, 1.1179250093556607, 1.1188002429653827, 1.1202902036188191, 1.122417722701372, 1.1252015156704913, 1.1286554121609385, 1.132787589384726, 1.1375999097155602, 1.1430874977689334, 1.1492386568741468, 1.15603514136649, 1.163452722049912, 1.1714619419447982, 1.1800289589772526, 1.1891163944676846, 1.1986841341647365, 1.2086900526272086, 1.219090649025152, 1.2298415934121536, 1.2408981888057282, 1.2522157575717494, 1.2637499618236894, 1.275457067617915, 1.2872941621599754, 1.2992193323483558, 1.3111918119626194, 1.3231721037660071, 1.3351220818024958, 1.347005078258018, 1.3587859584368673, 1.3704311866764465, 1.381908885379742, 1.3931888887718826, 1.4042427924775227, 1.4150439995569033, 1.4255677632270438, 1.4357912261268218, 1.445693455661903, 1.4552554746925201, 1.4644602866087677, 1.4732928936836038, 1.48174030751006, 1.4897915503227106, 1.4974376460799723, 1.5046716003402418, 1.511488368199503, 1.517884809856141, 1.5238596337144683, 1.529413327309093 ], [ 1.1257585839477824, 1.1261778258462418, 1.1271761777044074, 1.1287793053507478, 1.131009709211457, 1.1338859940337809, 1.137422071705014, 1.1416263423981658, 1.146500975640779, 1.1520414434111537, 1.1582364106801881, 1.1650679960294033, 1.1725123328118, 1.180540322603499, 1.189118475039141, 1.1982097524248632, 1.2077743664030585, 1.217770498211303, 1.2281549311913498, 1.2388835949247254, 1.2499120264244736, 1.261195756803934, 1.2726906329584486, 1.2843530838201744, 1.2961403401712568, 1.3080106161287033, 1.3199232594237618, 1.3318388765976454, 1.3437194382808497, 1.3555283688473887, 1.3672306239451288, 1.3787927587006692, 1.3901829887707007, 1.401371245854003, 1.4123292287757159, 1.4230304508024219, 1.433450283435466, 1.4435659965604577, 1.453356794504638, 1.4628038472747862, 1.4718903160246275, 1.4806013716404398, 1.488924205244828, 1.4968480294096158, 1.5043640689433735, 1.5114655402775634, 1.5181476187130314, 1.5244073930925581, 1.530243807818438, 1.5356575925126585 ], [ 1.1340270292312078, 1.1345802018123445, 1.135702590364083, 1.1374193115486009, 1.1397525240931032, 1.1427206943999242, 1.1463377666549335, 1.1506122987018073, 1.1555467028788375, 1.1611367526281078, 1.1673714585677462, 1.174233320234741, 1.1816988787386757, 1.1897394601197904, 1.1983220039628024, 1.2074098969840945, 1.2169637600502228, 1.2269421608672557, 1.2373022412291097, 1.2480002581143184, 1.2589920437902655, 1.270233392994797, 1.2816803863619204, 1.2932896593019207, 1.3050186250108868, 1.316825659461176, 1.3286702552857481, 1.340513150516657, 1.3523164372304024, 1.364043654314158, 1.3756598678107756, 1.3871317416223397, 1.3984276007451386, 1.4095174886643964, 1.4203732200424364, 1.4309684293844993, 1.4412786159557802, 1.451281184850871, 1.4609554837860759, 1.4702828349006183, 1.479246560622786, 1.4878320024912723, 1.4960265317289092, 1.503819550353219, 1.5112024816823302, 1.5181687492541232, 1.5247137434171538, 1.5308347751613174, 1.5365310171160593, 1.5418034320290235 ], [ 1.1424223389749362, 1.143110407870403, 1.144357429679015, 1.1461879658060372, 1.1486238122361807, 1.151683251158882, 1.1553801888562611, 1.1597232583801615, 1.1647150385709062, 1.1703515509653453, 1.1766221309119764, 1.1835096715621924, 1.1909911629922225, 1.1990384175566275, 1.2076188791238178, 1.216696438734087, 1.226232206851835, 1.2361852150891048, 1.246513036201457, 1.257172321179563, 1.2681192579899891, 1.2793099594215622, 1.2907007886473065, 1.302248631235273, 1.3139111218915929, 1.3256468334762717, 1.3374154349665917, 1.3491778241552115, 1.3608962400157745, 1.3725343588761225, 1.3840573778179193, 1.3954320880710456, 1.4066269405839447, 1.4176121054184831, 1.4283595261317035, 1.4388429698594891, 1.4490380734055606, 1.4589223852644884, 1.4684754031704343, 1.4776786064742062, 1.4865154824144962, 1.4949715451783832, 1.5030343465480853, 1.5106934769164084, 1.5179405555251653, 1.5247692089421299, 1.5311750370348756, 1.5371555660141747, 1.5427101884843375, 1.547840090829924 ], [ 1.1509231959969612, 1.1517467399327577, 1.1531187084915615, 1.1550630942370206, 1.1576012937690303, 1.1607513411100268, 1.164527019782147, 1.168936947543227, 1.1739837913765108, 1.1796637684236884, 1.1859665184586807, 1.192875339413092, 1.2003677076610428, 1.208415978148731, 1.2169881670766485, 1.2260487435647498, 1.2355593825592466, 1.2454796524523277, 1.255767625887751, 1.2663804118171482, 1.2772746124810945, 1.2884067119365443, 1.2997334040161062, 1.3112118678589049, 1.3227999988250336, 1.3344566019735848, 1.3461415545119362, 1.3578159428145684, 1.3694421788190423, 1.3809840998652447, 1.3924070553620151, 1.4036779830429915, 1.4147654770074094, 1.4256398492210332, 1.4362731856728452, 1.4466393979378032, 1.4567142704830602, 1.4664755036757096, 1.475902752108889, 1.4849776575667986, 1.4936838757075728, 1.5020070953664475, 1.5099350492799475, 1.5174575150141285, 1.5245663049515694, 1.5312552443532432, 1.5375201367572258, 1.5433587162934022, 1.5487705868634078, 1.5537571485309964 ], [ 1.1595084809796505, 1.1604677264139676, 1.1619646893832793, 1.164022767856891, 1.1666629063057041, 1.1699028124820274, 1.1737560546754264, 1.1782311447945106, 1.1833307646180964, 1.189051280419019, 1.1953826197242294, 1.2023084960949588, 1.2098069054284248, 1.2178507947920223, 1.226408812767434, 1.23544607222735, 1.2449248800971047, 1.254805408138537, 1.2650462927585489, 1.2756051609567907, 1.2864390850185525, 1.2975049715714502, 1.308759892034391, 1.3201613619019381, 1.3316675761341314, 1.3432376074214554, 1.3548315734350762, 1.3664107784538149, 1.3779378340424853, 1.3893767627708105, 1.4006930883239048, 1.4118539147639653, 1.4228279971572193, 1.4335858052725148, 1.4440995815845834, 1.4543433943709818, 1.4642931862762074, 1.4739268183337013, 1.483224109088624, 1.492166868162867, 1.5007389233564774, 1.508926140197905, 1.5167164327506732, 1.5240997644644378, 1.5310681379284412, 1.5376155725486709, 1.5437380694167075, 1.5494335629592237, 1.5547018593299475, 1.5595445619060793 ], [ 1.1681574302233533, 1.169252264661754, 1.170873997866856, 1.1730453949783668, 1.1757868830709512, 1.1791157577438585, 1.1830452790400545, 1.1875837682782706, 1.1927338574723647, 1.1984920234056011, 1.204848468849853, 1.2117873333351175, 1.21928716081436, 1.2273215324238398, 1.2358597801651678, 1.2448677171347555, 1.2543083411951212, 1.264142486673017, 1.2743294115508037, 1.2848273162247517, 1.2955937952609873, 1.3065862266591328, 1.3177621046991526, 1.329079323039353, 1.3404964147305722, 1.3519727554619227, 1.3634687358188258, 1.3749459077188366, 1.3863671095548218, 1.3976965739537557, 1.408900021467077, 1.4199447429516203, 1.430799672875651, 1.4414354552906234, 1.451824503741383, 1.4619410559444375, 1.4717612236464492, 1.4812630376864606, 1.4904264879336226, 1.4992335574638669, 1.5076682500865557, 1.5157166101473938, 1.5233667334243557, 1.5306087679129992, 1.5374349033673251, 1.5438393486253819, 1.5498182959977287, 1.5553698723198206, 1.5604940766439168, 1.56519270494947 ], [ 1.1768497469735177, 1.1780797131739509, 1.17982569687555, 1.1821097827266644, 1.1849518085960213, 1.1883685713378205, 1.1923729352073054, 1.1969729555995978, 1.202171160067565, 1.2079641045371179, 1.2143422574402865, 1.2212901929304225, 1.2287870260048568, 1.2368070056590714, 1.2453201888980856, 1.254293135873302, 1.263689585319167, 1.273471085394919, 1.2835975668546662, 1.2940278535611085, 1.3047201105636648, 1.315632233093176, 1.3267221815384063, 1.3379482682423491, 1.349269402130464, 1.3606452969917047, 1.3720366488349711, 1.3834052872390212, 1.3947143050678008, 1.405928170369623, 1.417012823738122, 1.4279357638914334, 1.4386661237252227, 1.449174738614753, 1.4594342082794558, 1.4694189530812531, 1.4791052652073793, 1.4884713547958703, 1.4974973907042792, 1.5061655353082695, 1.5144599724613106, 1.5223669275557588, 1.5298746785164536, 1.5369735565343374, 1.543655935418039, 1.5499162086047769, 1.555750753121991, 1.5611578801150336, 1.566137771932306, 1.5706924061632042 ], [ 1.1855656860443444, 1.1869299641192694, 1.18879935064645, 1.1911951975632662, 1.1941366817220465, 1.1976400202269382, 1.2017176038208743, 1.206377157720412, 1.2116210595816617, 1.217445918513002, 1.2238424599034983, 1.2307956979163355, 1.2382853351096395, 1.2462863135871465, 1.254769447414185, 1.263702081021749, 1.2730487349287065, 1.28277171437999, 1.2928316673020595, 1.303188085566158, 1.313799748586676, 1.3246251114444592, 1.3356226415688437, 1.3467511089550193, 1.3579698352417937, 1.3692389069456257, 1.3805193578883612, 1.3917733254694318, 1.402964184981461, 1.4140566656884879, 1.4250169519000029, 1.4358127717909681, 1.4464134762423515, 1.4567901095108062, 1.4669154730809433, 1.4767641836119323, 1.486312725468336, 1.4955394979269623, 1.504424856789582, 1.51295114981326, 1.5211027451092516, 1.528866051469489, 1.5362295294672887, 1.5431836921554152, 1.5497210942548194, 1.5558363088911107, 1.5615258911869743, 1.5667883283421915, 1.571623976209875, 1.5760349827805236 ], [ 1.194286126763089, 1.1957835125816945, 1.197775094476442, 1.2002814400747919, 1.2033209990918274, 1.2069093381023994, 1.2110583089727849, 1.2157752538658548, 1.2210623630279784, 1.2269162761319252, 1.2333279657075882, 1.2402828865960216, 1.2477613381876969, 1.2557389721995573, 1.264187382443814, 1.2730747255497388, 1.282366336003731, 1.2920253115736535, 1.302013055040832, 1.3122897652640253, 1.3228148754602111, 1.3335474397577445, 1.3444464710298407, 1.3554712341136101, 1.3665814990337406, 1.3777377589785527, 1.3889014176596342, 1.400034950419137, 1.4111020430958772, 1.422067712258582, 1.4328984099864464, 1.4435621159349072, 1.4540284189758172, 1.4642685902510304, 1.474255649029762, 1.4839644223211124, 1.4933715987680238, 1.5024557769483264, 1.5111975078412414, 1.5195793308962942, 1.527585802877631, 1.535203518462825, 1.5424211214616024, 1.5492293054965813, 1.555620803058344, 1.561590362011416, 1.5671347088787, 1.5722524985551, 1.57694425047709, 1.5812122716758497 ], [ 1.2029926425789554, 1.2046215296980551, 1.2067337152933755, 1.2093489361247949, 1.2124848584174788, 1.216156340384957, 1.2203746429736069, 1.2251466832530997, 1.2304744330465376, 1.2363545416594648, 1.242778216412324, 1.2497313478288796, 1.2571948337392311, 1.265145043257453, 1.2735543635701745, 1.2823917825572932, 1.2916234725606386, 1.3012133518402196, 1.3111236092197074, 1.3213151840572919, 1.331748198352651, 1.342382340960061, 1.3531772059160296, 1.3640925881217998, 1.3750887402877026, 1.3861265953255453, 1.3971679583968808, 1.4081756726790418, 1.419113762657134, 1.4299475584274817, 1.4406438041297331, 1.4511707532256872, 1.4614982529223632, 1.4715978196035135, 1.481442706693514, 1.4910079659406228, 1.5002705026807945, 1.5092091252387823, 1.517804588253728, 1.5260396293908263, 1.5338989986357858, 1.5413694791725505, 1.5484398987319503, 1.5551011302751525, 1.561346080946961, 1.567169668398241, 1.5725687838272546, 1.5775422414121019, 1.582090714179265, 1.586216656752485 ], [ 1.2116675697393027, 1.2134259396350129, 1.2156567399427463, 1.2183788381627234, 1.2216090727445879, 1.225361549649773, 1.2296468999501635, 1.2344715834350428, 1.239837327804273, 1.2457407717439537, 1.2521733418216585, 1.2591213533000705, 1.2665662964380147, 1.2744852571097185, 1.2828514209052468, 1.2916346176617466, 1.3008018736649398, 1.310317948576099, 1.3201458422430141, 1.3302472627314983, 1.340583051394666, 1.351113563925879, 1.3617990084432974, 1.3725997430013963, 1.3834765357287888, 1.3943907912108988, 1.4053047468919448, 1.4161816432416547, 1.426985871279306, 1.4376831008051154, 1.4482403923826987, 1.4586262957612475, 1.4688109370360278, 1.478766096429723, 1.4884652781468484, 1.4978837733200177, 1.506998716639646, 1.515789136854174, 1.5242360009542086, 1.5323222515278445, 1.540032836507351, 1.5473547303320825, 1.5542769454391792, 1.5607905329713543, 1.566888571662504, 1.5725661440262666, 1.5778202992225636, 1.582650002296691, 1.587056069856021, 1.5910410926436103 ], [ 1.220294073530761, 1.2221794962823325, 1.2245265242828458, 1.2273531272796083, 1.230675284468436, 1.2345063192927008, 1.2388562060754915, 1.243730923839419, 1.249131934914592, 1.255055847405161, 1.2614942884310292, 1.2684339814448256, 1.2758569960221333, 1.2837411263414986, 1.2920603534517892, 1.30078535210695, 1.3098840113560697, 1.3193219465415487, 1.3290629876239664, 1.3390696344723063, 1.3493034740330299, 1.3597255573687759, 1.370296736703377, 1.3809779640521438, 1.391730553941948, 1.402516413274535, 1.413298241666881, 1.4240397056888099, 1.4347055903625368, 1.445261931127062, 1.455676129225929, 1.465917053168478, 1.4759551285538335, 1.4857624181520341, 1.4953126937157124, 1.504581500567161, 1.5135462155800687, 1.522186098769015, 1.5304823383256974, 1.5384180886140049, 1.5459785003686797, 1.5531507421479336, 1.5599240119784712, 1.5662895381100257, 1.5722405678692029, 1.577772343766395, 1.5828820662578853, 1.5875688428823678, 1.5918336238568507, 1.595679124606014 ], [ 1.2288562088354575, 1.2308658542966975, 1.2333263357301594, 1.2362547070621002, 1.2396660691439374, 1.2435729450939237, 1.2479846362691283, 1.2529066249789214, 1.2583400908170135, 1.2642815916979084, 1.2707229340022455, 1.2776512280424484, 1.2850491034075524, 1.292895047186769, 1.3011638257660492, 1.3098269547187102, 1.318853187980149, 1.3282090046738022, 1.3378590783929714, 1.3477667189969522, 1.3578942810286017, 1.3682035358666849, 1.3786560068931255, 1.3892132684747291, 1.3998372105883077, 1.4104902715853471, 1.4211356419886567, 1.431737442408747, 1.4422608787070608, 1.4526723774508312, 1.4629397045218955, 1.4730320694790215, 1.4829202179454235, 1.4925765139175153, 1.501975013483064, 1.5110915310130766, 1.5199036984699026, 1.5283910180671967, 1.5365349081448898, 1.5443187417948783, 1.5517278775078338, 1.5587496809181995, 1.5653735366149808, 1.571590848966068, 1.577395030977248, 1.5827814803713698, 1.5877475423184182, 1.5922924585617175, 1.59641730304539, 1.6001249045313761 ], [ 1.2373389716364545, 1.2394696297583427, 1.242040423398667, 1.245067482646092, 1.2485650221462246, 1.2525447577307935, 1.257015310657556, 1.2619816570274438, 1.2674446798392434, 1.2734008678954483, 1.279842183794655, 1.2867560997137426, 1.2941257809345577, 1.3019303862200204, 1.3101454509457588, 1.318743321138115, 1.3276936116743776, 1.336963667858816, 1.3465190152117985, 1.3563237870801768, 1.3663411234782534, 1.3765335374789769, 1.386863247641522, 1.3972924765365973, 1.4077837165497944, 1.4182999649137638, 1.4288049304240151, 1.4392632145896398, 1.4496404701012346, 1.4599035394920512, 1.4700205767474646, 1.479961154400814, 1.4896963583589153, 1.4991988723457508, 1.5084430534586608, 1.5174049999150712, 1.5260626116491114, 1.5343956440140678, 1.542385754474675, 1.550016541848898, 1.5572735773946702, 1.564144426847474, 1.570618662407157, 1.5766878636546262, 1.582345606454018, 1.5875874390583955, 1.5924108448816274, 1.5968151917072688, 1.6008016674604233, 1.6043732030438378 ], [ 1.2457283389295222, 1.2479764472218795, 1.2506540722056896, 1.2537764212152682, 1.2573568245181093, 1.2614061927795812, 1.265932467561195, 1.2709401147307413, 1.2764297100875632, 1.2823976555194045, 1.288836045995274, 1.2957326881232583, 1.3030712548378063, 1.3108315507162283, 1.318989858612612, 1.3275193392473095, 1.336390459119635, 1.3455714269381343, 1.3550286235925024, 1.364727014967157, 1.3746305404246164, 1.384702472576467, 1.3949057461023213, 1.4052032549879185, 1.415558118745413, 1.4259339190388087, 1.4362949087387076, 1.446606195820892, 1.456833904740387, 1.4669453179790348, 1.476909000404025, 1.4866949089025896, 1.496274489496672, 1.5056207638092656, 1.514708406373483, 1.5235138138695563, 1.5320151669604225, 1.5401924849985222, 1.5480276735062095, 1.5555045640123777, 1.5626089455666186, 1.5693285870663747, 1.575653249428069, 1.5815746866183378, 1.5870866346365258, 1.592184787702369, 1.59686676114297, 1.6011320407776783, 1.604981918946456, 1.6084194176952753 ], [ 1.2540112956682055, 1.2563729716319672, 1.2591536394787424, 1.26236759271545, 1.2660272870891698, 1.2701428375810584, 1.2747215125732048, 1.2797672682809729, 1.285280365753885, 1.2912571037081781, 1.297689685738428, 1.3045662242099063, 1.3118708692488568, 1.3195840420180514, 1.3276827472907946, 1.3361409402655247, 1.344929925116202, 1.3540187665735077, 1.363374699900148, 1.3729635283972623, 1.3827500008138278, 1.3926981636733102, 1.4027716856260917, 1.412934152563585, 1.4231493334749803, 1.4333814179648763, 1.4435952270356553, 1.4537563992152238, 1.463831554406825, 1.4737884379739572, 1.4835960475694479, 1.49322474509072, 1.5026463559139562, 1.5118342572518915, 1.5207634571151292, 1.529410664960522, 1.5377543547046786, 1.5457748203863038, 1.5534542243974376, 1.5607766378871106, 1.567728072685363, 1.5742965039132772, 1.5804718823445187, 1.586246135571608, 1.5916131571055872, 1.5965687826999786, 1.6011107534262425, 1.605238665326457, 1.6089539058089548, 1.6122595773109587 ], [ 1.2621758485000305, 1.264646925027685, 1.2675265743056936, 1.2708281914271278, 1.274563373900446, 1.2787414563017405, 1.2833690452130253, 1.288449591629644, 1.293983037170052, 1.2999655630204041, 1.3063894585441858, 1.3132431130213584, 1.3205111220938341, 1.3281744921163088, 1.3362109212820172, 1.3445951355508268, 1.3532992589799748, 1.3622932009470206, 1.3715450461067424, 1.3810214362004747, 1.3906879357596293, 1.4005093762178928, 1.4104501749693128, 1.4204746275315956, 1.4305471722556575, 1.4406326280206148, 1.4506964061131022, 1.4607046980426865, 1.4706246414135555, 1.480424466174352, 1.4900736236175103, 1.4995429004160399, 1.5088045197891882, 1.5178322316040778, 1.5266013928729834, 1.5350890397214285, 1.5432739515063718, 1.5511367073757358, 1.5586597352045406, 1.565827352531088, 1.5726257988678183, 1.5790432585837402, 1.585069873459871, 1.5906977440087395, 1.595920918726895, 1.6007353706082368, 1.6051389604795674, 1.6091313870114332, 1.6127141235889502, 1.6158903425763957 ], [ 1.2702110269498597, 1.2727870890182165, 1.2757614210243076, 1.2791465402267346, 1.2829532071456193, 1.2871899956678565, 1.2918628657494122, 1.2969747707982002, 1.302525330998298, 1.3085105977953844, 1.314922924976684, 1.3217509506221516, 1.328979684049927, 1.336590684343606, 1.34456231272381, 1.3528700396301045, 1.3614867881590604, 1.3703832976037265, 1.379528493534005, 1.388889853652139, 1.3984337612600959, 1.408125840459607, 1.4179312691352601, 1.42781506736728, 1.4377423602209902, 1.4476786149044387, 1.4575898531057965, 1.467442839941687, 1.4772052513812912, 1.4868458222714946, 1.4963344771888882, 1.5056424463025249, 1.5147423682669032, 1.5236083819048551, 1.5322162081109036, 1.5405432230348637, 1.54856852322017, 1.5562729829927993, 1.5636393040478025, 1.5706520568769902, 1.5772977134381836, 1.5835646702956043, 1.5894432613689318, 1.5949257594227817, 1.6000063655049412, 1.6046811857005698, 1.6089481947972084, 1.6128071867412976, 1.6162597120888051, 1.6193090029920372 ], [ 1.2781068733138392, 1.2807832946659141, 1.2838478089013021, 1.2873120799841584, 1.2911860564039048, 1.2954775743672564, 1.3001919652810987, 1.3053316952370035, 1.310896063455387, 1.3168809817229488, 1.323278848870662, 1.330078525092969, 1.3372654022501365, 1.3448215595696524, 1.3527259899578659, 1.3609548803645923, 1.3694819297989957, 1.3782786900237298, 1.3873149160600715, 1.396558915972498, 1.4059778916840302, 1.415538264653812, 1.425205982067525, 1.4349468007420725, 1.444726547247789, 1.454511353826, 1.4642678705486871, 1.4739634548413654, 1.4835663399817585, 1.4930457844996665, 1.5023722045518053, 1.5115172913417392, 1.5204541155226934, 1.5291572202863049, 1.5376027045297012, 1.5457682971390163, 1.5536334230530393, 1.5611792614043205, 1.5683887956941063, 1.575246855663647, 1.5817401502884025, 1.5878572911571631, 1.593588805412097, 1.598927137421059, 1.60386663843284, 1.6084035436205095, 1.6125359361427334, 1.616263698129717, 1.6195884488139907, 1.622513470354786 ], [ 1.285854422865264, 1.2886264017325593, 1.2917764303190464, 1.2953153467444498, 1.2992523150758042, 1.3035944592032278, 1.308346502231498, 1.3135104353632647, 1.319085239583559, 1.3250666794405095, 1.331447181689581, 1.3382158038954715, 1.3453582907106134, 1.3528572095799323, 1.3606921536204628, 1.368839997426277, 1.37727519123037, 1.3859700797281902, 1.3948952334553717, 1.4040197825237066, 1.413311744488993, 1.422738339994667, 1.432266291527905, 1.4418621021144253, 1.4514923120643695, 1.4611237329717472, 1.4707236590734856, 1.4802600567938669, 1.4897017338388194, 1.499018489565323, 1.5081812485411539, 1.5171621792437364, 1.5259347997450896, 1.5344740720198577, 1.5427564862235117, 1.5507601359495122, 1.5584647851145959, 1.5658519267660487, 1.5729048337759686, 1.5796086011022434, 1.5859501790688615, 1.5919183969611221, 1.5975039761496292, 1.6026995319562238, 1.607499563553725, 1.6119004313443823, 1.6159003214801855, 1.6194991974580484, 1.622698739025934, 1.6255022689540506 ], [ 1.2934456760956938, 1.2963082693164403, 1.2995390097922848, 1.3031479392730962, 1.3071434668001891, 1.3115320309101466, 1.316317768226962, 1.3215022092347202, 1.3270840214444186, 1.3330588168924065, 1.3394190355589852, 1.3461539099175228, 1.3532495095441808, 1.360688859446197, 1.3684521220178536, 1.3765168304201076, 1.3848581605105363, 1.3934492288752411, 1.4022614056551326, 1.4112646323869733, 1.4204277367503735, 1.4297187377709017, 1.439105136586132, 1.4485541892955747, 1.4580331596706464, 1.4675095505927702, 1.4769513140120258, 1.4863270399731683, 1.4956061258330775, 1.5047589271947788, 1.5137568923112927, 1.5225726817790863, 1.5311802752697123, 1.5395550668622433, 1.5476739502707972, 1.5555153949407254, 1.5630595136431205, 1.5702881218553553, 1.5771847888988049, 1.58373488052986, 1.589925592463304, 1.5957459741564795, 1.6011869421071947, 1.606241281920603, 1.6109036384780353, 1.6151704936925988, 1.6190401315473348, 1.6225125903744098, 1.625589602626098, 1.6282745226954711 ], [ 1.300873564688103, 1.3038217198182647, 1.3071282659774013, 1.310802479318475, 1.314852044352986, 1.3192827422283553, 1.3240981460040997, 1.3292993410050888, 1.3348846878360356, 1.3408496429603534, 1.3471866473509524, 1.353885088406288, 1.3609313349758052, 1.3683088406982085, 1.375998307386782, 1.3839778980516124, 1.3922234882331765, 1.4007089443926053, 1.409406418868029, 1.418286652093264, 1.4273192741683254, 1.436473099322361, 1.4457164082258807, 1.4550172144355333, 1.4643435124676163, 1.473663506075231, 1.482945816238146, 1.4921596691511976, 1.5012750651047746, 1.5102629295848435, 1.519095248180613, 1.5277451869862648, 1.5361872001389387, 1.5443971259743217, 1.5523522730347648, 1.5600314968626725, 1.5674152681850853, 1.5744857327681043, 1.5812267629166428, 1.5876240003313464, 1.5936648898272814, 1.5993387032767927, 1.6046365530680298, 1.6095513943764912, 1.6140780156246244, 1.618213016652342, 1.6219547743275602, 1.625303395578685, 1.62826065811378, 1.630829939386027 ], [ 1.308131912791303, 1.31116049799024, 1.3145378685931814, 1.3182725666460142, 1.3223715831849445, 1.3268400704670384, 1.3316810616148458, 1.3368952134401224, 1.342480587791738, 1.3484324845725408, 1.3547433359447412, 1.3614026668032393, 1.368397122036336, 1.3757105570183334, 1.383324184598032, 1.3912167697325297, 1.399364861838519, 1.4077430547306362, 1.4163242644704364, 1.4250800163380963, 1.4339807332798977, 1.4429960194366755, 1.452094933632123, 1.461246248932809, 1.470418695549774, 1.4795811854064433, 1.4887030176294722, 1.4977540650077537, 1.506704942093821, 1.5155271560816912, 1.524193241883668, 1.532676882954477, 1.5409530193932734, 1.5489979447171873, 1.5567893924763225, 1.5643066135969135, 1.5715304450314798, 1.5784433699828462, 1.585029569679777, 1.5912749664315993, 1.5971672574914657, 1.60269593912396, 1.6078523202080959, 1.6126295247144085, 1.6170224824729598, 1.6210279077930039, 1.6246442656952136, 1.6278717257611572, 1.6307121038770116, 1.6331687924317013 ], [ 1.3152153949892391, 1.318319226593606, 1.3217623918933221, 1.3255527305772419, 1.3296965714030162, 1.3341984664101418, 1.3390609328181553, 1.3442842164001678, 1.3498660897660266, 1.3558016971761613, 1.3620834545055667, 1.3687010092560152, 1.3756412616213667, 1.3828884440384415, 1.390424253761508, 1.3982280309550141, 1.40627697362634, 1.4145463803139542, 1.4230099116480588, 1.4316398625359463, 1.4404074376376144, 1.4492830238646301, 1.4582364547680127, 1.4672372628161976, 1.4762549166589152, 1.4852590414941595, 1.4942196215735508, 1.503107184672642, 1.51189296899396, 1.520549073449601, 1.5290485925808657, 1.5373657375230367, 1.5454759444295003, 1.5533559716565581, 1.5609839868080586, 1.5683396444777173, 1.575404155236221, 1.5821603461165623, 1.5885927125764607, 1.5946874616793245, 1.600432546048284, 1.6058176880225088, 1.6108343933855132, 1.6154759540458734, 1.619737439127773, 1.623615674069795, 1.627109207523099, 1.6302182660755171, 1.6329446970892365, 1.6352919002112403 ] ], "zauto": true, "zmax": 1.6352919002112403, "zmin": -1.6352919002112403 }, { "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.035525417451819655, 0.03390960412367998, 0.032530087353522245, 0.031367080999179425, 0.03040198309323601, 0.02962177456732502, 0.029022872447756528, 0.028613480696626847, 0.028413621190287307, 0.02845240362160133, 0.02876273957831743, 0.02937454023727445, 0.03030813997487143, 0.03156978722874752, 0.03315030512789627, 0.0350268001963074, 0.03716631417339569, 0.039530044216688, 0.04207710243891653, 0.044767337819146304, 0.04756317832604178, 0.05043067138386044, 0.05333995538550606, 0.056265365534497194, 0.059185322787846814, 0.062082103873687566, 0.06494155233551208, 0.06775276520884614, 0.07050777426317727, 0.07320123159243291, 0.07583010427384941, 0.07839338018305685, 0.08089178580838699, 0.08332751642132286, 0.08570397886688412, 0.08802554733041083, 0.09029733260057263, 0.0925249655194401, 0.09471439545434801, 0.09687170472335889, 0.09900293994454683, 0.10111396125178315, 0.1032103102225107, 0.10529709719570911, 0.10737890842481307, 0.10945973321899487, 0.11154291089008396, 0.11363109695867524, 0.11572624770207018, 0.11782962177027484 ], [ 0.033240308987955706, 0.03162565578220974, 0.03026019907486025, 0.029120541438482438, 0.02818374186422445, 0.027432583292333973, 0.026860339854571143, 0.026473851779141282, 0.026293872549681283, 0.026352093699139142, 0.026685037584478547, 0.027326066065588746, 0.028297675968081915, 0.02960638139807717, 0.031241484557128912, 0.03317743021115866, 0.035378246714096895, 0.037802377425404474, 0.040406758451372184, 0.043149712632396815, 0.04599272108117107, 0.04890133930848889, 0.051845543502478296, 0.05479973291103244, 0.057742541985136724, 0.06065655715836526, 0.06352799274884553, 0.06634635531112562, 0.06910411113692891, 0.07179636358413827, 0.07442054278986243, 0.07697610838991352, 0.07946426511213249, 0.0818876909588062, 0.08425027782734978, 0.08655688466913473, 0.08881310356546522, 0.0910250393615281, 0.09319910371904233, 0.0953418246112572, 0.0974596723791221, 0.0995589034862399, 0.10164542304622098, 0.10372466704636751, 0.10580150495799617, 0.10788016311393175, 0.10996416886193884, 0.11205631508922755, 0.11415864428234027, 0.116272450865736 ], [ 0.03113489459439807, 0.029529026518316317, 0.028187304157745334, 0.027082445139818535, 0.02618657701209284, 0.025477490061960654, 0.024944461115521822, 0.02459217636728522, 0.024441476792498522, 0.024526172043305407, 0.024886101420115544, 0.025557914980554697, 0.026566209366753316, 0.027917808612572058, 0.029600681265676807, 0.03158695913190296, 0.03383813485472905, 0.03631043179448938, 0.03895912325233288, 0.0417414454734773, 0.044618275988774915, 0.04755492610336449, 0.05052137529258774, 0.05349218770978018, 0.05644626448514488, 0.059366521505459825, 0.06223954123970709, 0.06505522296604542, 0.06780644242420368, 0.07048872503268083, 0.07309993353549787, 0.07563996959648857, 0.0781104884924998, 0.08051462615794013, 0.0828567381342202, 0.0851421503448385, 0.0873769219848317, 0.08956762115028949, 0.09172111412218868, 0.09384436944617752, 0.09594427810413991, 0.09802749114248539, 0.10010027609550123, 0.10216839341271484, 0.10423699386585346, 0.10631053758018985, 0.1083927349220933, 0.11048650900275414, 0.11259397905722297, 0.11471646346147711 ], [ 0.029225743642490327, 0.02763685371445937, 0.0263292877303918, 0.025271670512268498, 0.024430629271843227, 0.023778151653163496, 0.0232986037331911, 0.022993604397471463, 0.022883230360782443, 0.02300266125757185, 0.023394456545956555, 0.024098169368669722, 0.025140383189492264, 0.026528426201438565, 0.02824941564215322, 0.030273856483990544, 0.03256147082858854, 0.03506698761302355, 0.037744625724428625, 0.04055099652165688, 0.04344669484493475, 0.04639699163287777, 0.04937198485908413, 0.052346456065097365, 0.055299583529397095, 0.058214596398712536, 0.061078413273774716, 0.06388128571589596, 0.06661645499776091, 0.06927982445962325, 0.0718696471955963, 0.07438622786175957, 0.07683163729056847, 0.07920943885871218, 0.0815244259620824, 0.08378237039529406, 0.08598978186621942, 0.08815367927610994, 0.09028137474931339, 0.09238027169043785, 0.09445767836537138, 0.09652063862885318, 0.09857578143843397, 0.10062919069008613, 0.10268629667900055, 0.10475179013506891, 0.10682955932227739, 0.10892265015195765, 0.11103324867749538, 0.11316268475378147 ], [ 0.027528103406591422, 0.02596455981357404, 0.02470175246327439, 0.02370408363780321, 0.02293217173290092, 0.02235143881288741, 0.021940447344473347, 0.021696791564155576, 0.021638782356111327, 0.02180196173550364, 0.022230707122183706, 0.02296685754064022, 0.024038821498528876, 0.025454785791526713, 0.027201793043610575, 0.02924971803741527, 0.03155751528593423, 0.03407927966621046, 0.0367688298815534, 0.03958260185944104, 0.04248118702568344, 0.04542996853531225, 0.0483992281602361, 0.05136397364328796, 0.05430363483061729, 0.05720170915624611, 0.06004539679370186, 0.06282524367353395, 0.06553479920397536, 0.06817029012278224, 0.07073030962439777, 0.07321552018403336, 0.07562836851358821, 0.07797281141745543, 0.08025405177000257, 0.08247828432174625, 0.08465245152024006, 0.08678400998703607, 0.08888070871059253, 0.09095038038060461, 0.09300074758078224, 0.09503924575006933, 0.09707286489194357, 0.09910801193784186, 0.10115039544314187, 0.10320493391468066, 0.10527568855465992, 0.10736582058849112, 0.1094775726670781, 0.11161227314753068 ], [ 0.026054715026235957, 0.024524434659929213, 0.02331627894223353, 0.02239038518426899, 0.021700963822331578, 0.021206242648542595, 0.020878222713128104, 0.020709597248689777, 0.02071587952851728, 0.02093180798944879, 0.021402441225982186, 0.02217108399041668, 0.023267738097720425, 0.024701891456329835, 0.026461472849108988, 0.028516910885954788, 0.03082752416813257, 0.03334769042044148, 0.03603148380613566, 0.03883558512100499, 0.04172082134507939, 0.044652800417207886, 0.04760201865329199, 0.050543691133538036, 0.053457452482252234, 0.05632700762086086, 0.0591397721045559, 0.06188651983704377, 0.06456104479990299, 0.06715983813116713, 0.06968177964333958, 0.07212784214981532, 0.07450080696732861, 0.0768049892802179, 0.0790459725010572, 0.08123035125888402, 0.08336548315635815, 0.08545924994347504, 0.087519829242289, 0.08955547840282395, 0.09157433244618428, 0.09358421832262272, 0.09559248784545127, 0.09760587162692488, 0.09963035612200204, 0.10167108547904942, 0.10373228932103057, 0.10581723687332915, 0.10792821706725833, 0.11006654344311127 ], [ 0.024814409861284487, 0.023323996190124294, 0.02217849219174965, 0.021333834132927235, 0.020737606079457935, 0.020340459072735153, 0.020107344772221602, 0.020025405576447712, 0.02010644853116124, 0.020383239312374953, 0.020900276789854583, 0.021701367703633883, 0.02281775557160943, 0.024260605323194934, 0.02601966812531439, 0.028067099840166147, 0.03036369905715695, 0.032865018860959765, 0.03552601667811838, 0.03830401306997371, 0.041160289819842905, 0.04406077882164094, 0.046976213759298696, 0.04988199437570163, 0.05275791225741189, 0.05558781970262223, 0.05835928308947353, 0.06106323995927697, 0.0636936674763253, 0.06624726428885307, 0.06872314530884671, 0.07112254801072684, 0.07344854870700258, 0.07570578748361761, 0.07790020087408592, 0.08003876183282085, 0.08212922709677255, 0.08417989257943613, 0.08619935800151285, 0.08819630249875486, 0.09017927342100787, 0.09215649090143922, 0.09413567098444928, 0.09612387011428526, 0.09812735357776056, 0.10015149005801716, 0.10220067381084999, 0.1042782751635302, 0.10638661912115151, 0.10852699092239236 ], [ 0.02381068991588071, 0.02236441484812199, 0.021286346124943747, 0.02052843708305067, 0.020031708296423586, 0.019739220449835202, 0.019608776710469754, 0.019621658782243537, 0.01978530695519961, 0.020129487010120167, 0.020696931314815682, 0.021530910205488897, 0.022663382622823133, 0.02410732451684775, 0.025854989264740617, 0.027881212034080727, 0.03014922755304814, 0.03261656043303998, 0.03523963340014725, 0.037976789913202184, 0.04078999384377944, 0.04364561803657156, 0.04651467775480685, 0.04937275618778644, 0.052199773854108185, 0.05497968771579352, 0.05770016527450423, 0.06035225583097587, 0.06293006866254273, 0.06543046153151177, 0.06785273990734635, 0.07019836599672633, 0.07247067627897566, 0.0746746063025234, 0.07681642179687415, 0.07890345559448755, 0.08094385039170783, 0.08294630797931456, 0.08491984621241852, 0.08687356562754332, 0.08881642820088181, 0.09075705121612579, 0.09270351951103455, 0.09466321944476877, 0.09664269773585688, 0.09864754785231408, 0.10068232591017336, 0.1027504971045584, 0.10485441263395759, 0.10699531597494963 ], [ 0.023040620038174035, 0.0216394287131095, 0.020629180480837415, 0.01995830216101607, 0.0195617094450071, 0.019375323885766054, 0.01935014306230732, 0.01946164457673957, 0.019712526745997022, 0.020128742048119437, 0.020750175138901834, 0.021618508562317982, 0.022765697853573654, 0.024206315261667284, 0.02593538255309732, 0.027930992515655517, 0.030159502098391744, 0.03258104755893925, 0.03515403404802486, 0.037838205381355364, 0.040596461286625474, 0.04339577282014989, 0.046207524345830066, 0.049007522154459845, 0.05177582376887828, 0.054496478817214034, 0.05715723177484436, 0.05974921278497508, 0.062266629223440235, 0.06470646338778648, 0.06706817794697972, 0.06935342898779413, 0.07156578574423893, 0.07371045592113519, 0.07579401568011264, 0.07782414372767474, 0.0798093594717965, 0.08175876585777779, 0.08368179821715058, 0.08558798121501446, 0.0874866966961032, 0.08938696583163265, 0.09129724937793439, 0.09322527000261609, 0.09517786046428486, 0.09716084092895957, 0.09917892788983561, 0.10123567608537261, 0.10333345357443753, 0.10547344883761495 ], [ 0.0224944006466023, 0.021135183604715443, 0.02018802943741376, 0.019598630671558877, 0.01929673619945386, 0.01921206542806189, 0.019289548513383898, 0.019499205426630643, 0.019838843049350935, 0.020329985394241093, 0.02100874161822744, 0.021914191590905057, 0.023077417294154832, 0.02451403333779197, 0.026221654849980937, 0.02818178527565152, 0.030364264443402567, 0.03273228017374135, 0.03524664477727789, 0.03786886182552429, 0.0405630454207193, 0.043296966850806896, 0.04604251783576289, 0.04877581657721183, 0.051477109783965955, 0.054130565668977164, 0.0567240132960357, 0.059248658925633906, 0.061698795404919744, 0.06407151235520465, 0.06636641035822598, 0.06858531994001545, 0.07073202497352109, 0.07281198965513945, 0.07483208818433448, 0.07680033655069889, 0.0787256263358831, 0.08061746111963156, 0.08248569689013094, 0.08434028873547346, 0.08619104695386025, 0.08804740646911609, 0.08991821397416408, 0.09181153745648302, 0.09373450261930559, 0.09569316017217012, 0.0976923870437928, 0.09973582333693251, 0.10182584540788246, 0.10396357394725177 ], [ 0.02215587722724948, 0.02083123010289021, 0.01993731461538771, 0.019418278144574447, 0.019200123480579936, 0.0192077135792846, 0.019380912089997187, 0.019684777989275468, 0.02011219326743707, 0.02067977238518125, 0.0214190606682825, 0.02236559527006376, 0.023548646661034383, 0.02498408156299388, 0.026671578665825247, 0.028595825878148448, 0.030730186185430972, 0.03304111772985113, 0.0354921422914273, 0.03804683652309486, 0.040670810798289145, 0.04333286916714619, 0.04600559126545836, 0.048665540873802614, 0.051293248557912036, 0.05387306492883287, 0.056392943867803684, 0.05884419047931856, 0.06122119323360197, 0.06352115059490941, 0.06574379709231427, 0.06789113075938291, 0.06996714222282976, 0.07197754492278252, 0.073929505703796, 0.07583137516899441, 0.07769241765294395, 0.0795225413820697, 0.08133203029354646, 0.08313127999713536, 0.08493054138960648, 0.0867396763495486, 0.08856793062538794, 0.09042372936462961, 0.09231450063024423, 0.09424653167024936, 0.0962248616671064, 0.0982532132734628, 0.10033396357051036, 0.10246815332812156 ], [ 0.022003984816255345, 0.020702550336966486, 0.019847581776086608, 0.019383247918412824, 0.019233615783966665, 0.019320298219777883, 0.01957919549001893, 0.01997091573692673, 0.020483398805337765, 0.021127938276998205, 0.021930841211329266, 0.02292326400947383, 0.02413174909695483, 0.0255715241692395, 0.027243588081025352, 0.029135314299812653, 0.031223362952800482, 0.03347746825435755, 0.03586402142365733, 0.038348908440107875, 0.040899490030198694, 0.04348583973387137, 0.04608142784536786, 0.0486634278044127, 0.05121278127663589, 0.05371411641037317, 0.05615558053679286, 0.058528625174679945, 0.060827765797109745, 0.0630503290869732, 0.06519619441976042, 0.0672675327013252, 0.0692685435761143, 0.07120519087600558, 0.07308493569701113, 0.07491646650252198, 0.07670942606136598, 0.07847413576790908, 0.08022131888850277, 0.08196182544189443, 0.08370636263113695, 0.08546523585691508, 0.08724810620140493, 0.08906377073134922, 0.09091997191621559, 0.09282324183585602, 0.09477878567794513, 0.09679040738997124, 0.09886047840994845, 0.10098994835178877 ], [ 0.022014834665598816, 0.020722152473743156, 0.019888606774273798, 0.01946022561566502, 0.01936118335880065, 0.01951154963303032, 0.019844339039893303, 0.020316146057302305, 0.020909910629272745, 0.021631224680201563, 0.022500576347534447, 0.023544020703310613, 0.024784544591956212, 0.02623586140942176, 0.027899471214383263, 0.029764783321072852, 0.03181134302763156, 0.03401198763976624, 0.03633599431443441, 0.038751696187441016, 0.041228401679256545, 0.04373766603730334, 0.046254050348750006, 0.04875551241115234, 0.0512235497545408, 0.053643183445218796, 0.056002843308802626, 0.05829419401110533, 0.060511926630405936, 0.06265353048390875, 0.06471905356836324, 0.06671085590037538, 0.06863335751242287, 0.07049278137965491, 0.07229689082561698, 0.07405472081421045, 0.07577630288223319, 0.07747238422847134, 0.07915414257270446, 0.08083289972574276, 0.08251983822944646, 0.08422572676092861, 0.08596066105815729, 0.08773382773294315, 0.08955329834813892, 0.09142586047238387, 0.09335689109987085, 0.09535027593979653, 0.09740837582694917, 0.09953203911994385 ], [ 0.022163974690966013, 0.02086363818949848, 0.0200321740601904, 0.019619419398047983, 0.019551764929481016, 0.019749422498958738, 0.02014350833828035, 0.020686940891072845, 0.021357549186381997, 0.022154860287908074, 0.02309304537176333, 0.024192460164941205, 0.025471835316816557, 0.026942587031553687, 0.02860592500450513, 0.030452598496743134, 0.032464522747164035, 0.034617335632062624, 0.036883090496893554, 0.039232601316192696, 0.04163724638919399, 0.04407022731599279, 0.04650737075350591, 0.048927584172287764, 0.05131306680090054, 0.05364935526626556, 0.05592526137497506, 0.0581327413037478, 0.06026672192422862, 0.062324900436422956, 0.06430752695724347, 0.06621717533997401, 0.06805850464186419, 0.06983801188143222, 0.07156377576976312, 0.07324519080835935, 0.07489269142830256, 0.07651746663058907, 0.07813116679309993, 0.07974560581916142, 0.08137246345476455, 0.08302299419274228, 0.08470775048387322, 0.086436328763053, 0.0882171468917594, 0.09005726091440261, 0.09196222753107738, 0.0939360165239714, 0.09598097476148072, 0.098097840630713 ], [ 0.0224283689479624, 0.021103255232212577, 0.02025406977810889, 0.019836353695934974, 0.019780752359567173, 0.020009217476953455, 0.020451856873361655, 0.021058169610762602, 0.021800726431533607, 0.02267264864372251, 0.023681370799028306, 0.024841071688235926, 0.02616566525110116, 0.02766361755421627, 0.029335144918645535, 0.031171667599614882, 0.033156920854729044, 0.03526896206273412, 0.037482413326934944, 0.039770507526720136, 0.04210673432970747, 0.04446604539490211, 0.046825666000334436, 0.04916559290414848, 0.05146885926110948, 0.05372163473921691, 0.05591321292970398, 0.058035923460888095, 0.06008499445614439, 0.06205838216029933, 0.06395657820071689, 0.0657824004730378, 0.06754077056879748, 0.0692384786541684, 0.07088393555241226, 0.07248691135233179, 0.0740582600873992, 0.07560963084392859, 0.07715316698126877, 0.07870119685815229, 0.08026592137572919, 0.08185910553287755, 0.08349178277048877, 0.08517398188539577, 0.08691448649412191, 0.08872063628787837, 0.09059817763893249, 0.09255116863278827, 0.09458194057479183, 0.0966911148000569 ], [ 0.022787800830502834, 0.02142118655568712, 0.020535144812649102, 0.020092619710813973, 0.020030384566160676, 0.02027361980978497, 0.02075224752896014, 0.021412566588981465, 0.02222173826738039, 0.02316617416167612, 0.02424623114702989, 0.025469547665640146, 0.026844797373121374, 0.028376982266480985, 0.030064737234468678, 0.03189955300398453, 0.033866447946652924, 0.03594548264178489, 0.03811357437549048, 0.04034623488793837, 0.04261903124204407, 0.0449087044663734, 0.047193961303063386, 0.04945599107526332, 0.05167876858738073, 0.053849198769690174, 0.055957148300063396, 0.057995398352764245, 0.059959542924867534, 0.061847849422185845, 0.06366109225438016, 0.06540236579263044, 0.06707687987914392, 0.06869173891330713, 0.0702557042250661, 0.07177893889903511, 0.0732727343862203, 0.07474921909126313, 0.07622105057995615, 0.07770109498676842, 0.07920209941591519, 0.08073636535094882, 0.08231543299542433, 0.08394978773039546, 0.08564860021103446, 0.08741951086046462, 0.08926846763561472, 0.09119962309379952, 0.09321529329276808, 0.0953159773266492 ], [ 0.023225605302214198, 0.02180205964900417, 0.02086153674686715, 0.02037578372048624, 0.020289350082720807, 0.02053202781278238, 0.02103435373634835, 0.021739661535582804, 0.022609587644370124, 0.02362358687389401, 0.02477467890359104, 0.02606370415783936, 0.027493796686310093, 0.029066110750782213, 0.03077722913371505, 0.03261819744724034, 0.03457482081463493, 0.03662874300652378, 0.038758865166188795, 0.040942780545581155, 0.04315803617906082, 0.04538314169771584, 0.04759831667428057, 0.04978600524398609, 0.05193120070364947, 0.05402162335161477, 0.05604778914579744, 0.05800299907282973, 0.05988327157606255, 0.06168723385178392, 0.06341598250559362, 0.0650729199014876, 0.06666356939611562, 0.06819537040664299, 0.06967745283658625, 0.07112038974633436, 0.07253592729420431, 0.07393669187297092, 0.07533587597003542, 0.07674690646150836, 0.07818310159680783, 0.07965732553477718, 0.08118165157934581, 0.08276704683604144, 0.08442309152224498, 0.08615774538982719, 0.08797717162047261, 0.08988562530647788, 0.09188540960193559, 0.09397689831823398 ], [ 0.023728793359178536, 0.022234807594603792, 0.021224249687492338, 0.020678705248314586, 0.02055188319890876, 0.020779470819620033, 0.021293442280208658, 0.022034470845312463, 0.022958630572375356, 0.024038251778414288, 0.025258842934406955, 0.026614284456995322, 0.028101977675687808, 0.029718957029793124, 0.03145938799071569, 0.03331344016781399, 0.035267261384600554, 0.03730367478476349, 0.03940323867615143, 0.04154539319835787, 0.04370951942738062, 0.04587582395184379, 0.04802602321185031, 0.05014383773767891, 0.05221532318180978, 0.05422906972907703, 0.05617629964728693, 0.058050888047971205, 0.059849326441194145, 0.0615706434175497, 0.06321629219965545, 0.0647900109973351, 0.0662976590797813, 0.0677470292244753, 0.06914763571451174, 0.07051047635530694, 0.07184776710170847, 0.07317264884428899, 0.07449886766664507, 0.07584043233699916, 0.07721125571191706, 0.07862478976629464, 0.08009366668831608, 0.08162936041948508, 0.08324188375246779, 0.0849395353375682, 0.08672870862636457, 0.08861377109155277, 0.09059701743756304, 0.09267869554959231 ], [ 0.02428771885285467, 0.02271207463386759, 0.021618312040280394, 0.020998493236564858, 0.020816574910343943, 0.02101532357619438, 0.02152902932212916, 0.02229612816893431, 0.023267213109105463, 0.02440742403920812, 0.025694672847821082, 0.027115801672876874, 0.028662371147219194, 0.030327111948491182, 0.03210149340149734, 0.033974453186462285, 0.03593209146934955, 0.037958033857489956, 0.04003416983575483, 0.04214153170655199, 0.044261155281217573, 0.04637483306039129, 0.04846572257149095, 0.050518805685177776, 0.05252121264369529, 0.054462431960758076, 0.05633442846306187, 0.058131689533749385, 0.05985121597568818, 0.0614924699052115, 0.06305728826141158, 0.06454976712772653, 0.0659761192297825, 0.0673445047667501, 0.06866483422114751, 0.06994854105267248, 0.07120832229580093, 0.07245784610562654, 0.07371142722938426, 0.07498367412147648, 0.07628911473596993, 0.0776418115482589, 0.07905497958102102, 0.08054062358343136, 0.08210921152041746, 0.08376940080941706, 0.0855278311929029, 0.08738899396532204, 0.08935518198619642, 0.09142651920937958 ], [ 0.024895465902242845, 0.023229365971783107, 0.02204171561683105, 0.021335290696843544, 0.021085067275030518, 0.021241962951337488, 0.021743536325165593, 0.02252656613042657, 0.02353640033035661, 0.024731043426265056, 0.026080814276540097, 0.02756550796086291, 0.029170799054469385, 0.030884994021396488, 0.032696652286331236, 0.03459318490893759, 0.03656030351240584, 0.038582090792291246, 0.04064145298276726, 0.04272075348466901, 0.04480248392738342, 0.046869884142642794, 0.048907466245076525, 0.05090142799432969, 0.052839958576225234, 0.05471344900238701, 0.05651462253841033, 0.05823860031729578, 0.05988291521657189, 0.061447484199634396, 0.06293454624223233, 0.06434857002301574, 0.06569613295408801, 0.06698577100785744, 0.06822779729060319, 0.06943408655402589, 0.07061782295360149, 0.07179320945801267, 0.07297513942225944, 0.07417883388020226, 0.07541945185919878, 0.07671168506529907, 0.0780693520720796, 0.07950501002124408, 0.08102960318759517, 0.08265216712326404, 0.0843796043245387, 0.08621654268168107, 0.08816528195835333, 0.09022582703050278 ], [ 0.025547127659522162, 0.023784124192746607, 0.022494316136774467, 0.02169105318604524, 0.02136077523917091, 0.02146348947131676, 0.021941049719025083, 0.022729337471953267, 0.023768872491995077, 0.02501071248372356, 0.026417671658424853, 0.027962542404583693, 0.029625108048142296, 0.0313891705819829, 0.03324021078530768, 0.035163865725751926, 0.037145160834668955, 0.03916832332326729, 0.04121698044516294, 0.043274569914037844, 0.04532483239373435, 0.0473523000087505, 0.04934273159404274, 0.05128347216842074, 0.05316373145821222, 0.054974786185671726, 0.056710115458776786, 0.058365479816166334, 0.05993895367178628, 0.06143091900258296, 0.06284402573000285, 0.06418312174354333, 0.06545515315942153, 0.06666903339911129, 0.06783547819371989, 0.06896680285400382, 0.07007667827051366, 0.07117984327324009, 0.07229177326254206, 0.07342830837577982, 0.07460524865319756, 0.07583792828170008, 0.0771407854004775, 0.07852694739925127, 0.0800078533884236, 0.08159293501190922, 0.08328937379346613, 0.08510194798548966, 0.08703297508905626, 0.08908234880377296 ], [ 0.026239121196760442, 0.024374887058214882, 0.02297685212563523, 0.022068471703156636, 0.02164777312220034, 0.02168463397375479, 0.02212628689569063, 0.022908660734668133, 0.023968056808697867, 0.025248911910334088, 0.02670669997145897, 0.02830729076995563, 0.030024590715974582, 0.03183783734594115, 0.03372929236596869, 0.03568260700626346, 0.03768186012367437, 0.039711143526417976, 0.04175453317661286, 0.04379629660328555, 0.04582121842197923, 0.047814961205279366, 0.04976440999565702, 0.051657972516870106, 0.05348582350795899, 0.055240091763329696, 0.05691499396415907, 0.058506921660402104, 0.06001448794400254, 0.061438539265325214, 0.06278213605757309, 0.0640505037415617, 0.06525095357518243, 0.06639277092571667, 0.06748706710353243, 0.06854659012870211, 0.0695854899330846, 0.07061903472751013, 0.0716632777120115, 0.07273467696681682, 0.07384967602492278, 0.07502425784311822, 0.07627348996755114, 0.07761108277683414, 0.07904898490898264, 0.08059703965465893, 0.08226272293533678, 0.08405097770961911, 0.0859641520136734, 0.08800203946569428 ], [ 0.026968646860456778, 0.025000645463748566, 0.023490209588795243, 0.022470171079805073, 0.02194997290826569, 0.02190996529510275, 0.022303868185265186, 0.023068771212873058, 0.024137556238637756, 0.02544849686529574, 0.026949954812784067, 0.028600976467472262, 0.03036960815397641, 0.032230468089535315, 0.03416247459580904, 0.03614710811689638, 0.03816727320602409, 0.040206678492485305, 0.04224960289312399, 0.04428091740391521, 0.04628625464350153, 0.048252246892787384, 0.05016677978329982, 0.05201922989816003, 0.05380066981354065, 0.05550403419436828, 0.057124246554963044, 0.0586583092973389, 0.06010536056917872, 0.061466701050500935, 0.06274579250600294, 0.06394822821592269, 0.0650816735236571, 0.06615577297584899, 0.06718201913491076, 0.06817357737801553, 0.06914506112876288, 0.07011225324527427, 0.07109177188738668, 0.07210068314065067, 0.07315606780164445, 0.07427455556530445, 0.07547184565013239, 0.07676223768599032, 0.07815819945738328, 0.07966999801766764, 0.08130541737774537, 0.08306957964316614, 0.08496487796235477, 0.08699102024548151 ], [ 0.02773335716890174, 0.025660474478039163, 0.02403501573290339, 0.02289827654489951, 0.022270690207700145, 0.022143489254300902, 0.022477972049622385, 0.023213637134330462, 0.02428091699804706, 0.025612499496147266, 0.027149913247334314, 0.02884548651064999, 0.030661413085422043, 0.032567632469498585, 0.03453960385677971, 0.03655647341276038, 0.038599773194989716, 0.040652612443388796, 0.04269925573821523, 0.04472497331609097, 0.04671606435732574, 0.04865997725114163, 0.050545473541921314, 0.05236280112439054, 0.054103856442859914, 0.055762325279246794, 0.057333797951297, 0.05881585822644439, 0.0602081467367626, 0.0615123997632686, 0.06273246341395297, 0.06387428181638796, 0.06494585628458541, 0.06595717077590768, 0.06692007760264554, 0.0678481365970612, 0.06875640105475199, 0.06966114509401403, 0.0705795297974603, 0.07152920973099541, 0.07252788701252774, 0.07359282656253611, 0.07474035270654049, 0.07598535284011323, 0.07734081724514777, 0.07881744437973341, 0.08042333755120591, 0.08216381201418496, 0.08404132213216471, 0.08605550776661196 ], [ 0.02853125390810897, 0.026353456651594047, 0.024611585855907493, 0.02335438025002934, 0.022612635053329826, 0.02238867514037243, 0.02265240234491612, 0.0233470587799313, 0.02440174068883342, 0.025744233446014172, 0.027309554058296343, 0.029043417263948667, 0.0309021574051432, 0.03285096721822771, 0.03486173614120345, 0.03691113109685332, 0.03897914087906924, 0.04104808982975687, 0.043102040025185334, 0.04512648099938381, 0.047108214921710516, 0.049035363944262465, 0.05089744619368853, 0.052685483930205564, 0.05439212063860641, 0.056011733329445944, 0.057540532654938845, 0.05897664723903171, 0.06032019050022704, 0.06157330872807736, 0.06274020867980777, 0.06382716183406137, 0.06484248096854377, 0.06579646319535165, 0.06670129228026354, 0.06757089230500718, 0.06842072484411903, 0.0692675231596757, 0.07012895975045866, 0.07102324806511451, 0.0719686851898182, 0.072983149390283, 0.07408357367578443, 0.07528542287792815, 0.07660220577889583, 0.07804505443258988, 0.07962239936542342, 0.08133976197275222, 0.08319967513729307, 0.08520173152890213 ], [ 0.029360788218948178, 0.02707886255984683, 0.025220182422011996, 0.02383986593742837, 0.022978287814438433, 0.022648871575557297, 0.022831029239505276, 0.023473110758624204, 0.024504100139249047, 0.025847659561436524, 0.027432658356703842, 0.02919830415496537, 0.031095052631615626, 0.03308327416270995, 0.035131182624310406, 0.037212837853099714, 0.039306540158954725, 0.04139367257516277, 0.043457934865266126, 0.045484880532127556, 0.04746167042273077, 0.0493769715786036, 0.05122094744647263, 0.052985301223647564, 0.054663346607781986, 0.056250089447348835, 0.057742310136148625, 0.059138640593434356, 0.06043963183958362, 0.0616478089672777, 0.06276771009638006, 0.06380590500339642, 0.0647709878154617, 0.06567353672904058, 0.06652603244942785, 0.06734272627832338, 0.06813944887048075, 0.06893335201579726, 0.06974257871434894, 0.07058586149307418, 0.07148205529809327, 0.07244961894290308, 0.07350606711514474, 0.07466742206436118, 0.07594769883677516, 0.07735845896473396, 0.07890846408255245, 0.08060345312182428, 0.08244605559685766, 0.08443584084004707 ], [ 0.030221103857129165, 0.027836509162126995, 0.02586148910118847, 0.024356482314400008, 0.023370545857475347, 0.022927998700591798, 0.023018496570862693, 0.023596829159425826, 0.02459317140370923, 0.025927936626796964, 0.02752426560515511, 0.029314980969834942, 0.031244638503680488, 0.03326870888087764, 0.03535163138756099, 0.03746474724053935, 0.03958454624708999, 0.04169134005477603, 0.04376833230354099, 0.04580100825577573, 0.04777676189212402, 0.04968469015580728, 0.05151549972248405, 0.0532614863530737, 0.054916558871267944, 0.056476288835570765, 0.05793797333525067, 0.059300702482906455, 0.060565425559921025, 0.06173501080010073, 0.06281429381386489, 0.06381010895501886, 0.06473129678176523, 0.06558867943179904, 0.06639499451217101, 0.06716477733779411, 0.06791418142547913, 0.06866072847752405, 0.06942298205211934, 0.0702201439670173, 0.07107157920264923, 0.07199628324297838, 0.07301231450976416, 0.07413622244431257, 0.07538250725136117, 0.07676314884111538, 0.07828723915873836, 0.07996074389877124, 0.0817864076713612, 0.0837638029956386 ], [ 0.031112343780045185, 0.028627190780336615, 0.026537168658483927, 0.024907012414292405, 0.023793475631055737, 0.02323134976215876, 0.02322103733270955, 0.023725001349998324, 0.024675959507363655, 0.025992054970880484, 0.027591201576185595, 0.029400001466827537, 0.03135710606175161, 0.03341301755211016, 0.035528312044896544, 0.037671516151537444, 0.03981720715244171, 0.041944517451260196, 0.04403604278521701, 0.046077087876664036, 0.04805517085642001, 0.04995971625611885, 0.05178188069135111, 0.05351446942803193, 0.05515191374340814, 0.05669028794518592, 0.05812735131642977, 0.05946260452075233, 0.0606973525562778, 0.06183476756555776, 0.06287994501394756, 0.06383994621737302, 0.06472381918679247, 0.06554258852022535, 0.0663092039045566, 0.0670384360318131, 0.06774670879065275, 0.06845185790570277, 0.06917280918998561, 0.06992917455159761, 0.07074077089167162, 0.07162707566091547, 0.07260664219011308, 0.07369650654213394, 0.07491162379961726, 0.07626437373369646, 0.07776417260969902, 0.07941721941307524, 0.08122639215657304, 0.08319129527886494 ], [ 0.03203593685960696, 0.029453074087261916, 0.027250368458784306, 0.025495877133064688, 0.02425299040455965, 0.023566316185267805, 0.0234472181782909, 0.02386689678409767, 0.0247619796780042, 0.026049439117190896, 0.02764258676441074, 0.029462050799595116, 0.03144061816335451, 0.033523777294878196, 0.035668168358668935, 0.03783942221296156, 0.04001011757492852, 0.042158116650976275, 0.044265312186992235, 0.04631673133093485, 0.048299920312224034, 0.050204539048212454, 0.05202210799862428, 0.05374586335248904, 0.05537068831489466, 0.056893097269821565, 0.058311256099033176, 0.059625026330807955, 0.060836023492698135, 0.06194768141891839, 0.06296531462662248, 0.06389617049240298, 0.06474946207424317, 0.06553637128466343, 0.06627001101202115, 0.0669653340511294, 0.06763897675272264, 0.06830902659747987, 0.06899470590435486, 0.0697159689457056, 0.07049301695016028, 0.07134574448088708, 0.07229314056840593, 0.07335267726916249, 0.07453972515345973, 0.0758670377766926, 0.07734434421851308, 0.07897808012720883, 0.08077127451996766, 0.08272359410042361 ], [ 0.03299479329206987, 0.03031796547010997, 0.02800605900206343, 0.026129535065771967, 0.024757296375186696, 0.023942867907277184, 0.023708445463296594, 0.02403478386907419, 0.02486375968926318, 0.026112408385903885, 0.027690236117885333, 0.029512276360303378, 0.031505572216620495, 0.033610596745327535, 0.035780004962002614, 0.03797646558996209, 0.04017048447761796, 0.04233857359146983, 0.044461838063405194, 0.046524940078152596, 0.04851536621117414, 0.05042292612168887, 0.05223942266677012, 0.0539584471607156, 0.055575265333595865, 0.05708676873103041, 0.05849147296138175, 0.05978954873434752, 0.06098287447285702, 0.062075100794592525, 0.06307171766188531, 0.06398011475081379, 0.06480962482797498, 0.06557153888644732, 0.06627908075685109, 0.06694732821270061, 0.0675930676453148, 0.06823457066983979, 0.06889128402804973, 0.06958342926625942, 0.07033151602215819, 0.07115578204534563, 0.07207558340428846, 0.07310876818311077, 0.0742710744002626, 0.07557559593606168, 0.07703235756003654, 0.07864803144213689, 0.08042581393491473, 0.08236546524433783 ], [ 0.03399335989485265, 0.03122739038568614, 0.02881113126078896, 0.026816588424457527, 0.02531700020138091, 0.024373667565100024, 0.024019103566468556, 0.024244106008894328, 0.02499704853524448, 0.026196398152049362, 0.027748871010565217, 0.029564475179698346, 0.03156475558042131, 0.03368523783928906, 0.035874577340297885, 0.038092430732873696, 0.040307164909237296, 0.04249386664814762, 0.0446327729382379, 0.04670809728981991, 0.048707182065434, 0.05061990348625341, 0.052438266895088084, 0.054156143463518706, 0.05576911161564226, 0.057274375896579466, 0.05867074289111368, 0.0599586384998437, 0.061140153855181116, 0.06221910880113163, 0.06320112249031166, 0.06409368053172008, 0.06490618748468507, 0.06564999256967456, 0.06633837552133189, 0.0669864788730856, 0.06761117304711504, 0.06823084191232133, 0.06886507947182782, 0.06953429347241379, 0.07025921916559127, 0.07106035592675378, 0.07195735008122643, 0.07296835757102614, 0.07410942802415685, 0.07539395530912711, 0.07683223727402554, 0.0784311787215133, 0.08019415783809013, 0.08212105963722963 ], [ 0.03503751437365646, 0.032188462000062396, 0.02967422722202254, 0.027567563678188765, 0.025944836280579423, 0.02487376184183916, 0.024396252646147934, 0.024513233423379688, 0.025180647461514067, 0.0263198656991606, 0.02783607925631832, 0.02963508574865564, 0.0316333519607362, 0.03376162556711817, 0.035964598455520365, 0.038198886615845466, 0.04043065869873711, 0.04263350194619126, 0.04478670318462371, 0.04687394166599981, 0.04888232922048874, 0.05080172378517459, 0.052624251538923264, 0.0543439862856492, 0.055956747066161765, 0.05745998473590278, 0.05885273536493707, 0.06013562319703895, 0.0613108990180765, 0.06238250154768256, 0.06335613021871785, 0.06423931771528661, 0.06504149013112266, 0.06577400181058568, 0.06645013109973724, 0.06708502268462387, 0.06769556233181888, 0.06830017115521106, 0.06891850952768862, 0.06957108587892784, 0.07027877307739207, 0.07106224465651471, 0.07194135397031322, 0.07293448994163104, 0.07405795137432038, 0.075325385725974, 0.07674733619097765, 0.0783309324697503, 0.08007974671751049, 0.0819938192328694 ], [ 0.0361343052941992, 0.03320955297968275, 0.030605325110253996, 0.028394393780035644, 0.026655039860363623, 0.025459865359411308, 0.024858880848868316, 0.024862763057476762, 0.025435820096847285, 0.02650383247773429, 0.02797197782637167, 0.02974294517286468, 0.03172876641388007, 0.03385571919336252, 0.03606464028771323, 0.03830910754208162, 0.04055304113175959, 0.04276845317226928, 0.044933593110163275, 0.047031514214790515, 0.04904900559067115, 0.05097581676287402, 0.052804108365190075, 0.05452807528227597, 0.056143701040429095, 0.05764861225554006, 0.05904200929876648, 0.060324654397503986, 0.06149890163881, 0.06256875522458583, 0.06353994319740285, 0.06441999399012273, 0.06521830278112016, 0.0659461739779669, 0.06661682545070154, 0.06724533969850534, 0.0678485473526224, 0.06844482976904051, 0.06905383046037344, 0.06969607020960754, 0.07039246812726373, 0.07116378046126806, 0.07202997984252746, 0.07300960836878674, 0.07411914648263193, 0.07537244384913491, 0.0767802567354281, 0.07834992820107577, 0.08008523366504647, 0.081986397436593 ], [ 0.0372915674321595, 0.034299813889182226, 0.03161513870443426, 0.029309677105024377, 0.027462452029866687, 0.02614932274468119, 0.025426779872374305, 0.025314406115016577, 0.02578529133536098, 0.026771051987916267, 0.02817855801543335, 0.029908789276009592, 0.0318702479056388, 0.03398522632626677, 0.03619091416784269, 0.038437900597784645, 0.0406878235765016, 0.04291104546734993, 0.045084685229803426, 0.047191070212380795, 0.049216566172767685, 0.051150716279913924, 0.052985622245352075, 0.05471551226091967, 0.05633645264057327, 0.05784617018873481, 0.059243959839431495, 0.060530657317095976, 0.06170865994259873, 0.06278198070290442, 0.06375632169011651, 0.06463915328245107, 0.06543978521636758, 0.06616941519809347, 0.0668411401576547, 0.06746991495217285, 0.06807244365444483, 0.06866698997827035, 0.06927309639823032, 0.06991120656903872, 0.07060219297806161, 0.07136680120465351, 0.07222503294976966, 0.07319550070783071, 0.07429479560851804, 0.07553691443703023, 0.07693279047324936, 0.07848996496999562, 0.08021242266864, 0.0821005979569954 ], [ 0.038517457546912846, 0.03546860062747066, 0.03271441420029816, 0.030325820013840016, 0.028381486113970723, 0.026958892986802638, 0.026119184534078903, 0.025889578103899417, 0.02625191119331942, 0.027144843359991937, 0.028478728103296207, 0.030154496682108484, 0.032078303788881934, 0.03416915151273799, 0.03636092080082314, 0.03860133073064586, 0.04084973348412628, 0.04307477543715312, 0.04525234944549869, 0.047363949772041954, 0.04939540947636712, 0.051335958707536274, 0.05317753878180086, 0.0549143161286581, 0.05654235164532382, 0.058059390964616826, 0.05946474870094762, 0.06075926503138051, 0.061945316434593015, 0.06302686450486375, 0.06400952786062485, 0.06490066257084787, 0.06570943645877102, 0.06644688231700202, 0.0671259147028092, 0.06776129485462751, 0.06836952873802098, 0.06896868473311278, 0.06957812050197278, 0.07021811356318061, 0.07090939729268897, 0.07167261331633377, 0.07252770184164707, 0.07349326202704666, 0.07458592310276406, 0.07581977157044013, 0.07720587875354207, 0.07875196559903473, 0.08046222869526584, 0.08233733508312667 ], [ 0.039819962325857564, 0.03672488039254313, 0.033913216224206705, 0.031454181499376434, 0.029425104683836995, 0.027903534996656796, 0.02695337185954209, 0.026607877170161272, 0.026857133472750316, 0.027647693952548454, 0.028895115955423073, 0.03050211061274595, 0.03237392228412821, 0.03442718536191271, 0.036592970437820616, 0.03881634093991844, 0.04105440972071866, 0.04327406253206571, 0.04544987616533247, 0.04756240213049895, 0.04959682523666299, 0.05154194843400219, 0.053389443527756826, 0.05513331288180091, 0.05676951715348284, 0.05829573349233103, 0.059711216016062794, 0.061016735644442356, 0.06221457987503324, 0.06330859525334247, 0.06430425649881373, 0.06520874679135312, 0.06603103382890078, 0.06678192613327298, 0.06747409391792683, 0.06812203889693165, 0.06874199804533412, 0.06935176793406139, 0.06997043931909502, 0.07061803658379211, 0.0713150636484398, 0.07208196693754065, 0.07293853625921183, 0.07390327470926263, 0.07499277715625446, 0.07622116150906988, 0.07759959619525808, 0.07913596041123303, 0.08083466139791644, 0.08269661721185785 ], [ 0.04120642871986595, 0.0380766815220875, 0.03522028745386817, 0.03270432892001597, 0.03060394785289407, 0.028995373084423206, 0.027943433905282977, 0.027485679848821047, 0.027619520140810285, 0.028299797960945543, 0.02944874827892972, 0.030972712867585354, 0.03277764751089088, 0.03477895946914944, 0.03690558663531412, 0.03910027390303279, 0.04131801532600134, 0.043523931409091755, 0.045691211563945844, 0.04779936111258854, 0.049832800555302044, 0.05177978758712601, 0.05363161004009144, 0.05538199812329127, 0.05702671173916576, 0.058563266906866134, 0.05999077221295443, 0.061309851282731004, 0.0625226307183803, 0.06363277514895348, 0.06464555233463767, 0.06556791194745147, 0.066408561932997, 0.06717802643024462, 0.06788866928284569, 0.06855466745565957, 0.06919191948594286, 0.0698178758382105, 0.0704512811257731, 0.07111182300203946, 0.0718196893286922, 0.07259504387001756, 0.07345744061341666, 0.07442520666622489, 0.07551483183227758, 0.07674040755716202, 0.07811315740115653, 0.0796410948724009, 0.08132883288583212, 0.08317755410291999 ], [ 0.04268315872384094, 0.03953063949756091, 0.03664254674877392, 0.03408348632615315, 0.03192571801968453, 0.030242981823490677, 0.029099407164347977, 0.028535074969793267, 0.028553503031225922, 0.029117738982151968, 0.03015776947862745, 0.03158526533539503, 0.033308583336092545, 0.035243215404976234, 0.03731682322374095, 0.039470312701968095, 0.04165677781501523, 0.04383963066775561, 0.04599063744349945, 0.04808817244531102, 0.05011578409304292, 0.05206106903426432, 0.05391481558446148, 0.055670370897738575, 0.05732319001803877, 0.05887053137353608, 0.06031126926395909, 0.06164579853666412, 0.06287600992093598, 0.0640053166516565, 0.06503871436694467, 0.0659828570690709, 0.06684613239771424, 0.0676387197515387, 0.06837261508373765, 0.06906160670777071, 0.0697211874656806, 0.07036839048949549, 0.07102153892178444, 0.07169990471291554, 0.07242327817664854, 0.07321145824128684, 0.0740836826950442, 0.07505802707229846, 0.07615080859248487, 0.07737603600819626, 0.07874494589156397, 0.0802656601194648, 0.08194298857232535, 0.08377838695648822 ], [ 0.04425509812810846, 0.04109167276246971, 0.03818476355143196, 0.035596218112102646, 0.03339487251333719, 0.031651060316489205, 0.03042686339175741, 0.029763287848022568, 0.029668594380467803, 0.030113518118579978, 0.031036380422148305, 0.03235556135119722, 0.03398342911487535, 0.035836958478831595, 0.03784354145215422, 0.039942871254507975, 0.042086476709556606, 0.04423620047102202, 0.04636240352757704, 0.04844227772569862, 0.050458411183675375, 0.052397634324197126, 0.054250125442922265, 0.056008739411751406, 0.057668522033934716, 0.05922637635125121, 0.060680851793178295, 0.06203203098057553, 0.06328149191888874, 0.06443232534445804, 0.06548918834624906, 0.06645837629128179, 0.06734789571146212, 0.0681675213121153, 0.06892882079217993, 0.06964513191558544, 0.07033147749872083, 0.071004406001321, 0.07168174858512315, 0.07238228815753328, 0.07312534221829647, 0.07393026915621609, 0.07481591645826653, 0.07580003806903493, 0.0768987154401072, 0.0781258210469759, 0.07949256298531104, 0.08100714404803903, 0.0826745588089992, 0.0844965391335857 ], [ 0.04592563441126536, 0.04276280158807478, 0.03984941743764936, 0.03724434990657421, 0.035012618117480535, 0.03322048690185057, 0.03192696607940358, 0.031172636660646437, 0.03096914122187925, 0.031294065935518804, 0.032094150120332836, 0.03329542748371407, 0.03481566150495868, 0.036574682030478416, 0.03850070876450962, 0.04053297736893281, 0.04262190790124617, 0.04472800938635285, 0.04682032617994021, 0.04887486473218296, 0.05087319666308806, 0.05280130143455305, 0.0546486494225269, 0.056407501431773546, 0.0580723937678371, 0.05963977834264543, 0.06110778994155699, 0.06247611563186864, 0.06374594365205204, 0.06491997089054638, 0.06600244935562669, 0.06699925300645761, 0.06791794709555248, 0.06876784288336792, 0.06956002135353939, 0.07030731054672965, 0.07102420256645223, 0.07172669847620886, 0.07243207252088717, 0.07315855164913192, 0.07392491233229236, 0.07475000405037223, 0.07565221704670926, 0.07664892010965113, 0.07775590092587945, 0.07898684553106883, 0.08035289334169918, 0.0818622995852003, 0.08352022795903337, 0.08532868429865838 ], [ 0.047696505147174634, 0.04454510458459801, 0.0416367266164123, 0.0390270947175335, 0.036777154954158016, 0.034948680490625404, 0.03359690762619956, 0.032760950412762044, 0.032454598427349254, 0.032661272949443425, 0.03333578263811425, 0.0344122791161333, 0.035814963460737814, 0.037467748546435996, 0.039300787269032, 0.04125369974626145, 0.04327636265828084, 0.04532828804927878, 0.04737737370766336, 0.049398498919040995, 0.05137220649325099, 0.05328357076868005, 0.055121277173765866, 0.056876904701621836, 0.0585443892462231, 0.06011964202369697, 0.0616002974907924, 0.0629855665876982, 0.06427617268771617, 0.06547434899551074, 0.06658387727033012, 0.06761014872715457, 0.06856022886770327, 0.06944290889322673, 0.07026872734536564, 0.0710499468427734, 0.07180047241931864, 0.0725357002715234, 0.0732722889636777, 0.07402784956247974, 0.07482055689642268, 0.07566869103920615, 0.07659012574387217, 0.07760178806725433, 0.07871911966569493, 0.07995557393320371, 0.08132218320132577, 0.08282722607148135, 0.084476016845668, 0.08627082804509163 ], [ 0.04956780693583941, 0.046437793265191395, 0.04354481179521135, 0.04094133125950507, 0.03868409107057794, 0.03683015972915738, 0.03543059074104152, 0.034522301631025994, 0.0341201953707112, 0.034212466349499704, 0.03476132919288872, 0.0357090680808223, 0.0369869636040491, 0.03852399618010519, 0.040253274614621276, 0.04211567141321144, 0.04406116314456855, 0.04604869225553472, 0.0480452634144347, 0.05002475554323483, 0.05196672334657364, 0.05385532140140971, 0.0556784019971054, 0.05742679536225553, 0.059093760992627864, 0.06067459058755636, 0.06216634040510448, 0.06356767048308866, 0.06487876867853243, 0.06610133826110841, 0.06723862866422693, 0.06829548991263297, 0.06927843221835728, 0.07019567329646673, 0.0710571571515054, 0.07187452952142108, 0.07266105699152771, 0.07343147921411584, 0.07420178692411694, 0.07498892273225516, 0.07581040709587022, 0.0766838982946274, 0.07762670225765411, 0.07865525495291668, 0.07978460573590689, 0.08102793343500934, 0.08239612706010968, 0.0838974593565271, 0.08553737417423452, 0.08731839870901711 ], [ 0.05153808706565743, 0.048438376648500016, 0.04556995358152268, 0.042981974512422284, 0.04072694460506492, 0.03885718829798211, 0.03741941066327481, 0.03644788445101839, 0.03595782256025543, 0.03594118750486935, 0.03636675341099658, 0.03718458797286723, 0.038333295794378164, 0.039747605666234656, 0.04136444178146251, 0.04312675400213168, 0.04498529420425906, 0.046898929129649214, 0.048834098094321314, 0.050763874947989736, 0.052666924454835666, 0.05452651254082001, 0.0563296455109184, 0.05806636474634678, 0.05972919765164385, 0.06131275293279855, 0.06281344247544082, 0.06422930969099869, 0.06555994343628112, 0.06680645665531758, 0.0679715093782881, 0.06905935648606172, 0.07007590164000138, 0.07102873995519868, 0.07192717336840826, 0.07278218427624747, 0.07360635500952149, 0.0744137232336364, 0.07521956661678592, 0.07604011425438846, 0.07689218744717394, 0.0777927783829018, 0.07875858169202622, 0.0798055000744818, 0.08094815033227402, 0.08219939920657574, 0.08356995856451037, 0.08506806626084808, 0.0866992725549216, 0.08846634307640375 ], [ 0.0536044961726773, 0.05054288517464426, 0.04770690159343939, 0.045142383352618505, 0.04289766232325299, 0.0410204150522833, 0.03955302134644334, 0.038526892398725594, 0.03795697079511819, 0.037838103189444736, 0.03814471136362553, 0.03883404585793211, 0.039851935834694825, 0.04113922170017351, 0.04263728462138933, 0.04429187057985188, 0.046055162209595504, 0.04788647603371593, 0.049752068624173085, 0.05162446412540628, 0.053481591441753115, 0.05530590692582472, 0.057083597372950115, 0.058803906656712326, 0.06045859919225135, 0.06204155670954892, 0.06354849592693143, 0.06497679015467968, 0.0663253756748018, 0.06759472290911028, 0.06878685238198079, 0.06990537603314799, 0.07095554538198023, 0.07194428929299976, 0.07288022559925522, 0.07377363261882638, 0.07463636872500784, 0.07548173073055554, 0.07632424507543824, 0.07717938979833525, 0.07806325006964572, 0.07899211555183214, 0.07998203369376071, 0.08104833867913533, 0.08220518035692848, 0.08346508023340744, 0.08483854177013292, 0.08633373941447217, 0.0879563050944014, 0.08970922299406964 ], [ 0.05576297967273387, 0.0527461250948114, 0.04994919929739937, 0.047414761951642084, 0.0451871035277588, 0.0433094483661833, 0.04182001015132264, 0.040747297873106644, 0.04010559807946689, 0.03989190675747694, 0.04008540424674171, 0.040649782660749964, 0.041537734986277115, 0.042696285922721046, 0.04407167567221059, 0.045613012735250626, 0.04727449720823154, 0.04901641297532023, 0.0508052443231947, 0.05261326522702284, 0.0544178709606743, 0.056200832881572085, 0.057947584728008365, 0.05964659793302437, 0.06128887084677832, 0.06286753694528341, 0.06437758546434971, 0.06581568123494902, 0.06718006683586401, 0.06847052838009747, 0.06968840566624096, 0.07083662767337681, 0.07191975521489465, 0.07294401383098081, 0.07391730159405228, 0.07484915839460037, 0.07575068550038137, 0.07663440682863723, 0.07751406655598539, 0.07840436151433226, 0.07932061130891989, 0.08027837413356212, 0.08129302154700245, 0.08237929050722492, 0.08355083506711662, 0.0848198025857863, 0.08619645947832769, 0.0876888890679098, 0.08930277909550825, 0.09104130943038564 ], [ 0.058008487838855795, 0.05504193933816272, 0.05228949742214841, 0.049790525888141, 0.04758545958849074, 0.04571333399041737, 0.04420844573161873, 0.04309648523010755, 0.04239085373825206, 0.042090112722467536, 0.04217738996391671, 0.04262202947881396, 0.043383056055587656, 0.04441351495817231, 0.04566467744372184, 0.04708940548723441, 0.04864439738826004, 0.050291376894442, 0.05199746433983211, 0.053735006235699455, 0.05548110156310703, 0.05721699972969693, 0.05892748490321765, 0.06060031449069559, 0.06222574662234544, 0.06379616980370817, 0.06530583411769864, 0.06675067484059694, 0.06812821426347881, 0.06943752472685273, 0.07067923466032845, 0.07185555930541537, 0.0729703384690025, 0.07402906488172567, 0.07503888836925968, 0.07600858300885908, 0.07694846673142254, 0.07787026549191886, 0.07878691724998792, 0.07971231464889537, 0.08066098946333101, 0.08164774649605719, 0.08268725937291842, 0.08379364517714133, 0.08498003850345057, 0.08625818767961047, 0.08763809606425606, 0.08912772918765399, 0.09073280411264996, 0.09245667120807445 ], [ 0.060335188049314134, 0.05742345701559986, 0.05471983815956689, 0.0522606171308501, 0.05008259703973084, 0.0482209288419475, 0.046706293885820274, 0.04556172816775367, 0.04479963621670882, 0.0444196978919585, 0.04440828227965989, 0.044739613418535454, 0.04537842567580454, 0.0462834501916455, 0.047410963486863175, 0.048717796278750655, 0.05016349873503775, 0.051711632793290004, 0.05333033293562099, 0.05499234131429066, 0.05667471667440823, 0.05835837730516751, 0.06002759207276155, 0.0616694930072813, 0.06327365174342088, 0.06483173989784297, 0.06633727833727865, 0.06778547033292337, 0.06917310729767374, 0.07049853209508122, 0.07176164305902204, 0.07296392135553867, 0.07410846477559692, 0.07520001218846555, 0.07624494451157916, 0.07725125004445794, 0.07822844432608522, 0.0791874373222316, 0.08014034378055528, 0.08110023605169399, 0.08208084255785436, 0.08309619929296859, 0.08416026602440033, 0.08528652285829567, 0.08648756604085428, 0.08777472377134281, 0.08915771294876357, 0.09064435590848663, 0.0922403723680055, 0.09394925636414508 ], [ 0.06273666699086283, 0.05988331988120939, 0.05723190062076165, 0.054815762408246954, 0.052668324573645627, 0.05082117779664094, 0.04930171422765145, 0.04813052590079667, 0.04731899272669193, 0.046867581073602296, 0.04676530679790807, 0.04699056073688753, 0.04751313808759389, 0.048297013934575875, 0.04930329068301284, 0.05049282502663041, 0.05182824093312193, 0.0532752448963851, 0.054803311113451714, 0.056385879722828165, 0.05800022668982227, 0.05962714498115816, 0.06125054447216986, 0.06285704521351596, 0.06443561085219687, 0.06597724754797382, 0.06747477812114885, 0.06892269029470553, 0.07031705065578694, 0.07165547146691556, 0.07293711502241992, 0.07416271934423287, 0.07533462923080024, 0.07645681769093031, 0.07753488437138026, 0.0785760195652755, 0.07958892468733908, 0.08058368270346523, 0.08157157492602972, 0.08256484385369967, 0.08357640532723405, 0.084619517092505, 0.0857074147013966, 0.08685292921723872, 0.08806810401092675, 0.08936382959570431, 0.09074951557415269, 0.09223281714475545, 0.09381943026597549, 0.09551296480835889 ], [ 0.06520611474473187, 0.0624138794112352, 0.059817204386426834, 0.05744667651379275, 0.05533259151979962, 0.05350330789617342, 0.05198325863136786, 0.05079082343097707, 0.04993638528681627, 0.04942095726361591, 0.049235713091321916, 0.049362576255809615, 0.049775771792844155, 0.050444023491846665, 0.05133297323872918, 0.05240743140530916, 0.05363319483884562, 0.05497832297318742, 0.05641388847604747, 0.0579142941651535, 0.05945727616706778, 0.06102370967029815, 0.06259731384157138, 0.06416432773198985, 0.0657132055053687, 0.06723435966646885, 0.06871996570690658, 0.0701638303650034, 0.07156131787082073, 0.07290932346437223, 0.07420628055192682, 0.07545218660422795, 0.07664863287966137, 0.07779882392755859, 0.07890757432225921, 0.07998127200833072, 0.0810277998903335, 0.08205640982979412, 0.08307754601095826, 0.08410261770666186, 0.08514372478779243, 0.0862133427817479, 0.08732397771535348, 0.08848780410019953, 0.08971630188540358, 0.09101990964514704, 0.09240771136993489, 0.09388717281004912, 0.09546394039740722, 0.0971417115981794 ], [ 0.06773648625874308, 0.06500736229707868, 0.06246727234416686, 0.06014421616811461, 0.058065628675740194, 0.05625695658286789, 0.05473999387099288, 0.05353114328219646, 0.052639852798389695, 0.052067513046690286, 0.05180705997611868, 0.0518434006559184, 0.0521546037329791, 0.052713634042821755, 0.05349032171228995, 0.05445326149181082, 0.055571417191322074, 0.05681531556200302, 0.05815781379907271, 0.05957449329203516, 0.06104376602176047, 0.06254678668629551, 0.06406725385023747, 0.06559116616281445, 0.06710658089860483, 0.0686034049042211, 0.0700732337913329, 0.07150924417749323, 0.07290613573467974, 0.07426011436784483, 0.07556890456784975, 0.07683177742642305, 0.07804958055934537, 0.07922475690357186, 0.08036134074663502, 0.08146492120090867, 0.0825425655153477, 0.08360269705192726, 0.08465492541428472, 0.08570982908599242, 0.08677869397902871, 0.08787321442237973, 0.08900516617757386, 0.09018606381794346, 0.09142681695956957, 0.09273740107661005, 0.09412655870936051, 0.09560154562854654, 0.09716793396867451, 0.09882948069178067 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.34511 (SEM: 0)
x1: 0.609558
x2: 0.38527
x3: 0.842799
x4: 0.427459
x5: 0.581037
x6: 0.242283", "Arm 1_0
l2norm: 1.51723 (SEM: 0)
x1: 0.464273
x2: 0.964537
x3: 0.393806
x4: 0.741423
x5: 0.374555
x6: 0.557693", "Arm 2_0
l2norm: 1.56821 (SEM: 0)
x1: 0.22483
x2: 0.542636
x3: 0.93867
x4: 0.413404
x5: 0.313344
x6: 0.981889", "Arm 3_0
l2norm: 1.10224 (SEM: 0)
x1: 0.375896
x2: 0.167969
x3: 0.0767304
x4: 0.724087
x5: 0.508891
x6: 0.506212", "Arm 4_0
l2norm: 1.2042 (SEM: 0)
x1: 0.710853
x2: 0.0418649
x3: 0.0822931
x4: 0.209533
x5: 0.854872
x6: 0.401944", "Arm 5_0
l2norm: 1.45912 (SEM: 0)
x1: 0.937608
x2: 0.595109
x3: 0.26793
x4: 0.19014
x5: 0.0626795
x6: 0.885384", "Arm 6_0
l2norm: 1.4923 (SEM: 0)
x1: 0.120472
x2: 0.556843
x3: 0.682256
x4: 0.928503
x5: 0.631362
x6: 0.41973", "Arm 7_0
l2norm: 1.20873 (SEM: 0)
x1: 0.264624
x2: 0.279927
x3: 0.240536
x4: 0.495718
x5: 0.803813
x6: 0.602432", "Arm 8_0
l2norm: 1.52484 (SEM: 0)
x1: 0.921266
x2: 0.809655
x3: 0.438727
x4: 8.80007e-05
x5: 0.744998
x6: 0.270863", "Arm 9_0
l2norm: 1.52722 (SEM: 0)
x1: 0.797808
x2: 0.740205
x3: 0.187059
x4: 0.857293
x5: 0.411034
x6: 0.457282", "Arm 10_0
l2norm: 0.864628 (SEM: 0)
x1: 0.173432
x2: 0.76843
x3: 0.163187
x4: 0.0888458
x5: 0.10114
x6: 0.286822", "Arm 11_0
l2norm: 1.60683 (SEM: 0)
x1: 0.59742
x2: 0.531002
x3: 0.554584
x4: 0.55474
x5: 0.999257
x6: 0.573779", "Arm 12_0
l2norm: 0.972019 (SEM: 0)
x1: 0.0703345
x2: 0.690299
x3: 0.320792
x4: 0.109058
x5: 0.0883175
x6: 0.583747", "Arm 13_0
l2norm: 1.18307 (SEM: 0)
x1: 0.0907955
x2: 0.619497
x3: 0.529177
x4: 0.207686
x5: 0.169786
x6: 0.809718", "Arm 14_0
l2norm: 1.24184 (SEM: 0)
x1: 0.0936221
x2: 0.605643
x3: 0.556463
x4: 0.22399
x5: 0.187507
x6: 0.878419", "Arm 15_0
l2norm: 1.21351 (SEM: 0)
x1: 0.100608
x2: 0.608034
x3: 0.611621
x4: 0.224986
x5: 0.178161
x6: 0.797704", "Arm 16_0
l2norm: 1.22461 (SEM: 0)
x1: 0.10625
x2: 0.604204
x3: 0.687468
x4: 0.230214
x5: 0.175157
x6: 0.753018", "Arm 17_0
l2norm: 1.25473 (SEM: 0)
x1: 0.114978
x2: 0.616664
x3: 0.689686
x4: 0.245888
x5: 0.111512
x6: 0.795159", "Arm 18_0
l2norm: 1.22511 (SEM: 0)
x1: 0.105047
x2: 0.591428
x3: 0.68324
x4: 0.230463
x5: 0.229862
x6: 0.753203", "Arm 19_0
l2norm: 1.23638 (SEM: 0)
x1: 0.107005
x2: 0.576046
x3: 0.695174
x4: 0.235956
x5: 0.288874
x6: 0.750303", "Arm 20_0
l2norm: 1.24433 (SEM: 0)
x1: 0.107604
x2: 0.564793
x3: 0.698066
x4: 0.239062
x5: 0.329937
x6: 0.751326", "Arm 21_0
l2norm: 1.19289 (SEM: 0)
x1: 0.0885114
x2: 0.494253
x3: 0.686294
x4: 0.214039
x5: 0.318827
x6: 0.743235", "Arm 22_0
l2norm: 1.16681 (SEM: 0)
x1: 0.0801436
x2: 0.446914
x3: 0.691899
x4: 0.204454
x5: 0.292384
x6: 0.741138", "Arm 23_0
l2norm: 1.14854 (SEM: 0)
x1: 0.0678483
x2: 0.374346
x3: 0.708889
x4: 0.195153
x5: 0.285289
x6: 0.743248", "Arm 24_0
l2norm: 1.12954 (SEM: 0)
x1: 0.0431209
x2: 0.306832
x3: 0.714573
x4: 0.16544
x5: 0.301903
x6: 0.742107", "Arm 25_0
l2norm: 1.15092 (SEM: 0)
x1: 0.0799936
x2: 0.313235
x3: 0.717798
x4: 0.245628
x5: 0.288675
x6: 0.749132", "Arm 26_0
l2norm: 1.12487 (SEM: 0)
x1: 0.0839778
x2: 0.245926
x3: 0.69269
x4: 0.296408
x5: 0.292079
x6: 0.738119", "Arm 27_0
l2norm: 1.0885 (SEM: 0)
x1: 0.088011
x2: 0.19592
x3: 0.656921
x4: 0.342264
x5: 0.279115
x6: 0.715612", "Arm 28_0
l2norm: 1.09201 (SEM: 0)
x1: 0.159871
x2: 0.162642
x3: 0.655405
x4: 0.320893
x5: 0.280748
x6: 0.727409" ], "type": "scatter", "x": [ 0.6095580458641052, 0.46427332516759634, 0.22483001183718443, 0.37589621637016535, 0.710853218100965, 0.9376077298074961, 0.12047221325337887, 0.2646239399909973, 0.9212664058431983, 0.7978077847510576, 0.1734319757670164, 0.5974199073389173, 0.07033450008774463, 0.09079547741327233, 0.09362208953210266, 0.10060839553609507, 0.10624994079175323, 0.1149784791706915, 0.10504711814755888, 0.10700470378779625, 0.10760366914557919, 0.08851138121389444, 0.08014364755496461, 0.06784834626592685, 0.04312088812470869, 0.07999361978694751, 0.08397776679336263, 0.08801102360378645, 0.15987122390002484 ], "xaxis": "x", "y": [ 0.3852703273296356, 0.9645370254293084, 0.542636320926249, 0.1679691094905138, 0.041864871978759766, 0.5951094664633274, 0.5568432779982686, 0.27992690820246935, 0.8096554977819324, 0.7402053559198976, 0.7684295950457454, 0.5310021433979273, 0.6902987748966037, 0.6194972201699956, 0.6056434996224355, 0.60803363140874, 0.6042040438396834, 0.616663715604231, 0.5914278420342505, 0.5760460768291786, 0.5647934082098882, 0.4942525068732854, 0.446914319451564, 0.3743464278207046, 0.3068323014502012, 0.31323463450819583, 0.24592578808444576, 0.19591965499752736, 0.16264215268809964 ], "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.34511 (SEM: 0)
x1: 0.609558
x2: 0.38527
x3: 0.842799
x4: 0.427459
x5: 0.581037
x6: 0.242283", "Arm 1_0
l2norm: 1.51723 (SEM: 0)
x1: 0.464273
x2: 0.964537
x3: 0.393806
x4: 0.741423
x5: 0.374555
x6: 0.557693", "Arm 2_0
l2norm: 1.56821 (SEM: 0)
x1: 0.22483
x2: 0.542636
x3: 0.93867
x4: 0.413404
x5: 0.313344
x6: 0.981889", "Arm 3_0
l2norm: 1.10224 (SEM: 0)
x1: 0.375896
x2: 0.167969
x3: 0.0767304
x4: 0.724087
x5: 0.508891
x6: 0.506212", "Arm 4_0
l2norm: 1.2042 (SEM: 0)
x1: 0.710853
x2: 0.0418649
x3: 0.0822931
x4: 0.209533
x5: 0.854872
x6: 0.401944", "Arm 5_0
l2norm: 1.45912 (SEM: 0)
x1: 0.937608
x2: 0.595109
x3: 0.26793
x4: 0.19014
x5: 0.0626795
x6: 0.885384", "Arm 6_0
l2norm: 1.4923 (SEM: 0)
x1: 0.120472
x2: 0.556843
x3: 0.682256
x4: 0.928503
x5: 0.631362
x6: 0.41973", "Arm 7_0
l2norm: 1.20873 (SEM: 0)
x1: 0.264624
x2: 0.279927
x3: 0.240536
x4: 0.495718
x5: 0.803813
x6: 0.602432", "Arm 8_0
l2norm: 1.52484 (SEM: 0)
x1: 0.921266
x2: 0.809655
x3: 0.438727
x4: 8.80007e-05
x5: 0.744998
x6: 0.270863", "Arm 9_0
l2norm: 1.52722 (SEM: 0)
x1: 0.797808
x2: 0.740205
x3: 0.187059
x4: 0.857293
x5: 0.411034
x6: 0.457282", "Arm 10_0
l2norm: 0.864628 (SEM: 0)
x1: 0.173432
x2: 0.76843
x3: 0.163187
x4: 0.0888458
x5: 0.10114
x6: 0.286822", "Arm 11_0
l2norm: 1.60683 (SEM: 0)
x1: 0.59742
x2: 0.531002
x3: 0.554584
x4: 0.55474
x5: 0.999257
x6: 0.573779", "Arm 12_0
l2norm: 0.972019 (SEM: 0)
x1: 0.0703345
x2: 0.690299
x3: 0.320792
x4: 0.109058
x5: 0.0883175
x6: 0.583747", "Arm 13_0
l2norm: 1.18307 (SEM: 0)
x1: 0.0907955
x2: 0.619497
x3: 0.529177
x4: 0.207686
x5: 0.169786
x6: 0.809718", "Arm 14_0
l2norm: 1.24184 (SEM: 0)
x1: 0.0936221
x2: 0.605643
x3: 0.556463
x4: 0.22399
x5: 0.187507
x6: 0.878419", "Arm 15_0
l2norm: 1.21351 (SEM: 0)
x1: 0.100608
x2: 0.608034
x3: 0.611621
x4: 0.224986
x5: 0.178161
x6: 0.797704", "Arm 16_0
l2norm: 1.22461 (SEM: 0)
x1: 0.10625
x2: 0.604204
x3: 0.687468
x4: 0.230214
x5: 0.175157
x6: 0.753018", "Arm 17_0
l2norm: 1.25473 (SEM: 0)
x1: 0.114978
x2: 0.616664
x3: 0.689686
x4: 0.245888
x5: 0.111512
x6: 0.795159", "Arm 18_0
l2norm: 1.22511 (SEM: 0)
x1: 0.105047
x2: 0.591428
x3: 0.68324
x4: 0.230463
x5: 0.229862
x6: 0.753203", "Arm 19_0
l2norm: 1.23638 (SEM: 0)
x1: 0.107005
x2: 0.576046
x3: 0.695174
x4: 0.235956
x5: 0.288874
x6: 0.750303", "Arm 20_0
l2norm: 1.24433 (SEM: 0)
x1: 0.107604
x2: 0.564793
x3: 0.698066
x4: 0.239062
x5: 0.329937
x6: 0.751326", "Arm 21_0
l2norm: 1.19289 (SEM: 0)
x1: 0.0885114
x2: 0.494253
x3: 0.686294
x4: 0.214039
x5: 0.318827
x6: 0.743235", "Arm 22_0
l2norm: 1.16681 (SEM: 0)
x1: 0.0801436
x2: 0.446914
x3: 0.691899
x4: 0.204454
x5: 0.292384
x6: 0.741138", "Arm 23_0
l2norm: 1.14854 (SEM: 0)
x1: 0.0678483
x2: 0.374346
x3: 0.708889
x4: 0.195153
x5: 0.285289
x6: 0.743248", "Arm 24_0
l2norm: 1.12954 (SEM: 0)
x1: 0.0431209
x2: 0.306832
x3: 0.714573
x4: 0.16544
x5: 0.301903
x6: 0.742107", "Arm 25_0
l2norm: 1.15092 (SEM: 0)
x1: 0.0799936
x2: 0.313235
x3: 0.717798
x4: 0.245628
x5: 0.288675
x6: 0.749132", "Arm 26_0
l2norm: 1.12487 (SEM: 0)
x1: 0.0839778
x2: 0.245926
x3: 0.69269
x4: 0.296408
x5: 0.292079
x6: 0.738119", "Arm 27_0
l2norm: 1.0885 (SEM: 0)
x1: 0.088011
x2: 0.19592
x3: 0.656921
x4: 0.342264
x5: 0.279115
x6: 0.715612", "Arm 28_0
l2norm: 1.09201 (SEM: 0)
x1: 0.159871
x2: 0.162642
x3: 0.655405
x4: 0.320893
x5: 0.280748
x6: 0.727409" ], "type": "scatter", "x": [ 0.6095580458641052, 0.46427332516759634, 0.22483001183718443, 0.37589621637016535, 0.710853218100965, 0.9376077298074961, 0.12047221325337887, 0.2646239399909973, 0.9212664058431983, 0.7978077847510576, 0.1734319757670164, 0.5974199073389173, 0.07033450008774463, 0.09079547741327233, 0.09362208953210266, 0.10060839553609507, 0.10624994079175323, 0.1149784791706915, 0.10504711814755888, 0.10700470378779625, 0.10760366914557919, 0.08851138121389444, 0.08014364755496461, 0.06784834626592685, 0.04312088812470869, 0.07999361978694751, 0.08397776679336263, 0.08801102360378645, 0.15987122390002484 ], "xaxis": "x2", "y": [ 0.3852703273296356, 0.9645370254293084, 0.542636320926249, 0.1679691094905138, 0.041864871978759766, 0.5951094664633274, 0.5568432779982686, 0.27992690820246935, 0.8096554977819324, 0.7402053559198976, 0.7684295950457454, 0.5310021433979273, 0.6902987748966037, 0.6194972201699956, 0.6056434996224355, 0.60803363140874, 0.6042040438396834, 0.616663715604231, 0.5914278420342505, 0.5760460768291786, 0.5647934082098882, 0.4942525068732854, 0.446914319451564, 0.3743464278207046, 0.3068323014502012, 0.31323463450819583, 0.24592578808444576, 0.19591965499752736, 0.16264215268809964 ], "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", "metadata": {}, "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, "metadata": { "execution": { "iopub.execute_input": "2022-12-29T21:23:48.136066Z", "iopub.status.busy": "2022-12-29T21:23:48.135590Z", "iopub.status.idle": "2022-12-29T21:23:48.196209Z", "shell.execute_reply": "2022-12-29T21:23:48.195518Z" } }, "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.15692621957187575, -0.15692621957187575, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.954092198096077, -0.9590264156229639, -1.111875281195905, -1.1503712680653906, -1.1503712680653906, -1.3647023993804774, -1.5105975390105801, -1.537875917057553, -1.8267805766184892, -1.9848051271408071, -2.1369097330404094, -2.1369097330404094, -2.376818559441687, -2.5799579072035046, -2.649218023209644, -2.8080640865512123, -2.8080640865512123 ] }, { "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.15692621957187575, -0.15692621957187575, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.954092198096077, -0.9590264156229639, -1.111875281195905, -1.1503712680653906, -1.1503712680653906, -1.3647023993804774, -1.5105975390105801, -1.537875917057553, -1.8267805766184892, -1.9848051271408071, -2.1369097330404094, -2.1369097330404094, -2.376818559441687, -2.5799579072035046, -2.649218023209644, -2.8080640865512123, -2.8080640865512123 ] }, { "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.15692621957187575, -0.15692621957187575, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.9501052899055412, -0.954092198096077, -0.9590264156229639, -1.111875281195905, -1.1503712680653906, -1.1503712680653906, -1.3647023993804774, -1.5105975390105801, -1.537875917057553, -1.8267805766184892, -1.9848051271408071, -2.1369097330404094, -2.1369097330404094, -2.376818559441687, -2.5799579072035046, -2.649218023209644, -2.8080640865512123, -2.8080640865512123 ] }, { "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([[trial.objective_mean for trial in experiment.trials.values()]])\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": "python3", "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.8.15" } }, "nbformat": 4, "nbformat_minor": 2 }