{ "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-11-10T20:23:37.025093Z", "iopub.status.busy": "2022-11-10T20:23:37.024432Z", "iopub.status.idle": "2022-11-10T20:23:40.252990Z", "shell.execute_reply": "2022-11-10T20:23:40.251955Z" } }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] 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-11-10T20:23:40.311254Z", "iopub.status.busy": "2022-11-10T20:23:40.310138Z", "iopub.status.idle": "2022-11-10T20:23:40.316366Z", "shell.execute_reply": "2022-11-10T20:23:40.314981Z" } }, "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-11-10T20:23:40.320146Z", "iopub.status.busy": "2022-11-10T20:23:40.319641Z", "iopub.status.idle": "2022-11-10T20:25:52.240866Z", "shell.execute_reply": "2022-11-10T20:25:52.240225Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] 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 11-10 20:23:40] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] 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 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:23:40] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.'), OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.'), OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.'), OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 11-10 20:23:56] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:24:02] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:24:08] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:24:15] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:24:22] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:24:27] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 11-10 20:24:40] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:24:46] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.'), OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 11-10 20:25:00] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:06] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:12] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:17] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:22] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:28] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:35] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:41] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-10 20:25:46] 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-11-10T20:25:52.244378Z", "iopub.status.busy": "2022-11-10T20:25:52.244015Z", "iopub.status.idle": "2022-11-10T20:25:52.252639Z", "shell.execute_reply": "2022-11-10T20:25:52.252191Z" } }, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.23736426993933266,\n", " 'x2': 0.19799462806099588,\n", " 'x3': 0.4694112887455931,\n", " 'x4': 0.28292969955853714,\n", " 'x5': 0.31303917887204047,\n", " 'x6': 0.6648016400854645}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "execution": { "iopub.execute_input": "2022-11-10T20:25:52.255048Z", "iopub.status.busy": "2022-11-10T20:25:52.254700Z", "iopub.status.idle": "2022-11-10T20:25:52.258330Z", "shell.execute_reply": "2022-11-10T20:25:52.257709Z" } }, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9674182421059508, 'hartmann6': -3.2780568157580374}" ] }, "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-11-10T20:25:52.260991Z", "iopub.status.busy": "2022-11-10T20:25:52.260645Z", "iopub.status.idle": "2022-11-10T20:25:52.263989Z", "shell.execute_reply": "2022-11-10T20:25:52.263543Z" } }, "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-11-10T20:25:52.266574Z", "iopub.status.busy": "2022-11-10T20:25:52.266208Z", "iopub.status.idle": "2022-11-10T20:25:53.212495Z", "shell.execute_reply": "2022-11-10T20:25:53.211131Z" } }, "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.9023376984993345, -1.947181383930946, -1.989400011665861, -2.028714947644781, -2.0648619340975274, -2.097595184057977, -2.126691336836504, -2.1519531522118798, -2.1732128197715275, -2.1903347654324428, -2.203217850468806, -2.211796879359564, -2.216043360520123, -2.2159654966047326, -2.2116074158811565, -2.2030476900851013, -2.190397214122993, -2.1737965465268436, -2.1534128251088998, -2.1294363793320947, -2.1020771600262735, -2.0715610995351312, -2.038126502910198, -2.0020205552305135, -1.9634960132322599, -1.9228081325912205, -1.8802118664473255, -1.8359593567602421, -1.790297728182887, -1.7434671844292386, -1.6956993995127738, -1.6472161905480387, -1.5982284547894985, -1.548935350957979, -1.4995237034114695, -1.4501676071121643, -1.4010282114140273, -1.352253661266883, -1.303979175358394, -1.2563272418781877, -1.2094079138985196, -1.1633191877548326, -1.1181474492257502, -1.0739679737194212, -1.0308454680445787, -0.9888346426630131, -0.9479808045733991, -0.9083204621570959, -0.8698819344211443, -0.8326859580998813 ], [ -1.9162943377458554, -1.9620895409556867, -2.005221585169313, -2.0454027660830523, -2.082360052089285, -2.115839374910461, -2.1456097806961014, -2.1714673111889886, -2.1932384825554885, -2.210783235028377, -2.2239972405443917, -2.23281347814464, -2.2372030170439996, -2.2371749828547545, -2.23277572044614, -2.2240872038285233, -2.2112247758501478, -2.1943343256247743, -2.1735890277823597, -2.1491857744061873, -2.1213414285852736, -2.090289019412853, -2.0562739840041093, -2.0195505447752353, -1.9803782917083494, -1.9390190211355511, -1.8957338657900045, -1.8507807361522595, -1.8044120807775355, -1.7568729633680196, -1.7083994467169612, -1.6592172680553758, -1.6095407864806366, -1.559572180735157, -1.509500874340905, -1.4595031647217631, -1.4097420332376052, -1.3603671138253264, -1.3115147990445253, -1.263308463641379, -1.2158587871844986, -1.16926415882375, -1.1236111487287292, -1.0789750322435347, -1.035420354224218, -0.9930015223902366, -0.9517634198108857, -0.9117420278569732, -0.8729650520744054, -0.8354525444791255 ], [ -1.9271521613327436, -1.9738281652204037, -2.017808033261335, -2.0587954881744372, -2.096509196203887, -2.1306872463924362, -2.161091489949825, -2.1875116013593288, -2.209768720150711, -2.2277185377444155, -2.2412537085323736, -2.250305488549178, -2.254844537634968, -2.254880859552903, -2.2504628957164106, -2.2416758280738556, -2.228639181480443, -2.2115038425218487, -2.190448628442185, -2.165676546184687, -2.1374108784672186, -2.105891223094827, -2.071369595633722, -2.034106686456279, -1.994368343066248, -1.95242232913672, -1.908535393949434, -1.8629706705617286, -1.8159854083144817, -1.7678290352213164, -1.7187415381533506, -1.6689521432596208, -1.6186782754027509, -1.5681247732036345, -1.5174833352629384, -1.4669321729836295, -1.4166358459242046, -1.366745256575389, -1.3173977827224823, -1.268717527013922, -1.2208156649160455, -1.173790873829569, -1.1277298277287975, -1.0827077432287289, -1.0387889644654889, -0.9960275755804968, -0.9544680309190297, -0.914145794286949, -0.8750879797532662, -0.83731398754244 ], [ -1.9347529379319184, -1.9822311315265346, -2.026985732520018, -2.0687124874159464, -2.1071223303798914, -2.141946040825464, -2.172938760661065, -2.1998842252269846, -2.2225985585366472, -2.2409334888230763, -2.254778855858358, -2.264064307283666, -2.268760116117121, -2.2688770931138755, -2.2644656119784785, -2.2556138082173876, -2.2424450494666606, -2.2251148031338857, -2.2038070442643933, -2.1787303523727015, -2.150113841670704, -2.118203056756462, -2.083255947948964, -2.0455390196109473, -2.0053237232009384, -1.9628831461250762, -1.9184890288524725, -1.8724091268381966, -1.8249049207883121, -1.7762296686345098, -1.726626785012637, -1.6763285287146188, -1.6255549751281024, -1.5745132487229374, -1.5233969898512114, -1.4723860302064973, -1.4216462519962167, -1.3713296070230727, -1.3215742732941602, -1.2725049283645804, -1.2242331202878503, -1.1768577187282685, -1.1304654304451314, -1.0851313649576735, -1.0409196377231855, -0.9978839995983961, -0.9560684826998711, -0.9155080540309986, -0.8762292694010038, -0.8382509212276824 ], [ -1.9389544204539932, -1.9871486282239346, -2.032597677064912, -2.074990032885419, -2.1140295658608954, -2.149440373052208, -2.1809714599572785, -2.208401127935355, -2.2315409103641106, -2.2502389056907517, -2.2643823716836557, -2.273899472485953, -2.2787601073004473, -2.2789757938710005, -2.274598627238495, -2.2657193797579103, -2.2524648474903644, -2.2349945772829303, -2.213497126160156, -2.1881860098664476, -2.159295491835134, -2.1270763498707117, -2.091791738226407, -2.053713240293628, -2.0131171841388436, -1.9702812713821292, -1.9254815505519185, -1.8789897496678987, -1.831070969570827, -1.7819817293097153, -1.731968347410092, -1.6812656376896156, -1.6300958950427564, -1.5786681448874458, -1.5271776293976456, -1.4758055039328888, -1.4247187179707412, -1.374070056151691, -1.3239983166062268, -1.2746286054352929, -1.2260727279737726, -1.1784296592234833, -1.131786077555525, -1.0862169474265015, -1.0417861384114127, -0.9985470693204206, -0.9565433675317112, -0.9158095349390765, -0.8763716130809978, -0.8382478410910557 ], [ -1.9396331136184224, -1.988450079837914, -2.034506550126139, -2.0774845012124383, -2.1170815025539316, -2.1530156877201927, -2.185030583437534, -2.2128996368534644, -2.236430276916807, -2.2554673510049663, -2.2698957947141, -2.2796424214495508, -2.2846767578256584, -2.2850108978443036, -2.280698398878954, -2.2718322904600328, -2.2585423078140208, -2.2409914922921823, -2.2193723182326766, -2.1939025103357546, -2.1648207088312117, -2.1323821241923597, -2.09685430195177, -2.0585130942438266, -2.017638910497638, -1.9745132970398078, -1.9294158753788888, -1.882621652196152, -1.834398700680552, -1.7850062026417377, -1.7346928334586533, -1.6836954669386732, -1.6322381741233793, -1.5805314885621555, -1.528771910210744, -1.4771416205870629, -1.4258083828762675, -1.3749256021223168, -1.3246325223209927, -1.2750545390271202, -1.226303607924685, -1.1784787316258494, -1.1316665087258364, -1.0859417308212438, -1.0413680147847657, -0.9979984590736994, -0.9558763142291696, -0.9150356589994622, -0.8755020746960911, -0.8372933114688532 ], [ -1.9366869447436665, -1.9860269753359427, -2.032597703789263, -2.0760754991935118, -2.1161524832300067, -2.152541631124229, -2.1849817281707855, -2.213242016921866, -2.237126365002333, -2.2564767887244335, -2.2711761850415786, -2.2811501543784805, -2.286367838154873, -2.2868417441028557, -2.2826265849378577, -2.2738172060262616, -2.2605457201687984, -2.2429779985509857, -2.221309684280309, -2.19576189875943, -2.1665768031785424, -2.134013160494509, -2.0983420206619945, -2.059842626690888, -2.018798613878583, -1.9754945511474207, -1.9302128529379365, -1.8832310730952064, -1.8348195787109005, -1.7852395917194752, -1.7347415787955929, -1.683563965287744, -1.631932146076517, -1.5800577649219147, -1.5281382336810978, -1.4763564634136774, -1.4248807805917558, -1.3738650031938646, -1.3234486532364238, -1.273757284171345, -1.2249029034752614, -1.1769844726203316, -1.1300884684135646, -1.0842894913982817, -1.0396509086169479, -0.9962255195320799, -0.9540562352917413, -0.913176762808527, -0.873612286300317, -0.8353801400211317 ], [ -1.9300377571020375, -1.9797955155814313, -2.026781954806201, -2.070668799531537, -2.1111436579925957, -2.1479152304429094, -2.1807183700966286, -2.2093188272091915, -2.233517501611792, -2.253154034251322, -2.2681095861565805, -2.278308684312304, -2.283720056785121, -2.284356430645792, -2.280273320653216, -2.2715668884379383, -2.25837099555946, -2.240853605243557, -2.219212704817692, -2.193671924001669, -2.164476015206838, -2.1318863438966074, -2.0961765132992434, -2.057628221559897, -2.0165274233933537, -1.9731608443127713, -1.9278128746793421, -1.880762853634903, -1.8322827394746675, -1.782635152920694, -1.7320717726310084, -1.6808320576262603, -1.6291422686357064, -1.577214759203281, -1.5252475073593565, -1.4734238594306828, -1.4219124588705239, -1.3708673346446079, -1.3204281255557178, -1.2707204188222174, -1.2218561831668393, -1.1739342785696776, -1.1270410266604791, -1.0812508274498152, -1.0366268097158786, -0.9932215038696461, -0.9510775275155413, -0.9102282752104709, -0.8706986051045149, -0.8325055162271167 ], [ -1.9196335414265187, -1.9696989891629435, -2.016998099429074, -2.0611989867223732, -2.101985750533053, -2.1390637669449006, -2.1721648281428907, -2.2010519575227487, -2.2255237226032243, -2.245417873269191, -2.260614151131719, -2.2710361476316887, -2.2766521325370013, -2.2774748270926626, -2.2735601519323403, -2.265005032829515, -2.251944391772457, -2.2345474825299796, -2.2130137468428637, -2.187568369887776, -2.1584577038026325, -2.125944709036805, -2.090304538658413, -2.0518203638158874, -2.0107795119725616, -1.9674699651756107, -1.922177244582277, -1.875181690206378, -1.826756131363364, -1.7771639332784002, -1.726657398316326, -1.6754764957740498, -1.623847891630909, -1.5719842486179627, -1.5200837670439133, -1.4683299376770815, -1.4168914793711662, -1.3659224358386495, -1.3155624078713972, -1.26593689927768, -1.2171577567723924, -1.169323685974455, -1.1225208274994105, -1.0768233788680932, -1.0322942495745344, -0.9889857381649045, -0.9469402215741896, -0.9061908482533699, -0.866762227798749, -0.8286711108748287 ], [ -1.9054503211360139, -1.9557097855205414, -2.0032150497428134, -2.0476317094614536, -2.0886414169329743, -2.125947228943761, -2.1592787966207094, -2.188397223292425, -2.213099411256831, -2.2332217237919703, -2.248642807239059, -2.2592854502461184, -2.2651174019288773, -2.2661511241190277, -2.262442509538011, -2.254088651361015, -2.2412247944061376, -2.2240206298840057, -2.2026761123168015, -2.1774169792330835, -2.148490143766941, -2.1161591106446167, -2.0806995408667937, -2.042395063034593, -2.0015334023958475, -1.9584028741607309, -1.913289266529828, -1.86647312162718, -1.8182274091069508, -1.768815577279173, -1.7184899596984649, -1.6674905107448816, -1.616043841278506, -1.564362524499297, -1.51264464229223, -1.4610735432566087, -1.4098177850515532, -1.3590312354386462, -1.3088533083225011, -1.2594093130751758, -1.210810897408159, -1.1631565659780327, -1.1165322587480093, -1.071011974860324, -1.0266584293948544, -0.9835237318955223, -0.9416500769381033, -0.9010704382955408, -0.8618092594334636, -0.8238831341449235 ], [ -1.88749361136405, -1.9378309590100753, -1.985433498921187, -2.0299654411496855, -2.071107093263083, -2.108560236077529, -2.142053333584121, -2.171346403422552, -2.1962353693901, -2.2165557231541935, -2.2321853408541577, -2.2430463325191945, -2.249105846938778, -2.25037580815992, -2.246911616607545, -2.2388099015444016, -2.2262054563201628, -2.209267519373862, -2.1881955803239284, -2.1632148921213266, -2.1345718594190393, -2.1025294533831564, -2.067362777799683, -2.029354883864241, -1.9887929041408605, -1.9459645516782347, -1.901155009232716, -1.8546442163853292, -1.8067045490099067, -1.7575988757172532, -1.7075789690794902, -1.6568842450920682, -1.6057408019375026, -1.5543607282057141, -1.5029416509024538, -1.4516664945148157, -1.4007034238454936, -1.3502059450798956, -1.3003131414683833, -1.2511500219862, -1.202827963304724, -1.1554452273214544, -1.1090875383240204, -1.063828705587523, -1.0197312788168942, -0.9768472253447321, -0.9352186193804883, -0.8948783348838336, -0.8558507348065323, -0.8181523505197469 ], [ -1.8657993816433387, -1.9160972680214092, -1.9636870340317993, -2.008232662001144, -2.049414240846924, -2.0869333397552534, -2.1205182066931147, -2.1499286201720356, -2.174960218524782, -2.1954481368371073, -2.211269799946183, -2.2223467516317537, -2.2286454442085066, -2.2301769656651875, -2.226995737785001, -2.2191972719354114, -2.2069151135368097, -2.190317137380074, -2.1696013720635907, -2.144991533299116, -2.116732434972986, -2.085085426992706, -2.0503239837361815, -2.0127295396650338, -1.972587641991935, -1.9301844660152274, -1.8858037178894276, -1.839723932597174, -1.7922161616789898, -1.7435420355304305, -1.6939521783092688, -1.643684949178428, -1.592965481225808, -1.5420049884885187, -1.4910003116705202, -1.440133674059182, -1.3895726205639218, -1.3394701145263186, -1.2899647688429006, -1.2411811898968548, -1.1932304147424406, -1.1462104238785087, -1.100206713756337, -1.0552929148744397, -1.0115314429112892, -0.9689741718335668, -0.9276631192930775, -0.8876311358940688, -0.8489025910778523, -0.8114940494389763 ], [ -1.840434467635843, -1.8905756300295622, -1.9380426329963016, -1.9825003954017446, -2.023629918274019, -2.0611336257647066, -2.094740520043762, -2.1242109826456095, -2.1493410515417013, -2.169966009221935, -2.185963134741269, -2.1972535033094633, -2.20380275976187, -2.205620843853969, -2.202760700411578, -2.195316059629404, -2.183418416384721, -2.1672333681153138, -2.1469564867073734, -2.1228089013743427, -2.0950327589167452, -2.0638867083225594, -2.0296415319595074, -1.992576018871611, -1.9529731494963831, -1.9111166372426434, -1.8672878518372586, -1.821763132568068, -1.7748114864848306, -1.7266926569498176, -1.677655541190079, -1.6279369311753302, -1.57776054972696, -1.5273363527999468, -1.4768600689840543, -1.4265129481272325, -1.3764616923436428, -1.326858544339538, -1.2778415098318523, -1.2295346927445105, -1.1820487237752992, -1.135481264785068, -1.0899175732406134, -1.0454311126259797, -1.002084196315017, -0.9599286538681546, -0.9190065100786827, -0.8793506683519328, -0.8409855911575439, -0.8039279713562797 ], [ -1.8114963987697859, -1.8613649566113848, -1.9086005070854517, -1.9528700574424391, -1.993856636847544, -2.0312645737371815, -2.064824574978178, -2.0942984456087577, -2.1194832857072066, -2.1402150068787904, -2.1563710275044685, -2.167872034829875, -2.1746827427314326, -2.1768116235882196, -2.174309645972624, -2.167268100676954, -2.155815640138753, -2.1401146864442007, -2.1203573788703363, -2.0967612337394206, -2.0695646793460103, -2.0390226100467594, -2.0054020797240275, -1.9689782288948492, -1.9300305142423155, -1.8888392860360619, -1.8456827387956705, -1.8008342440516638, -1.7545600611555825, -1.7071174124903852, -1.658752902692653, -1.6097012571235139, -1.5601843523306482, -1.510410510188281, -1.460574027409788, -1.4108549128881234, -1.3614188065883215, -1.3124170553048744, -1.263986922365174, -1.2162519102063338, -1.1693221766061217, -1.1232950271611637, -1.0782554683467342, -1.034276807143935, -0.9914212847724084, -0.9497407335157867, -0.9092772469731858, -0.8700638553148824, -0.8321251982675737, -0.7954781896079889 ], [ -1.7791126355703422, -1.8285953613712684, -1.8754932810734841, -1.919476610924431, -1.960231489897987, -1.9974651629938855, -2.030910953485502, -2.0603328713932045, -2.085529704161817, -2.106338441072971, -2.122636898058571, -2.1343454362479704, -2.1414277057334115, -2.143890393040896, -2.1417820017728957, -2.135190744858962, -2.1242416681444762, -2.1090931545405485, -2.089932973715422, -2.0669740446047973, -2.040450068857991, -2.010611175727129, -1.9777196961455084, -1.9420461588527949, -1.9038655768333752, -1.8634540697384967, -1.8210858483659251, -1.7770305711074732, -1.731551069554649, -1.6849014309167063, -1.6373254181440686, -1.5890552041973902, -1.540310394295038, -1.4912973087875043, -1.4422084991818598, -1.3932224704708978, -1.3445035840711235, -1.296202117154461, -1.2484544558324364, -1.2013834014160294, -1.1550985707585686, -1.1096968734434751, -1.0652630502720497, -1.021870259118662, -0.9795806957415394, -0.938446238561262, -0.8985091077451899, -0.8598025301655885, -0.8223514029347754, -0.7861729492652605 ], [ -1.7434392412725084, -1.79242676658476, -1.838884537824244, -1.8824870512590706, -1.922924583683752, -1.9599082524383789, -1.9931748514961312, -2.0224913216164566, -2.0476587119107488, -2.068515494847916, -2.0849401098034788, -2.0968526341364684, -2.104215515849932, -2.107033345880544, -2.105351696373875, -2.0992550981583964, -2.088864270507029, -2.0743327451014637, -2.055843041924422, -2.0336025577558674, -2.0078393198690345, -1.9787977412248348, -1.9467344920619252, -1.9119145791582586, -1.8746077005260784, -1.8350849215510925, -1.7936156995953514, -1.7504652683071256, -1.7058923803665225, -1.660147397924296, -1.6134707131935775, -1.5660914770981569, -1.5182266111312026, -1.4700800762334545, -1.4218423722102551, -1.3736902416804841, -1.325786553554182, -1.278280342385813, -1.23130698150962, -1.1849884695299786, -1.1394338114409068, -1.094739477334115, -1.050989923291452, -1.0082581606235212, -0.9666063610997327, -0.9260864872092563, -0.8867409377953632, -0.8486032006170878, -0.8116985045140311, -0.7760444648847851 ], [ -1.7046590437328843, -1.7530469676845135, -1.79896678886885, -1.8420982875615026, -1.8821368342387843, -1.9187982993034982, -1.951823726815916, -1.9809836430123706, -2.0060818698921103, -2.0269587173565156, -2.043493437872823, -2.0556058483268043, -2.063257055425033, -2.0664492617420978, -2.0652246749386514, -2.0596635872401707, -2.0498817306035053, -2.03602704111763, -2.0182759820904814, -1.9968295789961354, -1.971909312624056, -1.9437530019778655, -1.912610788622025, -1.8787413119931515, -1.8424081429031047, -1.8038765216670944, -1.7634104289852803, -1.7212700023686376, -1.6777092986174396, -1.632974393461593, -1.5873018026309675, -1.5409172039483376, -1.4940344371235716, -1.446854756397682, -1.3995663107061442, -1.3523438263229501, -1.3053484677816922, -1.2587278540701365, -1.212616208521966, -1.1671346223829768, -1.1223914136342819, -1.078482564261004, -1.0354922207254618, -0.993493243916485, -0.9525477962870943, -0.9127079552526927, -0.8740163431981328, -0.8365067656327536, -0.8002048501385038, -0.7651286797792715 ], [ -1.6629793703863704, -1.7106692429508579, -1.7559589618123106, -1.7985345121791803, -1.8380972248887142, -1.8743685122212965, -1.9070943573711931, -1.936049442853179, -1.9610408021091956, -1.9819108796578913, -1.9985398925774154, -2.010847403383386, -2.0187930425854193, -2.022376356628813, -2.021635799404522, -2.0166469276910473, -2.0075198976029274, -1.9943963864795955, -1.9774460806509198, -1.956862874063233, -1.932860917264775, -1.9056706430846986, -1.8755348771786569, -1.842705121004761, -1.807438073844159, -1.769992440741115, -1.7306260556923736, -1.6895933345678797, -1.6471430602269792, -1.603516492982387, -1.5589457926822916, -1.5136527338794556, -1.4678476924647426, -1.4217288804101933, -1.3754818045798864, -1.3292789256574888, -1.2832794938879726, -1.237629539363296, -1.1924619958622384, -1.1478969386812636, -1.1040419183915595, -1.0609923739735931, -1.018832110277026, -0.9776338262063584, -0.9374596814243502, -0.8983618906865916, -0.8603833361661084, -0.8235581892937817, -0.7879125347283519, -0.7534649900791587 ], [ -1.6186294539861503, -1.6655296118255887, -1.7101035122126276, -1.7520441692618727, -1.7910596370426368, -1.826877552574439, -1.859249424674964, -1.8879545695591395, -1.912803591857858, -1.9336413081089803, -1.9503490138911346, -1.9628460095806675, -1.9710903245496167, -1.9750786138278063, -1.9748452408137287, -1.9704605993853535, -1.9620287637793248, -1.9496845811344117, -1.9335903376474195, -1.9139321346551637, -1.8909161068491878, -1.8647646033562535, -1.8357124360269808, -1.80400328032639, -1.7698862947000915, -1.7336130056838397, -1.6954344893052777, -1.6555988650220552, -1.6143491067232323, -1.5719211661203705, -1.5285423969447463, -1.4844302634417144, -1.4397913133807558, -1.3948203938562982, -1.3497000872481315, -1.3046003445856258, -1.259678294009136, -1.2150782028721863, -1.1709315731492502, -1.1273573511020007, -1.0844622335375274, -1.0423410544095337, -1.001077236928202, -0.9607432977299064, -0.9214013909951357, -0.8831038816810066, -0.8458939382455454, -0.8098061363808992, -0.7748670663398131, -0.7410959374333197 ], [ -1.5718576033322198, -1.6178838424449817, -1.6616632656271801, -1.702896632130921, -1.7412993674004262, -1.7766059002956724, -1.808573741546454, -1.8369872202571211, -1.861660791270206, -1.882441821538777, -1.8992127643879728, -1.9118926410513981, -1.9204377705503468, -1.9248417201688186, -1.9251344855224695, -1.9213809465798093, -1.9136786792545684, -1.9021552277935871, -1.8869649591981974, -1.8682856270356991, -1.8463147692377133, -1.8212660547017598, -1.7933656789213444, -1.7628488916324523, -1.729956721432726, -1.694932944919743, -1.6580213320622708, -1.6194631858072508, -1.5794951825517867, -1.5383475110511244, -1.4962423004166803, -1.453392322821696, -1.4099999530829614, -1.3662563651324013, -1.3223409442607226, -1.2784208936690287, -1.234651014103443, -1.191173636007339, -1.1481186845763172, -1.1056038592418742, -1.0637349103631055, -1.022605997216536, -0.9823001126996012, -0.9428895614753376, -0.9044364795630688, -0.8669933846095539, -0.8306037472471767, -0.7953025750555345, -0.761117001686031, -0.7280668746847476 ], [ -1.5229282084064968, -1.5680042847360118, -1.6109180727158128, -1.6513786786550322, -1.6891094270583045, -1.723851985933329, -1.7553702322468074, -1.78345378959671, -1.8079211641130974, -1.828622396899652, -1.8454411488885474, -1.858296141502838, -1.8671418953631571, -1.8719687376679537, -1.872802082925968, -1.8697010266868566, -1.8627563233587185, -1.8520878437785582, -1.8378416240580229, -1.820186623990802, -1.7993113118127162, -1.7754201839692207, -1.7487303157375838, -1.7194680230358315, -1.6878656992403993, -1.6541588746661764, -1.6185835314664954, -1.5813736936436371, -1.542759300875222, -1.50296436598386, -1.4622054089825114, -1.420690155501477, -1.3786164837907116, -1.3361716021317125, -1.293531437138612, -1.2508602128581257, -1.2083102006023745, -1.1660216199109696, -1.1241226718122022, -1.0827296865379898, -1.0419473689668737, -1.0018691262654662, -0.9625774634287709, -0.9241444336518638, -0.8866321316775813, -0.8500932194412494, -0.8145714744629435, -0.7801023525133987, -0.7467135570964053, -0.7144256092453636 ], [ -1.4721186089357512, -1.5161765654690336, -1.5581613224165345, -1.5977908193533816, -1.6347966877549003, -1.668928165184998, -1.6999557521585458, -1.7276745573223489, -1.7519072686547108, -1.7725066780501901, -1.7893576815360712, -1.8023786823509147, -1.811522340454418, -1.816775637851162, -1.8181592605644055, -1.8157263306771818, -1.8095605514188762, -1.7997738517132156, -1.7865036321675303, -1.76990972175568, -1.7501711540976885, -1.7274828656554697, -1.7020524070853658, -1.6740967451722835, -1.6438392177884207, -1.6115066894198418, -1.5773269408848862, -1.5415263144916629, -1.5043276253305462, -1.4659483407423082, -1.4265990231648642, -1.3864820263731665, -1.3457904313723486, -1.3047072056539524, -1.2634045679557246, -1.2220435398750833, -1.1807736654963548, -1.1397328804542561, -1.099047512448203, -1.058832396045627, -1.0191910855923396, -0.9802161511237519, -0.9419895432989519, -0.9045830145268327, -0.8680585845949642, -0.8324690402303824, -0.7978584591043013, -0.7642627498303844, -0.7317102004931372, -0.7002220291744252 ], [ -1.4197158148972862, -1.4626961413551807, -1.5036963199217501, -1.5424434980441466, -1.5786779097588806, -1.6121565857122677, -1.6426568118260365, -1.6699792933157287, -1.6939509714997634, -1.7144274286529593, -1.7312948090751128, -1.7444711875134957, -1.7539073302357862, -1.7595868174535254, -1.7615255247188129, -1.759770491105821, -1.7543982296039646, -1.7455125573404728, -1.7332420383832878, -1.7177371395073653, -1.699167199959129, -1.677717311104969, -1.6535851924093712, -1.6269781380221124, -1.5981100947800468, -1.5671989188081317, -1.53446384498915, -1.5001231919252058, -1.4643923149410638, -1.4274818112903545, -1.3895959749853453, -1.350931493454286, -1.311676374360712, -1.2720090881977582, -1.2320979105011816, -1.1921004465218872, -1.1521633207996502, -1.1124220141426409, -1.0730008309270194, -1.0340129802907074, -0.9955607556307209, -0.9577357977648133, -0.920619428139559, -0.8842830395241045, -0.8487885326950877, -0.8141887886747394, -0.7805281671154596, -0.747843022420947, -0.7161622301472743, -0.6855077171326178 ], [ -1.3660130474775332, -1.4078646858521735, -1.4478325164227457, -1.485653166507027, -1.5210756692799041, -1.5538649810891467, -1.5838052565393894, -1.6107028460697927, -1.6343889710022554, -1.6547220180329765, -1.6715893869547482, -1.68490882691061, -1.6946292087536992, -1.700730702210893, -1.7032243529768398, -1.7021510826463275, -1.697580160007632, -1.6896072130674549, -1.6783518657517542, -1.66395509106612, -1.6465763739984745, -1.626390773591429, -1.6035859656989184, -1.578359337346943, -1.5509151916128043, -1.5214621095836443, -1.490210504060368, -1.457370388786955, -1.4231493774314325, -1.3877509184648715, -1.351372765483737, -1.3142056773135498, -1.2764323382780496, -1.2382264861518444, -1.199752233362874, -1.1611635658103316, -1.1226040030628015, -1.0842064035706387, -1.0460928987549998, -1.0083749403313504, -0.9711534459144074, -0.9345190287747456, -0.8985522985282499, -0.863324220502538, -0.8288965225113801, -0.7953221387581176, -0.7626456815657545, -0.7309039325828511, -0.7001263460314225, -0.6703355574387303 ], [ -1.3113060846248623, -1.3519862996022747, -1.3908815900390574, -1.4277382448401879, -1.462314210873543, -1.4943824314027847, -1.5237339542154302, -1.550180779018758, -1.5735584043706494, -1.5937280216863408, -1.6105782954689363, -1.6240266695358847, -1.6340201496888715, -1.640535532229753, -1.6435790716925176, -1.643185606526838, -1.6394171850439985, -1.6323612533651095, -1.6221284810116132, -1.608850307680841, -1.5926762969395523, -1.573771379853964, -1.552313065061994, -1.5284886826718904, -1.5024927187736836, -1.4745242862365164, -1.444784766589825, -1.4134756476826975, -1.380796572814309, -1.3469436092982607, -1.3121077380031618, -1.276473560253023, -1.2402182144680454, -1.203510491943614, -1.1665101390552735, -1.129367331795369, -1.0922223077577327, -1.0552051403697835, -1.0184356402233081, -0.9820233686883577, -0.9460677495372269, -0.9106582649991708, -0.8758747234645767, -0.8417875869226634, -0.808458347121062, -0.7759399403553416, -0.7442771917147779, -0.7135072805138677, -0.683660219516058, -0.6547593413999676 ], [ -1.2558894459625671, -1.2953635827724466, -1.3331534213761491, -1.3690150172738762, -1.4027152813971397, -1.4340351536703837, -1.4627725606262498, -1.4887451286001079, -1.5117926159603585, -1.5317790163567881, -1.5485942771876604, -1.5621555777574907, -1.572408120960706, -1.5793254092435003, -1.582908997156757, -1.5831877357803108, -1.5802165458218445, -1.5740747741535042, -1.5648642016822398, -1.5527067782857367, -1.5377421632743598, -1.5201251481126816, -1.500023032879408, -1.4776130201867628, -1.4530796810103799, -1.426612536964353, -1.3984037936871838, -1.368646250691242, -1.3375314046060585, -1.3052477554001094, -1.2719793189653046, -1.2379043443770579, -1.2031942301268221, -1.1680126305557272, -1.1325147414758803, -1.0968467524230456, -1.0611454520218042, -1.025537972452673, -0.990141658893203, -0.9550640499800568, -0.9204029557370983, -0.8862466199787384, -0.8526739548813291, -0.8197548361816714, -0.7875504482798239, -0.7561136693703688, -0.7254894875830185, -0.6957154399644506, -0.6668220669681953, -0.638833375927362 ], [ -1.20005251908499, -1.2382936721541897, -1.274952066224768, -1.309793564538039, -1.3425940443019329, -1.3731424178591771, -1.40124345428825, -1.4267203726085782, -1.449417171452222, -1.4692006505508766, -1.4859620728641827, -1.4996184165647717, -1.5101131744373488, -1.5174166732993044, -1.5215259053024885, -1.5224638836074416, -1.5202785544132147, -1.5150413137972645, -1.5068451901143716, -1.4958027603611703, -1.4820438720362268, -1.4657132411343103, -1.4469679927728034, -1.4259752044312364, -1.4029095037527777, -1.3779507640781077, -1.3512819319913114, -1.3230870126334202, -1.2935492307114027, -1.2628493781982586, -1.2311643537742525, -1.1986658941129122, -1.1655194931214432, -1.1318835021251499, -1.097908401638007, -1.0637362336817735, -1.0295001824982302, -0.9953242908461268, -0.9613232987977778, -0.9276025919733881, -0.8942582464086901, -0.8613771576875181, -0.8290372425407232, -0.7973077017782064, -0.7662493341518972, -0.7359148915185929, -0.706349466464387, -0.677590904348876, -0.6496702325165709, -0.6226121001932167 ], [ -1.1440757861035968, -1.1810644003980728, -1.216571877672062, -1.2503738769674089, -1.2822552082651046, -1.3120127111932423, -1.339457952092378, -1.3644197087036731, -1.386746207398706, -1.4063070706945782, -1.4229949279534204, -1.4367266430390242, -1.4474441203117896, -1.4551146637365113, -1.4597308809802902, -1.4613101427828303, -1.4598936254098984, -1.4555449789929733, -1.448348675973479, -1.4384081012543004, -1.4258434490530203, -1.4107894912484062, -1.393393278842216, -1.3738118327551856, -1.3522098732807444, -1.3287576298101185, -1.3036287644902753, -1.2769984357264725, -1.24904152021522, -1.2199310056947874, -1.1898365609402466, -1.1589232847409483, -1.1273506316620363, -1.0952715092503928, -1.0628315389228709, -1.0301684709813914, -0.9974117429471895, -0.964682169607717, -0.9320917527456055, -0.8997435983992976, -0.867731929626937, -0.8361421830569231, -0.8050511779656787, -0.7745273471880282, -0.7446310198083275, -0.7154147462746143, -0.6869236573044676, -0.6591958486910406, -0.6322627848588677, -0.6061497147490648 ], [ -1.0882273340049506, -1.1239507580140928, -1.158293950602556, -1.1910423097849963, -1.2219895173598239, -1.2509402822711184, -1.2777129212577185, -1.3021417433642115, -1.3240792024252361, -1.3433977768555576, -1.3599915330856378, -1.3737773305810574, -1.3846956335148906, -1.3927109061400462, -1.3978115840681509, -1.4000096300028082, -1.3993396981466821, -1.3958579450626363, -1.389640535288587, -1.380781897047556, -1.3693927869413702, -1.3555982228691268, -1.339535342073339, -1.3213512368001634, -1.3012008141959104, -1.27924472034245, -1.2556473612698569, -1.2305750467858736, -1.2041942763333633, -1.1766701800357704, -1.1481651227375598, -1.118837474245528, -1.0888405451283811, -1.0583216843015548, -1.027421532154142, -0.9962734210942399, -0.9650029140224123, -0.9337274703165792, -0.9025562283534052, -0.8715898933383706, -0.8409207192109405, -0.8106325735834452, -0.7808010750196381, -0.7514937924245676, -0.722770496871972, -0.6946834568119302, -0.6672777682596951, -0.6405917122486187, -0.6146571325204879, -0.5894998271144721 ], [ -1.0327598180025708, -1.0672118239515922, -1.1003830467038105, -1.1320685273674589, -1.162070735662106, -1.1902021825339517, -1.2162878894139222, -1.2401676778811705, -1.2616982426368646, -1.2807549681165886, -1.2972334478844882, -1.311050668381863, -1.3221458254579475, -1.3304807529180362, -1.3360399557788178, -1.3388302553996523, -1.3388800676176982, -1.3362383472228325, -1.3309732417434013, -1.3231705041654955, -1.3129317178192963, -1.3003723874524322, -1.2856199488752282, -1.2688117460075972, -1.2500930192175552, -1.2296149430284473, -1.2075327450379199, -1.1840039316103346, -1.1591866398618804, -1.1332381298579124, -1.106313425913328, -1.0785641114968498, -1.0501372785075118, -1.0211746286003867, -0.9918117217485215, -0.9621773652846983, -0.9323931352083077, -0.9025730205059674, -0.8728231805576134, -0.8432418053250553, -0.8139190678953581, -0.784937159030092, -0.7563703936130433, -0.7282853792583264, -0.7007412378078417, -0.6737898709862398, -0.6474762620713151, -0.62183880605962, -0.5969096614464402, -0.5727151173825008 ], [ -0.9779080016274788, -1.0110882854375611, -1.0430851146782463, -1.0737030427204466, -1.1027532221570446, -1.1300558893969126, -1.1554427251144048, -1.1787590518730533, -1.19986583061507, -1.2186414169767565, -1.2349830388085126, -1.2488079595190436, -1.260054298578586, -1.2686814903742964, -1.2746703746069437, -1.2780229242576902, -1.2787616295710138, -1.2769285674594366, -1.2725841945236918, -1.2658059081185968, -1.2566864234967776, -1.2453320161802308, -1.2318606776583252, -1.2164002297009153, -1.1990864384543467, -1.1800611644964711, -1.1594705795598943, -1.1374634750288755, -1.114189681838853, -1.0897986162562394, -1.0644379613216506, -1.0382524895788254, -1.0113830291187123, -0.9839655719410039, -0.956130521151376, -0.9280020715304375, -0.8996977164817539, -0.8713278732384211, -0.8429956174272665, -0.8147965176062455, -0.7868185601564684, -0.7591421548830762, -0.7318402118202683, -0.7049782800119608, -0.6786147394215624, -0.652801037586703, -0.6275819631562366, -0.6029959490085569, -0.5790753982365512, -0.555847026882541 ], [ -0.9238869368788934, -0.9558006079668422, -0.9866254629504649, -1.0161754047747946, -1.0442701429604029, -1.0707375517738122, -1.0954159228153992, -1.1181560715698249, -1.1388232586753264, -1.1572988873556733, -1.1734819401776204, -1.1872901222365302, -1.1986606845128045, -1.207550910231986, -1.21393825782998, -1.2178201655499163, -1.2192135337558094, -1.2181539108814314, -1.2146944169298408, -1.208904444257096, -1.200868178914217, -1.190682987184148, -1.1784577113791543, -1.1643109167914139, -1.148369128287652, -1.1307650907831817, -1.1116360830659453, -1.0911223094693587, -1.069365388956578, -1.046506956466505, -1.0226873870141935, -0.9980446491200713, -0.972713290707175, -0.9468235576652666, -0.9205006428252259, -0.8938640610887225, -0.867027144880093, -0.8400966528866447, -0.8131724841856662, -0.7863474892774572, -0.7597073692107245, -0.7333306538617301, -0.707288750475651, -0.6816460537658884, -0.6564601091669724, -0.6317818212242561, -0.6076556995572566, -0.5841201353350498, -0.5612077017353515, -0.5389454724099939 ], [ -0.8708907883420336, -0.9015478575657871, -0.9312075855050426, -0.9596930328380262, -0.9868323189136354, -1.0124608546537628, -1.0364234873760194, -1.058576516111547, -1.078789537691227, -1.096947085553436, -1.112950025905707, -1.1267166803410098, -1.1381836505767973, -1.1473063294406498, -1.154059091966732, -1.158435170688508, -1.160446229094083, -1.1601216560471803, -1.157507611253038, -1.1526658572608135, -1.1456724169389834, -1.1366160968989047, -1.125596917161282, -1.1127244857281786, -1.0981163539478829, -1.081896384958554, -1.064193163368743, -1.0451384699448312, -1.0248658406493867, -1.0035092250853908, -0.9812017553789253, -0.958074632864077, -0.9342561366704156, -0.9098707554784164, -0.8850384413011714, -0.8598739821569574, -0.8344864888891005, -0.8089789901343065, -0.7834481285008427, -0.7579839503569694, -0.7326697812094756, -0.7075821784387506, -0.6827909531162898, -0.6583592527348402, -0.6343436969026112, -0.6107945583680191, -0.5877559821292454, -0.5652662358244995, -0.5433579850791466, -0.5220585879897368 ], [ -0.8190922575856338, -0.848507130330338, -0.8770125957870055, -0.9044406540989585, -0.9306276661374273, -0.9554164623828796, -0.9786583798789402, -1.000215185672929, -1.0199608470580386, -1.037783111226897, -1.0535848602538456, -1.0672852121256517, -1.0788203449950728, -1.0881440297389, -1.095227864775397, -1.1000612162971894, -1.1026508759476288, -1.1030204559356804, -1.1012095482163702, -1.0972726793960912, -1.0912780963514694, -1.083306419212221, -1.0734491984945183, -1.0618074119953553, -1.0484899348253334, -1.0336120129337647, -1.0172937669250037, -0.9996587491119308, -0.9808325728026848, -0.9609416289321638, -0.9401119014552406, -0.9184678895017122, -0.8961316412117353, -0.8732219014543954, -0.8498533732915922, -0.8261360910777151, -0.802174901466154, -0.7780690473000683, -0.7539118483693871, -0.7297904722858323, -0.7057857882316407, -0.6819722960445547, -0.6584181229820671, -0.6351850805341727, -0.6123287738013841, -0.5898987562005259, -0.567938722584498, -0.5464867342454552, -0.5255754696984886, -0.5052324955997113 ], [ -0.7686425328284057, -0.796833513192043, -0.8241991932268663, -0.8505802707905682, -0.8758211592990756, -0.8997719742801735, -0.9222904626267758, -0.9432438335331459, -0.9625104519936383, -0.9799813583428261, -0.995561580962753, -1.0091712142261589, -1.0207462400239316, -1.030239078630573, -1.0376188627900975, -1.0428714372383903, -1.0459990938880683, -1.0470200601178163, -1.0459677636723312, -1.042889902362734, -1.0378473499641792, -1.0309129314521461, -1.0221701011107795, -1.0117115562538872, -0.9996378175337084, -0.9860558042969734, -0.9710774304042162, -0.9548182425629601, -0.9373961197161194, -0.9189300485248626, -0.8995389866071035, -0.879340822026909, -0.8584514346358334, -0.8369838622816085, -0.8150475726390428, -0.7927478394850074, -0.7701852206238101, -0.7474551333541116, -0.7246475223312969, -0.701846613893146, -0.6791307503566265, -0.6565722974303776, -0.6342376176965772, -0.612187103070928, -0.5904752592280966, -0.5691508351600297, -0.54825699129687, -0.5278314999469904, -0.5079069721884618, -0.48851110575464773 ], [ -0.7196716733121824, -0.7466604844391208, -0.772904071646825, -0.7982515684750282, -0.822555232477566, -0.8456723117778091, -0.8674668673528887, -0.8878115112060339, -0.9065890223381183, -0.9236938051010939, -0.9390331582647702, -0.9525283280449696, -0.9641153243720685, -0.9737454866054943, -0.9813857923704228, -0.9870189107809223, -0.9906430085846041, -0.9922713243326095, -0.9919315312458983, -0.989664913819339, -0.985525386288427, -0.9795783828834663, -0.9718996503931583, -0.9625739730902246, -0.9516938587069157, -0.9393582120775368, -0.9256710204774183, -0.910740071762165, -0.894675723308104, -0.8775897366103971, -0.8595941893204136, -0.840800473583739, -0.821318386835551, -0.8012553187621838, -0.7807155359684703, -0.7597995640090905, -0.7386036648451851, -0.7172194064647794, -0.6957333203399542, -0.6742266415651017, -0.6527751259068425, -0.6314489375732051, -0.610312601255415, -0.5894250118862175, -0.5688394955737021, -0.5486039152883745, -0.528760815085181, -0.5093475969147686, -0.4903967244037416, -0.47193594834851404 ], [ -0.6722893348290515, -0.6981006595717789, -0.723242675660308, -0.7475726733954181, -0.7709505285263868, -0.7932404518315848, -0.8143127058691845, -0.8340452506983953, -0.8523252818990092, -0.8690506267958219, -0.8841309684686119, -0.8974888718812735, -0.9090605921805675, -0.9187966516680827, -0.9266621788240144, -0.9326370096956924, -0.9367155585955679, -0.9389064710615911, -0.9392320771661045, -0.937727667349693, -0.9344406159208662, -0.9294293791964044, -0.9227623960205995, -0.9145169182032039, -0.9047777973957758, -0.8936362532437585, -0.881188645467396, -0.8675352699960543, -0.8527791965479892, -0.8370251622368998, -0.8203785329986223, -0.8029443419492295, -0.7848264112702625, -0.7661265619109666, -0.7469439133279769, -0.72737427366378, -0.707509619199625, -0.6874376606004111, -0.6672414923882002, -0.6469993212211437, -0.6267842678980343, -0.6066642375356955, -0.586701852056571, -0.5669544389573037, -0.5474740702861455, -0.528307645818909, -0.5094970145726405, -0.49107912901689355, -0.4730862266198308, -0.45554603368663726 ], [ -0.6265857483945824, -0.6512467936331143, -0.6753102164236621, -0.698641171492521, -0.7211069116984996, -0.742578424322893, -0.7629320444504885, -0.7820510092130621, -0.7998269179302404, -0.8161610655645893, -0.830965620382439, -0.844164621201279, -0.8556947749537596, -0.865506041278253, -0.8735619971686295, -0.8798399810666415, -0.8843310218509295, -0.8870395636951034, -0.8879830025194668, -0.8871910536004348, -0.884704972753376, -0.8805766553570209, -0.8748676383851632, -0.867648030640273, -0.8589953956598416, -0.8489936104213547, -0.8377317211455679, -0.8253028153241462, -0.8118029267036839, -0.7973299874548041, -0.7819828392378443, -0.7658603124230826, -0.7490603803934521, -0.7316793936962743, -0.7138113968465011, -0.6955475288361482, -0.6769755068798309, -0.6581791916245975, -0.6392382309667309, -0.6202277787382877, -0.6012182838368353, -0.5822753448576957, -0.5634596249310673, -0.5448268212493969, -0.526427683675195, -0.508308076829522, -0.49050908015994354, -0.4730671206588474, -0.456014133134094, -0.43937774321173606 ], [ -0.5826328744741133, -0.6061729615956214, -0.6291828682317459, -0.6515353112180401, -0.6731046670010088, -0.6937684988913753, -0.7134090699157121, -0.731914807216306, -0.7491816849411573, -0.7651144946911579, -0.7796279757892494, -0.7926477817944747, -0.80411126462948, -0.8139680631969669, -0.8221804891632192, -0.8287237084072783, -0.8335857222040517, -0.836767157294315, -0.8382808784080403, -0.8381514404214825, -0.8364144000726192, -0.8331155090181923, -0.8283098110213608, -0.8220606662784147, -0.8144387254226485, -0.8055208746933344, -0.795389172246285, -0.7841297937272845, -0.7718320031419089, -0.7585871628352516, -0.7444877941311032, -0.7296266979438537, -0.7140961425274344, -0.697987123507974, -0.6813886994923802, -0.664387404874488, -0.6470667399856155, -0.6295067374598794, -0.6117836026051262, -0.5939694246795036, -0.5761319552616873, -0.5583344493557733, -0.5406355644758698, -0.5230893126946484, -0.505745060498782, -0.4886475712573751, -0.47183708516101885, -0.4553494316159562, -0.4392161692655244, -0.4234647490474185 ], [ -0.5404856676408752, -0.5629358509015172, -0.584919079730595, -0.606315324062782, -0.6270058208187401, -0.6468744968267753, -0.6658093845635928, -0.6837039989487409, -0.7004586441593845, -0.7159816212747487, -0.7301903104379707, -0.7430121050126396, -0.7543851797338578, -0.7642590798923189, -0.7725951238990156, -0.7793666169099543, -0.7845588783057753, -0.7881690905157986, -0.7902059807846267, -0.7906893508875142, -0.7896494724414959, -0.7871263673147315, -0.7831689937269358, -0.7778343590133214, -0.7711865797708987, -0.7632959093113993, -0.7542377511116115, -0.7440916753803732, -0.7329404540506638, -0.7208691275452933, -0.7079641146355995, -0.6943123746825336, -0.680000629574766, -0.6651146508028241, -0.6497386153650232, -0.633954532612649, -0.6178417427232483, -0.6014764862480384, -0.584931543114105, -0.5682759385697745, -0.551574712834716, -0.534888750645224, -0.5182746664571171, -0.5017847407710615, -0.48546690286346417, -0.46936475512714626, -0.45351763423520086, -0.43796070442599344, -0.4227250783544154, -0.40783796115205573 ], [ -0.5001833991827381, -0.5215761129616309, -0.5425609460791646, -0.5630248089218054, -0.582855529010088, -0.6019431746177636, -0.6201813772791612, -0.6374686237303989, -0.6537094883248663, -0.6688157785206188, -0.6827075685820865, -0.6953141000443058, -0.7065745315839154, -0.7164385255214393, -0.7248666630204713, -0.7318306849256319, -0.7373135598801561, -0.741309385702537, -0.7438231338316317, -0.7448702498665148, -0.7444761257679156, -0.7426754611303834, -0.7395115320906113, -0.735035386949602, -0.7293049875173728, -0.7223843146164415, -0.7143424551907963, -0.7052526871481603, -0.6951915765023747, -0.6842380996600761, -0.6724728018846494, -0.659977001134147, -0.6468320446618092, -0.63311862403137, -0.6189161525668845, -0.6043022077545638, -0.589352039756044, -0.5741381459904566, -0.558729910698669, -0.5431933075167287, -0.5275906623523373, -0.51198047326988, -0.4964172836368145, -0.48095160445592666, -0.4656298815918649, -0.45049450348411735, -0.43558384490965063, -0.4209323424046121, -0.40657059706360554, -0.3925255005963285 ], [ -0.4617509968630856, -0.4821197321910038, -0.5021356000966035, -0.5216921379040804, -0.5406834898011416, -0.5590056363865362, -0.5765576281573571, -0.5932427957586619, -0.6089699101036055, -0.6236542667569719, -0.63721867118952, -0.6495943045361715, -0.6607214531686345, -0.6705500895320953, -0.6790402960929922, -0.6861625286953329, -0.6918977199363473, -0.6962372271814972, -0.6991826334109931, -0.700745412126423, -0.700946469987629, -0.6998155826701176, -0.6973907406384176, -0.6937174221515999, -0.6888478109050556, -0.6828399753318349, -0.6757570258112395, -0.6676662649381286, -0.6586383446697063, -0.6487464426602235, -0.6380654684836606, -0.6266713087896927, -0.6146401187888272, -0.6020476658602848, -0.5889687295547773, -0.5754765608482334, -0.5616424022100824, -0.5475350688927538, -0.5332205908327375, -0.5187619136804467, -0.5042186567426611, -0.4896469250231149, -0.4750991720758412, -0.46062411003279735, -0.4462666629222112, -0.432067959245673, -0.41806535971886594, -0.4042925160921892, -0.3907794570420343, -0.3775526972505837 ], [ -0.425200371227877, -0.44457938143954034, -0.46365659070503784, -0.48233185135806733, -0.5005053487557506, -0.5180787420781178, -0.5349563132280036, -0.5510460988537114, -0.5662609806234286, -0.580519709913465, -0.5937478449735082, -0.605878581292696, -0.6168534591673362, -0.6266229361911504, -0.6351468163676882, -0.6423945315972156, -0.6483452752437211, -0.652987991190581, -0.656321225123293, -0.6583528476423265, -0.6590996611510344, -0.6585869042532408, -0.6568476686335578, -0.6539222441014438, -0.6498574076999746, -0.6447056725643082, -0.6385245116263376, -0.6313755703663199, -0.6233238816773428, -0.614437094597903, -0.6047847272427133, -0.5944374527759078, -0.5834664257712872, -0.5719426548317555, -0.5599364259263957, -0.547516779575216, -0.5347510437864648, -0.5217044235440891, -0.5084396466591513, -0.495016664944697, -0.48149240894629486, -0.46792059385826346, -0.4543515737721925, -0.4408322410325185, -0.4274059672046904, -0.4141125819855842, -0.40098838629289635, -0.38806619575021195, -0.3753754108274068, -0.36294210999163856 ], [ -0.39053170635561474, -0.408955741275977, -0.4271252256127753, -0.4449460184899737, -0.46232407160680444, -0.4791664866118859, -0.49538258396432855, -0.5108849603977574, -0.5255905120601306, -0.5394214012101274, -0.5523059459616217, -0.5641794148876988, -0.5749847111959544, -0.5846729345139776, -0.5932038119111547, -0.6005459934636003, -0.6066772112863713, -0.6115843043729604, -0.6152631146826514, -0.6177182626158769, -0.6189628122581114, -0.619017838524822, -0.61791190959666, -0.6156804988110897, -0.612365340505882, -0.6080137442349092, -0.6026778813509254, -0.5964140572300017, -0.5892819814569386, -0.5813440471584541, -0.572664629414882, -0.5633094113520183, -0.5533447451567097, -0.5428370539105223, -0.5318522788277603, -0.5204553752423098, -0.5087098595317193, -0.4966774081115133, -0.48441750868652067, -0.47198716311436995, -0.45944064052114264, -0.44682927870787337, -0.4342013313965948, -0.4216018584786744, -0.40907265614017674, -0.39665222353982543, -0.38437576259645323, -0.37227520739509445, -0.36037927973518324, -0.3487135674111892 ], [ -0.357734699808521, -0.37523876753557295, -0.3925318621943459, -0.4095255469873643, -0.42613126775189414, -0.44226133215514285, -0.45782990309331273, -0.4727539853806586, -0.4869543846486931, -0.5003566179860044, -0.5128917571973927, -0.524497187567726, -0.535117267568732, -0.5447038779090753, -0.5532168515516195, -0.5606242796562274, -0.5669026917098761, -0.5720371112519285, -0.5760209914854751, -0.5788560376044112, -0.5805519248044667, -0.5811259226522529, -0.5806024377487432, -0.5790124874529116, -0.5763931178493717, -0.5727867791889076, -0.5682406717455218, -0.5628060744679207, -0.5565376680087367, -0.5494928627421404, -0.5417311412793409, -0.5333134238073675, -0.5243014633507427, -0.5147572768240708, -0.5047426165370907, -0.4943184856571816, -0.48354470004812966, -0.47247949790226074, -0.4611791976772148, -0.44969790404433396, -0.43808726085616045, -0.4263962495457291, -0.4146710308778404, -0.4029548275778715, -0.39128784506069014, -0.3797072272645221, -0.368247044453778, -0.35693830978293084, -0.3458090214021716, -0.33488422692649444 ], [ -0.3267897419160126, -0.343408896997797, -0.3598571360517695, -0.37605143064330804, -0.3919084528321424, -0.4073454812988917, -0.4222813238159989, -0.43663723698594925, -0.4503378239064564, -0.46331189086106683, -0.475493245249063, -0.48682141869193696, -0.49724230148905546, -0.5067086772223266, -0.5151806491975671, -0.5226259534236986, -0.5290201558415738, -0.5343467344065721, -0.5385970493051853, -0.5417702069685716, -0.5438728255809537, -0.5449187114334709, -0.5449284567316284, -0.5439289703294982, -0.5419529533542815, -0.5390383318297801, -0.5352276582430864, -0.5305674935684225, -0.5251077806094497, -0.5189012186932039, -0.5120026487882045, -0.5044684570690416, -0.4963560038471925, -0.4877230836675893, -0.4786274212615089, -0.46912620697302154, -0.45927567425937044, -0.4491307209192318, -0.43874457483937424, -0.42816850427633324, -0.41745157200997063, -0.4066404321211483, -0.395779167655536, -0.38490916703563505, -0.3740690367703692, -0.36329454777828674, -0.3526186124815701, -0.3420712897350836, -0.33167981462074625, -0.3214686501548414 ], [ -0.29766902860969857, -0.31343818522164724, -0.32907312097589125, -0.34449592828246256, -0.3596282431816906, -0.3743920833324459, -0.3887107039896537, -0.40250945459584064, -0.41571661827101525, -0.4282642167794287, -0.4400887644621132, -0.4511319560946001, -0.4613412755778943, -0.47067051469311805, -0.4790801937300827, -0.48653787851725905, -0.49301839111902, -0.4985039141201434, -0.5029839908964864, -0.5064554265020799, -0.5089220957328707, -0.5103946665215485, -0.510890248059722, -0.5104319739315729, -0.5090485310897637, -0.506773645731683, -0.503645537073595, -0.49970634970700856, -0.495001574695191, -0.48957946886841686, -0.48349048094394365, -0.47678669216892267, -0.4695212781968855, -0.46174799789269594, -0.45352071374489367, -0.4448929475722343, -0.4359174742619848, -0.4266459553873748, -0.41712861373180654, -0.4074139490065588, -0.3975484943915766, -0.38757661295813284, -0.3775403325474621, -0.3674792172788719, -0.3574302735409599, -0.34742788807544456, -0.33750379558870014, -0.3276870732158741, -0.31800415910836843, -0.30847889241211934 ], [ -0.27033760504724613, -0.28529137364666624, -0.30014441717862206, -0.3148236705175844, -0.32925547823927803, -0.34336636918913965, -0.35708385026061384, -0.37033720357574673, -0.38305827086165956, -0.3951822089896273, -0.40664820137584856, -0.4174001111898278, -0.4273870640084537, -0.43656394960021017, -0.4448918348234374, -0.4523382820671611, -0.45887757014913877, -0.46449081701667216, -0.4691660058871596, -0.47289791855000773, -0.4756879813761189, -0.4775440311118394, -0.4784800087517932, -0.47851559068372485, -0.47767576688697544, -0.47599037626116536, -0.4734936091878267, -0.4702234872164691, -0.4662213293508245, -0.46153121382692586, -0.45619944355748665, -0.45027402260164384, -0.44380415013768837, -0.43683973749875293, -0.42943095290392186, -0.42162779760266056, -0.41347971626818103, -0.40503524364060983, -0.39634168864598773, -0.3874448565107669, -0.37838880875961767, -0.3692156604299375, -0.3599654133608965, -0.35067582401648245, -0.34138230397877256, -0.3321178509954503, -0.32291300827954306, -0.313795849633967, -0.30479198790271944, -0.29592460422837785 ], [ -0.2447543394144951, -0.2589268852721014, -0.2730291669349574, -0.28699269320781884, -0.30074826943604926, -0.3142267131405325, -0.3273595897203796, -0.3400799538537701, -0.3523230817867683, -0.3640271797722314, -0.3751340545008751, -0.3855897324170996, -0.3953450162760134, -0.40435596909698146, -0.41258431771354254, -0.41999777031519125, -0.4265702446293478, -0.43228200561364627, -0.43711971364338176, -0.4410763861207432, -0.44415127715262914, -0.44634968140712206, -0.4476826694439072, -0.44816676271389533, -0.44782355704084853, -0.4466793037463702, -0.4447644576787594, -0.4421132012819564, -0.4387629535221048, -0.43475387200759386, -0.4301283560251761, -0.4249305575018202, -0.41920590611819497, -0.41300065397408914, -0.40636144436140464, -0.39933490836077634, -0.39196729216006654, -0.38430411721316426, -0.376389874628016, -0.368267754502026, -0.3599794103183075, -0.35156475798059816, -0.34306180860090774, -0.3345065337605059, -0.3259327616416414, -0.3173721021697231, -0.30885389911090044, -0.3004052069325245, -0.2920507901486622, -0.2838131428346242 ], [ -0.22087282776582873, -0.23429774973953088, -0.2476799983430158, -0.26095539812723345, -0.27405897578911986, -0.2869256211153026, -0.29949076854213175, -0.3116910862777549, -0.32346515946232457, -0.3347541538338247, -0.3455024468158294, -0.3556582138239186, -0.36517395884935133, -0.3740069799558595, -0.3821197621402733, -0.3894802919758831, -0.3960622904953336, -0.4018453627974121, -0.40681506480884, -0.41096288943733517, -0.41428617596858097, -0.4167879479526345, -0.4184766859726061, -0.4193660425801682, -0.41947450731881963, -0.4188250301454872, -0.4174446117202254, -0.4153638689837368, -0.4126165842079984, -0.40923924531423195, -0.4052705847324767, -0.40075112345698494, -0.3957227262581172, -0.3902281732705044, -0.38431075241162616, -0.37801387631579053, -0.371380726713443, -0.36445392845955527, -0.35727525473040456, -0.3498853642738321, -0.3423235710214765, -0.3346276458570183, -0.3268336498840536, -0.31897579815188504, -0.31108635247624905, -0.30319554173202445, -0.29533150779382633, -0.2875202751533923, -0.2797857421453631, -0.2721496916607842 ] ], "zauto": true, "zmax": 2.2868417441028557, "zmin": -2.2868417441028557 }, { "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.35753298382341986, 0.35106809022456453, 0.34525848051741986, 0.3401751882432416, 0.3358902156177671, 0.33247377075454926, 0.3299909029625538, 0.328497783797304, 0.328037991828192, 0.3286392249027147, 0.33031085759818, 0.33304267195605436, 0.3368049290813176, 0.34154975355770556, 0.34721361933066075, 0.3537205967157724, 0.3609859678430519, 0.36891984019205437, 0.37743046412038056, 0.38642706178666303, 0.3958220755728859, 0.40553282669678975, 0.4154826317608799, 0.4256014568832322, 0.43582620064760735, 0.4461006947698595, 0.456375501054691, 0.4666075695150006, 0.4767598085083339, 0.4868006051418074, 0.49670332375937903, 0.5064458021774326, 0.5160098592536609, 0.5253808229888538, 0.5345470852720812, 0.54349968722641, 0.5522319376006672, 0.5607390655612332, 0.5690179084106245, 0.5770666340953964, 0.5848844978044088, 0.592471631469222, 0.5998288645495754, 0.6069575741183698, 0.6138595619569795, 0.6205369561390591, 0.6269921344235806, 0.6332276666970064, 0.6392462736982414, 0.6450507993227989 ], [ 0.3472045477631029, 0.3408625488196061, 0.3352136890631874, 0.33032733018101057, 0.3262731889059225, 0.3231185225359072, 0.32092472662351224, 0.3197436163595539, 0.3196137739835286, 0.32055740275081956, 0.32257810640976825, 0.3256599039713869, 0.32976761169829605, 0.3348485197178506, 0.3408351101135641, 0.3476484474389345, 0.35520183876959777, 0.36340440072330144, 0.37216425999281644, 0.38139122135084597, 0.3909988373919262, 0.4009058922162557, 0.4110373617660766, 0.42132493884223393, 0.43170721693621145, 0.4421296207338734, 0.452544158411983, 0.46290905599246845, 0.47318831975543857, 0.48335126043866505, 0.49337200315227875, 0.5032289995447156, 0.512904553423135, 0.5223843673170164, 0.5316571149460896, 0.5407140428453514, 0.5495486032236354, 0.5581561192810682, 0.5665334835459677, 0.574678889228956, 0.5825915940863617, 0.5902717158186189, 0.5977200576012891, 0.6049379619642203, 0.6119271909092177, 0.6186898298987294, 0.6252282131647449, 0.6315448676818545, 0.6376424731201681, 0.6435238351377499 ], [ 0.33716468608292055, 0.33098893175955707, 0.32554782768430207, 0.32090814138796436, 0.31713614397524986, 0.3142947830817675, 0.3124403074562432, 0.3116186370946493, 0.3118618789788011, 0.3131854335952367, 0.3155860966219714, 0.319041431333763, 0.32351049636712087, 0.32893580770842606, 0.33524624445508183, 0.34236051167202824, 0.3501907613325144, 0.3586460298305284, 0.36763524914062473, 0.37706969764856985, 0.3868648525797362, 0.3969416763667654, 0.40722741165796683, 0.4176559778756413, 0.42816806304078836, 0.43871099491957627, 0.44923846107641696, 0.45971013205176653, 0.4700912279090182, 0.48035205685879057, 0.4904675457951782, 0.5004167761276105, 0.5101825338183557, 0.5197508795493121, 0.5291107429976564, 0.5382535439361834, 0.5471728420209678, 0.5558640164999439, 0.5643239765538415, 0.5725509025003401, 0.5805440176250558, 0.5883033899446403, 0.5958297627673542, 0.6031244125105999, 0.6101890318798617, 0.6170256362236851, 0.6236364906647792, 0.6300240554731682, 0.6361909470935253, 0.6421399122609182 ], [ 0.3274244420321539, 0.32145640970768014, 0.31626832631891844, 0.3119233835009713, 0.3084831696545639, 0.3060048831889227, 0.3045380651862544, 0.30412116329001343, 0.30477833408565524, 0.30651691813196286, 0.30932595966869264, 0.3131759969555878, 0.318020152068697, 0.32379635110431454, 0.33043035608454285, 0.3378392184308951, 0.34593477388376903, 0.3546268707447066, 0.3638261268548138, 0.37344611655805143, 0.38340497676122154, 0.39362648187139954, 0.40404067068087024, 0.41458411936613154, 0.42519995079232437, 0.4358376579901731, 0.4464528041827658, 0.4570066464720621, 0.46746571707898904, 0.4778013855625108, 0.48798941770941917, 0.49800954140508835, 0.50784502624658, 0.5174822814264003, 0.5269104750546596, 0.5361211772550242, 0.5451080288199741, 0.5538664367827922, 0.5623932978638255, 0.5706867503322831, 0.5787459543808452, 0.5865709006476784, 0.5941622460587119, 0.6015211757256014, 0.6086492892436891, 0.6155485094076918, 0.6222210111131853, 0.6286691680458047, 0.6348955146781461, 0.6409027210924625 ], [ 0.3179935228249303, 0.312271652433272, 0.307378848981588, 0.30337369858083446, 0.30031181265212614, 0.29824315110949046, 0.29720896251903467, 0.2972386620959258, 0.2983470470931569, 0.30053225399834954, 0.3037747790425267, 0.3080377257909245, 0.3132682493878278, 0.31939998675914666, 0.3263561391665193, 0.33405282953331694, 0.3424023876671453, 0.35131629862321717, 0.3607076528180209, 0.3704930348871778, 0.3805938652577543, 0.3909372579895378, 0.40145648245868376, 0.412091120918696, 0.4227870059772681, 0.4334960078282413, 0.44417572524784293, 0.4547891197162454, 0.4653041199309358, 0.4756932148100014, 0.48593304662378933, 0.49600401164671215, 0.5058898731182921, 0.5155773898182644, 0.5250559627657974, 0.5343173021287034, 0.5433551161583754, 0.5521648237174008, 0.5607432916708109, 0.5690885980450258, 0.577199821426118, 0.5850768565930785, 0.5927202558916153, 0.600131095380067, 0.6073108643482478, 0.6142613764439752, 0.6209847003551182, 0.6274831077952218, 0.6337590364291796, 0.6398150653482699 ], [ 0.3088820982018046, 0.3034407262187492, 0.2988812862849983, 0.29525669575061564, 0.2926152607903148, 0.29099819867718085, 0.2904369036426855, 0.2909502720432036, 0.2925424591860487, 0.29520142183976306, 0.2988985010090619, 0.30358913904573837, 0.30921464461653625, 0.3157047653348948, 0.322980736238208, 0.33095845532082474, 0.3395514846196908, 0.3486736620223742, 0.3582412070776196, 0.36817429149516445, 0.37839810933606716, 0.388843520015693, 0.3994473524698956, 0.4101524575166397, 0.4209075843299437, 0.4316671416429316, 0.44239088870908466, 0.45304358741706946, 0.4635946362216661, 0.4740176988120924, 0.4842903353045642, 0.49439364063941504, 0.5043118931872506, 0.5140322158031618, 0.5235442513068334, 0.5328398543207856, 0.541912801383439, 0.5507585211643631, 0.5593738464019657, 0.5677567888555716, 0.5759063381356253, 0.58382228478169, 0.5915050674364577, 0.5989556434517935, 0.606175381791541, 0.6131659766897201, 0.619929380198414, 0.6264677515258125, 0.632783420923478, 0.6388788658289474 ], [ 0.30010290889463426, 0.2949713653842043, 0.29077819132583343, 0.28756955585837174, 0.28538512396871507, 0.28425588830203646, 0.2842018969544194, 0.28523016749035623, 0.28733310879542895, 0.2904877335878419, 0.29465583697269154, 0.29978516492667, 0.3058114407522167, 0.31266099718096685, 0.3202537025556648, 0.328505875857812, 0.33733294311618567, 0.3466516728931228, 0.35638191694109067, 0.36644785616973813, 0.37677880310372375, 0.38730963919005645, 0.39798097278731487, 0.40873909768274436, 0.41953581869818807, 0.4303281952437945, 0.4410782387878088, 0.4517525878473715, 0.462322174849056, 0.47276189291838117, 0.4830502668226975, 0.4931691302764529, 0.5031033110138695, 0.5128403249360515, 0.5223700808685844, 0.5316845977647486, 0.540777736403691, 0.5496449476858939, 0.5582830394992281, 0.5666899638330373, 0.5748646253908438, 0.5828067124396122, 0.5905165500815013, 0.5979949755851616, 0.605243234903577, 0.6122628990611002, 0.6190557987319985, 0.6256239750662143, 0.6319696446474828, 0.6380951763907758 ], [ 0.291673550804884, 0.28687546804565156, 0.2830754900289308, 0.28031196287614896, 0.2786145959120702, 0.27800273518533375, 0.27848370507685344, 0.28005145610365756, 0.28268576341535717, 0.2863521688786222, 0.2910027570332666, 0.29657772635494156, 0.3030075959921912, 0.3102158046208232, 0.3181214284677235, 0.32664176868375766, 0.33569461918080806, 0.3452001038562005, 0.3550820473982647, 0.36526890343604296, 0.3756943020239249, 0.38629729593717366, 0.3970223863984789, 0.40781939944758117, 0.41864326963380866, 0.42945377219959463, 0.44021523104850663, 0.4508962188224087, 0.46146925763453017, 0.4719105241028344, 0.48219955970107437, 0.4923189864260666, 0.5022542277630565, 0.5119932354315893, 0.5215262230615769, 0.5308454085561412, 0.5399447673177339, 0.5488197986952592, 0.557467307952092, 0.5658852057897281, 0.5740723270378335, 0.5820282695936098, 0.5897532541151275, 0.5972480043923222, 0.6045136477747365, 0.6115516345563877, 0.618363674824897, 0.6249516909851376, 0.6313177839698108, 0.6374642110471235 ], [ 0.28361876002357195, 0.27917161962815457, 0.2757852435026922, 0.27348910930404785, 0.2723017097193201, 0.27222942025525476, 0.2732656180754015, 0.27539020543921033, 0.27856967785371173, 0.2827578256936617, 0.2878970766395523, 0.2939203939963577, 0.30075356646881324, 0.3083176777376255, 0.31653153799675976, 0.325313891038465, 0.3345852669631116, 0.3442694160285864, 0.3542943191443987, 0.36459281566017415, 0.3751029158258826, 0.38576787483711494, 0.39653610183099874, 0.4073609656414404, 0.41820054419311353, 0.4290173495692352, 0.43977804812767773, 0.4504531854806277, 0.46101691976465026, 0.4714467629785371, 0.4817233286042948, 0.49183008357429364, 0.5017531033106992, 0.5114808295800226, 0.5210038319519584, 0.5303145745272762, 0.5394071902016246, 0.5482772650297467, 0.5569216352643696, 0.565338199411336, 0.5735257472265225, 0.5814838070437034, 0.5892125122253047, 0.5967124869219466, 0.6039847507541114, 0.6110306415216654, 0.6178517546255661, 0.6244498975625735, 0.6308270576314214, 0.6369853808646458 ], [ 0.2759724905130549, 0.27188741205130423, 0.26892820214981084, 0.26711448307184377, 0.26645235898919045, 0.2669340475003969, 0.26853794472258974, 0.2712291561798523, 0.27496050349869494, 0.27967398408971594, 0.2853026192832305, 0.29177258302834885, 0.2990054688812741, 0.3069205374336803, 0.31543679458208695, 0.32447478141420116, 0.33395800148860794, 0.3438139605618523, 0.3539748376193171, 0.3643778377740436, 0.3749652946911678, 0.38568459377069975, 0.39648798076553016, 0.4073323080215689, 0.4181787559520569, 0.4289925535543306, 0.4397427104351946, 0.45040176459846837, 0.4609455450996022, 0.4713529460949581, 0.4816057081396542, 0.4916882031480688, 0.5015872206505746, 0.5112917544203295, 0.5207927899048465, 0.5300830939996348, 0.5391570094617999, 0.5480102566646934, 0.5566397454704665, 0.5650433998011262, 0.5732199970881253, 0.5811690242445642, 0.5888905511973652, 0.5963851223946937, 0.6036536661114434, 0.6106974208462557, 0.6175178776597421, 0.6241167369581524, 0.6304958779834778, 0.6366573391273251 ], [ 0.26877955171158513, 0.26506130388760424, 0.2625358720862503, 0.2612121292636795, 0.26108274885958116, 0.2621247804322005, 0.26430082792308235, 0.2675607025571349, 0.2718434088612968, 0.27707933043740607, 0.2831924987279326, 0.2901028426429847, 0.29772832644042807, 0.30598689115723576, 0.3147981270768248, 0.32408462497268803, 0.3337729815885283, 0.34379446554726434, 0.3540853776634841, 0.3645871595134266, 0.3752463136856741, 0.3860141987515443, 0.39684675402011116, 0.4077041968149867, 0.4185507214321702, 0.4293542164631534, 0.44008600718635904, 0.45072062275775876, 0.4612355838421422, 0.47161120461859646, 0.4818304031156988, 0.49187851493879053, 0.5017431070954069, 0.5114137903900455, 0.5208820304660583, 0.5301409588579546, 0.5391851863112961, 0.5480106211252637, 0.5566142954131994, 0.5649942020216775, 0.573149144471878, 0.5810786017619206, 0.5887826092630899, 0.5962616563150597, 0.6035166005221154, 0.6105485982092608, 0.6173590500377278, 0.6239495604174451, 0.6303219090941723, 0.6364780331291847 ], [ 0.2620965584480592, 0.25874375784782916, 0.25665181429266193, 0.25581809149092816, 0.25622096698395525, 0.2578215343894025, 0.2605660501350936, 0.26438879848946334, 0.26921506733626976, 0.27496400107053154, 0.28155118842168403, 0.2888909200175149, 0.2968980982602848, 0.30548980283595184, 0.3145865206146924, 0.32411305104450483, 0.33399910447877157, 0.3441796220642745, 0.3545948585597473, 0.36519027941280924, 0.3759163275474432, 0.3867281127943405, 0.39758506889263795, 0.4084506117551194, 0.41929182063784043, 0.43007915293104104, 0.4407861946782887, 0.4513894430801872, 0.4618681140257991, 0.47220396665450814, 0.4823811374767671, 0.49238597807012996, 0.5022068923012065, 0.5118341710135776, 0.5212598239027818, 0.5304774097213529, 0.539481866957053, 0.5482693477073446, 0.556837057675416, 0.5651831051040191, 0.5733063611186944, 0.5812063334478114, 0.5888830548931749, 0.596336987301846, 0.6035689411858463, 0.6105800105881289, 0.6173715223254722, 0.6239449983664098, 0.6303021298306645, 0.6364447609241062 ], [ 0.25599194292854704, 0.25299739813968447, 0.2513319159556204, 0.25098077318429596, 0.2519074191253717, 0.25405647703188355, 0.2573575917745768, 0.26172956581963974, 0.2670843044626538, 0.2733302555559689, 0.28037520748699096, 0.2881284475788952, 0.2965023596664668, 0.3054135614974113, 0.31478367169070287, 0.3245397746165975, 0.3346146342881242, 0.3449467002144831, 0.3554799473776289, 0.36616359445542174, 0.3769517449302916, 0.38780299257518625, 0.39868002588502377, 0.40954925660863556, 0.4203804874256648, 0.4311466246101251, 0.4418234342833087, 0.45238933602251713, 0.46282522509176555, 0.47311431400576826, 0.48324198499233534, 0.49319564663231363, 0.5029645900538767, 0.51253984217329, 0.5219140153584977, 0.5310811544020245, 0.5400365827666986, 0.5487767507144984, 0.5572990881884919, 0.5656018652567469, 0.5736840626212955, 0.5815452542213032, 0.5891855033880873, 0.5966052734014928, 0.603805352701885, 0.6107867944670798, 0.6175508697948348, 0.624099033354672, 0.6304329000941887, 0.6365542314040303 ], [ 0.2505447951637593, 0.24789595679729787, 0.24664341449030727, 0.24676001820597515, 0.24819395356435014, 0.2508731900558003, 0.2547108267120748, 0.2596105204643054, 0.26547135136244804, 0.2721917549145026, 0.2796724237745263, 0.2878182746502768, 0.29653966989587066, 0.30575309506695453, 0.31538145893838815, 0.3253541339958996, 0.3356068141043952, 0.34608123978655925, 0.35672482898844127, 0.36749024691151994, 0.3783349468512169, 0.38922071131639996, 0.40011321764814894, 0.4109816452796905, 0.4217983339033298, 0.4325384944529103, 0.44317996894317957, 0.45370303130450057, 0.46409021943564854, 0.474326188480074, 0.48439757636513353, 0.4942928744493066, 0.5040022982692779, 0.5135176555287921, 0.5228322103900226, 0.5319405446782514, 0.5408384177332409, 0.5495226273365995, 0.5579908744538937, 0.566241634516676, 0.5742740377071613, 0.5820877602717677, 0.589682928349112, 0.5970600352140248, 0.6042198722614226, 0.611163473520384, 0.6178920730263188, 0.6244070740039448, 0.6307100285333365, 0.6368026261857003 ], [ 0.24584234764576962, 0.24352183636387398, 0.24266252587722853, 0.24322479687098225, 0.245141601787706, 0.248324464431597, 0.25267037231382333, 0.25806847679445505, 0.26440580318179274, 0.2715715761124747, 0.2794601305668344, 0.2879726173974431, 0.2970178103974997, 0.3065123143044192, 0.3163804097786169, 0.32655369482968405, 0.3369706179776421, 0.3475759559238459, 0.3583202659871596, 0.3691593344220659, 0.38005363894581995, 0.3909678422968585, 0.401870330905249, 0.4127328083029928, 0.4235299474283072, 0.4342391005421588, 0.44484006098413503, 0.45531486797506376, 0.4656476442562582, 0.475824456369437, 0.48583318848366513, 0.4956634224655821, 0.5053063189899538, 0.5147544965926575, 0.5240019074590331, 0.5330437102839116, 0.5418761416757981, 0.5504963883026067, 0.5589024623249371, 0.5670930826934566, 0.5750675646691735, 0.5828257195310926, 0.5903677659326391, 0.5976942538157032, 0.6048060012385763, 0.6117040439592448, 0.6183895971657897, 0.6248640283778853, 0.6311288402659402, 0.6371856619481339 ], [ 0.2419760216749384, 0.23996222321418922, 0.23947064310576682, 0.24044950551766328, 0.24281699207762125, 0.24646883582309762, 0.2512867485348085, 0.2571463276607984, 0.26392351599400937, 0.27149922418131633, 0.27976217729087705, 0.28861031734264647, 0.2979511851876956, 0.3077016716875746, 0.31778743455914793, 0.32814217388421674, 0.33870687460603355, 0.34942906786830746, 0.3602621322620934, 0.3711646431079556, 0.38209977451636995, 0.3930347588877373, 0.40394040820672045, 0.4147906997172754, 0.42556242553120327, 0.4362349022296655, 0.44678973340234707, 0.45721061590987844, 0.46748317969080877, 0.4775948511176083, 0.4875347310040763, 0.4972934800653909, 0.5068632066145606, 0.5162373532751905, 0.5254105812994138, 0.5343786525744589, 0.5431383105196954, 0.5516871618086248, 0.5600235612249709, 0.5681465020302022, 0.5760555140452286, 0.583750571298866, 0.5912320106341445, 0.5985004621480597, 0.6055567918188133, 0.612402056184489, 0.6190374685057932, 0.6254643754902225, 0.6316842433849861, 0.6376986520627949 ], [ 0.23903612449179082, 0.23730385709224808, 0.23714923937050558, 0.2385090516885375, 0.24128764882359738, 0.24536611274356715, 0.25061213420978107, 0.2568890177541685, 0.2640627822872744, 0.2720069968510757, 0.280605516026767, 0.28975356943511127, 0.2993577362863949, 0.3093352740174358, 0.31961314755354076, 0.3301269786673635, 0.34082003293624763, 0.35164229382202744, 0.3625496358150992, 0.37350309252195557, 0.38446821175079204, 0.39541449089076297, 0.40631488783585146, 0.4171454034724084, 0.4278847310635275, 0.438513966269352, 0.44901636978989024, 0.459377173312823, 0.469583418926765, 0.4796238224900578, 0.48948865250465207, 0.4991696176096353, 0.5086597576268674, 0.5179533349323922, 0.5270457246126212, 0.5359333032743977, 0.5446133374501734, 0.5530838732587103, 0.561343629367879, 0.569391895403084, 0.5772284378091683, 0.5848534148667861, 0.592267302146013, 0.5994708292047431, 0.6064649278530573, 0.6132506918439211, 0.619829347442102, 0.6262022339847626, 0.6323707932883288, 0.6383365665794458 ], [ 0.23710553023337871, 0.23562679881583243, 0.23577383218619252, 0.23747309750174933, 0.24061656557187483, 0.24507229769556133, 0.250695628791998, 0.25733912211249127, 0.26486019607060046, 0.2731261077299978, 0.28201656070130443, 0.29142450340916454, 0.3012557410525576, 0.31142789532494397, 0.3218690984215016, 0.3325166614810325, 0.3433158419657507, 0.35421875738784786, 0.3651834496449245, 0.3761730853982462, 0.38715527350215945, 0.39810148267142614, 0.40898654638068915, 0.41978824496587214, 0.4304869563431377, 0.4410653669525797, 0.451508234101695, 0.4618021904319411, 0.47193558116337514, 0.48189832525762083, 0.49168179265973244, 0.5012786911988735, 0.5106829583601497, 0.5198896547998486, 0.5288948580099387, 0.5376955558362438, 0.5462895405569772, 0.5546753049144799, 0.562851941875942, 0.5708190500142939, 0.578576646297247, 0.5861250878057528, 0.5934650035275169, 0.6005972369373217, 0.6075227996270577, 0.6142428358197253, 0.6207585972193729, 0.6270714273305621, 0.6331827541364164, 0.6390940898566996 ], [ 0.2362529610164723, 0.23499780782641322, 0.2354076081147034, 0.23740004203978757, 0.24085660804619383, 0.24563442911356814, 0.25157851728579056, 0.258532497587063, 0.26634664668548047, 0.2748829799478254, 0.2840177451245845, 0.2936419798656901, 0.3036608287643536, 0.3139922036436417, 0.3245652040293566, 0.3353185541958585, 0.34619918756302714, 0.3571610252277919, 0.36816394768730365, 0.37917293734230306, 0.390157363971116, 0.4010903879048885, 0.4119484607164842, 0.422710907948308, 0.43335958165872873, 0.44387857235797057, 0.4542539707119225, 0.46447366977906707, 0.4745271989507522, 0.4844055814352493, 0.4941012081320405, 0.5036077220307335, 0.5129199087183482, 0.5220335900502621, 0.530945519408303, 0.5396532781397023, 0.5481551736855392, 0.5564501405443588, 0.5645376455828031, 0.5724175993281395, 0.5800902747992754, 0.5875562352012721, 0.5948162714727083, 0.6018713502818759, 0.60872257265695, 0.6153711430402791, 0.6218183482027497, 0.6280655451581408, 0.6341141569894015, 0.6399656753425413 ], [ 0.23652672967732838, 0.2354641710334864, 0.2360955071328141, 0.23833148282102307, 0.24204541881414693, 0.2470859449070499, 0.25329007129558817, 0.2604944787350473, 0.2685438592124632, 0.2772960824851665, 0.2866246135482443, 0.2964189021937486, 0.30658348977474825, 0.31703645084754023, 0.32770760839150914, 0.3385367919936971, 0.34947227638836675, 0.36046944883097903, 0.371489702270328, 0.3824995271619938, 0.3934697679212251, 0.4043750122477806, 0.41519308723974835, 0.4259046421012238, 0.436492801904344, 0.44694288000492094, 0.4572421386319576, 0.46737958835902477, 0.4773458180577547, 0.48713284782572547, 0.49673399841319205, 0.5061437718627224, 0.5153577393637819, 0.524372433617474, 0.5331852442097837, 0.5417943155273919, 0.5501984475675419, 0.5583970005700358, 0.5663898047373689, 0.5741770764300077, 0.5817593421622685, 0.5891373715218695, 0.5963121198365168, 0.6032846810556161, 0.6100562509414147, 0.6166281003024955, 0.6230015576772312, 0.6291780006022557, 0.6351588543910301, 0.6409455972041903 ], [ 0.23794990586305056, 0.23704891409251794, 0.23785963330923054, 0.24028793536195964, 0.2442015040285347, 0.24944314937697792, 0.2558443768510582, 0.2632370293174883, 0.2714618260677546, 0.28037359956936203, 0.2898436908525889, 0.29976025735694195, 0.3100272636083139, 0.32056279104570046, 0.3312971196847666, 0.3421708615946822, 0.35313329110534386, 0.3641409246011345, 0.37515634812111465, 0.38614726416113954, 0.3970857203052691, 0.4079474835729058, 0.41871152996350613, 0.429359625139975, 0.4398759777885008, 0.45024695137214293, 0.4604608228585724, 0.47050757892109, 0.4803787414882538, 0.49006721566369066, 0.4995671541411981, 0.5088738333755601, 0.5179835379311319, 0.5268934505685717, 0.5356015466809341, 0.5441064925953539, 0.5524075479741832, 0.5605044730593273, 0.5683974418055495, 0.5760869620591501, 0.5835738038862951, 0.5908589369757797, 0.5979434777724304, 0.6048286466767259, 0.6115157353072913, 0.6180060834939997, 0.6243010653726042, 0.6304020837029717, 0.636310571341617, 0.6420279986695064 ], [ 0.24051773330793152, 0.23974819354173013, 0.24069672499034964, 0.24326645531960553, 0.24732204817758927, 0.2527032324662722, 0.25923855008190616, 0.2667571353260014, 0.2750973541344566, 0.28411210867956455, 0.29367127034408225, 0.30366199544445055, 0.31398769555512185, 0.3245663028560092, 0.3353282900627281, 0.34621473344256337, 0.3571755723437315, 0.3681681250587732, 0.37915586371677057, 0.3901074213660081, 0.4009957933220996, 0.4117976945452845, 0.4224930396689833, 0.43306451873764074, 0.4434972477697451, 0.45377847813995137, 0.46389735236805973, 0.4738446964478615, 0.4836128406803081, 0.4931954623938717, 0.5025874451503411, 0.5117847501616634, 0.5207842967205967, 0.5295838494641552, 0.5381819112095099, 0.5465776208888433, 0.5547706567324151, 0.5627611452917328, 0.5705495771568739, 0.578136730316703, 0.5855236020618639, 0.5927113501680811, 0.5997012438547858, 0.606494624724168, 0.6130928775786758, 0.6194974107164332, 0.6257096450345493, 0.6317310110444818, 0.6375629527306925, 0.6432069370679566 ], [ 0.24419774755809381, 0.2435313044179568, 0.24457807935984963, 0.24724050205177145, 0.2513827329740582, 0.2568440558625779, 0.2634524996691159, 0.2710365512211931, 0.27943380077472363, 0.2884963106711545, 0.2980931405018599, 0.3081107538292088, 0.3184520577530962, 0.32903470631315845, 0.33978912739512157, 0.3506565679889298, 0.36158732033517227, 0.37253919785574063, 0.38347627081700647, 0.39436783954103055, 0.4051876093222703, 0.4159130288602732, 0.42652475758799613, 0.4370062331454715, 0.4473433163015877, 0.4575239958474653, 0.46753814006988303, 0.47737728444825434, 0.4870344474485399, 0.4965039679747377, 0.5057813593938935, 0.5148631762109589, 0.5237468905050621, 0.5324307761695575, 0.5409137998169848, 0.5491955178977376, 0.5572759801201089, 0.5651556396394762, 0.5728352707067029, 0.5803158945419705, 0.5875987141503368, 0.5946850586454406, 0.6015763374266594, 0.6082740042917497, 0.6147795312883544, 0.6210943918370454, 0.6272200524143869, 0.6331579718805093, 0.6389096073804239, 0.6444764256458655 ], [ 0.24893251748130701, 0.24834323521614596, 0.24945186681650902, 0.252161978957696, 0.256339493388741, 0.2618256353774972, 0.26845016139000905, 0.2760428205973922, 0.2844419163401084, 0.29349972704558674, 0.30308516456044915, 0.3130843404536563, 0.32339975182832936, 0.3339486958987192, 0.34466136648802737, 0.35547893099777755, 0.3663517593742081, 0.37723788439520944, 0.38810171258897025, 0.39891297062881903, 0.40964585574354284, 0.42027835400021823, 0.43079169217463953, 0.4411698937727516, 0.45139941539237954, 0.46146884483150497, 0.4713686466726569, 0.48109094443685574, 0.4906293309447265, 0.49997870045197373, 0.5091350976316914, 0.5180955796996773, 0.5268580890094092, 0.535421334324979, 0.5437846797274742, 0.551948040721823, 0.5599117875814842, 0.5676766562948128, 0.5752436676633378, 0.5826140551599006, 0.589789202101647, 0.5967705885520659, 0.603559748162826, 0.6101582349257461, 0.616567599551643, 0.6227893749470343, 0.6288250700385689, 0.6346761710110685, 0.6403441488862643, 0.6458304722794154 ], [ 0.2546444321743821, 0.2541092216943949, 0.2552473330463418, 0.25796500459184, 0.26213182341421326, 0.26759298730273817, 0.27418192043531286, 0.2817313264490886, 0.2900815797541634, 0.29908617558930994, 0.30861454373576236, 0.31855282317242484, 0.32880325400226196, 0.33928276339873253, 0.3499211857161504, 0.36065941577142924, 0.37144767480598406, 0.3822439793184743, 0.393012842745553, 0.4037242036019843, 0.41435255485274697, 0.4248762421518469, 0.43527689845707, 0.44553898601000974, 0.4556494215142021, 0.46559726524180567, 0.4753734591116001, 0.4849706022989631, 0.4943827556917672, 0.5036052686285213, 0.5126346230012465, 0.521468291107988, 0.5301046046936551, 0.5385426334817633, 0.5467820722045065, 0.5548231356980612, 0.5626664620498067, 0.570313024068903, 0.5777640495089794, 0.5850209505139109, 0.5920852627017461, 0.5989585941684128, 0.6056425845043953, 0.6121388736968627, 0.6184490805581887, 0.6245747900981159, 0.6305175490563382, 0.6362788686463632, 0.6418602334375275, 0.647263115223567 ], [ 0.2612416393435234, 0.2607404458508603, 0.26188010594348055, 0.26457072166062606, 0.26868703525437393, 0.27407983527794316, 0.28058780047849796, 0.28804801917080947, 0.2963041310699233, 0.30521177223764195, 0.31464154633488706, 0.32448003451617513, 0.33462943392619904, 0.345006360147518, 0.35554023453389705, 0.3661715521104753, 0.3768502156496258, 0.387534036484653, 0.39818744315888877, 0.408780401331863, 0.41928752728321717, 0.4296873678155192, 0.4399618171289403, 0.4500956431260396, 0.4600760993942821, 0.4698926034243775, 0.47953646569370795, 0.4890006577403097, 0.4982796101964509, 0.5073690339985405, 0.5162657597492266, 0.5249675915885221, 0.5334731730240325, 0.541781863040238, 0.5498936214944898, 0.5578089033374836, 0.5655285615835915, 0.5730537592130034, 0.5803858903247673, 0.587526510891531, 0.5944772794099579, 0.6012399076145944, 0.6078161212480203, 0.6142076306769294, 0.62041611093166, 0.6264431905425841, 0.6322904483645592, 0.6379594174306965, 0.6434515947658651, 0.6487684560218479 ], [ 0.2686241865295958, 0.26813996813943264, 0.26925776521505507, 0.2718923933156835, 0.27592482213237185, 0.2812126269837512, 0.28760095886112486, 0.2949324388690403, 0.30305498110078477, 0.31182719008177257, 0.3211214737024632, 0.3308252942601699, 0.34084107451902423, 0.3510852460532241, 0.36148683601495085, 0.3719858806005755, 0.38253185432394876, 0.39308222469535536, 0.40360118417616764, 0.41405857299641496, 0.4244289835384113, 0.43469102525675424, 0.4448267247980275, 0.45482103616777464, 0.46466143834604035, 0.4743376012683747, 0.48384110472149255, 0.4931651980121047, 0.5023045910790782, 0.5112552700122412, 0.5200143317703296, 0.5285798343350533, 0.5369506596746612, 0.545126387780742, 0.5531071807315707, 0.5608936762553758, 0.5684868906394731, 0.5758881310731998, 0.5830989176394179, 0.5901209151970106, 0.5969558753424832, 0.6036055885211422, 0.6100718461965102, 0.6163564127996549, 0.622461006985506, 0.6283872915365618, 0.6341368710883271, 0.6397112967149094, 0.6451120763137189, 0.6503406896682827 ], [ 0.27668958856892334, 0.27620813948981354, 0.2772849699682314, 0.27984014895354525, 0.2837615633402368, 0.2889143771919724, 0.2951510777711246, 0.3023206869521066, 0.3102762083553725, 0.3188799311797315, 0.3280066551991133, 0.3375451710214837, 0.3473984370529624, 0.3574828880698453, 0.3677272421161863, 0.3780710825447024, 0.38846340475529484, 0.39886124427795966, 0.40922844780963885, 0.41953461068755143, 0.42975418013777533, 0.4398657100429101, 0.44985124673382276, 0.4596958237978669, 0.46938704512284085, 0.478914737974293, 0.48827066094110955, 0.49744825456281144, 0.506442425114607, 0.5152493542804175, 0.5238663292900022, 0.5322915895771041, 0.5405241871873101, 0.548563859079933, 0.5564109101715743, 0.5640661064935829, 0.5715305782075102, 0.5788057324625292, 0.585893176205181, 0.5927946490823354, 0.5995119665309641, 0.6060469730414809, 0.6124015054334515, 0.6185773658111722, 0.6245763036883524, 0.6304000066002737, 0.6360500983701225, 0.6415281440725505, 0.6468356606477726, 0.6519741320666743 ], [ 0.2853373390256823, 0.28484701773872284, 0.28586768902400744, 0.2883249552921431, 0.2921139859253833, 0.2971079941310102, 0.30316735142905754, 0.310148087809673, 0.31790892079668903, 0.3263164204028856, 0.3352483079936259, 0.3445951404037056, 0.3542607465705127, 0.3641617973492697, 0.37422684239627657, 0.3843950758027473, 0.3946150172741318, 0.40484323014395784, 0.41504314601939035, 0.4251840286451604, 0.43524008476743165, 0.4451897147378574, 0.45501488767042225, 0.46470062285255603, 0.474234559003252, 0.4836065945354255, 0.4928085843123218, 0.5018340809198018, 0.510678110886181, 0.5193369784141803, 0.5278080909940656, 0.5360898027485819, 0.5441812725500407, 0.5520823348869418, 0.5597933821790438, 0.5673152577780525, 0.5746491592729208, 0.5817965519668895, 0.5887590925281178, 0.5955385628560496, 0.6021368141701379, 0.6085557212344593, 0.6147971464990438, 0.6208629137833687, 0.6267547909649483, 0.6324744809798174, 0.6380236203030399, 0.6434037839645282, 0.6486164960740384, 0.6536632447821069 ], [ 0.2944721867713057, 0.29396360345551503, 0.29491634433977465, 0.29726162164820324, 0.3009019948339851, 0.30571890853992734, 0.31158090018716883, 0.3183513856625795, 0.3258952428065099, 0.33408379679350697, 0.34279815108880923, 0.3519310413778797, 0.36138750974377165, 0.37108472584502783, 0.3809512540977404, 0.39092601037152946, 0.4009570891658412, 0.4110005846194041, 0.4210194814537325, 0.4309826563594383, 0.44086400547187243, 0.4506416975554881, 0.46029754320853694, 0.4698164658617179, 0.4791860589615953, 0.4883962142641997, 0.4974388077292356, 0.5063074315076179, 0.514997162587366, 0.5235043606004042, 0.5318264889983748, 0.539961955247828, 0.5479099668790144, 0.5556704011696694, 0.563243686982854, 0.5706306978334511, 0.5778326556563174, 0.5848510450129838, 0.5916875376240593, 0.5983439271705548, 0.6048220742881827, 0.6111238616025004, 0.617251158537097, 0.6232057954883259, 0.6289895468132507, 0.6346041219354562, 0.6400511637467269, 0.6453322533794228, 0.6504489203500708, 0.6554026570321845 ], [ 0.3040062341212172, 0.3034719382200515, 0.3043478909765568, 0.3065708404873755, 0.31005065118103986, 0.3146769674458524, 0.3203265610994648, 0.3268704188850628, 0.33417986678960465, 0.3421313421689659, 0.3506097155657672, 0.3595102760807493, 0.36873961379635833, 0.3782156742482109, 0.3878672483604132, 0.39763312095448583, 0.40746105026489143, 0.41730670134703113, 0.4271326137490481, 0.43690725044372586, 0.44660415066424114, 0.4562011927429442, 0.46567996270876816, 0.47502521865616903, 0.48422443835839557, 0.4932674371383466, 0.5021460437889967, 0.5108538237576457, 0.5193858404808487, 0.5277384474375499, 0.5359091050419377, 0.5438962178602855, 0.5516989887864736, 0.5593172877518332, 0.566751533291294, 0.57400258585931, 0.5810716522064926, 0.5879602004121198, 0.59466988533841, 0.6012024843491297, 0.6075598431361825, 0.6137438314414795, 0.619756308364676, 0.6255990968263724, 0.6312739666255187, 0.6367826254015843, 0.6421267166968643, 0.6473078242199126, 0.6523274813429697, 0.6571871848273876 ], [ 0.31386005136488393, 0.3132942451876734, 0.3140869887706854, 0.31618038783556235, 0.3194913910411306, 0.3239176549270534, 0.32934409159136063, 0.33564928834046537, 0.3427111713399995, 0.350411538967977, 0.3586393367401274, 0.36729273498170556, 0.37628018635590654, 0.3855206900230472, 0.39494349076176327, 0.40448741440383784, 0.41410000129179075, 0.42373655786760434, 0.4333592090118868, 0.4429360030606492, 0.45244009808145036, 0.4618490413731738, 0.4711441431274601, 0.48030993849292924, 0.4893337287416496, 0.49820519086074594, 0.5069160449034747, 0.5154597692579587, 0.5238313552255385, 0.5320270936785866, 0.5400443879257951, 0.5478815881590194, 0.5555378439444869, 0.5630129721367347, 0.5703073383372685, 0.5774217506019867, 0.5843573645368944, 0.5911155992275476, 0.597698063641776, 0.6041064932455432, 0.6103426965961642, 0.6164085116429235, 0.6223057713891482, 0.6280362784675522, 0.6336017880662587, 0.6390039985286188, 0.6442445488458199, 0.6493250221751733, 0.6542469544543312, 0.6590118471456929 ], [ 0.32396305298695455, 0.3233613441808516, 0.32406647524598997, 0.3260256637668505, 0.32916263265021584, 0.3333827558092728, 0.3385788731807366, 0.3446370821258242, 0.35144194873400153, 0.35888078514031657, 0.3668468450458363, 0.3752414563741981, 0.38397521963182796, 0.3929684549732213, 0.40215109271134836, 0.4114621863424235, 0.42084919746447147, 0.4302671679476921, 0.43967786233632544, 0.44904893577444194, 0.45835316081599276, 0.4675677301870004, 0.4766736411977559, 0.48565516011184606, 0.4944993604140799, 0.503195726732821, 0.5117358154662432, 0.5201129633965837, 0.528322036354958, 0.5363592110446824, 0.5442217842598455, 0.5519080048335051, 0.559416924650555, 0.5667482659305404, 0.5739023027129045, 0.5808797550615975, 0.5876816949553074, 0.5943094631559975, 0.6007645965664219, 0.6070487657127522, 0.6131637220377654, 0.6191112546797435, 0.6248931563582262, 0.6305111979052009, 0.6359671108828538, 0.6412625776287094, 0.6463992279758166, 0.6513786418174489, 0.656202356628146, 0.6608718790192905 ], [ 0.3342533703026335, 0.33361256645676396, 0.3342273476105461, 0.33604975774180673, 0.3390099304319281, 0.34302059356732795, 0.3479822207223032, 0.35378823921263797, 0.36032980483045635, 0.3674998134770855, 0.37519599079497473, 0.38332304599828476, 0.3917939776829589, 0.4005306757836706, 0.40946398305825593, 0.4185333730947724, 0.42768638087360933, 0.43687789491863094, 0.4460693927113921, 0.4552281765394291, 0.4643266467370294, 0.4733416336450171, 0.48225379821104747, 0.49104710331945406, 0.4997083529398577, 0.5082267933128134, 0.5165937690400112, 0.5248024266237576, 0.5328474583272501, 0.5407248799264456, 0.5484318368014213, 0.5559664337400291, 0.5633275847164342, 0.5705148797131878, 0.5775284663519459, 0.5843689446747536, 0.5910372738747824, 0.5975346901188731, 0.6038626348446929, 0.6100226930657233, 0.6160165412920855, 0.6218459046894788, 0.6275125230672659, 0.6330181252243965, 0.6383644111017374, 0.6435530411032039, 0.648585631865838, 0.6534637576884698, 0.6581889567756928, 0.6627627414221974 ], [ 0.3446774126458875, 0.34399535528202274, 0.3445184287148714, 0.3462031981886619, 0.34898581690151365, 0.3527859638256047, 0.35751139904994406, 0.3630626356620383, 0.36933729896378803, 0.37623386934357955, 0.383654645637333, 0.39150789073959563, 0.3997092137470917, 0.4081822990487194, 0.41685911710366214, 0.4256797526321172, 0.4345919724299346, 0.4435506343589622, 0.4525170164862453, 0.4614581240768159, 0.4703460138570091, 0.47915716026052, 0.48787187719625813, 0.4964738008372134, 0.5049494334803791, 0.5132877451068685, 0.5214798273637038, 0.5295185938578125, 0.5373985205483564, 0.5451154203775085, 0.5526662468944009, 0.5600489223625954, 0.5672621866026505, 0.574305463546718, 0.5811787431341364, 0.5878824767355324, 0.5944174847499518, 0.6007848753750349, 0.6069859738101202, 0.6130222613258574, 0.6188953237334586, 0.624606808825375, 0.6301583923507565, 0.6355517520470968, 0.64078854918678, 0.6458704170252605, 0.6507989554662068, 0.6555757311960215, 0.6602022824917595, 0.6646801278765228 ], [ 0.355189257176468, 0.3544646892762794, 0.3548958478307863, 0.35644350843184136, 0.35904944369369446, 0.3626398624744803, 0.3671294332629019, 0.37242546714295405, 0.37843188593871974, 0.3850526986214014, 0.39219482372856634, 0.399770202111885, 0.40769722739124153, 0.41590157573570563, 0.4243165440616925, 0.43288301235233295, 0.44154913848209476, 0.45026987885547953, 0.45900641002660025, 0.467725508373183, 0.47639892864784833, 0.48500280864765116, 0.49351711652150043, 0.5019251491947418, 0.5102130846664734, 0.5183695870994836, 0.5263854612539377, 0.5342533515381414, 0.5419674804477327, 0.5495234211864707, 0.5569178996135792, 0.5641486212004695, 0.5712141193001095, 0.5781136216639291, 0.5848469327365561, 0.5914143297887536, 0.5978164713978286, 0.6040543171462953, 0.6101290576846085, 0.6160420544979351, 0.6217947888394694, 0.6273888193547378, 0.6328257479351381, 0.638107193317045, 0.6432347718973631, 0.6482100851784933, 0.6530347131950113, 0.6577102132189302, 0.6622381229964068, 0.6666199677404355 ], [ 0.36574995953764167, 0.36498241968158396, 0.36532242500993245, 0.36673465395927085, 0.36916610160455815, 0.37254908204625936, 0.3768047792534261, 0.3818469869481794, 0.387585712008838, 0.39393039088875753, 0.4007925614867221, 0.4080879230699835, 0.4157377905128642, 0.42367000033680413, 0.4318193550636894, 0.4401277031210342, 0.4485437492286798, 0.45702267992901885, 0.4655256748007458, 0.4740193588318418, 0.4824752372442118, 0.49086914173262297, 0.4991807069818786, 0.5073928884608547, 0.5154915266514332, 0.5234649587494886, 0.5313036761431962, 0.5390000243177134, 0.5465479409786701, 0.5539427278996698, 0.5611808520965964, 0.568259772270633, 0.5751777869350707, 0.5819339011695932, 0.5885277094747133, 0.5949592926914012, 0.6012291273837942, 0.6073380064439816, 0.6132869699630134, 0.6190772456232663, 0.624710198010086, 0.6301872863240815, 0.6355100300101724, 0.6406799818168228, 0.645698707770128, 0.6505677735032241, 0.6552887363313467, 0.6598631424147597, 0.6642925283120701, 0.6685784261996627 ], [ 0.37632684021452945, 0.3755165765734375, 0.375767013949535, 0.3770464353846468, 0.3793066727253862, 0.3824857273246844, 0.3865109025567553, 0.39130214408424224, 0.39677530555950413, 0.4028451146273473, 0.409427688947007, 0.41644252769409373, 0.4238139686506564, 0.43147214848223886, 0.43935353315455916, 0.44740109899766883, 0.4555642465543449, 0.4637985231279772, 0.472065219387076, 0.48033089313789024, 0.4885668612234904, 0.49674868949912004, 0.5048557014816036, 0.5128705187222374, 0.5207786401324382, 0.5285680632043637, 0.5362289470694624, 0.5437533153743858, 0.5511347957914158, 0.5583683924146984, 0.5654502871528126, 0.5723776663743446, 0.5791485693876621, 0.58576175575656, 0.5922165889088181, 0.5985129339417242, 0.6046510679381877, 0.6106316014613462, 0.616455410185582, 0.6221235758453872, 0.6276373358432966, 0.6329980409606056, 0.6382071206684555, 0.643266055552159, 0.6481763563486775, 0.6529395490661071, 0.657557165614016, 0.6620307393324983, 0.6663618047722737, 0.6705519010529137 ], [ 0.3868927757023739, 0.3860406739387531, 0.3862038344278349, 0.3873538593460492, 0.3894470478157639, 0.39242668371536954, 0.39622579877663067, 0.4007701537700623, 0.4059811933865833, 0.41177877355493353, 0.41808351985527487, 0.42481873891350397, 0.4319118608917354, 0.4392954345671333, 0.44690772525991873, 0.4546929811989171, 0.4626014385336386, 0.4705891323083384, 0.47861757324990856, 0.48665334054159154, 0.49466763054109686, 0.5026357917324988, 0.5105368676765324, 0.5183531626019351, 0.5260698385954049, 0.5336745490005748, 0.5411571094593347, 0.5485092058287168, 0.555724136790428, 0.5627965881608195, 0.5697224355515759, 0.5764985719955026, 0.5831227573313128, 0.5895934864521551, 0.5959098739000563, 0.6020715526843212, 0.6080785855820491, 0.6139313875204697, 0.6196306579304072, 0.6251773221917165, 0.6305724814646864, 0.6358173703199949, 0.6409133216506205, 0.6458617383806639, 0.6506640714877283, 0.6553218038367468, 0.6598364392927395, 0.6642094965458225, 0.6684425070502847, 0.6725370164557718 ], [ 0.397425507993974, 0.39653302820632796, 0.39661181052789674, 0.39763650548760865, 0.3995675289747052, 0.40235306005056737, 0.4059314783854096, 0.41023402370267226, 0.41518746594849254, 0.420716607037793, 0.42674648271767485, 0.4332041855643647, 0.44002027866451215, 0.4471298086644431, 0.4544729544073555, 0.46199536363453797, 0.46964823702641595, 0.47738821863637004, 0.48517714693996994, 0.4929817133309707, 0.5007730664925473, 0.5085263927185093, 0.5162204946045259, 0.5238373839123684, 0.531361898952412, 0.5387813525134069, 0.5460852130950906, 0.553264819829796, 0.5603131298615616, 0.5672244959363348, 0.5739944714079935, 0.5806196396622042, 0.5870974650021452, 0.5934261622433324, 0.5996045825626116, 0.6056321134873199, 0.6115085912563804, 0.6172342241087814, 0.6228095253390923, 0.6282352551947925, 0.6335123708728447, 0.6386419840044901, 0.6436253251024499, 0.6484637144906245, 0.6531585392512552, 0.6577112357170262, 0.6621232770141364, 0.6663961651345783, 0.6705314269882058, 0.6745306138628248 ], [ 0.4079069779111403, 0.40697609686344416, 0.4069739229802973, 0.40787789992387236, 0.4096522301855904, 0.4122496204326337, 0.4156134321884592, 0.419680053611345, 0.4243813098669546, 0.4296467531786198, 0.43540571137210776, 0.4415890170632495, 0.4481303812502143, 0.4549674100132106, 0.46204228889934545, 0.4693021760997431, 0.4766993538233829, 0.48419118913416404, 0.4917399528824007, 0.49931253997343744, 0.5068801274683229, 0.514417799916831, 0.5219041645491211, 0.5293209728913428, 0.5366527602104894, 0.5438865099843073, 0.5510113472938513, 0.5580182625598243, 0.5648998652752666, 0.5716501662053319, 0.5782643858122627, 0.5847387863124149, 0.5910705246872646, 0.5972575240708192, 0.6032983611548903, 0.609192167537778, 0.6149385432499042, 0.6205374809914774, 0.6259892998916938, 0.6312945878334514, 0.636454151575914, 0.6414689740485102, 0.6463401782868469, 0.651068997539146, 0.6556567510982255, 0.6601048254166647, 0.6644146600494696, 0.6685877379466492, 0.672625579594045, 0.6765297404797515 ], [ 0.41832268486519075, 0.41735584076786053, 0.4172765807748513, 0.41806490222873044, 0.4196884848124522, 0.4221042161658551, 0.4252600902402041, 0.42909732227994174, 0.43355252285827955, 0.43855979038503606, 0.4440526111816878, 0.449965491833003, 0.4562352839977044, 0.46280219278793805, 0.4696104837837514, 0.47660892005879224, 0.48375096982997084, 0.49099482878017836, 0.49830330025845126, 0.5056435728934586, 0.5129869298933454, 0.5203084183888164, 0.5275865012680803, 0.5348027084740764, 0.5419412999230497, 0.5489889481613147, 0.5559344456152004, 0.5627684387616289, 0.569483189674769, 0.5760723640933939, 0.5825308443057692, 0.5888545646691019, 0.5950403673816536, 0.6010858761305817, 0.6069893853817324, 0.6127497633047619, 0.6183663665950704, 0.6238389657302551, 0.6291676794596603, 0.6343529175556161, 0.6393953310454401, 0.644295769290977, 0.6490552433883381, 0.6536748954285885, 0.6581559731963564, 0.662499809894761, 0.6667078084789395, 0.6707814301638764, 0.6747221866514249, 0.6785316356016645 ], [ 0.4286610755794104, 0.42766111357931025, 0.42750901676345215, 0.4281871122550919, 0.42966626807085156, 0.4319072274921992, 0.4348622854585533, 0.4384771745576544, 0.442693024582514, 0.4474482715625946, 0.45268041536934744, 0.4583275541420546, 0.4643296538661415, 0.4706295386087033, 0.47717360882898857, 0.48391231091582093, 0.49080039083244226, 0.4977969693242063, 0.5048654767257167, 0.5119734831854176, 0.5190924561710669, 0.5261974722855824, 0.5332669053446312, 0.5402821077789942, 0.5472270979948767, 0.554088262496836, 0.5608540784031946, 0.5675148594539428, 0.5740625266790599, 0.5804904034914802, 0.586793034014233, 0.5929660228638926, 0.5990058943138863, 0.6049099686795606, 0.6106762538388141, 0.6163033499737741, 0.6217903658464312, 0.6271368451698472, 0.6323427018808834, 0.6374081633426587, 0.6423337206942481, 0.6471200857162733, 0.6517681536932196, 0.6562789718291366, 0.6606537128176422, 0.6648936531859825, 0.6690001560330753, 0.672974657769529, 0.6768186584497613, 0.6805337152676985 ], [ 0.43891296553927794, 0.4378830828229568, 0.4376627128093317, 0.43823630359430993, 0.43957764263832066, 0.4416510246394191, 0.4444127326741348, 0.4478127201302908, 0.4517963759822494, 0.4563062640571883, 0.46128374494134106, 0.46667041293141037, 0.4724093058409672, 0.47844586919426435, 0.4847286761829945, 0.4912099196749836, 0.49784570243463305, 0.5045961570641256, 0.5114254288594916, 0.5183015537554625, 0.5251962607114583, 0.5320847240333135, 0.5389452868271657, 0.545759172474053, 0.5525101969831341, 0.5591844915001193, 0.5657702412001674, 0.572257444303896, 0.5786376930014675, 0.5849039766065388, 0.5910505062274365, 0.5970725595688592, 0.6029663440942925, 0.6087288766210956, 0.614357877426842, 0.6198516770643728, 0.6252091342701932, 0.6304295635707465, 0.6355126714167232, 0.640458499887288, 0.6452673771914024, 0.6499398743451711, 0.6544767675201518, 0.6588790056389384, 0.6631476828448618, 0.6672840154975653, 0.6712893233516305, 0.6751650145675246, 0.6789125741887994, 0.6825335557017995 ], [ 0.449070998380838, 0.4480146884031744, 0.44773086111141414, 0.44820589125798144, 0.44941623600940384, 0.4513294577966313, 0.45390553365251296, 0.45709835536770677, 0.4608573190229006, 0.4651289076620483, 0.4698581847346509, 0.4749901352244928, 0.48047081275023223, 0.48624827152109074, 0.4922732798479733, 0.498499825846901, 0.5048854357189948, 0.5113913308158052, 0.5179824522092067, 0.5246273814342087, 0.531298184216098, 0.5379702010015531, 0.5446218045349034, 0.5512341409711832, 0.5577908673912763, 0.564277895272088, 0.5706831465759703, 0.5769963267064017, 0.5832087166351106, 0.5893129850131783, 0.5953030199899918, 0.6011737797234102, 0.606921160112112, 0.6125418780570201, 0.6180333685068412, 0.6233936936125776, 0.6286214624641051, 0.6337157600726981, 0.6386760844687507, 0.6435022909830708, 0.6481945429589093, 0.6527532682918588, 0.6571791213122404, 0.6614729496095586, 0.665635765453678, 0.6696687214970609, 0.673573090452085, 0.6773502484329137, 0.6810016616381831, 0.6845288760339122 ], [ 0.4591291494463069, 0.45805014527789084, 0.45770786902676325, 0.4580904416097326, 0.45917675836831706, 0.4609373855207811, 0.4633357182549815, 0.466329318963958, 0.46987134796284247, 0.47391200207968814, 0.478399887095996, 0.48328326561730395, 0.48851113986500005, 0.4940341466808624, 0.4998052579187531, 0.5057802922707176, 0.5119182540031507, 0.5181815201385153, 0.5245359007168624, 0.5309505974857905, 0.537398085316988, 0.5438539384121164, 0.5502966204355138, 0.556707254488731, 0.5630693856142875, 0.5693687454848136, 0.5755930262259571, 0.5817316680049498, 0.5877756631149512, 0.5937173777896477, 0.5995503918628033, 0.6052693555996324, 0.610869862520051, 0.6163483367548583, 0.6217019333729071, 0.6269284501425636, 0.6320262493021575, 0.6369941880761981, 0.6418315568584632, 0.6465380241680044, 0.6511135876544579, 0.6555585305751297, 0.6598733832832873, 0.6640588893537523, 0.668115976030014, 0.6720457287102314, 0.6758493692025199, 0.6795282374780709, 0.6830837766391942, 0.6865175208031565 ], [ 0.4690822800213783, 0.4679844971746927, 0.46758891472278225, 0.46788523238608754, 0.46885456934856384, 0.4704702504580447, 0.47269883108376093, 0.47550129109313277, 0.4788343221473238, 0.4826516339881564, 0.48690521338427567, 0.49154648198245027, 0.496527314276548, 0.5018008922264101, 0.5073223871299848, 0.5130494711270744, 0.5189426696849103, 0.5249655725221242, 0.5310849239170843, 0.5372706146472245, 0.5434955974171254, 0.5497357460479969, 0.5559696763598814, 0.5621785439447137, 0.5683458311858639, 0.5744571331334348, 0.5804999493325439, 0.5864634865069023, 0.5923384751613944, 0.598117001691466, 0.603792356456807, 0.6093588974592491, 0.6148119287177013, 0.6201475921096933, 0.6253627713026082, 0.6304550063832336, 0.6354224178715516, 0.6402636389390715, 0.6449777548151071, 0.6495642485341295, 0.6540229523377225, 0.658354004185156, 0.6625578089412679, 0.6666350038971479, 0.6705864283388284, 0.674413096914705, 0.6781161765678722, 0.6816969667998207, 0.685156883021858, 0.6884974427348793 ], [ 0.4789257482465013, 0.47781322760450895, 0.47736956023361143, 0.4775858697369868, 0.478445300980682, 0.47992371004021706, 0.48199057159204034, 0.4846100443197177, 0.4877421287444152, 0.491343852221731, 0.4953704218114206, 0.4997762958279872, 0.5045161373520083, 0.5095456261192385, 0.514822117603747, 0.5203051487931971, 0.5259567985788217, 0.5317419166910826, 0.5376282388298176, 0.5435864073706066, 0.5495899171715612, 0.5556150049697437, 0.5616404990298721, 0.5676476434220907, 0.5736199088286169, 0.5795427993144721, 0.5854036621894408, 0.5911915060300914, 0.596896830173539, 0.6025114675574736, 0.6080284416580467, 0.6134418374456642, 0.6187466857044233, 0.6239388597037182, 0.6290149830280924, 0.6339723473224105, 0.6388088387557584, 0.6435228721156759, 0.6481133315865015, 0.6525795174196031, 0.6569210978526623, 0.6611380657686907, 0.665230699696467, 0.6691995288395973, 0.6730453018815101, 0.6767689593505304, 0.6803716093463209, 0.6838545064307548, 0.6872190334772642, 0.6904666862572955 ], [ 0.4886550814450231, 0.4875319330860861, 0.48704542704560205, 0.4871879676523013, 0.4879445424504286, 0.4892933280304264, 0.4912064937618708, 0.4936511525537623, 0.4965904018448904, 0.4999843975558723, 0.503791408114176, 0.5079688037458586, 0.5124739465943943, 0.5172649584567888, 0.5223013538017243, 0.527544535355715, 0.5329581573664643, 0.5385083674558633, 0.5441639417908969, 0.5498963303356409, 0.5556796295059608, 0.5614904989713568, 0.5673080379692357, 0.5731136346144584, 0.5788907995516335, 0.5846249931063298, 0.5903034529899668, 0.5959150277012714, 0.6014500191054055, 0.6069000362887985, 0.6122578616874405, 0.617517329654649, 0.6226732170447128, 0.6277211450071706, 0.6326574909754055, 0.6374793097548789, 0.6421842626350728, 0.6467705535331134, 0.6512368712990341, 0.6555823374507829, 0.6598064587447845, 0.6639090841134507, 0.6678903656071812, 0.6717507230615304, 0.6754908122696568, 0.6791114964774512, 0.6826138210368496, 0.6859989910556689, 0.6892683518740214, 0.69242337218217 ], [ 0.498265712807345, 0.4971360616070463, 0.4966119373621768, 0.4966868930796732, 0.49734759014776714, 0.4985743305806416, 0.5003417691867571, 0.502619762039643, 0.5053743020321971, 0.5085684912769167, 0.5121635032653475, 0.5161194941418384, 0.5203964310434616, 0.5249548150300098, 0.5297562856257564, 0.5347641026067275, 0.5399435078640814, 0.5452619756959374, 0.5506893636912882, 0.556197978597964, 0.5617625724408314, 0.5673602839532379, 0.5729705393890404, 0.5785749252593598, 0.5841570437176911, 0.5897023593864386, 0.5951980445212539, 0.6006328276495502, 0.6059968492629665, 0.6112815268266617, 0.616479430303156, 0.6215841685684727, 0.6265902865038421, 0.6314931721489508, 0.6362889730698665, 0.640974520992179, 0.6455472637445179, 0.6500052036193807, 0.6543468413610423, 0.6585711251128602, 0.6626774037820092, 0.6666653843966232, 0.6705350931307865, 0.6742868397526461, 0.6779211853088365, 0.6814389128953968, 0.6848410013838522, 0.6881286019745855, 0.6913030174418529, 0.6943656839197012 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.19066 (SEM: 0)
x1: 0.0286128
x2: 0.0771406
x3: 0.277624
x4: 0.300056
x5: 0.823706
x6: 0.521663", "Arm 10_0
hartmann6: -0.0161924 (SEM: 0)
x1: 0.678451
x2: 0.0542357
x3: 0.301031
x4: 0.190144
x5: 0.774861
x6: 0.267701", "Arm 11_0
hartmann6: -0.382524 (SEM: 0)
x1: 0.108757
x2: 0.636625
x3: 0.74072
x4: 0.799608
x5: 0.320434
x6: 0.856731", "Arm 12_0
hartmann6: -0.832638 (SEM: 0)
x1: 0.0353861
x2: 0.344902
x3: 0.384472
x4: 0.217251
x5: 0.546153
x6: 0.429171", "Arm 13_0
hartmann6: -1.06934 (SEM: 0)
x1: 0.00847715
x2: 0.374631
x3: 0.41666
x4: 0.222798
x5: 0.512353
x6: 0.468813", "Arm 14_0
hartmann6: -1.31319 (SEM: 0)
x1: 0
x2: 0.403124
x3: 0.446335
x4: 0.221935
x5: 0.47979
x6: 0.508543", "Arm 15_0
hartmann6: -1.57761 (SEM: 0)
x1: 0
x2: 0.435432
x3: 0.481044
x4: 0.214305
x5: 0.440377
x6: 0.557716", "Arm 16_0
hartmann6: -1.77078 (SEM: 0)
x1: 0
x2: 0.467446
x3: 0.526882
x4: 0.20112
x5: 0.389847
x6: 0.619974", "Arm 17_0
hartmann6: -1.94065 (SEM: 0)
x1: 0
x2: 0.442396
x3: 0.608848
x4: 0.21411
x5: 0.351629
x6: 0.647001", "Arm 18_0
hartmann6: -1.64427 (SEM: 0)
x1: 4.52094e-18
x2: 0.446613
x3: 0.704595
x4: 0.22061
x5: 0.36999
x6: 0.615052", "Arm 19_0
hartmann6: -2.29821 (SEM: 0)
x1: 1.1877e-18
x2: 0.375347
x3: 0.588315
x4: 0.234966
x5: 0.304392
x6: 0.680022", "Arm 1_0
hartmann6: -0.148934 (SEM: 0)
x1: 0.0265269
x2: 0.266673
x3: 0.62365
x4: 0.774008
x5: 0.337182
x6: 0.363433", "Arm 20_0
hartmann6: -2.322 (SEM: 0)
x1: 0
x2: 0.325513
x3: 0.542879
x4: 0.247725
x5: 0.250146
x6: 0.729299", "Arm 21_0
hartmann6: -2.39858 (SEM: 0)
x1: 1.66419e-17
x2: 0.324552
x3: 0.563504
x4: 0.2238
x5: 0.313028
x6: 0.72905", "Arm 22_0
hartmann6: -2.28072 (SEM: 0)
x1: 2.7846e-18
x2: 0.304196
x3: 0.573527
x4: 0.164343
x5: 0.284048
x6: 0.699994", "Arm 23_0
hartmann6: -2.61253 (SEM: 0)
x1: 0.0767156
x2: 0.327633
x3: 0.568126
x4: 0.237868
x5: 0.318556
x6: 0.742623", "Arm 24_0
hartmann6: -2.54234 (SEM: 0)
x1: 0.128745
x2: 0.327399
x3: 0.594802
x4: 0.234856
x5: 0.313228
x6: 0.783238", "Arm 25_0
hartmann6: -2.82694 (SEM: 0)
x1: 0.109401
x2: 0.313538
x3: 0.530444
x4: 0.250487
x5: 0.324304
x6: 0.720496", "Arm 26_0
hartmann6: -3.14027 (SEM: 0)
x1: 0.180492
x2: 0.265285
x3: 0.485177
x4: 0.269241
x5: 0.322647
x6: 0.689258", "Arm 27_0
hartmann6: -3.27806 (SEM: 0)
x1: 0.237364
x2: 0.197995
x3: 0.469411
x4: 0.28293
x5: 0.313039
x6: 0.664802", "Arm 28_0
hartmann6: -3.26655 (SEM: 0)
x1: 0.224838
x2: 0.126057
x3: 0.50484
x4: 0.290805
x5: 0.329991
x6: 0.676571", "Arm 2_0
hartmann6: -0.094178 (SEM: 0)
x1: 0.215857
x2: 0.845888
x3: 0.293076
x4: 0.870189
x5: 0.871658
x6: 0.416601", "Arm 3_0
hartmann6: -0.00391722 (SEM: 0)
x1: 0.717854
x2: 0.614076
x3: 0.47361
x4: 0.851057
x5: 0.734401
x6: 0.766845", "Arm 4_0
hartmann6: -0.0802372 (SEM: 0)
x1: 0.370947
x2: 0.919363
x3: 0.207639
x4: 0.396142
x5: 0.844018
x6: 0.530008", "Arm 5_0
hartmann6: -0.167187 (SEM: 0)
x1: 0.283215
x2: 0.330793
x3: 0.580986
x4: 0.651493
x5: 0.775408
x6: 0.365718", "Arm 6_0
hartmann6: -0.112497 (SEM: 0)
x1: 0.613007
x2: 0.407828
x3: 0.0582382
x4: 0.0471161
x5: 0.585298
x6: 0.927098", "Arm 7_0
hartmann6: -0.26256 (SEM: 0)
x1: 0.0662721
x2: 0.345961
x3: 0.29683
x4: 0.0703874
x5: 0.513271
x6: 0.244129", "Arm 8_0
hartmann6: -0.00879909 (SEM: 0)
x1: 0.710268
x2: 0.187626
x3: 0.890911
x4: 0.748634
x5: 0.977574
x6: 0.112801", "Arm 9_0
hartmann6: -0.0464703 (SEM: 0)
x1: 0.0306744
x2: 0.927373
x3: 0.539334
x4: 0.612563
x5: 0.606115
x6: 0.823855" ], "type": "scatter", "x": [ 0.02861282043159008, 0.6784505266696215, 0.10875670239329338, 0.03538613900065349, 0.008477154335699783, 0.0, 0.0, 0.0, 0.0, 4.520944783993645e-18, 1.1877016776327455e-18, 0.026526895351707935, 0.0, 1.6641917789823365e-17, 2.7845958563250617e-18, 0.07671563264796646, 0.1287454675933869, 0.1094007007532906, 0.18049175659526726, 0.23736426993933266, 0.22483818389799218, 0.2158573754131794, 0.7178544122725725, 0.37094675935804844, 0.28321531880646944, 0.6130074318498373, 0.06627206318080425, 0.7102679777890444, 0.030674430541694164 ], "xaxis": "x", "y": [ 0.07714055478572845, 0.054235716350376606, 0.6366253634914756, 0.3449018574042789, 0.37463086878815477, 0.40312393813589226, 0.43543156767476865, 0.4674464910101946, 0.44239629339241016, 0.44661266541722433, 0.37534654934907546, 0.26667285803705454, 0.3255131692739064, 0.32455179172562443, 0.3041957514721828, 0.3276333644348262, 0.3273994274646363, 0.313538199875582, 0.2652846464771408, 0.19799462806099588, 0.12605674750542648, 0.8458884200081229, 0.6140758004039526, 0.919363072142005, 0.330793428234756, 0.407827946357429, 0.3459612485021353, 0.18762645218521357, 0.9273727759718895 ], "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.19066 (SEM: 0)
x1: 0.0286128
x2: 0.0771406
x3: 0.277624
x4: 0.300056
x5: 0.823706
x6: 0.521663", "Arm 10_0
hartmann6: -0.0161924 (SEM: 0)
x1: 0.678451
x2: 0.0542357
x3: 0.301031
x4: 0.190144
x5: 0.774861
x6: 0.267701", "Arm 11_0
hartmann6: -0.382524 (SEM: 0)
x1: 0.108757
x2: 0.636625
x3: 0.74072
x4: 0.799608
x5: 0.320434
x6: 0.856731", "Arm 12_0
hartmann6: -0.832638 (SEM: 0)
x1: 0.0353861
x2: 0.344902
x3: 0.384472
x4: 0.217251
x5: 0.546153
x6: 0.429171", "Arm 13_0
hartmann6: -1.06934 (SEM: 0)
x1: 0.00847715
x2: 0.374631
x3: 0.41666
x4: 0.222798
x5: 0.512353
x6: 0.468813", "Arm 14_0
hartmann6: -1.31319 (SEM: 0)
x1: 0
x2: 0.403124
x3: 0.446335
x4: 0.221935
x5: 0.47979
x6: 0.508543", "Arm 15_0
hartmann6: -1.57761 (SEM: 0)
x1: 0
x2: 0.435432
x3: 0.481044
x4: 0.214305
x5: 0.440377
x6: 0.557716", "Arm 16_0
hartmann6: -1.77078 (SEM: 0)
x1: 0
x2: 0.467446
x3: 0.526882
x4: 0.20112
x5: 0.389847
x6: 0.619974", "Arm 17_0
hartmann6: -1.94065 (SEM: 0)
x1: 0
x2: 0.442396
x3: 0.608848
x4: 0.21411
x5: 0.351629
x6: 0.647001", "Arm 18_0
hartmann6: -1.64427 (SEM: 0)
x1: 4.52094e-18
x2: 0.446613
x3: 0.704595
x4: 0.22061
x5: 0.36999
x6: 0.615052", "Arm 19_0
hartmann6: -2.29821 (SEM: 0)
x1: 1.1877e-18
x2: 0.375347
x3: 0.588315
x4: 0.234966
x5: 0.304392
x6: 0.680022", "Arm 1_0
hartmann6: -0.148934 (SEM: 0)
x1: 0.0265269
x2: 0.266673
x3: 0.62365
x4: 0.774008
x5: 0.337182
x6: 0.363433", "Arm 20_0
hartmann6: -2.322 (SEM: 0)
x1: 0
x2: 0.325513
x3: 0.542879
x4: 0.247725
x5: 0.250146
x6: 0.729299", "Arm 21_0
hartmann6: -2.39858 (SEM: 0)
x1: 1.66419e-17
x2: 0.324552
x3: 0.563504
x4: 0.2238
x5: 0.313028
x6: 0.72905", "Arm 22_0
hartmann6: -2.28072 (SEM: 0)
x1: 2.7846e-18
x2: 0.304196
x3: 0.573527
x4: 0.164343
x5: 0.284048
x6: 0.699994", "Arm 23_0
hartmann6: -2.61253 (SEM: 0)
x1: 0.0767156
x2: 0.327633
x3: 0.568126
x4: 0.237868
x5: 0.318556
x6: 0.742623", "Arm 24_0
hartmann6: -2.54234 (SEM: 0)
x1: 0.128745
x2: 0.327399
x3: 0.594802
x4: 0.234856
x5: 0.313228
x6: 0.783238", "Arm 25_0
hartmann6: -2.82694 (SEM: 0)
x1: 0.109401
x2: 0.313538
x3: 0.530444
x4: 0.250487
x5: 0.324304
x6: 0.720496", "Arm 26_0
hartmann6: -3.14027 (SEM: 0)
x1: 0.180492
x2: 0.265285
x3: 0.485177
x4: 0.269241
x5: 0.322647
x6: 0.689258", "Arm 27_0
hartmann6: -3.27806 (SEM: 0)
x1: 0.237364
x2: 0.197995
x3: 0.469411
x4: 0.28293
x5: 0.313039
x6: 0.664802", "Arm 28_0
hartmann6: -3.26655 (SEM: 0)
x1: 0.224838
x2: 0.126057
x3: 0.50484
x4: 0.290805
x5: 0.329991
x6: 0.676571", "Arm 2_0
hartmann6: -0.094178 (SEM: 0)
x1: 0.215857
x2: 0.845888
x3: 0.293076
x4: 0.870189
x5: 0.871658
x6: 0.416601", "Arm 3_0
hartmann6: -0.00391722 (SEM: 0)
x1: 0.717854
x2: 0.614076
x3: 0.47361
x4: 0.851057
x5: 0.734401
x6: 0.766845", "Arm 4_0
hartmann6: -0.0802372 (SEM: 0)
x1: 0.370947
x2: 0.919363
x3: 0.207639
x4: 0.396142
x5: 0.844018
x6: 0.530008", "Arm 5_0
hartmann6: -0.167187 (SEM: 0)
x1: 0.283215
x2: 0.330793
x3: 0.580986
x4: 0.651493
x5: 0.775408
x6: 0.365718", "Arm 6_0
hartmann6: -0.112497 (SEM: 0)
x1: 0.613007
x2: 0.407828
x3: 0.0582382
x4: 0.0471161
x5: 0.585298
x6: 0.927098", "Arm 7_0
hartmann6: -0.26256 (SEM: 0)
x1: 0.0662721
x2: 0.345961
x3: 0.29683
x4: 0.0703874
x5: 0.513271
x6: 0.244129", "Arm 8_0
hartmann6: -0.00879909 (SEM: 0)
x1: 0.710268
x2: 0.187626
x3: 0.890911
x4: 0.748634
x5: 0.977574
x6: 0.112801", "Arm 9_0
hartmann6: -0.0464703 (SEM: 0)
x1: 0.0306744
x2: 0.927373
x3: 0.539334
x4: 0.612563
x5: 0.606115
x6: 0.823855" ], "type": "scatter", "x": [ 0.02861282043159008, 0.6784505266696215, 0.10875670239329338, 0.03538613900065349, 0.008477154335699783, 0.0, 0.0, 0.0, 0.0, 4.520944783993645e-18, 1.1877016776327455e-18, 0.026526895351707935, 0.0, 1.6641917789823365e-17, 2.7845958563250617e-18, 0.07671563264796646, 0.1287454675933869, 0.1094007007532906, 0.18049175659526726, 0.23736426993933266, 0.22483818389799218, 0.2158573754131794, 0.7178544122725725, 0.37094675935804844, 0.28321531880646944, 0.6130074318498373, 0.06627206318080425, 0.7102679777890444, 0.030674430541694164 ], "xaxis": "x2", "y": [ 0.07714055478572845, 0.054235716350376606, 0.6366253634914756, 0.3449018574042789, 0.37463086878815477, 0.40312393813589226, 0.43543156767476865, 0.4674464910101946, 0.44239629339241016, 0.44661266541722433, 0.37534654934907546, 0.26667285803705454, 0.3255131692739064, 0.32455179172562443, 0.3041957514721828, 0.3276333644348262, 0.3273994274646363, 0.313538199875582, 0.2652846464771408, 0.19799462806099588, 0.12605674750542648, 0.8458884200081229, 0.6140758004039526, 0.919363072142005, 0.330793428234756, 0.407827946357429, 0.3459612485021353, 0.18762645218521357, 0.9273727759718895 ], "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-11-10T20:25:53.219491Z", "iopub.status.busy": "2022-11-10T20:25:53.218932Z", "iopub.status.idle": "2022-11-10T20:25:53.727507Z", "shell.execute_reply": "2022-11-10T20:25:53.726841Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 0.9908661084272303, 0.9908965906235725, 0.9912854193527258, 0.992039778136928, 0.9931661970861327, 0.9946705076875397, 0.9965577944424813, 0.998832341267066, 1.001497570659355, 1.004555974146896, 1.008009033514052, 1.0118571337388227, 1.0160994703022668, 1.0207339553062988, 1.025757128291399, 1.031164078424112, 1.0369483845846503, 1.0431020788066288, 1.0496156367219203, 1.0564779965200928, 1.0636766058470886, 1.0711974943521143, 1.0790253684061233, 1.0871437238765127, 1.09553497266883, 1.104180578911252, 1.1130612010330831, 1.122156836467451, 1.1314469662153506, 1.1409106969945981, 1.1505268991386575, 1.1602743387962038, 1.1701318033126749, 1.1800782189541605, 1.1900927603684044, 1.2001549513740348, 1.2102447568343198, 1.2203426655100025, 1.2304297639029245, 1.2404878012000817, 1.250499245510711, 1.260447331657918, 1.2703161008436221, 1.2800904325522395, 1.2897560690956704, 1.2992996332309588, 1.308708639302813, 1.3179714983773352, 1.327077517840949, 1.3360168959407124 ], [ 0.9902228956040435, 0.9902495737915655, 0.9906372679579042, 0.9913933374361735, 0.9925244864364385, 0.994036720256867, 0.9959352983153305, 0.9982246813478048, 1.0009084701422284, 1.0039893337447032, 1.007468926257906, 1.0113477931088999, 1.0156252698065948, 1.0202993783920362, 1.0253667285464172, 1.0308224312060186, 1.03666003225517, 1.0428714724401391, 1.0494470773890998, 1.056375579039586, 1.0636441673673902, 1.0712385694342077, 1.0791431515730519, 1.0873410399825352, 1.0958142549689234, 1.1045438543893966, 1.1135100823562973, 1.1226925198425144, 1.13207023440499, 1.1416219267739438, 1.151326072520588, 1.1611610574124314, 1.1711053053979066, 1.1811373984382536, 1.1912361876342983, 1.2013808952869047, 1.2115512076896229, 1.2217273585859048, 1.2318902033364896, 1.242021283937536, 1.2521028851102125, 1.2621180817495514, 1.2720507780757346, 1.281885738876175, 1.2916086132625781, 1.3012059513946195, 1.3106652146415014, 1.319974779665605, 1.3291239369188124, 1.3381028840429534 ], [ 0.9900423278329383, 0.9900683647567965, 0.9904577752297623, 0.9912180792792534, 0.9923561388847197, 0.9938781161010547, 0.9957894281868019, 0.998094696399101, 1.0007976850357458, 1.003901227928715, 1.0074071410203906, 1.0113161218226492, 1.0156276392120298, 1.0203398196888238, 1.0254493383294119, 1.0309513236229648, 1.0368392848860604, 1.0431050690690602, 1.049738850967374, 1.0567291577854634, 1.0640629262795864, 1.071725588708488, 1.0797011826642124, 1.087972479445437, 1.0965211257768244, 1.1053277941565511, 1.1143723377527162, 1.1236339464436957, 1.1330913012341954, 1.1427227248419856, 1.1525063267302182, 1.1624201412596975, 1.172442257964814, 1.18255094322725, 1.1927247528446592, 1.2029426351762205, 1.2131840247013959, 1.223428925957753, 1.2336579879333485, 1.243852569081559, 1.2539947932043396, 1.2640675965152461, 1.2740547662477621, 1.2839409712182837, 1.2937117847881066, 1.3033537006949294, 1.3128541422431823, 1.3222014653542058, 1.3313849559825937, 1.3403948224047635 ], [ 0.9903373550330172, 0.9903662100376599, 0.990760479559907, 0.9915278277707107, 0.9926752559114163, 0.9942090627684506, 0.9961348026406018, 0.998457236659056, 1.0011802730728419, 1.0043068927791579, 1.0078390580972745, 1.0117776054686054, 1.0161221260502586, 1.0208708414310121, 1.0260204841684917, 1.0315661938371632, 1.0375014384563417, 1.0438179687242635, 1.0505058090629367, 1.0575532859126024, 1.0649470907086178, 1.0726723729154937, 1.0807128574358207, 1.089050980483943, 1.0976680383507198, 1.1065443441329315, 1.1156593882636887, 1.124991999436016, 1.1345205031939618, 1.1442228760500124, 1.1540768934728713, 1.1640602704859788, 1.1741507939394105, 1.1843264457803835, 1.1945655168630944, 1.2048467110169658, 1.2151492392419088, 1.2254529040249529, 1.2357381738793753, 1.2459862482979345, 1.256179113388422, 1.266299588523993, 1.276331364393989, 1.286259032884103, 1.2960681092487103, 1.3057450470638259, 1.315277246466812, 1.3246530561998475, 1.3338617699784834, 1.3428936177051356 ], [ 0.9911196855531187, 0.9911551015753277, 0.9915576532179925, 0.992335131250961, 0.9934946558425158, 0.995042639690698, 0.996984749546763, 0.9993258610858188, 1.0020700015777506, 1.005220275484446, 1.0087787701631468, 1.0127464421669437, 1.0171229886916962, 1.0219067126753663, 1.0270943929196006, 1.0326811715589466, 1.038660469942312, 1.0450239408727562, 1.0517614610512183, 1.0588611635092955, 1.0663095065795751, 1.0740913738999387, 1.0821901990476703, 1.0905881083852438, 1.0992660762404398, 1.1082040873512962, 1.117381302378505, 1.1267762231074079, 1.1363668546749406, 1.1461308627510562, 1.1560457240871318, 1.1660888692326135, 1.176237816534332, 1.1864702967868044, 1.1967643681099212, 1.2070985208035825, 1.217451772073913, 1.2278037506488622, 1.2381347714057291, 1.248425900222537, 1.2586590093408603, 1.2688168235914203, 1.2788829578865009, 1.2888419464259382, 1.2986792640968643, 1.308381340572349, 1.317935567631062, 1.3273303002301757, 1.3365548518669603, 1.345599484762197 ], [ 0.9923996376141605, 0.9924456195349269, 0.992860135665614, 0.993651085426038, 0.9948256863275958, 0.9963904398277861, 0.9983510969988966, 1.0007126179983064, 1.003479118452855, 1.0066537964795528, 1.0102388364701362, 1.0142352898120404, 1.0186429376981774, 1.0234601459478223, 1.0286837250481442, 1.0343088094798603, 1.0403287685764677, 1.04673515727852, 1.0535177103335573, 1.0606643789693082, 1.0681614056666457, 1.075993430677909, 1.0841436232342108, 1.0925938305998415, 1.1013247388703455, 1.1103160403611083, 1.1195466033938581, 1.1289946411533003, 1.1386378770167307, 1.1484537043540186, 1.158419339271177, 1.1685119651497713, 1.1787088681378255, 1.1889875629938533, 1.199325908887787, 1.209702214931224, 1.2200953353518842, 1.2304847543485444, 1.240850660766659, 1.2511740128235869, 1.2614365931881049, 1.271621054782263, 1.281710957726433, 1.2916907978908152, 1.3015460275497857, 1.3112630686600233, 1.320829319299664, 1.3302331538151175, 1.339463917224489, 1.3485119144233715 ], [ 0.994185992778739, 0.994246776265197, 0.9946771666862411, 0.9954851544343936, 0.9966780323245684, 0.9982623638871794, 1.0002439535109393, 1.0026278114648108, 1.0054181054371838, 1.008618090666203, 1.012230013465389, 1.0162549877987925, 1.0206928505938753, 1.0255420071812735, 1.0307992820036405, 1.0364597904459454, 1.042516845193013, 1.0489619058074857, 1.0557845747026156, 1.062972637747789, 1.070512144242406, 1.0783875191313934, 1.086581699850975, 1.0950762906297742, 1.1038517279849684, 1.112887452221128, 1.1221620807652408, 1.1316535800654386, 1.1413394335177456, 1.1511968034748783, 1.161202685857597, 1.1713340562581804, 1.1815680067209249, 1.1918818726240656, 1.2022533492855185, 1.2126605980808431, 1.2230823420029935, 1.2334979507142045, 1.2438875152443862, 1.2542319125794523, 1.2645128604589007, 1.274712962765974, 1.284815745946494, 1.2948056869349776, 1.3046682330997244, 1.3143898147425483, 1.3239578507049126, 1.333360747640637, 1.3425878935171416, 1.351629645902839 ], [ 0.9964858551553395, 0.9965658659823312, 0.9970162248285457, 0.9978449962967081, 0.9990595269361857, 1.0006664152463995, 1.0026714862225878, 1.0050797626259491, 1.0078954230971477, 1.0111217373429755, 1.0147609715921793, 1.0188142631771067, 1.0232814702682853, 1.0281610095224267, 1.033449698687038, 1.039142621783629, 1.045233031400901, 1.051712297098764, 1.0585699027332163, 1.0657934902155253, 1.073368943657191, 1.081280506123857, 1.0895109209428175, 1.0980415901393024, 1.1068527436357845, 1.1159236140054796, 1.1252326126423584, 1.13475750412024, 1.1444755762505365, 1.1543638039312079, 1.1643990053372082, 1.1745579893642197, 1.184817693526798, 1.1951553117479632, 1.2055484116729254, 1.2159750413051431, 1.226413824903871, 1.236844048204043, 1.2472457331239468, 1.2575997022162926, 1.2678876331949922, 1.2780921039345443, 1.288196628392164, 1.2981856839456682, 1.308044730672931, 1.3177602231227714, 1.3273196151425053, 1.3367113583353851, 1.3459248947220759, 1.3549506441750794 ], [ 0.9993045200378815, 0.999408325094521, 0.9998828775424933, 1.0007363008003656, 1.0019759749639272, 1.00360850730912, 1.0056397106571102, 1.0080745811632073, 1.0109172642115956, 1.014170996703227, 1.0178380170679047, 1.0219194407157572, 1.026415106947531, 1.0313234111698018, 1.0366411411597523, 1.0423633366603586, 1.0484831879395502, 1.0549919826811422, 1.0618791037847113, 1.0691320750371205, 1.0767366480042464, 1.0846769218717751, 1.092935487848466, 1.1014935905239926, 1.1103312997379111, 1.1194276877350142, 1.1287610074827246, 1.1383088689452523, 1.1480484108450049, 1.1579564660195247, 1.1680097189346945, 1.178184854272091, 1.1884586957955434, 1.1988083349365688, 1.2092112487345512, 1.2196454069337994, 1.2300893681822185, 1.2405223653994895, 1.2509243804889467, 1.2612762086588458, 1.271559512696716, 1.2817568676059008, 1.2918517960674327, 1.3018287952333942, 1.3116733553910809, 1.3213719710609102, 1.330912145106188, 1.3402823864402045, 1.3494722019162746, 1.3584720829803965 ], [ 1.002645354875306, 1.002777607409071, 1.0032806490185218, 1.004162648023703, 1.0054309999661384, 1.007092296960478, 1.0091523087352394, 1.011615966642228, 1.014487338107847, 1.017769577913166, 1.0214648455929878, 1.0255741851608389, 1.0300973726935363, 1.0350327462214137, 1.0403770379799666, 1.046125229740074, 1.0522704479234342, 1.058803908378815, 1.0657149134098964, 1.0729908977444678, 1.0806175164375507, 1.0885787661249005, 1.096857131019324, 1.1054337459080619, 1.1142885696368174, 1.1234005638214979, 1.1327478726471056, 1.1423080005384099, 1.1520579852240478, 1.161974564292834, 1.1720343337927628, 1.1822138977812673, 1.192490008023219, 1.2028396932703311, 1.213240377754125, 1.2236699886936206, 1.2341070527642717, 1.2445307816002094, 1.2549211465104426, 1.2652589426830172, 1.2755258432305767, 1.2857044434974698, 1.295778296103224, 1.3057319372408502, 1.3155509047816238, 1.3252217487616471, 1.3347320348402645, 1.3440703413273192, 1.3532262503756134, 1.3621903339281862 ], [ 1.0065096938523124, 1.0066750765944152, 1.0072109097084265, 1.0081253936607741, 1.0094259237519632, 1.0111190563580996, 1.01321049098802, 1.015705059571258, 1.0186067096081257, 1.0219184658746323, 1.0256423578884484, 1.0297793075122537, 1.03432898119212, 1.0392896212316434, 1.044657876897101, 1.0504286571554389, 1.0565950227574505, 1.0631481282303423, 1.0700772167105508, 1.0773696643893673, 1.085011067507363, 1.0929853632077924, 1.1012749755328182, 1.1098609787275457, 1.118723271261046, 1.1278407552421872, 1.1371915170354217, 1.1467530058141457, 1.1565022075315097, 1.1664158123713224, 1.1764703741988076, 1.1866424608943724, 1.1969087947469876, 1.207246382326053, 1.2176326334539025, 1.2280454690744471, 1.238463417962678, 1.2488657023484497, 1.2592323126395149, 1.2695440715241502, 1.27978268781513, 1.2899308004647312, 1.299972013236139, 1.3098909205607656, 1.3196731251445475, 1.3293052479098266, 1.3387749308740422, 1.3480708335727218, 1.3571826236332198, 1.366100962098045 ], [ 1.0108967453586617, 1.0110999155790927, 1.011672788068775, 1.0126235831048873, 1.0139596823152264, 1.015687589746347, 1.0178129129004794, 1.02034035573825, 1.0232737099050055, 1.0266158275453552, 1.0303685609559192, 1.034532661418145, 1.039107640145413, 1.0440916049760738, 1.0494810936415129, 1.0552709260126576, 1.0614540938904442, 1.0680216997478198, 1.074962948036848, 1.0822651863063533, 1.0899139893432166, 1.0978932777711996, 1.1061854624091876, 1.1147716065074171, 1.1236315991908397, 1.1327443346947679, 1.1420878931054679, 1.151639719257953, 1.1613767971961317, 1.1712758181949088, 1.1813133408122274, 1.191465941813226, 1.2017103571112935, 1.2120236121216246, 1.222383141132783, 1.2327668954814242, 1.2431534404691593, 1.2535220410935886, 1.263852736780153, 1.2741264053996462, 1.2843248169395625, 1.2944306772669794, 1.3044276624774593, 1.3143004443693442, 1.3240347076165828, 1.3336171592371058, 1.3430355309678774, 1.352278575163917, 1.3613360548367945, 1.370198728439843 ], [ 1.0158035101129914, 1.0160490500927173, 1.0166631013895584, 1.0176538911410713, 1.01902877548199, 1.020794193504554, 1.022955645070269, 1.0255176854664245, 1.028483923303492, 1.0318570041816004, 1.035638563728596, 1.0398291402944708, 1.0444280482666342, 1.0494332241750923, 1.0548410656862985, 1.0606462858965096, 1.0668418020700317, 1.073418671130478, 1.08036607648595, 1.087671364276401, 1.0953201228740026, 1.1032962974452694, 1.1115823310460942, 1.1201593243907395, 1.129007207557362, 1.138104918105014, 1.1474305811912606, 1.1569616882235931, 1.1666752713442288, 1.1765480716585195, 1.186556699602787, 1.1966777862363271, 1.206888124558749, 1.217164800215146, 1.2274853111714967, 1.237827676129202, 1.248170531608005, 1.2584932177643893, 1.2687758531309066, 1.2789993985634105, 1.2891457107686477, 1.2991975858561235, 1.3091387934161731, 1.318954101671831, 1.3286292942866724, 1.3381511794343548, 1.3475075917501482, 1.356687387790291, 1.3656804356227366, 1.3744775991641887 ], [ 1.0212247078083827, 1.0215170827445539, 1.0221763004982496, 1.0232105803723903, 1.0246272417750295, 1.0264326494812883, 1.028632186084629, 1.0312302459590519, 1.034230237754984, 1.037634577680589, 1.0414446559894877, 1.0456607650882535, 1.0502819880511842, 1.055306057687714, 1.0607292048007073, 1.0665460173966943, 1.0727493301721789, 1.0793301573957685, 1.0862776748963172, 1.0935792503820376, 1.1012205168515055, 1.1091854815392963, 1.1174566622147128, 1.1260152430982655, 1.1348412436344508, 1.143913694490648, 1.153210816232406, 1.1627101970652958, 1.1723889668119207, 1.182223964921834, 1.1921919008178965, 1.202269505290512, 1.212433671984031, 1.222661588295209, 1.2329308552343536, 1.2432195959960524, 1.2535065531536451, 1.2637711745353841, 1.2739936879633351, 1.2841551651408516, 1.294237575063038, 1.3042238273979418, 1.3140978063458815, 1.3238443955311192, 1.3334494945151076, 1.342900027544765, 1.3521839451635733, 1.3612902193187373, 1.3702088325951916, 1.3789307621976266 ], [ 1.0271527127198705, 1.0274962361302247, 1.0282044243923671, 1.0292854715168138, 1.0307466483035193, 1.0325942378202928, 1.034833500654457, 1.0374686658034995, 1.0405029352625896, 1.0439384848434803, 1.0477764430333492, 1.0520168348125, 1.0566584870665847, 1.0616989033610806, 1.0671341246481127, 1.0729585963671244, 1.0791650609445602, 1.0857444893788113, 1.0926860587518215, 1.0999771762010986, 1.1076035452889283, 1.115549268087992, 1.1237969753436223, 1.132327977233897, 1.1411224280193921, 1.1501594988816977, 1.1594175542693566, 1.1688743279900438, 1.1785070960705322, 1.1882928440520097, 1.1982084269146447, 1.2082307202542422, 1.2183367616854748, 1.2285038817378815, 1.2387098237549838, 1.2489328525137255, 1.259151851457527, 1.2693464085867032, 1.2794968911784874, 1.2895845096179581, 1.2995913707129663, 1.3095005209419626, 1.3192959801453028, 1.3289627662185084, 1.338486911402177, 1.3478554707878059, 1.3570565236734313, 1.366079168408422, 1.374913511364001, 1.3835506506561956 ], [ 1.033577503717899, 1.033976308633564, 1.0347370659613462, 1.0358679234499961, 1.03737608950704, 1.0392677584154404, 1.0415480670291093, 1.04422108044745, 1.0472897960536576, 1.050756149232794, 1.0546210025665184, 1.0588841044423438, 1.0635440118032073, 1.0685979823123053, 1.0740418500177449, 1.0798699031139103, 1.0860747819526742, 1.0926474111865179, 1.0995769738559404, 1.106850929288981, 1.1144550720719888, 1.122373626481956, 1.1305893694719722, 1.1390837751409388, 1.147837174140019, 1.156828922310519, 1.1660375737732924, 1.1754410545683838, 1.1850168337173852, 1.1947420892363902, 1.2045938671716079, 1.2145492321789906, 1.2245854085404067, 1.2346799108180189, 1.2448106636074563, 1.254956110069213, 1.2650953091038177, 1.2752080211943506, 1.2852747830748457, 1.295276971496921, 1.3051968564627399, 1.315017644371095, 1.3247235115874694, 1.3342996289984428, 1.3437321781482992, 1.3530083595809872, 1.3621163940257246, 1.3710455170701454, 1.3797859679619626, 1.3883289731701605 ], [ 1.0404866401254556, 1.0409446533378621, 1.041761357381897, 1.0429448288757621, 1.044502197054348, 1.046439558909517, 1.0487619265900714, 1.0514732061689251, 1.0545761986571052, 1.0580726077622635, 1.061963036743268, 1.0662469598931283, 1.070922661869431, 1.0759871477663765, 1.081436035331825, 1.0872634456464711, 1.0934619090712576, 1.1000223001028415, 1.1069338096289192, 1.1141839576666446, 1.1217586451925643, 1.1296422406458624, 1.1378176950853285, 1.1462666794945742, 1.1549697379753654, 1.1639064512105333, 1.173055605377168, 1.1823953625013741, 1.1919034289921244, 1.2015572197446738, 1.2113340157590717, 1.2212111136851203, 1.2311659660948624, 1.2411763116098107, 1.2512202942844033, 1.2612765718792573, 1.271324412854158, 1.2813437820779818, 1.2913154153944992, 1.3012208833025558, 1.311042644109315, 1.3207640869976163, 1.3303695655151082, 1.339844422044648, 1.349175003854362, 1.3583486713521866, 1.3673537991856228, 1.376179770833313, 1.3848169673324515, 1.3932567507757823 ], [ 1.0478652790036223, 1.048386195616217, 1.0492619900262878, 1.0505006389839584, 1.0521091720308942, 1.0540935774375777, 1.0564587402623122, 1.0592084131199213, 1.0623452120991776, 1.0658706238033857, 1.0697850069071293, 1.074087573919468, 1.0787763453577643, 1.0838480771337495, 1.089298169895358, 1.0951205741320014, 1.1013077061089822, 1.1078503875922951, 1.1147378181655696, 1.1219575842009948, 1.129495704351977, 1.1373367083695993, 1.1454637442146314, 1.1538587076542406, 1.1625023884981458, 1.1713746280488628, 1.180454482985941, 1.1897203916205212, 1.199150339154146, 1.2087220192103312, 1.2184129894625617, 1.228200819658553, 1.238063230744624, 1.2479782241356832, 1.2579242004653157, 1.2678800673954569, 1.2778253362728529, 1.2877402075961726, 1.2976056454069107, 1.307403440843446, 1.3171162652025643, 1.3267277129395691, 1.3362223351077216, 1.3455856637923165, 1.3548042281354042, 1.3638655625751877, 1.3727582079409217, 1.3814717060508084, 1.3899965884580168, 1.3983243599800084 ], [ 1.0556962484066814, 1.0562835048117387, 1.057221284710409, 1.0585174328938884, 1.0601788547577955, 1.0622114145742587, 1.064619864864407, 1.0674078087358574, 1.070577689179255, 1.0741307929809158, 1.0780672540727214, 1.0823860426642233, 1.0870849318503792, 1.0921604408024832, 1.0976077608242787, 1.1034206755297444, 1.109591488216099, 1.1161109683408095, 1.122968325826998, 1.1301512179276345, 1.1376457895884917, 1.145436745269839, 1.1535074482232504, 1.1618400421970922, 1.1704155902508877, 1.1792142255527187, 1.188215309507813, 1.1973975931667533, 1.2067393784896845, 1.2162186766414693, 1.225813361035227, 1.2355013133185224, 1.2452605609090375, 1.2550694050398405, 1.2649065385762281, 1.2747511531229296, 1.2845830351594907, 1.2943826511276788, 1.3041312215521974, 1.3138107844091689, 1.3234042480673516, 1.3328954342185428, 1.3422691112870466, 1.3515110188656, 1.360607883768272, 1.3695474283207083, 1.3783183715261633, 1.3869104237534913, 1.3953142755914556, 1.4035215815041846 ], [ 1.0639601830347116, 1.0646169278228663, 1.0656193214847098, 1.0669750424697904, 1.0686908441820657, 1.0707724476724796, 1.073224463596399, 1.0760503463206539, 1.0792523756835846, 1.082831655883631, 1.086788118027235, 1.0911205137317483, 1.095826391425115, 1.1009020531955178, 1.1063424963303932, 1.112141348370251, 1.1182908066593358, 1.124781592978456, 1.131602931556527, 1.1387425555254949, 1.1461867435809774, 1.1539203858275584, 1.1619270757928135, 1.1701892244054444, 1.1786881912216083, 1.1874044281657348, 1.1963176313499397, 1.205406897006465, 1.2146508781078238, 1.2240279387957773, 1.2335163042553854, 1.2430942041374509, 1.2527400080456157, 1.2624323519641578, 1.272150254813576, 1.281873224588052, 1.2915813537577883, 1.3012554038143236, 1.3108768790027292, 1.320428089424535, 1.3298922038120042, 1.339253292370833, 1.348496360165897, 1.3576073715858579, 1.366573266468099, 1.3753819684976105, 1.3840223865133345, 1.3924844093642086, 1.400758894956621, 1.408837654125728 ], [ 1.072635715477702, 1.0733647792571952, 1.0744341256841297, 1.07585123175733, 1.077622668945605, 1.0797539926947288, 1.0822496586819759, 1.0851129694374604, 1.088346048264417, 1.0919498318185792, 1.0959240697630137, 1.1002673202262254, 1.1049769330332784, 1.110049017735072, 1.1154783988146073, 1.1212585647031803, 1.1273816195362536, 1.1338382467599186, 1.140617692179916, 1.147707771538879, 1.1550949049321155, 1.1627641778692244, 1.1706994268568154, 1.1788833461029953, 1.1872976112698965, 1.1959230160000676, 1.204739617073107, 1.2137268843841553, 1.2228638523776125, 1.2321292700493527, 1.2415017471057994, 1.250959894313945, 1.2604824564810133, 1.2700484368622842, 1.2796372121109834, 1.2892286371584745, 1.298803139649752, 1.3083418037623955, 1.317826443410656, 1.3272396649831022, 1.3365649198852658, 1.3457865472602433, 1.3548898073426467, 1.3638609059658813, 1.3726870107918048, 1.3813562598664535, 1.3898577631273243, 1.3981815974982725, 1.4063187962084713, 1.4142613329638491 ], [ 1.0816997041914889, 1.0825035704216555, 1.0836418946595985, 1.0851219184400944, 1.0869500010548154, 1.0891315082520812, 1.0916707247001758, 1.0945707942787168, 1.0978336864289637, 1.1014601817889305, 1.1054498674818367, 1.109801132285447, 1.1145111542660944, 1.1195758774543294, 1.124989978576129, 1.1307468285906959, 1.1368384560605245, 1.1432555199536896, 1.1499872985820812, 1.157021699521132, 1.1643452931055014, 1.1719433699228217, 1.1798000209336785, 1.1878982375609435, 1.1962200283140012, 1.2047465481697102, 1.2134582369150522, 1.222334962861982, 1.2313561686837358, 1.2405010165263115, 1.2497485299732554, 1.2590777308558674, 1.26846776928856, 1.2778980456615943, 1.2873483236380965, 1.2967988334797835, 1.3062303652677518, 1.3156243517944135, 1.3249629410824948, 1.334229058640259, 1.3434064596908777, 1.35247977172085, 1.36143452777929, 1.3702571910285803, 1.3789351710994542, 1.3874568328408583, 1.3958114980792895, 1.4039894410146494, 1.4119818778815836, 1.4197809514983741 ], [ 1.0911274755075437, 1.0920082548775716, 1.0932172443289683, 1.0947614186799568, 1.0966468963287055, 1.098878829208257, 1.10146131332588, 1.1043973241306957, 1.1076886760510085, 1.1113360011745976, 1.1153387393495124, 1.1196951314939747, 1.1244022095065505, 1.129455779221363, 1.1348503964322183, 1.14057933919536, 1.1466345817531274, 1.153006776226878, 1.1596852478036515, 1.1666580078307518, 1.1739117874687284, 1.1814320927292778, 1.1892032801205181, 1.197208650888467, 1.2054305610211886, 1.213850543738287, 1.2224494410519082, 1.2312075410747523, 1.2401047179892029, 1.2491205719172385, 1.2582345662973617, 1.2674261607488995, 1.2766749377668596, 1.285960721928629, 1.2952636906023076, 1.3045644754225525, 1.3138442540440878, 1.3230848318965474, 1.3322687138492357, 1.3413791658530148, 1.3504002667604689, 1.3593169506376568, 1.3681150399719904, 1.3767812702538778, 1.3853033064655578, 1.3936697520511199, 1.4018701509686102, 1.4098949834394865, 1.4177356560145344, 1.4253844865698404 ], [ 1.1008930630306542, 1.1018524735048694, 1.1031334584887609, 1.1047426987325, 1.106686045933857, 1.1089684155247284, 1.1115936969274691, 1.1145646854893827, 1.1178830363151822, 1.1215492365100654, 1.125562589877796, 1.1299212073903482, 1.1346219977358467, 1.139660654502267, 1.1450316393630635, 1.1507281632699438, 1.1567421695703997, 1.1630643238753153, 1.1696840154118942, 1.176589373726039, 1.1837673032631255, 1.191203536870821, 1.198882707880184, 1.206788439285395, 1.214903447724252, 1.223209659460482, 1.2316883353440495, 1.240320201717779, 1.2490855843861477, 1.2579645430106736, 1.2669370036016265, 1.275982887105277, 1.2850822324172466, 1.2942153124705582, 1.303362742343701, 1.3125055786044688, 1.3216254093481932, 1.3307044346038626, 1.3397255369694043, 1.348672342500293, 1.3575292720137222, 1.366281583087209, 1.3749154031261654, 1.3834177539518013, 1.3917765684202468, 1.3999806996274642, 1.4080199232840827, 1.4158849338611843, 1.4235673351137408, 1.4310596255845895 ], [ 1.1109694379806663, 1.1120087916357333, 1.113362732187024, 1.1150376233624752, 1.1170390280025617, 1.1193716047574722, 1.122039019390186, 1.1250438747100209, 1.1283876599948233, 1.1320707176907976, 1.136092222986298, 1.1404501709952524, 1.145141366804364, 1.1501614152284767, 1.15550470925901, 1.1611644183156118, 1.1671324790616262, 1.1733995924560645, 1.1799552308401458, 1.186787658320032, 1.1938839667299301, 1.2012301282840898, 1.208811064861046, 1.216610732853595, 1.2246122217417512, 1.2327978640252195, 1.2411493538693865, 1.2496478717357515, 1.2582742123378727, 1.267008913440942, 1.2758323832687435, 1.284725024563778, 1.293667353642504, 1.3026401130806926, 1.3116243769444198, 1.320601647742822, 1.329553944516633, 1.3384638816898595, 1.347314738500832, 1.3560905189936476, 1.3647760026926823, 1.3733567862028833, 1.3818193160780414, 1.3901509133796432, 1.39833979041194, 1.4063750601656233, 1.4142467390349904, 1.4219457433926315, 1.4294638806137385, 1.4367938351400833 ], [ 1.1213287307782547, 1.1224489274949538, 1.1238764067969689, 1.1256171968239013, 1.1276765532443644, 1.1300588605392683, 1.132767545371203, 1.1358050057969526, 1.1391725576063276, 1.142870396579514, 1.1468975735597804, 1.151251978335243, 1.1559303285010374, 1.1609281605402775, 1.1662398219428698, 1.1718584648446964, 1.1777760430450301, 1.183983315109969, 1.1904698565172034, 1.197224083501277, 1.204233290567002, 1.2114837027314505, 1.2189605426015813, 1.2266481115229544, 1.2345298833265428, 1.2425886086898978, 1.2508064278165063, 1.2591649890013588, 1.2676455706583412, 1.276229204500561, 1.2848967977541856, 1.2936292525220061, 1.3024075806715933, 1.31121301288849, 1.3200271007953246, 1.3288318112849633, 1.3376096124458756, 1.3463435506666257, 1.3550173186941712, 1.3636153145856154, 1.3721226916369094, 1.3805253994942766, 1.3888102167568699, 1.3969647754626437, 1.4049775779156322, 1.412838006362538, 1.4205363260617805, 1.4280636823099693, 1.4354120920008777, 1.4425744302921508 ], [ 1.1319424449601836, 1.1331439723222048, 1.1346451961033484, 1.1364517943991301, 1.1385687011118981, 1.1410000122128776, 1.1437489019350542, 1.1468175523512634, 1.1502070978771546, 1.1539175842454448, 1.1579479398964265, 1.1622959568492215, 1.1669582780671865, 1.171930388999254, 1.1772066121059885, 1.1827801044432993, 1.1886428594851823, 1.1947857151153212, 1.2011983700165527, 1.207869410553617, 1.2147863497711489, 1.2219356794446137, 1.2293029353586704, 1.2368727752542352, 1.2446290682587329, 1.2525549941348206, 1.260633150363187, 1.26884566490666, 1.2771743124639927, 1.2856006320861098, 1.2941060441678391, 1.302671965019623, 1.3112799174458063, 1.3199116359922336, 1.3285491657641673, 1.3371749539470732, 1.345771933381635, 1.3543235977467183, 1.3628140680879635, 1.371228150593394, 1.3795513856616755, 1.3877700884322939, 1.395871381051853, 1.4038432170367083, 1.411674398161041, 1.4193545843519988, 1.426874297111297, 1.4342249170070258, 1.4413986757919566, 1.448388643706542 ], [ 1.1427816623445204, 1.1440646008260602, 1.1456394017310918, 1.1475113824046144, 1.1496851438713163, 1.1521644822831965, 1.1549523084877222, 1.1580505788618478, 1.1614602390846804, 1.165181180942145, 1.169212210926422, 1.1735510285764037, 1.1781942123124924, 1.1831372108958482, 1.1883743394127049, 1.1938987796152443, 1.1997025853147425, 1.2057766941511163, 1.2121109473653446, 1.2186941191687755, 1.2255139569890219, 1.232557233365719, 1.2398098096692263, 1.2472567112116273, 1.2548822127788444, 1.2626699331782605, 1.2706029370865988, 1.2786638422987033, 1.2868349304073297, 1.2950982589686806, 1.3034357733070012, 1.3118294162635753, 1.320261234382622, 1.3287134792337345, 1.3371687027855523, 1.3456098459590091, 1.354020319694596, 1.3623840780617213, 1.3706856831162595, 1.3789103613735574, 1.3870440519068536, 1.3950734462052095, 1.4029860200310649, 1.4107700576053679, 1.4184146685193695, 1.425909797826887, 1.4332462298112734, 1.4404155859478436, 1.4474103175973385, 1.4542236939702073 ], [ 1.1538172369283737, 1.1551812694695012, 1.1568291155354529, 1.158765724408328, 1.160995356354267, 1.163521499339807, 1.166346792367185, 1.169472958273688, 1.1729007477138809, 1.176629894801085, 1.180659083792478, 1.1849859254702206, 1.189606941599742, 1.194517556017814, 1.1997120914016912, 1.2051837714317506, 1.2109247287111684, 1.2169260193109739, 1.2231776450840317, 1.2296685849145326, 1.2363868358660148, 1.2433194648209063, 1.2504526707393087, 1.2577718571755236, 1.2652617142345222, 1.2729063087672885, 1.280689181315945, 1.2885934481327996, 1.296601906508159, 1.3046971416369522, 1.3128616333192737, 1.3210778609079854, 1.329328405071934, 1.3375960451227247, 1.3458638508447474, 1.354115267963421, 1.3623341965783573, 1.3705050620713382, 1.3786128781700442, 1.3866433020048279, 1.3945826811361584, 1.4024180926534908, 1.4101373745526062, 1.4177291496872295, 1.4251828426635509, 1.4324886901028733, 1.4396377447401387, 1.4466218738547925, 1.4534337525474499, 1.4600668523821212 ], [ 1.165019975403157, 1.1664644005960472, 1.1681844071737049, 1.170184572109772, 1.1724688100186857, 1.1750402951357342, 1.177901388683577, 1.1810535741854065, 1.1844974024296089, 1.18823244681922, 1.192257268951649, 1.1965693936332702, 1.2011652922279386, 1.2060403732702973, 1.21118897957269, 1.2166043915027718, 1.2222788365811936, 1.228203505936656, 1.234368578387213, 1.2407632529629875, 1.247375790555456, 1.254193565108865, 1.2612031244122794, 1.2683902601585884, 1.2757400865581632, 1.2832371264638565, 1.2908654037041558, 1.2986085401417102, 1.3064498558759128, 1.3143724709838946, 1.3223594072332263, 1.3303936882894098, 1.3384584370688428, 1.3465369690417004, 1.354612880458751, 1.3626701306525681, 1.3706931177406727, 1.3786667472296275, 1.3865764931819313, 1.394408451757857, 1.4021493870811614, 1.4097867694985347, 1.417308806408245, 1.4247044659224914, 1.4319634937016064, 1.4390764233564155, 1.446034580859245, 1.452830083434702, 1.4594558334205154, 1.4659055075967846 ], [ 1.176360803533628, 1.1778845517736896, 1.1796754963786433, 1.1817378405330563, 1.1840751510560334, 1.1866902855738382, 1.1895853240762944, 1.1927615071513764, 1.19621918254789, 1.1999577609611638, 1.2039756812202835, 1.2082703845039608, 1.2128382969006244, 1.2176748195701335, 1.2227743259172004, 1.2281301654723504, 1.2337346745023412, 1.2395791936559974, 1.2456540931327749, 1.2519488059101382, 1.2584518694809397, 1.2651509763547915, 1.2720330333033338, 1.279084229017728, 1.2862901095357533, 1.2936356605149895, 1.3011053951995328, 1.3086834467612107, 1.3163536635963504, 1.3240997061225963, 1.331905143640213, 1.3397535498892297, 1.3476285960378338, 1.355514139968243, 1.3633943108750388, 1.371253588349509, 1.3790768752854463, 1.3868495641014347, 1.3945575959280325, 1.4021875125519143, 1.4097265010407516, 1.4171624310909503, 1.424483885243852, 1.4316801822049139, 1.4387413935740327, 1.4456583543544657, 1.4524226676531415, 1.459026704017659, 1.4654635958759514, 1.4717272275549624 ], [ 1.1878109188754322, 1.1894125709370784, 1.1912729105814954, 1.1933957682057557, 1.1957843631992866, 1.198441236187296, 1.2013681848486923, 1.2045662053576198, 1.208035441017222, 1.2117751390708995, 1.2157836161023814, 1.2200582319675117, 1.2245953719010392, 1.2293904363286416, 1.234437837965899, 1.2397310059494795, 1.245262396956744, 1.2510235134651941, 1.2570049294341858, 1.2631963237306558, 1.2695865215606805, 1.2761635440214985, 1.2829146656770265, 1.2898264798128056, 1.2968849707725523, 1.3040755925432976, 1.3113833525574765, 1.3187928995305809, 1.3262886140566255, 1.3338547006410484, 1.3414752798571101, 1.349134479361258, 1.3568165225871867, 1.3645058140492776, 1.3721870203159767, 1.379845145855347, 1.3874656031021242, 1.3950342762431944, 1.402537578361847, 1.4099625017173059, 1.417296661062244, 1.4245283300153782, 1.431646470607473, 1.4386407562065044, 1.4455015881013433, 1.452220106082769, 1.4587881934070384, 1.465198476561012, 1.471444320270198, 1.4775198182030302 ], [ 1.1993419309316926, 1.2010197385097985, 1.2029476290954595, 1.205129063515994, 1.2075669163626799, 1.2102634131458914, 1.213220070374889, 1.216437640388231, 1.2199160624059264, 1.223654420827089, 1.2276509113395546, 1.2319028150144795, 1.2364064802809709, 1.2411573125331643, 1.2461497711048481, 1.2513773734216544, 1.2568327062625744, 1.2625074441849276, 1.2683923752518493, 1.2744774342245497, 1.2807517433336575, 1.2872036606298851, 1.2938208357485943, 1.3005902727258727, 1.307498399297404, 1.3145311419155365, 1.3216740055503922, 1.3289121572086104, 1.3362305120139129, 1.3436138206491333, 1.351046756957134, 1.358514004533939, 1.3660003412158443, 1.37349072045614, 1.3809703487002316, 1.3884247579939888, 1.3958398731933914, 1.4032020732789683, 1.4104982464121145, 1.4177158384986102, 1.4248428951445318, 1.4318680969998154, 1.4387807885827966, 1.4455710007646556, 1.4522294671653266, 1.4587476347718997, 1.465117669137397, 1.4713324545527013, 1.4773855896079158, 1.4832713785733012 ], [ 1.2109259899290126, 1.2126778977488375, 1.214671215123202, 1.2169090384936385, 1.219393902308051, 1.2221277209017916, 1.225111732783427, 1.2283464489496811, 1.2318316065953234, 1.2355661292432236, 1.2395480939572094, 1.2437747059729771, 1.248242280830912, 1.2529462339393111, 1.2578810774349278, 1.2630404242197446, 1.268416999107605, 1.2740026570789191, 1.2797884086864169, 1.2857644526599763, 1.2919202157143388, 1.2982443994704274, 1.3047250342683072, 1.3113495394912325, 1.3181047898518847, 1.3249771869294917, 1.3319527351027467, 1.3390171209084367, 1.3461557947751115, 1.3533540540372928, 1.3605971261283427, 1.3678702508763887, 1.37515876088308, 1.3824481590447808, 1.3897241923742338, 1.3969729213926818, 1.4041807844826053, 1.411334656715184, 1.418421902790311, 1.425430423846941, 1.4323486980151854, 1.4391658146862971, 1.4458715025714393, 1.4524561517031955, 1.4589108296050153, 1.4652272919127893, 1.471397987779664, 1.4774160604307764, 1.4832753432593888, 1.4889703518707624 ], [ 1.2225359051641953, 1.2243595743101416, 1.2264159366109464, 1.2287077310391692, 1.2312371583400894, 1.2340058274355268, 1.2370147038164436, 1.2402640613682254, 1.2437534388872682, 1.247481602289727, 1.251446513227774, 1.2556453045576106, 1.2600742628807322, 1.2647288182228573, 1.2696035408268276, 1.2746921450043291, 1.279987499997676, 1.2854816478221889, 1.2911658280717555, 1.297030509657463, 1.3030654294037467, 1.3092596373463494, 1.315601548466846, 1.3220790004687237, 1.3286793170617106, 1.3353893760860163, 1.3421956816869542, 1.3490844396513129, 1.3560416349454458, 1.3630531104538897, 1.37010464590735, 1.3771820360079432, 1.3842711668050511, 1.3913580894431303, 1.3984290904885281, 1.4054707581417547, 1.4124700437498916, 1.4194143181467949, 1.426291422462972, 1.4330897131587657, 1.43979810114139, 1.4464060849258875, 1.4529037778906504, 1.4592819297585962, 1.465531942504285, 1.4716458809454913, 1.4776164783243242, 1.483437137219055, 1.4891019261532814, 1.4946055722853442 ], [ 1.234145253545012, 1.2360380856952697, 1.2381548766368629, 1.240498016305816, 1.2430693797438914, 1.245870277811704, 1.2489014095568975, 1.2521628175206951, 1.2556538471360772, 1.2593731111776294, 1.263318459998903, 1.2674869580703076, 1.2718748671354527, 1.2764776361524237, 1.2812898980838037, 1.2863054735399333, 1.2915173812514942, 1.2969178553335716, 1.3024983692889354, 1.308249666670312, 1.3141617982721012, 1.3202241656496778, 1.3264255706708008, 1.3327542706952868, 1.3391980388641345, 1.3457442288664845, 1.3523798434505978, 1.3590916058600544, 1.365866033313895, 1.372689511612039, 1.379548369936087, 1.3864289549298567, 1.3933177031816328, 1.4002012112881501, 1.407066302755505, 1.4139000910801067, 1.4206900384503607, 1.4274240096125308, 1.434090320549308, 1.4406777817232927, 1.4471757357378765, 1.4535740893620472, 1.4598633399518468, 1.466034596378543, 1.4720795946406156, 1.4779907083935657, 1.4837609546775987, 1.4893839951594487, 1.4948541332305316, 1.5001663073210743 ], [ 1.2457284786446294, 1.2476876409276714, 1.2498620337112367, 1.2522537076412932, 1.2548642213982135, 1.257694596501011, 1.260745273497098, 1.2640160706788859, 1.2675061463795558, 1.2712139657570973, 1.2751372728003254, 1.2792730681082585, 1.2836175928249487, 1.2881663189700974, 1.2929139462972323, 1.29785440573485, 1.3029808694138807, 1.3082857672470525, 1.3137608099913625, 1.319397018683786, 1.32518476028724, 1.3311137893154867, 1.3371732951232185, 1.3433519544549792, 1.3496379887495837, 1.356019225601483, 1.3624831636940709, 1.3690170404472104, 1.3756079015668838, 1.3822426716514957, 1.3889082249980822, 1.3955914557625126, 1.4022793466592167, 1.4089590354360855, 1.4156178784258406, 1.4222435105536726, 1.4288239012683226, 1.4353474059574698, 1.4418028125044409, 1.4481793827395535, 1.4544668886327203, 1.460655643162555, 1.466736525879109, 1.472701003250972, 1.4785411439524279, 1.4842496293013592, 1.4898197591040945, 1.4952454531991948, 1.5005212490187199, 1.5056422955034856 ], [ 1.2572609803611345, 1.2592834305733491, 1.2615124121320251, 1.2639496472662715, 1.2665963887786804, 1.2694533787214475, 1.2725208082386792, 1.2757982795904348, 1.279284771316323, 1.282978607391149, 1.2868774310887943, 1.2909781841215662, 1.2952770914765237, 1.2997696522399647, 1.304450636592758, 1.3093140890734456, 1.3143533381389072, 1.3195610119984744, 1.3249290606479789, 1.330448783979761, 1.3361108657874645, 1.3419054134185016, 1.3478220027524916, 1.353849728103037, 1.3599772565567303, 1.3661928861823853, 1.3724846074694081, 1.3788401672921116, 1.385247134649446, 1.391692967400202, 1.3981650792029132, 1.4046509058782402, 1.4111379704381626, 1.417613946069751, 1.4240667164191323, 1.430484432590943, 1.4368555663573646, 1.443168959155782, 1.4494138665422225, 1.4555799978565969, 1.461657550942722, 1.4676372418490748, 1.4735103295136514, 1.4792686355063334, 1.4849045589644367, 1.4904110869103788, 1.4957818001847791, 1.5010108752637505, 1.506093082255796, 1.5110237793924275 ], [ 1.2687191951291472, 1.2708017070733881, 1.2730821023905512, 1.2755617867190363, 1.2782417184211883, 1.2811223709142556, 1.2842036959867669, 1.2874850890052096, 1.2909653568808621, 1.2946426895908567, 1.2985146359418114, 1.3025780841428922, 1.306829247630422, 1.3112636564679423, 1.3158761545406596, 1.320660902673588, 1.3256113877271867, 1.3307204376593613, 1.3359802424838445, 1.341382380997144, 1.346917853086307, 1.352577117365211, 1.3583501338181962, 1.36422641105757, 1.3701950577285487, 1.3762448375253125, 1.3823642272180403, 1.3885414770371396, 1.3947646727198326, 1.4010217984982392, 1.4073008002982121, 1.4135896484248636, 1.419876399033574, 1.4261492537230342, 1.4323966166379216, 1.43860714853102, 1.4447698173054224, 1.4508739446345202, 1.45690924833816, 1.4628658802752112, 1.4687344595933967, 1.4745061012550322, 1.4801724398298959, 1.485725648613135, 1.4911584541853318, 1.4964641465833066, 1.5016365852933187, 1.506670201313087, 1.5115599955558425, 1.516301533888536 ], [ 1.280080666560206, 1.2822198552832595, 1.2845483515484797, 1.2870672570208341, 1.2897772478406226, 1.292678540395952, 1.2957708579301228, 1.2990533987908077, 1.3025248071102802, 1.3061831466522718, 1.3100258784797008, 1.314049842998488, 1.3182512468260434, 1.3226256548268374, 1.3271679875582578, 1.3318725242800937, 1.3367329116016848, 1.3417421777695429, 1.3468927525334367, 1.3521764924664736, 1.3575847115530024, 1.3631082167949575, 1.3687373485225334, 1.3744620250294706, 1.3802717910885614, 1.3861558698414609, 1.392103217501576, 1.3981025802618596, 1.4041425527636298, 1.4102116374595277, 1.416298304194601, 1.4223910493350183, 1.428478453793541, 1.4345492393339354, 1.440592322581758, 1.446596866224318, 1.4525523269465797, 1.458448499719521, 1.464275558131214, 1.4700240905262203, 1.4756851317935036, 1.4812501907156126, 1.4867112728599898, 1.4920608990562307, 1.4972921195594733, 1.5023985240494833, 1.5073742476565541, 1.5122139732395177, 1.5169129301675617, 1.5214668898769008 ], [ 1.2913241063748977, 1.293516453099812, 1.2958896234912594, 1.2984444284990408, 1.3011812748804905, 1.3041001342066796, 1.3072005125763833, 1.3104814217582201, 1.3139413524765047, 1.317578250519481, 1.3213894962866117, 1.3253718883107286, 1.3295216311997669, 1.333834328348317, 1.3383049796764226, 1.342927984565983, 1.3476971500847712, 1.3526057045143636, 1.3576463161301093, 1.362811117116748, 1.3680917324404398, 1.3734793134366536, 1.3789645758118252, 1.3845378416964649, 1.3901890853291488, 1.395907981896157, 1.401683959002653, 1.4075062502101645, 1.4133639500435915, 1.419246069850432, 1.4251415938867769, 1.4310395350088734, 1.4369289893661685, 1.4427991895207073, 1.4486395554578426, 1.454439743002816, 1.4601896892151636, 1.4658796543963424, 1.4715002604130756, 1.4770425251082497, 1.4824978926401429, 1.4878582596580359, 1.4931159972862926, 1.498263968948053, 1.503295544113241, 1.5082046081026756, 1.5129855681202653, 1.5176333557183335, 1.5221434259273239, 1.526511753300562 ], [ 1.3024294455177594, 1.3046713220843127, 1.3070856489902554, 1.3096729602297505, 1.3124334064907213, 1.3153667271931928, 1.3184722231267756, 1.3217487303311815, 1.325194595868012, 1.3288076561082878, 1.3325852181129734, 1.3365240446179822, 1.340620343057311, 1.3448697589739396, 1.349267374082607, 1.3538077091654968, 1.3584847319030273, 1.3632918696679444, 1.3682220272419792, 1.3732676093490364, 1.37842054783667, 1.3836723332777137, 1.389014050705675, 1.3944364191416847, 1.3999298345175313, 1.4054844155503012, 1.4110900520805085, 1.4167364553489907, 1.422413209659747, 1.4281098248576183, 1.4338157890419456, 1.4395206209408804, 1.4452139213857664, 1.4508854233504238, 1.4565250400557983, 1.462122910684696, 1.4676694433031088, 1.473155354641917, 1.4785717064541966, 1.4839099382266563, 1.4891618960875492, 1.4943198578157197, 1.4993765539152384, 1.5043251847755226, 1.5091594339875043, 1.5138734779312237, 1.518461991788763, 1.5229201521685554, 1.5272436365528066, 1.531428619799089 ], [ 1.3133778754023095, 1.3156655680464664, 1.318117465560619, 1.3207338391146606, 1.3235145969812618, 1.326459259411715, 1.3295669340171012, 1.3328362922308887, 1.3362655474399059, 1.3398524353568353, 1.3435941971719136, 1.3474875659678265, 1.3515287568153687, 1.3557134608927877, 1.3600368438937136, 1.3644935489101868, 1.3690777039015714, 1.373782933787674, 1.3786023771362281, 1.383528707350451, 1.3885541582014267, 1.3936705534921972, 1.398869340585239, 1.404141627472804, 1.4094782230208582, 1.414869679972614, 1.4203063402584735, 1.4257783821261625, 1.4312758685796456, 1.4367887965987243, 1.4423071466039592, 1.4478209316342747, 1.4533202457172474, 1.458795310934487, 1.4642365227159762, 1.4696344929369842, 1.4749800904375128, 1.4802644786363581, 1.485479149967551, 1.4906159569251138, 1.4956671395606898, 1.5006253493364312, 1.5054836692910178, 1.5102356305288622, 1.514875225090143, 1.5193969153018378, 1.5237956397469048, 1.5280668160196837, 1.5322063404606998, 1.5362105850833525 ], [ 1.3241518793090417, 1.326481611629737, 1.3289674471769994, 1.3316094086798982, 1.3344071758689346, 1.3373600630018943, 1.3404669968136091, 1.3437264954051251, 1.3471366486035339, 1.350695100317465, 1.3543990333868083, 1.358245157381608, 1.3622296997481793, 1.3663484006343847, 1.3705965116550705, 1.374968798785687, 1.379459549500245, 1.3840625842001528, 1.3887712719142586, 1.3935785501878757, 1.398476949019695, 1.4034586186497413, 1.4085153609495578, 1.4136386641168357, 1.4188197403316054, 1.4240495659903039, 1.4293189240981916, 1.4346184483707174, 1.4399386685714637, 1.445270056598907, 1.4506030728273445, 1.4559282122092079, 1.4612360496567962, 1.4665172842410845, 1.4717627817731986, 1.4769636153694183, 1.4821111036425207, 1.4871968462091534, 1.4922127562537228, 1.4971510899423572, 1.502004472534451, 1.5067659210927518, 1.5114288637444453, 1.5159871554944624, 1.5204350906370543, 1.5247674118518089, 1.5289793161056233, 1.533066457511872, 1.5370249473224373, 1.5408513512473352 ], [ 1.3347352540471884, 1.3371032090264634, 1.3396193239961793, 1.3422833877699556, 1.345094865517844, 1.348052878762411, 1.3511561857274081, 1.3544031625007158, 1.3577917854918877, 1.361319615664274, 1.3649837850023834, 1.3687809856396416, 1.3727074620229636, 1.3767590064320958, 1.3809309581074602, 1.3852182061727585, 1.3896151964713284, 1.3941159423689788, 1.3987140395129858, 1.4034026844767462, 1.4081746971633342, 1.4130225467882673, 1.417938381212491, 1.4229140593509417, 1.4279411863402316, 1.4330111511112982, 1.4381151659800229, 1.443244307841594, 1.4483895605330248, 1.45354185791413, 1.4586921272104214, 1.4638313321624932, 1.468950515535656, 1.474040840560644, 1.479093630900903, 1.4841004087734455, 1.4890529308878282, 1.493943221910215, 1.4987636052055455, 1.5035067306593648, 1.508165599430231, 1.5127335855330342, 1.5172044542012748, 1.5215723770217702, 1.5258319438773222, 1.529978171770799, 1.5340065106375744, 1.5379128462818508, 1.541693500596067, 1.5453452292412568 ], [ 1.3451131220871955, 1.347515463047172, 1.3500581923310166, 1.3527408794031501, 1.3555627888644535, 1.358522862746186, 1.3616197030942894, 1.3648515552570835, 1.368216292310549, 1.3717114010589166, 1.3753339700348528, 1.379080679894676, 1.3829477965620958, 1.3869311674225386, 1.3910262208120003, 1.395227968982614, 1.3995310146643836, 1.4039295612806109, 1.4084174268145842, 1.4129880612684462, 1.4176345676014308, 1.4223497259849451, 1.427126021165326, 1.431955672682747, 1.4368306676554958, 1.4417427958043683, 1.4466836863613435, 1.4516448464817349, 1.4566177007591259, 1.461593631429139, 1.466564018841337, 1.4715202817789337, 1.4764539172135553, 1.4813565390972259, 1.48621991581534, 1.4910360059524546, 1.4957969920564311, 1.5004953121245035, 1.5051236885768722, 1.5096751545273288, 1.5141430772059508, 1.5185211784340737, 1.522803552096169, 1.5269846785953372, 1.5310594363184846, 1.5350231101730503, 1.5388713972888004, 1.542600410005571, 1.5462066762906912, 1.549687137748021 ], [ 1.3552719344709292, 1.3577048248687527, 1.3602705152193408, 1.3629683701531239, 1.3657974676137585, 1.3687565832852415, 1.3718441752549255, 1.3750583692818612, 1.378396945062193, 1.3818573238901104, 1.3854365581038894, 1.3891313226830557, 1.392937909326899, 1.396852223299232, 1.4008697832717842, 1.4049857243426362, 1.4091948043479143, 1.41349141352744, 1.4178695875489038, 1.422323023841882, 1.4268451011424061, 1.4314289021022104, 1.4360672387730387, 1.4407526807367648, 1.4454775856157833, 1.4502341316659177, 1.455014352126005, 1.4598101709749014, 1.4646134397283066, 1.4694159748950462, 1.4742095957058456, 1.4789861617271272, 1.483737609978774, 1.4884559911874056, 1.493133504825776, 1.4977625326137785, 1.5023356701865997, 1.506845756669891, 1.5112859019397074, 1.5156495113850428, 1.519930308032307, 1.5241223519326106, 1.5282200567537487, 1.5322182035578051, 1.5361119517821116, 1.5398968474747274, 1.543568828865777, 1.5471242293818714, 1.5505597782328404, 1.5538725987178734 ], [ 1.3651994649077221, 1.3676590868870746, 1.3702441140316364, 1.3729537205188755, 1.3757868113889782, 1.378742008947955, 1.3818176393593176, 1.385011719754045, 1.3883219462119596, 1.3917456829762567, 1.3952799532577258, 1.398921431966115, 1.4026664406756464, 1.4065109450914934, 1.4104505552373663, 1.4144805285332152, 1.4185957758788592, 1.4227908708061707, 1.4270600617103346, 1.4313972871208458, 1.4357961939259767, 1.4402501584205671, 1.444752310006403, 1.4492955573374129, 1.4538726166683023, 1.458476042135112, 1.4630982576703744, 1.467731590233467, 1.472368304019703, 1.477000635299447, 1.4816208275318865, 1.4862211663970446, 1.490794014394576, 1.4953318446687525, 1.4998272737356062, 1.504273092810248, 1.5086622974590165, 1.5129881153321847, 1.5172440317668343, 1.521423813086193, 1.5255215274593243, 1.5295315632233661, 1.5334486446081101, 1.5372678448389945, 1.5409845966287996, 1.544594700099672, 1.5480943282055386, 1.5514800297495344, 1.5547487301123182, 1.5578977298242358 ], [ 1.3748847955620265, 1.3773673671971511, 1.379968151657977, 1.3826861468413612, 1.3855200984098728, 1.3884684880212377, 1.3915295217051464, 1.3947011186815823, 1.397980900937823, 1.4013661838920637, 1.4048539684686145, 1.4084409348947902, 1.4121234385033832, 1.4158975077894704, 1.4197588449286422, 1.4237028289174656, 1.4277245214486234, 1.4318186755842408, 1.4359797472427938, 1.4402019094689469, 1.444479069411908, 1.4488048878971567, 1.4531728014387384, 1.4575760465047871, 1.4620076858177313, 1.4664606364427983, 1.4709276993941116, 1.4754015904673112, 1.4798749719914928, 1.4843404851813806, 1.4887907827641156, 1.4932185615532971, 1.4976165946467859, 1.5019777629338176, 1.5062950856114763, 1.510561749429905, 1.5147711364093215, 1.518916849799701, 1.5229927380846178, 1.5269929168637573, 1.5309117884830572, 1.5347440593163255, 1.53848475463678, 1.542129231050568, 1.5456731864959008, 1.5491126678410385, 1.5524440761407394, 1.5556641696344062, 1.558770064589145, 1.5617592341077942 ], [ 1.3843182951287227, 1.386820086313993, 1.389433107903753, 1.392156195411799, 1.3949879483601073, 1.397926720192213, 1.4009706082984774, 1.4041174444148892, 1.4073647856798681, 1.4107099066451148, 1.4141497925359912, 1.4176811340451685, 1.4213003239209272, 1.4250034555809745, 1.4287863239454563, 1.4326444286412627, 1.4365729796860258, 1.4405669057152424, 1.444620864772134, 1.4487292576371291, 1.4528862436336534, 1.457085758809043, 1.461321536354613, 1.4655871290968232, 1.469875933862547, 1.4741812174955675, 1.4784961442788096, 1.4828138044977341, 1.4871272438649876, 1.4914294935151964, 1.4957136002720124, 1.4999726568873377, 1.5041998319554764, 1.5083883992124802, 1.5125317659434503, 1.51662350023738, 1.520657356850409, 1.5246273014628113, 1.52852753314283, 1.5323525048601851, 1.5360969419233952, 1.5397558582468847, 1.5433245703856562, 1.546798709306175, 1.550174229891518, 1.553447418206283, 1.556614896571691, 1.559673626523415, 1.5626209097438732, 1.5654543870768598 ] ], "zauto": true, "zmax": 1.5654543870768598, "zmin": -1.5654543870768598 }, { "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.03757615594421246, 0.03609309875355173, 0.034714124305895926, 0.03344985876223721, 0.03231287975338795, 0.03131738676556079, 0.030478594015039183, 0.029811831152486066, 0.029331394231198987, 0.029049266231124013, 0.028973900727072385, 0.02910929841964224, 0.029454572831930006, 0.030004095715263742, 0.030748171156841052, 0.03167406826339932, 0.0327671900939366, 0.034012177875083496, 0.03539381768514431, 0.0368976947644714, 0.038510601853570886, 0.04022074300353555, 0.042017786292000626, 0.04389281603120157, 0.04583822527844308, 0.047847578157440715, 0.049915461505031386, 0.052037337690887975, 0.05420940513054356, 0.05642846960678069, 0.058691827514312754, 0.06099716108286175, 0.06334244515392605, 0.06572586493086424, 0.06814574412251553, 0.07060048295527631, 0.07308850558108199, 0.07560821643405205, 0.07815796508052367, 0.08073601907050636, 0.08334054424358155, 0.08596959188007516, 0.08862109202985478, 0.09129285230430995, 0.09398256138779518, 0.09668779651547255, 0.09940603417558265, 0.10213466332401772, 0.10487100044468897, 0.1076123058469695 ], [ 0.03538359523639254, 0.033950955253371884, 0.03262408671469019, 0.03141320742385713, 0.030330577003231725, 0.029390150658638464, 0.02860693174858994, 0.02799601076326792, 0.02757134419660817, 0.027344413281941385, 0.027322981807540534, 0.02751020250368543, 0.02790427007329493, 0.028498690297944655, 0.02928307800244414, 0.0302442789114318, 0.03136757403456646, 0.03263776661745478, 0.034040034160455125, 0.0355605107029657, 0.037186622932617576, 0.03890723246466037, 0.04071264244242973, 0.04259451931661405, 0.04454576841563515, 0.04656038968094859, 0.04863332995097541, 0.050760340972845146, 0.05293784760274176, 0.05516282783730675, 0.05743270481070885, 0.059745250212098394, 0.06209849837371296, 0.06449067031359278, 0.06692010714073936, 0.06938521236000873, 0.07188440270707311, 0.07441606718668559, 0.07697853398200162, 0.07957004485935429, 0.08218873662613635, 0.08483262912333105, 0.0874996191611502, 0.09018747974561223, 0.09289386390194741, 0.0956163123803988, 0.09835226453167055, 0.10109907166142516, 0.10385401221261575, 0.10661430817717558 ], [ 0.033322542997776816, 0.031950460181503444, 0.030686567058184712, 0.02954053514847495, 0.028524115644875572, 0.027650766086132556, 0.026934956507929687, 0.02639115089995667, 0.02603253466227881, 0.02586965178876982, 0.02590919273179616, 0.0261531896984048, 0.026598801493505023, 0.02723872133672472, 0.028062079913513904, 0.029055611934055904, 0.030204841149367993, 0.031495099721985984, 0.03291228885579235, 0.034443368312878475, 0.03607661326475908, 0.03780169751048908, 0.039609661753566894, 0.04149281486175181, 0.04344460246725946, 0.045459465040695486, 0.04753269824007408, 0.04966032198496725, 0.051838960796657056, 0.05406573579473583, 0.05633816773853443, 0.05865409018185254, 0.06101157184780126, 0.06340884751884475, 0.06584425695256138, 0.06831619151094989, 0.07082304830357818, 0.07336319168843171, 0.0759349219587844, 0.07853645098470655, 0.08116588449234556, 0.0838212105683294, 0.086500293885025, 0.0892008750644657, 0.09192057454181918, 0.09465690025567905, 0.09740725848329519, 0.10016896715188443, 0.10293927098929276, 0.105715357924363 ], [ 0.03138784273462958, 0.030085599359772522, 0.028894724884083706, 0.027824198669667597, 0.026885059830858836, 0.026089996673626995, 0.025452602689671106, 0.02498631016622748, 0.024703095428584863, 0.024612144090660575, 0.0247187307892752, 0.025023560401988727, 0.025522717735487737, 0.026208211661399108, 0.027068947860347248, 0.028091885771640117, 0.029263148509758415, 0.03056893052906556, 0.03199613969434776, 0.03353278278535072, 0.03516814349122873, 0.03689281379391285, 0.038698634076976574, 0.04057858438503497, 0.042526655537485455, 0.0445377174079919, 0.04660739349685154, 0.04873194567337863, 0.05090816996373431, 0.05313330279113002, 0.0554049365534698, 0.05772094342329302, 0.06007940649397092, 0.062478557701787306, 0.06491672222934178, 0.06739226929712973, 0.0699035693630494, 0.07244895778071109, 0.07502670493134674, 0.07763499276117575, 0.08027189754631242, 0.08293537858817056, 0.08562327242904445, 0.08833329208039228, 0.09106303068219236, 0.09380996896396315, 0.09657148585642547, 0.09934487160606523, 0.10212734276881616, 0.10491605850002546 ], [ 0.02957306316574964, 0.028348646480134954, 0.027239512705213426, 0.026253791444757937, 0.025401593760020165, 0.024694557909166193, 0.024145057306662346, 0.023765103739535803, 0.023565067326584723, 0.023552423254215065, 0.02373078077798774, 0.02409941309257249, 0.02465338417187601, 0.025384207166628956, 0.026280840172782562, 0.0273307793753332, 0.02852104748053093, 0.029838959176449045, 0.031272630682987704, 0.03281126002102425, 0.03444523262896755, 0.03616611079177701, 0.037966555975793556, 0.03984021942163969, 0.04178162340628259, 0.04378604557980646, 0.045849412018967875, 0.04796820059136027, 0.050139354136246206, 0.05236020214561389, 0.05462838953824401, 0.05694181139053882, 0.059298552886109704, 0.06169683413550056, 0.06413495982858548, 0.06661127388855477, 0.06912411939675131, 0.07167180406645726, 0.07425257148101427, 0.07686457820099539, 0.07950587670786231, 0.08217440400721523, 0.08486797557811018, 0.0875842842373036, 0.09032090339520937, 0.09307529411715311, 0.09584481536921319, 0.09862673682052124, 0.10141825358944928, 0.10421650235547116 ], [ 0.02787115037426621, 0.026730869490673197, 0.02571044415743001, 0.024816982795529435, 0.02405944352972057, 0.02344813699386202, 0.022993897265491687, 0.022706980663318017, 0.02259584160859078, 0.022666009627617348, 0.02291930907397988, 0.023353595943084223, 0.023963049325522904, 0.024738906003116005, 0.025670430452815612, 0.026745900341118064, 0.027953444113795082, 0.02928165115377905, 0.03071994850471979, 0.03225878319307979, 0.03388966580462036, 0.0356051283461519, 0.0373986377065041, 0.03926449248177781, 0.041197719342468575, 0.04319397675359204, 0.04524946858020171, 0.0473608672352577, 0.049525244789090254, 0.05174001021549316, 0.054002851229572504, 0.05631167966712523, 0.05866457987686829, 0.0610597600445998, 0.06349550669722588, 0.06597014283404959, 0.06848199021336367, 0.07102933630414215, 0.07361040632093852, 0.07622334061991383, 0.07886617756900942, 0.08153684183488326, 0.08423313786951635, 0.08695274824090062, 0.08969323634211068, 0.09245205293436919, 0.0952265459322442, 0.09801397282092975, 0.10081151510239458, 0.10361629419479725 ], [ 0.026275236247142647, 0.025223435971429786, 0.02429661543157599, 0.023500678181826728, 0.022843202594546586, 0.022332912460275765, 0.021978832123262192, 0.021789213583033273, 0.021770407783553564, 0.021925906954407548, 0.022255771815600327, 0.0227565651350569, 0.023421773288860474, 0.02424257119456599, 0.025208725021404286, 0.026309443338537977, 0.02753405430573172, 0.028872464299272708, 0.030315412906663015, 0.03185457049817641, 0.033482531770449464, 0.03519275139781725, 0.03697945509062518, 0.0388375466265699, 0.04076252139915031, 0.0427503902865431, 0.04479761374395869, 0.04690104419428387, 0.04905787429221539, 0.05126558888364133, 0.05352191907036314, 0.05582479746518691, 0.05817231434014862, 0.060562674859766644, 0.06299415792813526, 0.06546507736704463, 0.06797374620118987, 0.07051844478179377, 0.07309739336013753, 0.07570872955470143, 0.07835049096420774, 0.08102060298423965, 0.08371687170315775, 0.08643698159460088, 0.08917849759639172, 0.09193887107156042, 0.09471544908692937, 0.09750548641567282, 0.10030615966838258, 0.10311458297785445 ], [ 0.024779543518198187, 0.023818445401801957, 0.022987891558404135, 0.02229239072406971, 0.02173792264657632, 0.021331398199893298, 0.021079829109034783, 0.020989318744455754, 0.02106406009527723, 0.021305558284510435, 0.02171225461351341, 0.02227962154823518, 0.023000666187684694, 0.023866681043000045, 0.02486805130834301, 0.025994963650647285, 0.0272379311407674, 0.028588117248659672, 0.030037487945089168, 0.031578840911387344, 0.033205761120771275, 0.03491254190161727, 0.03669409751939818, 0.038545881666103676, 0.040463817720756474, 0.04244424132835965, 0.04448385310203225, 0.04657967828322759, 0.048729030291661736, 0.05092947573563628, 0.05317879928625159, 0.05547496763697729, 0.05781609246251998, 0.06020039281227875, 0.06262615771584026, 0.06509170995666792, 0.06759537201043869, 0.07013543507769553, 0.07271013199677258, 0.07531761463160161, 0.07795593611475714, 0.08062303811007941, 0.0833167430573441, 0.0860347511849106, 0.08877464193246792, 0.09153387931752989, 0.09430982070665107, 0.09709972841272976, 0.09990078352937624, 0.1027101014271307 ], [ 0.023380305968369187, 0.02250998804475439, 0.021776131822647378, 0.021181664542746885, 0.020730766834235838, 0.02042835407164076, 0.020279297150123277, 0.020287510090174522, 0.020455092866232868, 0.020781727156715838, 0.021264463203136734, 0.021897924638121083, 0.022674841861681623, 0.02358675221363133, 0.02462469843359102, 0.025779802683455835, 0.027043659844033185, 0.028408551775302635, 0.02986751927046997, 0.03141434024704812, 0.03304345859147365, 0.03474989650144722, 0.03652917043869278, 0.038377220267350444, 0.04029035389177883, 0.04226520551149525, 0.04429870374653668, 0.04638804555490153, 0.04853067239981303, 0.0507242460522358, 0.05296662242843112, 0.05525582278741753, 0.05759000236456736, 0.0599674170654926, 0.06238638919389018, 0.064845273360968, 0.06734242375299974, 0.06987616385150015, 0.07244475953993522, 0.07504639632179048, 0.07767916114293903, 0.08034102907786883, 0.08302985492082965, 0.08574336953076561, 0.08847918062054766, 0.09123477755947038, 0.09400753967359693, 0.09679474747906966, 0.09959359626470328, 0.10240121144750826 ], [ 0.022076607989960632, 0.02129511416901405, 0.02065631013036647, 0.02016136925638754, 0.0198124990106825, 0.019612482750774922, 0.019563990202559934, 0.019668788862641236, 0.019927035561998468, 0.02033682052067168, 0.020894068340990023, 0.021592795373044434, 0.02242562520810539, 0.02338441248798697, 0.02446083137018083, 0.025646832339941448, 0.02693493082146822, 0.02831833958935417, 0.029790983994836567, 0.03134744584904951, 0.032982875536453723, 0.034692900116327835, 0.03647354314995075, 0.03832116246861422, 0.040232405806036604, 0.04220418081168288, 0.04423363468446634, 0.046318138748201045, 0.04845527410643017, 0.050642815626550375, 0.0528787126351185, 0.055161065704721304, 0.057488099706725845, 0.05985813387576733, 0.06226954999195005, 0.06472075996280431, 0.06721017411324413, 0.06973617140290897, 0.07229707262099011, 0.07489111738895496, 0.07751644555788574, 0.0801710833416167, 0.08285293429542255, 0.08555977504523939, 0.08828925550172455, 0.0910389031603349, 0.09380613099384014, 0.09658824838478863, 0.09938247451903455, 0.10218595366209134 ], [ 0.0208710402406334, 0.020174593611741495, 0.01962738747041482, 0.01922869366225453, 0.01897860263097251, 0.018877669344170803, 0.01892635110025766, 0.01912436214108117, 0.019470106110281056, 0.019960332826924627, 0.020590100182825706, 0.02135303001186901, 0.022241766655525352, 0.023248508549085375, 0.024365493053399172, 0.025585357507851465, 0.026901350885517903, 0.028307411193625776, 0.02979814568500367, 0.03136875549773044, 0.03301493975319368, 0.034732802997655084, 0.036518778818826904, 0.03836957384233396, 0.0402821307161806, 0.04225360577114579, 0.04428135608969969, 0.04636293100353139, 0.04849606398703653, 0.0506786621105782, 0.05290879140485451, 0.055184657524296, 0.057504581917834426, 0.05986697430592857, 0.06227030263596042, 0.06471306187336429, 0.0671937430169913, 0.06971080364088598, 0.07226264109437726, 0.07484756926965828, 0.07746379959710267, 0.08010942667565726, 0.08278241870585021, 0.08548061267883117, 0.08820171409428444, 0.09094330083731314, 0.09370283074041216, 0.09647765228938536, 0.09926501789835437, 0.10206209917379547 ], [ 0.019770064353190314, 0.019153349957863885, 0.018692808628615838, 0.018385696135079472, 0.018229871766259946, 0.018223593956349586, 0.01836512048459022, 0.01865221923481161, 0.01908172697572132, 0.01964928079314923, 0.02034929172063692, 0.021175154169266273, 0.022119618604538652, 0.023175222304852774, 0.024334679676947767, 0.02559116783348767, 0.02693848565023459, 0.028371099121760217, 0.02988410499456751, 0.03147314897847781, 0.033134329303399615, 0.03486410661504562, 0.036659231326125974, 0.038516691732716254, 0.04043368109741712, 0.042407579231043706, 0.044435943254714644, 0.046516502543013045, 0.048647153796305014, 0.050825953379852865, 0.05305110525153287, 0.05532094383871347, 0.057633912053922716, 0.05998853524087396, 0.062383392229698506, 0.06481708487845768, 0.06728820752146226, 0.06979531766791539, 0.07233690913108609, 0.07491138854889755, 0.07751705600876167, 0.08015209023443305, 0.08281453854856205, 0.08550231160449957, 0.08821318269312088, 0.09094479128004782, 0.09369465031676476, 0.09646015679470515, 0.09923860497097933, 0.1020272016836683 ], [ 0.018783977045456764, 0.018240460823313424, 0.017860515691312636, 0.017639306642254538, 0.01757237500317644, 0.017655629810875165, 0.017885143035692806, 0.018256825653606958, 0.018766096859681017, 0.019407656331775786, 0.020175430082538953, 0.021062700225008946, 0.022062372244315134, 0.02316730071187373, 0.024370593305811965, 0.025665836674955575, 0.027047221335143604, 0.02850957241131535, 0.030048310944417702, 0.0316593758980702, 0.03333913344760218, 0.03508429225410731, 0.03689183492980548, 0.03875896891165283, 0.04068309522980094, 0.04266179108620058, 0.04469280126326002, 0.04677403360031474, 0.04890355461918406, 0.05107958248525643, 0.05330047561722729, 0.055564716265391965, 0.05787088919487653, 0.06021765621437189, 0.06260372768831968, 0.06502783238379559, 0.06748868706260963, 0.06998496716704614, 0.07251527979679215, 0.07507813996462451, 0.07767195087602739, 0.0802949887255612, 0.08294539225811075, 0.08562115712023778, 0.0883201348345144, 0.09104003607346081, 0.09377843779169937, 0.09653279369426022, 0.0993004474726921, 0.10207864822493859 ], [ 0.017926366252333584, 0.01744862661294043, 0.017142393906110606, 0.017000713701697936, 0.017016749252740847, 0.017184014397099295, 0.01749639504398232, 0.01794799887614487, 0.018532921997118406, 0.019245036481673135, 0.020077881030408917, 0.021024689837958344, 0.02207854301505241, 0.02323258539037687, 0.024480249628224374, 0.025815432130993774, 0.02723259526745716, 0.028726794738893956, 0.030293648235963127, 0.031929268679255086, 0.03363018427250425, 0.0353932619636423, 0.03721564399356695, 0.03909470111548114, 0.04102800170352815, 0.04301329343618839, 0.045048493217082354, 0.047131681030460434, 0.049261094094044486, 0.05143511863279244, 0.05365227762066925, 0.05591121377941925, 0.05821066790632212, 0.06054945319582989, 0.06292642662133828, 0.06534045866944171, 0.06779040279497983, 0.07027506592072344, 0.07279318117059791, 0.07534338382864227, 0.0779241912833058, 0.08053398747035144, 0.08317101208603049, 0.08583335461909918, 0.08851895305567006, 0.09122559695091649, 0.09395093443878123, 0.09669248266503089, 0.0994476410778977, 0.10221370699017068 ], [ 0.017212975621348, 0.016793038238040806, 0.016553101771399136, 0.016484116860414205, 0.01657683993168939, 0.01682235201354939, 0.01721233695882555, 0.017739114177084278, 0.018395494851964345, 0.019174568927071027, 0.020069525242200566, 0.021073569203662865, 0.02217995170260985, 0.02338208064802436, 0.024673665524143486, 0.026048847256849608, 0.027502282603715556, 0.0290291733667481, 0.030625247519347205, 0.032286708236311995, 0.03401016835552642, 0.03579258458338174, 0.03763120059314876, 0.039523503089974134, 0.0414671909918023, 0.04346015540260703, 0.04550046689175891, 0.04758636641167858, 0.04971625663297503, 0.0518886912526853, 0.05410236071672342, 0.05635607364644583, 0.05864873398753545, 0.060979314466392265, 0.06334682733512062, 0.06575029361976438, 0.06818871217687746, 0.07066102983658308, 0.07316611379254946, 0.07570272721795546, 0.07826950886627872, 0.08086495717809523, 0.08348741917900686, 0.0861350842329337, 0.08880598252030916, 0.09149798794858645, 0.09420882507626478, 0.09693607954187397, 0.09967721143405846, 0.10242957101466424 ], [ 0.016659968864711924, 0.01628964712164541, 0.016108311586646374, 0.016104903460886156, 0.016267786341976082, 0.01658559102800538, 0.017047779134301083, 0.017644869629663325, 0.01836838234692109, 0.019210617855116997, 0.020164402516412615, 0.02122289403756428, 0.022379490132289452, 0.02362783412260486, 0.024961881283024085, 0.026375982173958992, 0.027864948618375865, 0.029424084803484022, 0.031049181809808216, 0.03273648410545717, 0.03448264045726296, 0.03628465088462429, 0.03813981797071199, 0.040045706934432795, 0.0420001155084176, 0.044001052344692954, 0.04604672141384445, 0.04813550948031608, 0.050265973958571054, 0.052436829028988254, 0.05464692861770476, 0.05689524557912989, 0.05918084707432764, 0.061502866664798976, 0.06386047402034992, 0.06625284337302992, 0.06867912194940048, 0.07113839960114046, 0.07362968075293494, 0.07615185962075784, 0.07870369944673705, 0.08128381626961032, 0.08389066752077945, 0.08652254551911619, 0.08917757574453669, 0.09185371960752077, 0.09454878130353411, 0.09726041824857186, 0.0999861545333751, 0.10272339680638334 ], [ 0.01628173885344693, 0.01595298426050795, 0.0158225223698388, 0.01587743728396842, 0.016103772138982685, 0.016487730151415934, 0.01701654713053534, 0.017678922635204722, 0.018465053409941586, 0.01936640773418312, 0.020375399862210937, 0.021485090345713626, 0.022688980997643004, 0.023980918268990122, 0.025355081380940024, 0.026806016227797196, 0.02832867878475564, 0.029918464250246902, 0.03157121239436143, 0.03328319046522395, 0.03505106079431147, 0.036871841578074764, 0.03874286784121444, 0.04066175694554879, 0.0426263803575022, 0.0446348413390517, 0.04668545696907021, 0.04877674237212689, 0.05090739505403813, 0.05307627762054395, 0.05528239771386842, 0.05752488460945293, 0.059802962481862176, 0.062115920821029326, 0.06446308283112591, 0.06684377286840643, 0.06925728407791397, 0.07170284738712916, 0.07417960292738514, 0.07668657480243539, 0.07922264992974425, 0.08178656146379303, 0.08437687708954311, 0.08699199226280697, 0.08963012828367656, 0.09228933492690473, 0.09496749722402778, 0.09766234589705754, 0.10037147088255156, 0.10309233735443266 ], [ 0.016088621396773094, 0.015793875531096322, 0.015706790033052642, 0.015812809705560517, 0.016095801091633475, 0.016539622926847623, 0.01712932081134188, 0.017851771401954646, 0.018695812100337095, 0.019652018295666773, 0.02071231899353216, 0.021869605133736928, 0.02311742213405464, 0.02444977770844524, 0.025861053004335, 0.027345983807417394, 0.028899675607914812, 0.03051762456545908, 0.03219572850615567, 0.03393028282942581, 0.035717963201609096, 0.037555800009198864, 0.0394411497640528, 0.041371667308564404, 0.04334528083842787, 0.04536017011893695, 0.047414747125947475, 0.04950763774854817, 0.051637663064989264, 0.05380381891015378, 0.05600525285340531, 0.05824123818453821, 0.06051114497704035, 0.06281440870599468, 0.06515049721134167, 0.06751887700315479, 0.0699189800051234, 0.07235017183580979, 0.07481172264969432, 0.0773027814208261, 0.07982235436965304, 0.08236928802785644, 0.08494225722306882, 0.0875397580597134, 0.09016010578506992, 0.09280143726901594, 0.0954617176964457, 0.09813875097536978, 0.10083019330053243, 0.10353356927995012 ], [ 0.01608505198674168, 0.015817568167737276, 0.015766866748506716, 0.01591702311376325, 0.016249944955558947, 0.016747301898869235, 0.017392040258253263, 0.018169243444293815, 0.019066366332771537, 0.020073029156776695, 0.02118059179341696, 0.02238168812299235, 0.023669831314308613, 0.025039135824955715, 0.026484154988021816, 0.027999807466281595, 0.0295813583249537, 0.031224424754632787, 0.03292498604925585, 0.0346793873430998, 0.03648433410944861, 0.03833687875978571, 0.04023440231902277, 0.0421745940316688, 0.044155430795292376, 0.046175157189806755, 0.04823226595218346, 0.05032547818454786, 0.05245372237998341, 0.054616111431064276, 0.05681191705341183, 0.059040541416340644, 0.061301486149601986, 0.06359431923501221, 0.06591864056034215, 0.06827404709344397, 0.07066009872366237, 0.0730762858199903, 0.07552199948375618, 0.07799650534302668, 0.0804989215636386, 0.08302820155515188, 0.08558312164490615, 0.08816227379359944, 0.09076406324254781, 0.09338671082417552, 0.0960282595383096, 0.0986865849002921, 0.10135940850225651, 0.10404431419474557 ], [ 0.016268694078722702, 0.01602277798441504, 0.016002226370994924, 0.016190041701120025, 0.016566451248918913, 0.017111160210901324, 0.017805166192163577, 0.018631831309980397, 0.01957722971922448, 0.02062997526569419, 0.0217807756210486, 0.023021913869044057, 0.02434678442244418, 0.025749541581885284, 0.02722486955590457, 0.028767854253202756, 0.030373926103645314, 0.032038843946680856, 0.033758696942579686, 0.03552990998998914, 0.03734924548363084, 0.03921379926731853, 0.04112099132654516, 0.04306855269701337, 0.045054509953400386, 0.047077168086062146, 0.049135091972042216, 0.051227086209021395, 0.05335217287572272, 0.05550956679255317, 0.05769864802619629, 0.059918931643100394, 0.062170035008173044, 0.06445164319808026, 0.0667634733199004, 0.06910523867659792, 0.0714766137938662, 0.0738772013197628, 0.07630650173825236, 0.07876388671264259, 0.08124857671006952, 0.08375962336930158, 0.08629589687586126, 0.08885607841442396, 0.09143865758902624, 0.09404193454531364, 0.09666402640123858, 0.09930287749549999, 0.10195627289776182, 0.1046218545887712 ], [ 0.01663079352975381, 0.01640191466601101, 0.016406213653024113, 0.016625911950629808, 0.017039869181595987, 0.017626102453305044, 0.01836386268267656, 0.019234904843271467, 0.02022395481358899, 0.021318588708344514, 0.02250878949322356, 0.023786398283970587, 0.025144600153921007, 0.026577513422042225, 0.028079900350474626, 0.029646986777815642, 0.031274364538131205, 0.03295794835225895, 0.03469396322843038, 0.03647894526475163, 0.03830974544437257, 0.04018353120619051, 0.04209778391561042, 0.04405029210280231, 0.04603914096963022, 0.04806269867988719, 0.05011959971644984, 0.052208725348273304, 0.054329181113919586, 0.0564802712270128, 0.058661469924188366, 0.06087238996705428, 0.06311274873219841, 0.06538233253722478, 0.06768096002738756, 0.07000844556694022, 0.07236456363345407, 0.07474901520121115, 0.07716139702739032, 0.07960117463207628, 0.08206765960354483, 0.08455999167725137, 0.08707712584476879, 0.08961782455978738, 0.09218065493263435, 0.0947639906510602, 0.09736601823812058, 0.09998474716129968, 0.10261802324077351, 0.10526354476775318 ], [ 0.01715759260423525, 0.016942347153025315, 0.016967189780397008, 0.017213821088224595, 0.01766004904165947, 0.018282504301624456, 0.01905892743555442, 0.019969615062331133, 0.020998007834072567, 0.022130637475665755, 0.023356707574908566, 0.024667536550786056, 0.026056012607102698, 0.027516138703158197, 0.029042693787012522, 0.03063100495567964, 0.0322768096184273, 0.033976182185676745, 0.035725501834995115, 0.03752144299844239, 0.039360975935143136, 0.041241369700353823, 0.0431601934378782, 0.04511531420208301, 0.04710489073925548, 0.04912736318420016, 0.05118143877576543, 0.053266073694415314, 0.055380451112981906, 0.05752395559129978, 0.05969614404931468, 0.061896713706213226, 0.06412546754805169, 0.06638227805465238, 0.0686670500546881, 0.07097968366874856, 0.07332003833527995, 0.07568789889138128, 0.07808294460372096, 0.08050472192264642, 0.08295262157602036, 0.08542586044101413, 0.08792346844470252, 0.09044428055957002, 0.0929869337879998, 0.09554986887838533, 0.09813133638994948, 0.10072940662692349, 0.1033419828959817, 0.105966817502857 ], [ 0.017832315538398622, 0.01762826080017242, 0.017670261042739305, 0.017939708587092384, 0.01841365251831088, 0.019067637208359113, 0.019878143170442647, 0.02082418024256964, 0.02188799310553115, 0.02305508801281248, 0.024313856466352732, 0.025655029697094954, 0.027071120810387518, 0.028555940198907254, 0.03010421799875555, 0.03171133510970358, 0.033373147331229355, 0.03508588071916289, 0.03684607629789181, 0.03865056566310023, 0.04049646359414865, 0.042381168209672304, 0.04430236277397275, 0.046258015811369554, 0.04824637781533455, 0.05026597377883687, 0.05231559126617756, 0.05439426399654452, 0.056501251054567686, 0.05863601196360977, 0.06079817798828075, 0.06298752017895465, 0.06520391482215593, 0.0674473070995473, 0.0697176738681034, 0.0720149865419222, 0.0743391750744847, 0.0766900940070769, 0.07906749146735553, 0.08147098187927632, 0.08390002299084816, 0.08635389765159286, 0.08883170058818647, 0.09133233024601628, 0.09385448559554446, 0.09639666765321325, 0.09895718534254247, 0.10153416522488086, 0.10412556456222041, 0.10672918713550575 ], [ 0.018637178870996394, 0.01844258876382518, 0.0184991101130761, 0.01878798934432672, 0.01928577026663337, 0.019967189047751993, 0.020807712129990892, 0.021785244188078035, 0.022880942415997446, 0.0240793297564155, 0.025367975843045242, 0.026736979596806123, 0.028178414489191984, 0.02968582815746874, 0.03125383684703716, 0.03287782262091472, 0.03455372332064358, 0.03627789733889216, 0.03804704363274252, 0.039858159281668415, 0.04170852032156737, 0.04359567530466661, 0.04551744433738795, 0.0474719189399638, 0.049457459924946635, 0.05147269172345982, 0.05351649236454434, 0.055587978794220755, 0.05768648753178489, 0.05981155088587162, 0.06196286913841527, 0.0641402792711356, 0.06634372095899355, 0.06857320068135786, 0.0708287548955419, 0.07311041326987186, 0.07541816297990046, 0.0777519150302807, 0.08011147347924126, 0.0824965083190212, 0.0849065326127334, 0.08734088431641418, 0.08979871303559539, 0.09227897178833581, 0.09478041368113993, 0.09730159325721144, 0.09984087215376752, 0.10239642860954418, 0.10496627029611744, 0.10754824990682461 ], [ 0.019555040976656408, 0.019368639595185366, 0.01943757174347649, 0.019743057637082038, 0.020261345742172168, 0.020966608753856204, 0.021833527962526387, 0.02283908368461192, 0.02396346567916095, 0.025190274540793377, 0.026506269496838156, 0.02790089193269245, 0.029365727040547282, 0.03089399983326946, 0.03248015179843592, 0.03411951199540768, 0.035808057764570564, 0.03754225115425483, 0.03931893419107915, 0.04113526668022424, 0.042988692562718145, 0.04487692381909376, 0.0467979337966187, 0.04874995429791098, 0.050731472686056024, 0.05274122666156257, 0.05477819534578451, 0.05684158597659155, 0.058930815987085224, 0.06104549057394055, 0.06318537611847574, 0.06535037002976742, 0.06754046774575145, 0.069755727758201, 0.07199623561741726, 0.07426206791866408, 0.07655325727301068, 0.07886975921995533, 0.08121142195207486, 0.08357795959883078, 0.08596892966598199, 0.08838371505885283, 0.09082151094185457, 0.09328131651310431, 0.0957619316105568, 0.09826195792150733, 0.10077980444610854, 0.10331369677042503, 0.10586168963698728, 0.10842168225985718 ], [ 0.020570529578922817, 0.02039124903502875, 0.02047078047430858, 0.020790407478582802, 0.02132625383636635, 0.02205213786278125, 0.022942161388456842, 0.023972552988776007, 0.02512265982092008, 0.026375234628100815, 0.027716255528419644, 0.029134499515460946, 0.030621030941654463, 0.03216870426333726, 0.03377173216606492, 0.03542533809977943, 0.03712549319894429, 0.038868727632518446, 0.04065200237102958, 0.04247262682033833, 0.04432820914369835, 0.04621662831386183, 0.048136019341420325, 0.05008476534083046, 0.0520614919514368, 0.05406506108948798, 0.05609456210581634, 0.05814929923214318, 0.060228774790407634, 0.062332668077934826, 0.0644608101731171, 0.06661315516211452, 0.06878974848408945, 0.07099069323810331, 0.07321611539201772, 0.07546612888240005, 0.07774080159566124, 0.08004012317606062, 0.0823639755206955, 0.08471210670091872, 0.08708410890283678, 0.08947940081530877, 0.09189721472249635, 0.09433658838855362, 0.09679636166303426, 0.09927517759376224, 0.10177148771431402, 0.10428356107897936, 0.10680949655029648, 0.10934723780248418 ], [ 0.021670656391503642, 0.021497446447567268, 0.021585868207850696, 0.021917341170640668, 0.022468005060047435, 0.02321150140456985, 0.024121534566699472, 0.025173742239928017, 0.026346753639881433, 0.027622556719162788, 0.02898639151480037, 0.03042637937055917, 0.03193304605441363, 0.03349883964873354, 0.03511769820815391, 0.036784690767972555, 0.0384957360352496, 0.04024739251976786, 0.042036708952216034, 0.04386112239775205, 0.04571839201226755, 0.04760655792428219, 0.049523916633190786, 0.05146900622135668, 0.05344059638505758, 0.05543767971788485, 0.05745946182298882, 0.05950534871973011, 0.06157493069265379, 0.06366796225310895, 0.06578433828471157, 0.06792406675196982, 0.07008723858497944, 0.07227399552314195, 0.07448449681355562, 0.0767188857185802, 0.07897725679496302, 0.08125962486817925, 0.08356589654498689, 0.08589584499216682, 0.08824908856791244, 0.09062507373386548, 0.09302306250966316, 0.09544212456731262, 0.09788113390771458, 0.10033876992289555, 0.10281352253003728, 0.10530370096997473, 0.10780744579523548, 0.11032274352997412 ], [ 0.022845017766106816, 0.022676717024509244, 0.022772276923117875, 0.023113318914819263, 0.0236761193242786, 0.02443429618531852, 0.02536131786892125, 0.02643237984746346, 0.027625515034743614, 0.0289220343050297, 0.03030649247177282, 0.031766376390956315, 0.03329166825494882, 0.034874385264087995, 0.036508153622610486, 0.038187844327732, 0.03990927897034282, 0.04166900272838625, 0.04346411615388769, 0.04529215518305947, 0.047151008636385563, 0.04903886340484469, 0.050954168951684, 0.05289561433406421, 0.05486211245582513, 0.05685278759754346, 0.05886696339496697, 0.06090414935565583, 0.06296402473888836, 0.06504641920589146, 0.0671512901044115, 0.06927869660736058, 0.07142877119623366, 0.07360168917865362, 0.07579763706295989, 0.07801678068729341, 0.08025923402067826, 0.08252502952481446, 0.08481409089352296, 0.08712620887992965, 0.08946102078776241, 0.09181799405188723, 0.09419641417384625, 0.09659537711934212, 0.09901378613454417, 0.10145035280295181, 0.10390360204964418, 0.10637188070765236, 0.10885336919378787, 0.1113460957979552 ], [ 0.024085710277364888, 0.02392097614824288, 0.02402178904426953, 0.02437003853144175, 0.024942246542293624, 0.02571214395267572, 0.026653108736703433, 0.02774003210933475, 0.028950468267143058, 0.03026514080685469, 0.03166797888852026, 0.0331458655401455, 0.03468824490283771, 0.03628668880642268, 0.037934482729723135, 0.03962626187386509, 0.04135770899708939, 0.0431253143087921, 0.044926191615819185, 0.04675794214710537, 0.04861855673526748, 0.05050634743809658, 0.05241990068260613, 0.05435804526078693, 0.056319829788279506, 0.058304505437445475, 0.06031151081785653, 0.062340456782540785, 0.06439110969115262, 0.06646337227702406, 0.06855726176124469, 0.07067288525066612, 0.07281041276175583, 0.07497004843919115, 0.07715200069517511, 0.07935645208886544, 0.08158352980142422, 0.08383327754684307, 0.08610562969905641, 0.08840038831989437, 0.0907172036486963, 0.09305555847229258, 0.09541475664281132, 0.09779391585894458, 0.10019196468200635, 0.10260764362744282, 0.10503951006051833, 0.10748594653468982, 0.10994517214421437, 0.11241525641883417 ], [ 0.02538708454204818, 0.025224372387230177, 0.025328382122171117, 0.025681340535754858, 0.026260117827568867, 0.02703868281901961, 0.027990457183659206, 0.029090157383188694, 0.03031497259351313, 0.03164512969223901, 0.033063996345624486, 0.03455788962367872, 0.036115729677082924, 0.03772863713407198, 0.03938953563011571, 0.04109279289097027, 0.04283391502697627, 0.04460929715636469, 0.04641602696006588, 0.04825173451711624, 0.05011448053364123, 0.0520026750330123, 0.05391501918867511, 0.0558504639182638, 0.05780817990978322, 0.05978753479459892, 0.061788074149611745, 0.0638095038702158, 0.0658516721965966, 0.06791455030112557, 0.06999821086213659, 0.07210280446952426, 0.0742285340396599, 0.07637562766967991, 0.07854431054115205, 0.08073477659707902, 0.08294716077012118, 0.08518151254074506, 0.08743777155888782, 0.08971574597987246, 0.09201509405370113, 0.09433530937556403, 0.09667571006366747, 0.09903543198696355, 0.10141342602774216, 0.10380845923863384, 0.10621911964530902, 0.10864382435819164, 0.11108083059046063, 0.1135282491355931 ], [ 0.026745435337388438, 0.026583014786052413, 0.02668799802965688, 0.027043021043867622, 0.027625400989759238, 0.028409462000277642, 0.02936879526662632, 0.030478065627625645, 0.031714207761244353, 0.033057042685763496, 0.034489444099134244, 0.03599720663800297, 0.037568747551523014, 0.03919473791914712, 0.040867725520462014, 0.04258178496222448, 0.044332212353173445, 0.04611527019254787, 0.04792798130380747, 0.049767966989382455, 0.051633322934283854, 0.053522525955407116, 0.055434364967680824, 0.057367890192086726, 0.0593223754599848, 0.06129728934808316, 0.06329227173401393, 0.0653071131535379, 0.06734173504622305, 0.06939616959060234, 0.07147053835193393, 0.07356502939970977, 0.07567987290284578, 0.07781531548356371, 0.07997159381150619, 0.0821489080532969, 0.08434739586545419, 0.0865671076365644, 0.08880798365572544, 0.09106983381633817, 0.0933523203662775, 0.09565494409657611, 0.09797703422991308, 0.10031774213601935, 0.10267603887114417, 0.10505071641944361, 0.107440392410098, 0.10984351799886616, 0.1122583885379064, 0.11468315661378986 ], [ 0.028158693220875025, 0.027994689974607623, 0.028098290351068676, 0.028452612413634663, 0.02903551518148025, 0.02982178919736984, 0.030785314536292928, 0.03190082263653257, 0.0331451017830419, 0.0344976583064222, 0.03594094225011015, 0.037460274074062494, 0.03904359523079222, 0.040681135512855925, 0.04236505937408261, 0.04408912855456982, 0.04584840059513542, 0.04763897121257904, 0.049457761428910764, 0.0513023463559624, 0.05317082053622743, 0.05506169397618104, 0.05697381298365992, 0.05890630031888667, 0.06085850978891534, 0.06282999113189264, 0.06482046177345543, 0.06682978274626995, 0.06885793671829431, 0.07090500666227421, 0.07297115421127588, 0.07505659718133376, 0.0771615861030628, 0.07928637989156392, 0.08143122100139477, 0.08359631056486878, 0.08578178410251688, 0.08798768843021541, 0.09021396037535546, 0.09246040786241855, 0.09472669384508833, 0.09701232345654147, 0.09931663463075104, 0.101638792323641, 0.1039777863417023, 0.10633243267296043, 0.10870137811625893, 0.11108310792281056, 0.11347595610091323, 0.11587811799102991 ], [ 0.029626151672776147, 0.02945860475778707, 0.029558386196914515, 0.029909167226666915, 0.030489438644088908, 0.03127456223658294, 0.0322388204941343, 0.03335712549311122, 0.0346062253174016, 0.03596540323819512, 0.03741675853366129, 0.038945189998122104, 0.0405381958053625, 0.04218557875531231, 0.043879118636943576, 0.04561225033151257, 0.047379769227489, 0.04917757400529055, 0.051002449595887324, 0.05285188884309366, 0.054723949092910854, 0.05661713887543078, 0.0585303295551055, 0.060462686992448715, 0.062413618686559647, 0.06438273242767398, 0.06636980310342525, 0.06837474492169186, 0.07039758690578758, 0.07243845006559754, 0.07449752513944732, 0.07657505022991727, 0.07867128801930523, 0.08078650254614773, 0.0829209357541183, 0.08507478419105481, 0.08724817634277905, 0.08944115113890441, 0.09165363817244895, 0.09388544013935651, 0.09613621793613615, 0.09840547876250652, 0.10069256746983529, 0.102996661283246, 0.10531676791325398, 0.10765172696745404, 0.11000021447936176, 0.11236075029323199, 0.11473170798263958, 0.11711132693755158 ], [ 0.031148239806065545, 0.03097516626610098, 0.031068676320331078, 0.03141306077560674, 0.03198752536981124, 0.03276810084495991, 0.03372957955626467, 0.0348471641389204, 0.03609766689563205, 0.03746024018805939, 0.03891670791324024, 0.040451603738168154, 0.042052020164748724, 0.043707352987659986, 0.04540900186113247, 0.047150066473388326, 0.04892506158882546, 0.050729662899933976, 0.05256048826621664, 0.05441491440866364, 0.05629092655338835, 0.05818699719897842, 0.060101989654299755, 0.06203508195150703, 0.06398570698656147, 0.06595350515117147, 0.06793828621539813, 0.06993999774745083, 0.07195869788254965, 0.07399453075354424, 0.07604770335776993, 0.07811846304700139, 0.08020707518448736, 0.08231380081116993, 0.08443887440087786, 0.08658248196251424, 0.08874473986815547, 0.09092567485404147, 0.09312520566209825, 0.09534312676990804, 0.09757909460460858, 0.09983261655933531, 0.10210304303779096, 0.10438956265122026, 0.10669120058969413, 0.10900682009219412, 0.11133512685247221, 0.11367467612353065, 0.11602388222489234, 0.11838103011471415 ], [ 0.032726335517251744, 0.03254579647563681, 0.03263063248951591, 0.03296581309245017, 0.03353133351073308, 0.034303982781320616, 0.035259163726688435, 0.036372474912113595, 0.03762089528243155, 0.03898353883539696, 0.0404420318576591, 0.04198060331728906, 0.0435859825666684, 0.04524718389214029, 0.046955237068601365, 0.048702903869011625, 0.050484405180095566, 0.052295172351137405, 0.05413162899628683, 0.05599100477347113, 0.057871179853142454, 0.059770557235776144, 0.061687959332561375, 0.06362254499027555, 0.06557374322352347, 0.06754120018984709, 0.06952473632390534, 0.07152431098293194, 0.07353999241067996, 0.0755719312765757, 0.07762033647303904, 0.07968545224447966, 0.08176753606727807, 0.08386683699539499, 0.08598357442761916, 0.08811791743886394, 0.09026996495038389, 0.092439727095506, 0.0946271081729535, 0.09683189157534029, 0.09905372704310568, 0.10129212053158931, 0.10354642689907387, 0.1058158455341187, 0.10809941894802423, 0.11039603426912879, 0.11270442749430971, 0.1150231902834041, 0.11735077902630389, 0.11968552587153367 ], [ 0.034362606572245324, 0.03417277021936093, 0.03424664322465472, 0.03456992375578458, 0.035123460833643746, 0.03588488145973187, 0.03683029165719269, 0.03793578597619899, 0.03917860988878081, 0.04053793161029472, 0.041995259739750136, 0.04353458270102923, 0.045142314004578424, 0.04680711732691143, 0.04851966847230331, 0.05027239418252921, 0.05205921352786358, 0.05387529698629487, 0.05571685094360245, 0.05758093051005109, 0.05946528053694745, 0.06136820294980159, 0.06328844757178283, 0.06522512320042535, 0.06717762562912105, 0.06914557944619204, 0.07112879071574749, 0.07312720799145919, 0.07514088949881544, 0.0771699747172038, 0.0792146589804286, 0.08127517007847285, 0.0833517461735121, 0.08544461463137527, 0.08755397161086817, 0.0896799624446714, 0.09182266298702045, 0.09398206219649083, 0.09615804627111972, 0.0983503846626827, 0.1005587182739562, 0.10278255009407085, 0.10502123846023662, 0.10727399305611388, 0.10953987367481731, 0.11181779169362585, 0.11410651413263276, 0.11640467010457789, 0.11871075941011139, 0.12102316299316805 ], [ 0.036059865459764556, 0.03585906380326466, 0.035919856625831685, 0.03622871000295163, 0.03676737957684239, 0.03751439915036228, 0.038446661722874725, 0.03954085159775784, 0.0407745773232248, 0.04212715334906075, 0.04358005224490244, 0.04511708949988143, 0.046724414704215136, 0.04839037712176538, 0.05010532010017468, 0.05186134385289221, 0.05365206310010859, 0.05547237593650302, 0.057318253031720036, 0.05918655134690716, 0.06107485336982263, 0.06298133091519577, 0.06490463141141672, 0.06684378401911946, 0.06879812271180384, 0.07076722346640034, 0.07275085287918572, 0.07474892578319527, 0.07676146975836183, 0.07878859476691563, 0.08083046649286771, 0.08288728229954402, 0.08495924903032803, 0.0870465621555182, 0.08914938600591044, 0.09126783502713182, 0.09340195613643547, 0.09555171236631912, 0.09771696803967236, 0.09989747574361622, 0.10209286535942008, 0.1043026353703524, 0.10652614661491253, 0.10876261858622946, 0.11101112830609694, 0.11327061172937186, 0.11553986756629969, 0.11781756335004473, 0.12010224352686884, 0.12239233930846802 ], [ 0.03782142579348709, 0.037608202986184704, 0.037654020260221716, 0.037946139471032425, 0.038467263436051335, 0.03919688984529101, 0.0401127724538293, 0.041192271727803605, 0.042413451510141385, 0.043755863107711915, 0.045201025827130516, 0.04673265285247026, 0.04833668611288973, 0.05000120179644023, 0.05171623784238878, 0.05347358205980327, 0.055266547765385254, 0.05708975433005033, 0.058938922960579454, 0.060810693093327144, 0.06270246146673103, 0.06461224381856576, 0.06653855786190492, 0.0684803254650279, 0.0704367916096184, 0.07240745760276453, 0.07439202608663256, 0.0763903555677877, 0.07840242243552908, 0.08042828872584186, 0.08246807419209239, 0.08452193154797111, 0.08659002403799641, 0.08867250475577027, 0.0907694973615012, 0.09288107804332162, 0.09500725871842734, 0.09714797158002515, 0.09930305516615824, 0.1014722421601501, 0.10365514913478074, 0.10585126842886142, 0.10805996230233403, 0.11028045946011031, 0.11251185397219608, 0.1147531065530589, 0.1170030481014607, 0.11926038534658971, 0.12152370839974871, 0.12379149997465508 ], [ 0.03965095189820287, 0.03942410270778909, 0.03945331136384409, 0.03972665176920656, 0.04022780185124572, 0.04093726789915147, 0.041833727299860755, 0.04289529463880164, 0.044100575808931446, 0.045429447168631475, 0.04686355778789501, 0.04838659156277968, 0.04998434292574391, 0.05164466119845217, 0.05335731135469621, 0.05511378850371221, 0.05690711302782377, 0.05873162452492004, 0.06058278593039096, 0.062457004282551846, 0.06435147119911254, 0.06626402387438486, 0.06819302596630215, 0.07013726687208431, 0.07209587741361938, 0.07406825974414868, 0.07605402926200451, 0.07805296641588995, 0.08006497646800122, 0.08209005551546457, 0.08412826133328041, 0.0861796878745542, 0.08824444253091218, 0.0903226255057421, 0.09241431087599317, 0.09451952910836536, 0.09663825094898727, 0.09877037272091098, 0.10091570314169182, 0.10307395181671175, 0.10524471957697736, 0.10742749081782983, 0.10962162796326848, 0.11182636813501622, 0.11404082205182725, 0.11626397512783637, 0.1184946906833995, 0.12073171513123536, 0.12297368495747599, 0.12521913528290204 ], [ 0.04155229774079361, 0.041310895325409984, 0.041322154748613144, 0.04157496691302232, 0.04205400024722741, 0.042740801674574044, 0.043615023468800064, 0.04465560279361674, 0.04584176767516129, 0.04715380408902072, 0.048573573094994944, 0.05008480385648286, 0.05167320675549897, 0.05332645491036449, 0.05503407791605519, 0.05678730334812456, 0.0585788726314032, 0.06040284990407645, 0.06225443610772264, 0.06412979573101817, 0.06602590020069499, 0.06794038955014531, 0.06987145242740204, 0.07181772350560413, 0.07377819676316014, 0.07575215278721537, 0.07773909813843863, 0.07973871483786403, 0.08175081815515575, 0.08377532105988302, 0.08581220391883343, 0.08786148826276738, 0.08992321368942398, 0.09199741720280634, 0.09408411450178435, 0.09618328291637643, 0.09829484584318209, 0.1004186586499476, 0.10255449610335408, 0.1047020414256178, 0.10686087710786167, 0.10903047760592015, 0.11121020402237233, 0.11339930084253998, 0.11559689474715149, 0.11780199547512772, 0.12001349866072031, 0.12223019052335496, 0.12445075424857881, 0.12667377786622702 ], [ 0.04352933572567088, 0.043272748393862394, 0.04326502993325964, 0.04349588258455958, 0.04395096858488035, 0.04461289487466894, 0.045462327768183174, 0.04647908504376678, 0.04764308905770358, 0.04893511502757642, 0.05033731618668696, 0.051833541997041516, 0.05340948468510531, 0.055052695679361864, 0.05675251152655875, 0.058499922663303325, 0.06028741094049954, 0.06210877471596455, 0.06395895438958261, 0.06583386663099008, 0.06773025213042103, 0.06964553927113108, 0.07157772444867923, 0.07352526865086059, 0.07548700920811698, 0.07746208521343134, 0.07944987491004335, 0.08144994329570021, 0.0834619982496806, 0.08548585362086408, 0.08752139789565196, 0.08956856727287156, 0.09162732219172785, 0.09369762657454174, 0.09577942924744443, 0.09787264718117673, 0.09997715034525693, 0.10209274808891813, 0.1042191770507692, 0.10635609065715763, 0.10850305029957676, 0.11065951828781136, 0.1128248526626681, 0.11499830392464346, 0.11717901369790287, 0.1193660153066432, 0.12155823619759987, 0.12375450210109985, 0.12595354278639156, 0.1281539992367785 ], [ 0.04558577951924786, 0.04531367662431479, 0.045286272544967046, 0.0454940656119217, 0.04592370389001915, 0.04655886141874886, 0.047381245402816845, 0.04837160111253956, 0.04951060840587966, 0.05077960507485432, 0.052161113293879596, 0.05363917708093466, 0.05519953780898165, 0.05682968277646311, 0.0585188019798499, 0.06025768396115532, 0.062038575570269525, 0.06385502434071377, 0.06570171676901537, 0.0675743214107363, 0.06946934235653825, 0.07138398619032432, 0.07331604378102653, 0.07526378705335504, 0.07722588008276987, 0.07920130335961564, 0.08118928978728766, 0.08318927086074099, 0.08520083147088353, 0.08722367186356883, 0.08925757542254038, 0.09130238112204289, 0.09335795968885567, 0.09542419271081475, 0.09750095411755161, 0.09958809363038251, 0.10168542192584765, 0.10379269737755482, 0.10590961433241636, 0.10803579294043338, 0.11017077059411479, 0.1123139950475166, 0.11446481927990754, 0.11662249814938251, 0.11878618685208576, 0.12095494116693319, 0.12312771942788524, 0.1253033861288786, 0.12748071703307312, 0.12965840562981384 ], [ 0.047725007670244846, 0.04743735523276753, 0.04738987758124243, 0.047573845569468524, 0.047976874897852934, 0.048583702148037346, 0.04937709006434219, 0.050338746643368286, 0.051450162410706914, 0.05269330346914707, 0.054051132855060434, 0.05550796123976048, 0.05704964662786082, 0.05866367179193745, 0.06033913007704286, 0.06206664767697214, 0.06383826584276543, 0.06564730130925561, 0.06748819840793027, 0.06935638226790757, 0.07124811928185996, 0.07316038856531773, 0.07509076634051509, 0.07703732389564868, 0.07899853888834388, 0.0809732191816926, 0.08296043804794175, 0.08495947939178897, 0.0869697915888096, 0.08899094857077625, 0.09102261689128505, 0.09306452764971776, 0.09511645232061638, 0.09717818171373603, 0.09924950746494061, 0.10133020562031117, 0.10342002201842793, 0.10551865929455505, 0.10762576542320668, 0.10974092378234925, 0.11186364476465771, 0.11399335898148723, 0.11612941210707849, 0.11827106139785169, 0.12041747389850245, 0.12256772631693033, 0.12472080651730014, 0.12687561654772253, 0.12903097708874814, 0.13118563318260687 ], [ 0.049949896194679835, 0.04964694325687883, 0.04957931346922181, 0.04973901974283365, 0.05011461830392582, 0.050691893024107655, 0.05145466505525156, 0.05238562853057102, 0.05346712706278074, 0.05468181204269641, 0.05601315304486348, 0.05744579588207235, 0.05896578150262502, 0.06056064862859009, 0.0622194463031754, 0.06393268149529291, 0.06569222356829736, 0.06749118320713533, 0.06932377921146375, 0.07118520286070232, 0.07307148650869202, 0.07497938067319619, 0.07690624207389993, 0.0788499337417245, 0.080808737374213, 0.08278127746236423, 0.08476645629513548, 0.0867633987051015, 0.08877140530998154, 0.0907899129960371, 0.09281846145310552, 0.09485666468447974, 0.09690418655865315, 0.09896071962854548, 0.10102596660412884, 0.10309962401639107, 0.10518136774704603, 0.10727084021431399, 0.10936763909792044, 0.111471307555544, 0.11358132592910061, 0.11569710496472528, 0.11781798057800903, 0.11994321018947723, 0.12207197063811476, 0.12420335765649529, 0.1263363868631022, 0.1284699961985887, 0.13060304970526024, 0.13273434252502034 ], [ 0.052262668490810064, 0.05194492555892636, 0.05185735596631165, 0.05199267880440709, 0.05234035623756585, 0.052887194658813516, 0.053618065440093135, 0.054516660589277746, 0.0555662080429822, 0.056750091765433795, 0.058052346032390775, 0.05945801525432097, 0.06095338704532701, 0.06252611612866033, 0.06416526093948104, 0.06586125502897773, 0.06760583320837701, 0.06939192908696253, 0.07121355712072, 0.07306568899328886, 0.0749441313253725, 0.07684540941411208, 0.07876665991137825, 0.08070553399372693, 0.08266011158097293, 0.08462882645463769, 0.0866104016511472, 0.08860379420830021, 0.09060814818612804, 0.09262275483207572, 0.09464701878779815, 0.09668042931755622, 0.09872253565701254, 0.10077292571974239, 0.10283120754368497, 0.10489699300079497, 0.10696988342218565, 0.10904945690305416, 0.11113525714320724, 0.11322678374922641, 0.11532348397328952, 0.11742474589321772, 0.11952989305098645, 0.12163818056557382, 0.12374879272410598, 0.12586084203597137, 0.12797336971092854, 0.13008534749706133, 0.1321956807898517, 0.13430321290144215 ], [ 0.054664770066204016, 0.0543329812642479, 0.05422594992000663, 0.05433706149317915, 0.054656643531675486, 0.05517249201941199, 0.055870510304159376, 0.0567353888218315, 0.057751259797080234, 0.05890227673146714, 0.06017308820445867, 0.0615491943473262, 0.06301718918092991, 0.06456490170964081, 0.06618145358427137, 0.06785725239654901, 0.06958393852896816, 0.07135430106605177, 0.07316217538132908, 0.07500233215241939, 0.07687036499209395, 0.07876258172391615, 0.08067590259067418, 0.08260776732810325, 0.0845560520125956, 0.08651899584353488, 0.08849513749757082, 0.09048326034865237, 0.09248234564642684, 0.09449153265479628, 0.09651008474499025, 0.0985373604905506, 0.10057278890545615, 0.1026158480848973, 0.10466604663720108, 0.10672290742444925, 0.10878595325011628, 0.1108546942388507, 0.11292861674278096, 0.11500717367881591, 0.11708977625214664, 0.11917578705384756, 0.12126451453707017, 0.12335520887947762, 0.12544705923222044, 0.12753919234086986, 0.12963067250408145, 0.1317205028139349, 0.13380762760000772, 0.13589093597895638 ], [ 0.05715677383272785, 0.05681188454752023, 0.056686104983069086, 0.056773444616509246, 0.057065051366960017, 0.05754967117672366, 0.0582142122865517, 0.0590443537277671, 0.060025140972653414, 0.06114152342372755, 0.062378804254672265, 0.06372298901718954, 0.0651610326228923, 0.06668099354482669, 0.06827210934508582, 0.06992480963960541, 0.07163068233433584, 0.07338240733230116, 0.07517366963971912, 0.07699906138111212, 0.07885397995705888, 0.08073452758679164, 0.08263741581992111, 0.08455987727226687, 0.08649958580898667, 0.08845458562329715, 0.09042322909960303, 0.09240412296718442, 0.09439608201082775, 0.096398089477774, 0.09840926328042081, 0.1004288271186138, 0.10245608571482019, 0.10449040345337116, 0.10653118582765964, 0.10857786321553776, 0.11062987661478166, 0.11268666507117375, 0.11474765461764952, 0.11681224861187683, 0.11887981941118339, 0.12094970135852594, 0.12302118507294701, 0.125093513044847, 0.1271658765329682, 0.12923741374904255, 0.1313072092999543, 0.13337429483860072, 0.13543765085518733, 0.1374962095223555 ], [ 0.0597383194638669, 0.059381441294768966, 0.05923782889150553, 0.059302072121241396, 0.05956609124549137, 0.06001953732354589, 0.06065028893699866, 0.06144499455418792, 0.06238961145651858, 0.06346990079865593, 0.06467185091968485, 0.06598201425961002, 0.06738775477020711, 0.06887741127718637, 0.07044038759361784, 0.07206718270960762, 0.07374937479847127, 0.07547957182741033, 0.07725133986623284, 0.07905911820719366, 0.08089812843675949, 0.0827642828013771, 0.08465409566048325, 0.08656460054105668, 0.08849327428845878, 0.09043796902222119, 0.0923968520216344, 0.0943683532528794, 0.09635111997696617, 0.09834397771881678, 0.10034589680791411, 0.10235596369828298, 0.10437335632138094, 0.10639732280324084, 0.10842716297328377, 0.11046221219547822, 0.11250182715417548, 0.11454537332075226, 0.11659221390872589, 0.11864170019192805, 0.12069316311162831, 0.12274590613463297, 0.12479919934636761, 0.12685227477290983, 0.12890432292584167, 0.13095449055622255, 0.13300187959111479, 0.13504554721024678, 0.1370845070033165, 0.13911773113184225 ], [ 0.0624080878482487, 0.06204046258758681, 0.0618800992210147, 0.0619221241923608, 0.06215918037984514, 0.0625817753668963, 0.06317871750031556, 0.06393759745503211, 0.0648452733829824, 0.06588832396740993, 0.0670534435180564, 0.06832776411845908, 0.06969909976072369, 0.0711561151760858, 0.07268842728774964, 0.07428665004984476, 0.07594239437818735, 0.07764823449897149, 0.07939765086530834, 0.0811849582284882, 0.08300522578623856, 0.08485419474085822, 0.08672819718142716, 0.08862407899724535, 0.09053912854106982, 0.09247101197906374, 0.09441771566846063, 0.09637749546944634, 0.09834883259939269, 0.10033039545125151, 0.10232100670116531, 0.10431961500268987, 0.10632527058820422, 0.1083371041561828, 0.11035430850253533, 0.11237612244394327, 0.11440181667237458, 0.1164306812660749, 0.11846201465878448, 0.1204951139329669, 0.12252926635315269, 0.12456374209205591, 0.1265977881257622, 0.1286306232865195, 0.13066143446440429, 0.13268937394444058, 0.13471355785575875, 0.13673306569607896, 0.13874694087989844, 0.14075419224385707 ], [ 0.06516380932690828, 0.0647867735066166, 0.06461087198676196, 0.06463172468760069, 0.06484264684052782, 0.06523495157224474, 0.06579833184449707, 0.06652128660653067, 0.0673915555641418, 0.06839653137356293, 0.06952362565296498, 0.07076057403327665, 0.07209567388607743, 0.0735179552825273, 0.07501729067777654, 0.07658445179020924, 0.07821112345927289, 0.07988988434717645, 0.08161416362297723, 0.08337818158938112, 0.08517688084820559, 0.08700585322795858, 0.08886126642375965, 0.09073979318201716, 0.09263854492165435, 0.09455501092098972, 0.09648700360354129, 0.0984326100094302, 0.10039014922191349, 0.10235813530997633, 0.1043352452279555, 0.10632029106277413, 0.1083121960214665, 0.11030997359085282, 0.11231270936442098, 0.11431954510765235, 0.11632966471342865, 0.11834228177709026, 0.12035662859144268, 0.1223719464224194, 0.12438747697471361, 0.12640245499296232, 0.12841610196867842, 0.13042762093702406, 0.13243619235255283, 0.1344409710307921, 0.13644108413507966, 0.13843563017700097, 0.14042367898592478, 0.1424042725897756 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.06042 (SEM: 0)
x1: 0.0286128
x2: 0.0771406
x3: 0.277624
x4: 0.300056
x5: 0.823706
x6: 0.521663", "Arm 10_0
l2norm: 1.12343 (SEM: 0)
x1: 0.678451
x2: 0.0542357
x3: 0.301031
x4: 0.190144
x5: 0.774861
x6: 0.267701", "Arm 11_0
l2norm: 1.56263 (SEM: 0)
x1: 0.108757
x2: 0.636625
x3: 0.74072
x4: 0.799608
x5: 0.320434
x6: 0.856731", "Arm 12_0
l2norm: 0.893139 (SEM: 0)
x1: 0.0353861
x2: 0.344902
x3: 0.384472
x4: 0.217251
x5: 0.546153
x6: 0.429171", "Arm 13_0
l2norm: 0.919758 (SEM: 0)
x1: 0.00847715
x2: 0.374631
x3: 0.41666
x4: 0.222798
x5: 0.512353
x6: 0.468813", "Arm 14_0
l2norm: 0.948574 (SEM: 0)
x1: 0
x2: 0.403124
x3: 0.446335
x4: 0.221935
x5: 0.47979
x6: 0.508543", "Arm 15_0
l2norm: 0.985855 (SEM: 0)
x1: 0
x2: 0.435432
x3: 0.481044
x4: 0.214305
x5: 0.440377
x6: 0.557716", "Arm 16_0
l2norm: 1.03581 (SEM: 0)
x1: 0
x2: 0.467446
x3: 0.526882
x4: 0.20112
x5: 0.389847
x6: 0.619974", "Arm 17_0
l2norm: 1.07448 (SEM: 0)
x1: 0
x2: 0.442396
x3: 0.608848
x4: 0.21411
x5: 0.351629
x6: 0.647001", "Arm 18_0
l2norm: 1.12239 (SEM: 0)
x1: 4.52094e-18
x2: 0.446613
x3: 0.704595
x4: 0.22061
x5: 0.36999
x6: 0.615052", "Arm 19_0
l2norm: 1.04752 (SEM: 0)
x1: 1.1877e-18
x2: 0.375347
x3: 0.588315
x4: 0.234966
x5: 0.304392
x6: 0.680022", "Arm 1_0
l2norm: 1.14264 (SEM: 0)
x1: 0.0265269
x2: 0.266673
x3: 0.62365
x4: 0.774008
x5: 0.337182
x6: 0.363433", "Arm 20_0
l2norm: 1.02786 (SEM: 0)
x1: 0
x2: 0.325513
x3: 0.542879
x4: 0.247725
x5: 0.250146
x6: 0.729299", "Arm 21_0
l2norm: 1.04998 (SEM: 0)
x1: 1.66419e-17
x2: 0.324552
x3: 0.563504
x4: 0.2238
x5: 0.313028
x6: 0.72905", "Arm 22_0
l2norm: 1.00953 (SEM: 0)
x1: 2.7846e-18
x2: 0.304196
x3: 0.573527
x4: 0.164343
x5: 0.284048
x6: 0.699994", "Arm 23_0
l2norm: 1.0703 (SEM: 0)
x1: 0.0767156
x2: 0.327633
x3: 0.568126
x4: 0.237868
x5: 0.318556
x6: 0.742623", "Arm 24_0
l2norm: 1.11548 (SEM: 0)
x1: 0.128745
x2: 0.327399
x3: 0.594802
x4: 0.234856
x5: 0.313228
x6: 0.783238", "Arm 25_0
l2norm: 1.03859 (SEM: 0)
x1: 0.109401
x2: 0.313538
x3: 0.530444
x4: 0.250487
x5: 0.324304
x6: 0.720496", "Arm 26_0
l2norm: 0.994996 (SEM: 0)
x1: 0.180492
x2: 0.265285
x3: 0.485177
x4: 0.269241
x5: 0.322647
x6: 0.689258", "Arm 27_0
l2norm: 0.967416 (SEM: 0)
x1: 0.237364
x2: 0.197995
x3: 0.469411
x4: 0.28293
x5: 0.313039
x6: 0.664802", "Arm 28_0
l2norm: 0.986162 (SEM: 0)
x1: 0.224838
x2: 0.126057
x3: 0.50484
x4: 0.290805
x5: 0.329991
x6: 0.676571", "Arm 2_0
l2norm: 1.5933 (SEM: 0)
x1: 0.215857
x2: 0.845888
x3: 0.293076
x4: 0.870189
x5: 0.871658
x6: 0.416601", "Arm 3_0
l2norm: 1.72291 (SEM: 0)
x1: 0.717854
x2: 0.614076
x3: 0.47361
x4: 0.851057
x5: 0.734401
x6: 0.766845", "Arm 4_0
l2norm: 1.47518 (SEM: 0)
x1: 0.370947
x2: 0.919363
x3: 0.207639
x4: 0.396142
x5: 0.844018
x6: 0.530008", "Arm 5_0
l2norm: 1.2987 (SEM: 0)
x1: 0.283215
x2: 0.330793
x3: 0.580986
x4: 0.651493
x5: 0.775408
x6: 0.365718", "Arm 6_0
l2norm: 1.3228 (SEM: 0)
x1: 0.613007
x2: 0.407828
x3: 0.0582382
x4: 0.0471161
x5: 0.585298
x6: 0.927098", "Arm 7_0
l2norm: 0.734976 (SEM: 0)
x1: 0.0662721
x2: 0.345961
x3: 0.29683
x4: 0.0703874
x5: 0.513271
x6: 0.244129", "Arm 8_0
l2norm: 1.69181 (SEM: 0)
x1: 0.710268
x2: 0.187626
x3: 0.890911
x4: 0.748634
x5: 0.977574
x6: 0.112801", "Arm 9_0
l2norm: 1.60412 (SEM: 0)
x1: 0.0306744
x2: 0.927373
x3: 0.539334
x4: 0.612563
x5: 0.606115
x6: 0.823855" ], "type": "scatter", "x": [ 0.02861282043159008, 0.6784505266696215, 0.10875670239329338, 0.03538613900065349, 0.008477154335699783, 0.0, 0.0, 0.0, 0.0, 4.520944783993645e-18, 1.1877016776327455e-18, 0.026526895351707935, 0.0, 1.6641917789823365e-17, 2.7845958563250617e-18, 0.07671563264796646, 0.1287454675933869, 0.1094007007532906, 0.18049175659526726, 0.23736426993933266, 0.22483818389799218, 0.2158573754131794, 0.7178544122725725, 0.37094675935804844, 0.28321531880646944, 0.6130074318498373, 0.06627206318080425, 0.7102679777890444, 0.030674430541694164 ], "xaxis": "x", "y": [ 0.07714055478572845, 0.054235716350376606, 0.6366253634914756, 0.3449018574042789, 0.37463086878815477, 0.40312393813589226, 0.43543156767476865, 0.4674464910101946, 0.44239629339241016, 0.44661266541722433, 0.37534654934907546, 0.26667285803705454, 0.3255131692739064, 0.32455179172562443, 0.3041957514721828, 0.3276333644348262, 0.3273994274646363, 0.313538199875582, 0.2652846464771408, 0.19799462806099588, 0.12605674750542648, 0.8458884200081229, 0.6140758004039526, 0.919363072142005, 0.330793428234756, 0.407827946357429, 0.3459612485021353, 0.18762645218521357, 0.9273727759718895 ], "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.06042 (SEM: 0)
x1: 0.0286128
x2: 0.0771406
x3: 0.277624
x4: 0.300056
x5: 0.823706
x6: 0.521663", "Arm 10_0
l2norm: 1.12343 (SEM: 0)
x1: 0.678451
x2: 0.0542357
x3: 0.301031
x4: 0.190144
x5: 0.774861
x6: 0.267701", "Arm 11_0
l2norm: 1.56263 (SEM: 0)
x1: 0.108757
x2: 0.636625
x3: 0.74072
x4: 0.799608
x5: 0.320434
x6: 0.856731", "Arm 12_0
l2norm: 0.893139 (SEM: 0)
x1: 0.0353861
x2: 0.344902
x3: 0.384472
x4: 0.217251
x5: 0.546153
x6: 0.429171", "Arm 13_0
l2norm: 0.919758 (SEM: 0)
x1: 0.00847715
x2: 0.374631
x3: 0.41666
x4: 0.222798
x5: 0.512353
x6: 0.468813", "Arm 14_0
l2norm: 0.948574 (SEM: 0)
x1: 0
x2: 0.403124
x3: 0.446335
x4: 0.221935
x5: 0.47979
x6: 0.508543", "Arm 15_0
l2norm: 0.985855 (SEM: 0)
x1: 0
x2: 0.435432
x3: 0.481044
x4: 0.214305
x5: 0.440377
x6: 0.557716", "Arm 16_0
l2norm: 1.03581 (SEM: 0)
x1: 0
x2: 0.467446
x3: 0.526882
x4: 0.20112
x5: 0.389847
x6: 0.619974", "Arm 17_0
l2norm: 1.07448 (SEM: 0)
x1: 0
x2: 0.442396
x3: 0.608848
x4: 0.21411
x5: 0.351629
x6: 0.647001", "Arm 18_0
l2norm: 1.12239 (SEM: 0)
x1: 4.52094e-18
x2: 0.446613
x3: 0.704595
x4: 0.22061
x5: 0.36999
x6: 0.615052", "Arm 19_0
l2norm: 1.04752 (SEM: 0)
x1: 1.1877e-18
x2: 0.375347
x3: 0.588315
x4: 0.234966
x5: 0.304392
x6: 0.680022", "Arm 1_0
l2norm: 1.14264 (SEM: 0)
x1: 0.0265269
x2: 0.266673
x3: 0.62365
x4: 0.774008
x5: 0.337182
x6: 0.363433", "Arm 20_0
l2norm: 1.02786 (SEM: 0)
x1: 0
x2: 0.325513
x3: 0.542879
x4: 0.247725
x5: 0.250146
x6: 0.729299", "Arm 21_0
l2norm: 1.04998 (SEM: 0)
x1: 1.66419e-17
x2: 0.324552
x3: 0.563504
x4: 0.2238
x5: 0.313028
x6: 0.72905", "Arm 22_0
l2norm: 1.00953 (SEM: 0)
x1: 2.7846e-18
x2: 0.304196
x3: 0.573527
x4: 0.164343
x5: 0.284048
x6: 0.699994", "Arm 23_0
l2norm: 1.0703 (SEM: 0)
x1: 0.0767156
x2: 0.327633
x3: 0.568126
x4: 0.237868
x5: 0.318556
x6: 0.742623", "Arm 24_0
l2norm: 1.11548 (SEM: 0)
x1: 0.128745
x2: 0.327399
x3: 0.594802
x4: 0.234856
x5: 0.313228
x6: 0.783238", "Arm 25_0
l2norm: 1.03859 (SEM: 0)
x1: 0.109401
x2: 0.313538
x3: 0.530444
x4: 0.250487
x5: 0.324304
x6: 0.720496", "Arm 26_0
l2norm: 0.994996 (SEM: 0)
x1: 0.180492
x2: 0.265285
x3: 0.485177
x4: 0.269241
x5: 0.322647
x6: 0.689258", "Arm 27_0
l2norm: 0.967416 (SEM: 0)
x1: 0.237364
x2: 0.197995
x3: 0.469411
x4: 0.28293
x5: 0.313039
x6: 0.664802", "Arm 28_0
l2norm: 0.986162 (SEM: 0)
x1: 0.224838
x2: 0.126057
x3: 0.50484
x4: 0.290805
x5: 0.329991
x6: 0.676571", "Arm 2_0
l2norm: 1.5933 (SEM: 0)
x1: 0.215857
x2: 0.845888
x3: 0.293076
x4: 0.870189
x5: 0.871658
x6: 0.416601", "Arm 3_0
l2norm: 1.72291 (SEM: 0)
x1: 0.717854
x2: 0.614076
x3: 0.47361
x4: 0.851057
x5: 0.734401
x6: 0.766845", "Arm 4_0
l2norm: 1.47518 (SEM: 0)
x1: 0.370947
x2: 0.919363
x3: 0.207639
x4: 0.396142
x5: 0.844018
x6: 0.530008", "Arm 5_0
l2norm: 1.2987 (SEM: 0)
x1: 0.283215
x2: 0.330793
x3: 0.580986
x4: 0.651493
x5: 0.775408
x6: 0.365718", "Arm 6_0
l2norm: 1.3228 (SEM: 0)
x1: 0.613007
x2: 0.407828
x3: 0.0582382
x4: 0.0471161
x5: 0.585298
x6: 0.927098", "Arm 7_0
l2norm: 0.734976 (SEM: 0)
x1: 0.0662721
x2: 0.345961
x3: 0.29683
x4: 0.0703874
x5: 0.513271
x6: 0.244129", "Arm 8_0
l2norm: 1.69181 (SEM: 0)
x1: 0.710268
x2: 0.187626
x3: 0.890911
x4: 0.748634
x5: 0.977574
x6: 0.112801", "Arm 9_0
l2norm: 1.60412 (SEM: 0)
x1: 0.0306744
x2: 0.927373
x3: 0.539334
x4: 0.612563
x5: 0.606115
x6: 0.823855" ], "type": "scatter", "x": [ 0.02861282043159008, 0.6784505266696215, 0.10875670239329338, 0.03538613900065349, 0.008477154335699783, 0.0, 0.0, 0.0, 0.0, 4.520944783993645e-18, 1.1877016776327455e-18, 0.026526895351707935, 0.0, 1.6641917789823365e-17, 2.7845958563250617e-18, 0.07671563264796646, 0.1287454675933869, 0.1094007007532906, 0.18049175659526726, 0.23736426993933266, 0.22483818389799218, 0.2158573754131794, 0.7178544122725725, 0.37094675935804844, 0.28321531880646944, 0.6130074318498373, 0.06627206318080425, 0.7102679777890444, 0.030674430541694164 ], "xaxis": "x2", "y": [ 0.07714055478572845, 0.054235716350376606, 0.6366253634914756, 0.3449018574042789, 0.37463086878815477, 0.40312393813589226, 0.43543156767476865, 0.4674464910101946, 0.44239629339241016, 0.44661266541722433, 0.37534654934907546, 0.26667285803705454, 0.3255131692739064, 0.32455179172562443, 0.3041957514721828, 0.3276333644348262, 0.3273994274646363, 0.313538199875582, 0.2652846464771408, 0.19799462806099588, 0.12605674750542648, 0.8458884200081229, 0.6140758004039526, 0.919363072142005, 0.330793428234756, 0.407827946357429, 0.3459612485021353, 0.18762645218521357, 0.9273727759718895 ], "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-11-10T20:25:53.732844Z", "iopub.status.busy": "2022-11-10T20:25:53.732313Z", "iopub.status.idle": "2022-11-10T20:25:53.803946Z", "shell.execute_reply": "2022-11-10T20:25:53.802879Z" } }, "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.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.26255998190656643, -0.26255998190656643, -0.26255998190656643, -0.26255998190656643, -0.3825240194931096, -0.8326383042777362, -1.069337068971178, -1.3131855217387391, -1.5776125158040601, -1.7707848581660317, -1.9406540484788204, -1.9406540484788204, -2.2982054369334604, -2.321996697040411, -2.398578946424961, -2.398578946424961, -2.61253403426476, -2.61253403426476, -2.8269382915214987, -3.1402738383533535, -3.278055647965132, -3.278055647965132, -3.278055647965132 ] }, { "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.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.26255998190656643, -0.26255998190656643, -0.26255998190656643, -0.26255998190656643, -0.3825240194931096, -0.8326383042777362, -1.069337068971178, -1.3131855217387391, -1.5776125158040601, -1.7707848581660317, -1.9406540484788204, -1.9406540484788204, -2.2982054369334604, -2.321996697040411, -2.398578946424961, -2.398578946424961, -2.61253403426476, -2.61253403426476, -2.8269382915214987, -3.1402738383533535, -3.278055647965132, -3.278055647965132, -3.278055647965132 ] }, { "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.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.19066004825791322, -0.26255998190656643, -0.26255998190656643, -0.26255998190656643, -0.26255998190656643, -0.3825240194931096, -0.8326383042777362, -1.069337068971178, -1.3131855217387391, -1.5776125158040601, -1.7707848581660317, -1.9406540484788204, -1.9406540484788204, -2.2982054369334604, -2.321996697040411, -2.398578946424961, -2.398578946424961, -2.61253403426476, -2.61253403426476, -2.8269382915214987, -3.1402738383533535, -3.278055647965132, -3.278055647965132, -3.278055647965132 ] }, { "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.14" } }, "nbformat": 4, "nbformat_minor": 2 }