{ "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": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] 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 }, "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": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] 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 06-30 21:16:46] 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 06-30 21:16:46] 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 06-30 21:16:46] 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 06-30 21:16:46] 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 06-30 21:16:46] ax.modelbridge.dispatch_utils: Using GPEI (Bayesian optimization) since there are more continuous parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:46] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:16:53] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:01] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:07] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:15] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:22] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:29] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:35] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:41] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:47] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:17:53] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:00] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:06] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:13] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:18] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:25] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:31] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:38] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:44] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:51] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:18:57] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:19:03] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:19:10] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-30 21:19:17] 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": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.16005944378860845,\n", " 'x2': 0.1686943300182876,\n", " 'x3': 0.5030151379910146,\n", " 'x4': 0.2944959324835925,\n", " 'x5': 0.3071195259538725,\n", " 'x6': 0.6696673895950558}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.967783552588898, 'hartmann6': -3.274564497406179}" ] }, "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": {}, "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": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.3883000078043315, -2.4527571972821995, -2.512288928256533, -2.5659845836901702, -2.6129573482079573, -2.652384632850329, -2.683549979479161, -2.705880642530808, -2.7189754818856517, -2.722620007593759, -2.716788330302864, -2.701634047082542, -2.677473059170408, -2.644761233531397, -2.6040693144316807, -2.556056976385268, -2.501447480731149, -2.441004020220431, -2.375508485073322, -2.305743068604665, -2.232474868866241, -2.1564434448318806, -2.078351149965324, -1.9988559834016475, -1.9185666573909852, -1.8380395674166556, -1.7577773587342314, -1.6782288025136285, -1.5997897209298888, -1.5228047297528142, -1.447569596802037, -1.3743340435265001, -1.3033048440222084, -1.2346491005224096, -1.1684975965646132, -1.1049481486214052, -1.0440688940544531, -0.9859014679571827, -0.9304640339702434, -0.8777541446810624, -0.8277514159524512, -0.7804200066592615, -0.7357109010320815, -0.6935639952891519, -0.6539099936473372, -0.6166721212959487, -0.5817676636388536, -0.5491093421957454, -0.5186065381275877, -0.49016637452568457 ], [ -2.421047285987548, -2.48726805164605, -2.548492513598799, -2.6037631422589165, -2.652141386318144, -2.6927521964493004, -2.724831125376911, -2.747766940565999, -2.7611331481671613, -2.7647046112222373, -2.7584590810340828, -2.742566228961151, -2.717367857134913, -2.6833527501276757, -2.6411289257752353, -2.591395369090928, -2.5349147966016297, -2.47248854948813, -2.4049343175089337, -2.3330670552859205, -2.257683181788491, -2.1795479575946084, -2.099385806322176, -2.0178732736609994, -1.9356342853958837, -1.8532373619366203, -1.7711944610691088, -1.6899611455178076, -1.6099378023195372, -1.5314716735172738, -1.4548594900751295, -1.3803505318256328, -1.3081499648967294, -1.2384223340241216, -1.171295110286784, -1.1068622151261525, -1.045187459141191, -0.9863078492700581, -0.9302367307804805, -0.8769667412129432, -0.8264725622686476, -0.7787134628165744, -0.7336356319081156, -0.6911743051198902, -0.6512556908700409, -0.613798705734593, -0.578716529381142, -0.5459179906805716, -0.5153087969842292, -0.4867926185835003 ], [ -2.4496501636176564, -2.5174471260207607, -2.58019181685895, -2.6368834532876795, -2.6865344495839496, -2.728218973697985, -2.7611254560596095, -2.784604494685716, -2.7982041779334135, -2.8016883625573916, -2.795037829546494, -2.778437474092035, -2.7522539001480952, -2.7170074521408614, -2.673341814231263, -2.6219934624585006, -2.5637625978897143, -2.4994866612892492, -2.4300170870793396, -2.3561995923364307, -2.2788580213957976, -2.198781575989996, -2.1167151426677586, -2.0333523670475087, -1.9493311021059492, -1.8652308617885667, -1.7815719316808851, -1.6988158181862292, -1.6173667518050188, -1.537573995546378, -1.4597347442169621, -1.3840974330988502, -1.3108653046531742, -1.2402001090328745, -1.172225838259751, -1.1070324149761812, -1.0446792748737899, -0.9851987974370553, -0.9285995527497177, -0.874869343034504, -0.8239780265632864, -0.7758801188086742, -0.7305171714173473, -0.6878199339671625, -0.6477103067074916, -0.6101030947480688, -0.5749075756170752, -0.5420288929050336, -0.5113692889857588, -0.48282918968489263 ], [ -2.473792577919485, -2.542944855498221, -2.6070032902415434, -2.6649289605168085, -2.7156895598651403, -2.758311745648375, -2.7919391150679322, -2.8158854708025487, -2.8296739359683407, -2.833056940255301, -2.826017146303887, -2.808752973122773, -2.781653720199425, -2.7452688881715983, -2.7002752176177163, -2.647443948386642, -2.5876100109115154, -2.5216442458067867, -2.4504292574706295, -2.374839126783239, -2.295722932448685, -2.2138918485779864, -2.1301094794872726, -2.0450850415220083, -1.9594689885211611, -1.873850688723937, -1.7887577867519766, -1.7046569181065399, -1.621955480973272, -1.5410042081386601, -1.4621003186503119, -1.3854910633692992, -1.3113775101307605, -1.239918442554258, -1.171234271565163, -1.1054108804919802, -1.0425033433753552, -0.9825394720948971, -0.9255231613446513, -0.8714375116239365, -0.8202477195062651, -0.7719037317413878, -0.7263426654542017, -0.6834910010374045, -0.6432665574838685, -0.6055802620529216, -0.5703377274807591, -0.5374406505891833, -0.5067880462645542, -0.4782773305038708 ], [ -2.493200176184606, -2.56345563138437, -2.62858884752587, -2.6875293043039017, -2.7392059960091295, -2.78260310086106, -2.8168232791648347, -2.8411461283041333, -2.855070882473836, -2.858338120917828, -2.8509307228880676, -2.8330580703717136, -2.8051290138564937, -2.7677187246538377, -2.721533358701829, -2.6673752703988596, -2.6061105805687026, -2.538640191848712, -2.4658748045018024, -2.388714088405054, -2.3080298937093593, -2.2246532110198043, -2.13936449711983, -2.0528869413771265, -1.9658822427087046, -1.8789484840066024, -1.7926197210607642, -1.7073669401337292, -1.6236000783867064, -1.5416708416525422, -1.4618760928537102, -1.384461620583739, -1.3096261303875147, -1.237525330808782, -1.1682760122774538, -1.10196003949918, -1.0386281973922968, -0.978303847052086, -0.9209863619856399, -0.8666543262298215, -0.815268485204692, -0.7667744475163181, -0.7211051416381554, -0.6781830356874681, -0.6379221315753612, -0.6002297468373163, -0.5650080986251316, -0.5321557048287795, -0.501568617253586, -0.4731415013447253 ], [ -2.5076496666140584, -2.5787291731888016, -2.644669299411125, -2.7043757021325048, -2.7567463899272315, -2.800729930270727, -2.8353936259727313, -2.859986730510201, -2.873986367825074, -2.877120963847087, -2.8693715695444446, -2.850955222679416, -2.8222962212015714, -2.7839908910713067, -2.736770168003945, -2.681462981167982, -2.6189623496214156, -2.5501952920419457, -2.476097058747946, -2.39758978147699, -2.3155653658323483, -2.230872289500666, -2.1443058849392505, -2.0566016527610858, -1.9684311528268896, -1.8804000412965072, -1.7930478551294096, -1.7068491851654195, -1.6222159212048175, -1.539500294877422, -1.4589984868072925, -1.3809546025223889, -1.3055648560772644, -1.2329818311598784, -1.163318716503081, -1.0966534358498583, -1.0330326127624523, -0.9724753275025833, -0.9149766373437273, -0.8605108433034074, -0.8090344956869199, -0.7604891382781137, -0.7148037967435964, -0.6718972210635152, -0.6316798947785407, -0.5940558257505464, -0.5589241341637403, -0.5261804538210584, -0.4957181625827123, -0.4674294571990445 ], [ -2.5169758433855494, -2.588579506793042, -2.655035464626275, -2.715234148732316, -2.768051798065919, -2.8124100500777764, -2.847348074108889, -2.872089864706478, -2.8860929788596605, -2.889073694129026, -2.8810090484701396, -2.8621199093926153, -2.8328411464187044, -2.7937848374871788, -2.7457011774831614, -2.6894403241362457, -2.625917214143633, -2.5560804769528995, -2.480885930556386, -2.4012747122378495, -2.3181558270030767, -2.2323927415282503, -2.1447935743087445, -2.0561044056286795, -1.9670052352631084, -1.8781081393810688, -1.7899572131801922, -1.7030299271972649, -1.6177395694031038, -1.5344384895135688, -1.4534219045914583, -1.3749320647504413, -1.2991626138814547, -1.22626301248034, -1.1563429178249074, -1.089476441081767, -1.0257062216763062, -0.9650472767442594, -0.9074905980244588, -0.853006480467488, -0.8015475764244044, -0.7530516768233665, -0.707444226499366, -0.6646405850547485, -0.6245480475218883, -0.5870676408869768, -0.552095713416296, -0.519525333892221, -0.4892475174905604, -0.46115229427194127 ], [ -2.5210751858416818, -2.5928900540311495, -2.659555130995858, -2.7199543970918603, -2.772952560705554, -2.8174546100160773, -2.852480323751351, -2.877234681102576, -2.8911590632625384, -2.893958124249367, -2.8856028420210746, -2.8663138600309552, -2.8365312409483403, -2.796876755841782, -2.748113638806564, -2.6911072661349067, -2.6267889276011607, -2.556123870992673, -2.480084108705923, -2.399626022923971, -2.3156725310630586, -2.2290994198580485, -2.140725381652618, -2.051305260720343, -1.9615260221374777, -1.8720049794529774, -1.7832898529643701, -1.695860272890991, -1.6101303874862731, -1.5264522823556133, -1.445119961877924, -1.3663736852616224, -1.290404487570058, -1.2173587496579528, -1.147342710330488, -1.0804268393403855, -1.0166500113632575, -0.9560234391749729, -0.8985343392461869, -0.8441493152067703, -0.792817454434875, -0.7444731406879149, -0.6990385914895099, -0.6564261331725743, -0.6165402292933175, -0.5792792797990407, -0.5445372090672289, -0.5122048609352647, -0.48217121829437337, -0.4543244638968058 ], [ -2.5199054332341513, -2.5916137575013027, -2.658174269901256, -2.718472740254017, -2.7713727892609548, -2.815774063245807, -2.8506869961734465, -2.8753049620554925, -2.889057505120644, -2.8916388648866453, -2.8830122918480763, -2.863394226968456, -2.8332243683804794, -2.7931277684621367, -2.743874038963024, -2.6863373033530693, -2.621459203871275, -2.5502162271515623, -2.473591877041228, -2.39255374706036, -2.3080352589429647, -2.2209216748476424, -2.1320399120729814, -2.0421516597185376, -1.9519492982425333, -1.8620541444136574, -1.7730165788536723, -1.685317656246792, -1.5993718453842927, -1.5155305943203383, -1.4340864626116465, -1.355277606241406, -1.2792924404210204, -1.2062743406010328, -1.1363262726661283, -1.0695152696315875, -1.0058766945166586, -0.9454182478075566, -0.8881236934122877, -0.833956289608424, -0.7828619215300268, -0.7347719395430315, -0.6896057137094109, -0.6472729187093869, -0.6076755663310265, -0.5707098041870211, -0.5362674999052799, -0.5042376298765707, -0.47450749092584155, -0.4469637521830978 ], [ -2.5134815300803712, -2.584768358267126, -2.65091208841436, -2.710807543845303, -2.7633270217088692, -2.807376226407216, -2.841967128898691, -2.8662899938849034, -2.879767831598329, -2.8820864405049686, -2.8732002470183797, -2.853317883442248, -2.8228732999620196, -2.782488419850286, -2.732932443761059, -2.675081563399148, -2.6098815257998487, -2.5383144197712078, -2.461370289048524, -2.38002367561524, -2.295214892922414, -2.207835656537451, -2.1187186099935005, -2.028630245017319, -1.9382667097197495, -1.8482520152009219, -1.7591381834478321, -1.6714069220011287, -1.585472459053388, -1.501685222591303, -1.4203360959912377, -1.3416610281535317, -1.2658458176938077, -1.1930309274297404, -1.1233162173728952, -1.0567655118766284, -0.9934109398432455, -0.9332570063448243, -0.876284370052051, -0.8224533138700876, -0.7717069065019487, -0.723973860628346, -0.6791710993143052, -0.6372060464146299, -0.5979786594216303, -0.561383224633843, -0.5273099349646748, -0.4956462703814417, -0.4662782000782131, -0.4390912242297307 ], [ -2.5018694893612823, -2.5724287215826642, -2.6378519241284475, -2.697049262221206, -2.7489103057217665, -2.79235737078318, -2.826414806325415, -2.850278846726235, -2.863372037947852, -2.865374480319016, -2.8562314151335535, -2.8361407195610155, -2.805525744780349, -2.7649992484667365, -2.715323446240758, -2.6573699966203783, -2.5920824757818024, -2.5204428368476, -2.4434425655100647, -2.362058720043509, -2.2772347174816208, -2.18986553495959, -2.1007868874510063, -2.0107678896822025, -1.9205066932774448, -1.8306285998154361, -1.7416861791822824, -1.6541609642091102, -1.5684663415487614, -1.4849513104069314, -1.4039048315735592, -1.3255605368787662, -1.2501016124429989, -1.1776657073910712, -1.1083497530239201, -1.042214606029899, -0.9792894535252392, -0.9195759379417175, -0.8630519764289782, -0.8096752628973551, -0.7593864514624377, -0.7121120282118666, -0.667766884224344, -0.6262566069359357, -0.5874795095574281, -0.5513284195704733, -0.5176922476257813, -0.4864573576749014, -0.45750875811166103, -0.4307311322802727 ], [ -2.485180205286341, -2.5547191168351677, -2.619131844439727, -2.6773494818237626, -2.7282862647211794, -2.770890217118467, -2.8042078552605543, -2.8274501739384537, -2.8400456402238925, -2.8416720618762827, -2.832265977162959, -2.8120124620548284, -2.781320267382552, -2.7407876668832643, -2.6911638614492785, -2.633309738998678, -2.5681606313501613, -2.4966926891411894, -2.4198937159473566, -2.3387387624109524, -2.2541704304076386, -2.167083618459573, -2.07831430773625, -1.9886319144616529, -1.8987347028518662, -1.8092477526179769, -1.7207229986222743, -1.6336409001114893, -1.5484133462643768, -1.465387457869787, -1.3848499975754953, -1.3070321506316804, -1.2321144829699484, -1.1602319232634197, -1.091478650279473, -1.0259127966050714, -0.9635609050491265, -0.904422095100795, -0.8484719141446758, -0.7956658620988757, -0.7459425891293084, -0.6992267744710783, -0.6554317005019927, -0.614461540392347, -0.5762133802077853, -0.5405789975586479, -0.5074464190434198, -0.4767012780827862, -0.448227993519984, -0.4219107877864263 ], [ -2.463564543565162, -2.5318073712245566, -2.5949376423546537, -2.651912482550548, -2.701677086677911, -2.743212590643677, -2.775595749347302, -2.798060019811083, -2.8100459197617034, -2.811232774630341, -2.8015497211448057, -2.7811680149044644, -2.750478873008509, -2.710061749981287, -2.660647620549728, -2.603080983295385, -2.5382832722224355, -2.4672194137148056, -2.3908685096239912, -2.3101990796840974, -2.2261489226138504, -2.1396094074939715, -2.0514138466213536, -1.9623295032236379, -1.8730527375131405, -1.784206782601205, -1.6963416588908784, -1.6099357728249493, -1.5253987949330094, -1.4430754660918539, -1.3632500348531125, -1.286151079580724, -1.2119565154450433, -1.1407986274712885, -1.0727690067950497, -1.0079232982499127, -0.9462856937148605, -0.8878531276430511, -0.832599149256738, -0.780477460417878, -0.731425119562386, -0.6853654207066731, -0.6422104627693788, -0.6018634286539646, -0.5642205960400066, -0.5291731029453062, -0.4966084911385795, -0.46641204967642547, -0.43846797945914195, -0.41266039797121645 ], [ -2.4372097528183727, -2.5039008089295485, -2.5654980454124745, -2.62098925965142, -2.6693558456491955, -2.709617790476015, -2.7408882618787827, -2.762429366595142, -2.7736990716554373, -2.774382090207706, -2.764402106496764, -2.7439165366250986, -2.7132972772084827, -2.6731017593586937, -2.624038523368914, -2.5669308727125792, -2.5026812933366536, -2.432238470140039, -2.3565680185235793, -2.276627505853175, -2.1933459454150315, -2.1076076686859784, -2.020240290579275, -1.9320063574997852, -1.8435981976897458, -1.7556354679922002, -1.6686649007915162, -1.5831617887813318, -1.4995327932455715, -1.4181197155847232, -1.3392039262960853, -1.2630111972708102, -1.1897167305184109, -1.1194502186803117, -1.0523008098528213, -0.9883218814300769, -0.9275355551245396, -0.8699369083132513, -0.8154978557314976, -0.7641706906722193, -0.7158912866534891, -0.6705819694009036, -0.6281540753584147, -0.5885102171734684, -0.5515462790598129, -0.5171531659573281, -0.4852183302955766, -0.4556270992139464, -0.4282638235614902, -0.40301286812855763 ], [ -2.406336443658678, -2.4712428074275943, -2.531080573536934, -2.584872283082658, -2.631639723195053, -2.6704459615516365, -2.700444998364191, -2.720932204702845, -2.7313874091758352, -2.7315043306284257, -2.72120354192721, -2.7006294427989195, -2.6701339090662364, -2.6302502965233927, -2.5816615865100747, -2.5251660112519123, -2.461642793377841, -2.392019894241428, -2.317245011870213, -2.2382605434421534, -2.155982823538886, -2.0712856463198817, -1.9849878579056075, -1.8978446525775512, -1.8105421147760001, -1.7236945095584608, -1.6378438258470305, -1.5534611066156305, -1.470949146186331, -1.3906461877680667, -1.3128303082686497, -1.2377242289316572, -1.1655003379422826, -1.0962857541802875, -1.030167299551389, -0.9671962807538261, -0.9073930099977137, -0.8507510182617514, -0.797240934420682, -0.7468140193702261, -0.6994053565319982, -0.6549367092823497, -0.6133190623535569, -0.5744548685210773, -0.5382400243056074, -0.5045655993420493, -0.4733193438306327, -0.44438699739359033, -0.4176534209906564, -0.3930035715450315 ], [ -2.3711953888284145, -2.4341090138346084, -2.4919869445156455, -2.5438898568503574, -2.5888831047753627, -2.6260757549051696, -2.6546655732328084, -2.6739843934877836, -2.6835372823222268, -2.6830301256334184, -2.6723828630348256, -2.651728315783007, -2.6213985627258696, -2.5819018974145993, -2.5338936830541443, -2.4781441700019644, -2.415505809679601, -2.346881984915501, -2.273198496984542, -2.1953786527991443, -2.1143223889308387, -2.030889544327579, -1.9458871432898794, -1.8600603709236814, -1.774086811298976, -1.6885734659700586, -1.6040560644158737, -1.5210002031750383, -1.4398038932478667, -1.3608011456884812, -1.284266277157833, -1.2104186674566395, -1.1394277482698159, -1.0714180458129423, -1.0064741393113654, -0.9446454319288901, -0.885950660712993, -0.8303820973419301, -0.7779094121368333, -0.7284831902827171, -0.6820381019217239, -0.6384957372219366, -0.5977671241643836, -0.5597549510867432, -0.5243555183955502, -0.4914604446933186, -0.46095815221476366, -0.43273515524681305, -0.4066771734104986, -0.38267008956392856 ], [ -2.3320637934482376, -2.392802900286521, -2.4485477801656597, -2.498399893341753, -2.541470379256138, -2.5769161143724713, -2.603980359757551, -2.622033429347953, -2.630608047867787, -2.6294248811471945, -2.618405648507042, -2.5976734089740545, -2.5675413781596763, -2.5284927046207866, -2.481154042980799, -2.4262656810533576, -2.3646506126612725, -2.2971844634603085, -2.224767680315077, -2.148300936936339, -2.0686643066911707, -1.9867004126566508, -1.903201490181747, -1.8189000943977796, -1.7344630556141352, -1.6504882219274293, -1.5675035155578574, -1.4859678496867286, -1.4062734907005796, -1.3287494965656645, -1.2536659100593373, -1.1812384332331405, -1.1116333555298736, -1.0449725515090944, -0.981338404280162, -0.920778546734115, -0.8633103439801944, -0.808925066823347, -0.757591727759445, -0.7092605681400065, -0.66386619833474, -0.6213304024241679, -0.5815646257161264, -0.5444721676975632, -0.5099501053623541, -0.47789097260591284, -0.4481842209187885, -0.42071748527789143, -0.3953776772260964, -0.3720519249118188 ], [ -2.2892410427944263, -2.347650778183661, -2.4011168422810654, -2.448783386612946, -2.489808698070944, -2.523398359004595, -2.54884190341946, -2.565549199827406, -2.5730822294957854, -2.5711784922143823, -2.5597636990556487, -2.5389531343463, -2.509042571666995, -2.470490639524254, -2.423895015174947, -2.3699648833739344, -2.3094918796632626, -2.2433213786090787, -2.17232557700973, -2.0973794097818454, -2.0193399460640613, -1.9390295618649707, -1.8572228912756144, -1.7746373369260615, -1.69192677816809, -1.6096780446326362, -1.528409705184493, -1.4485727373904236, -1.3705526743554923, -1.2946728647815138, -1.2211985242170986, -1.1503412991085402, -1.0822641093847203, -1.0170860786276714, -0.9548874019001329, -0.8957140386619091, -0.8395821509528956, -0.7864822346973359, -0.736382914586206, -0.689234390842405, -0.6449715397734792, -0.6035166799537481, -0.5647820227365894, -0.5286718301221727, -0.4950843052862126, -0.46391324174454485, -0.43504945657405325, -0.4083820316780076, -0.3837993850830306, -0.36119019195368796 ], [ -2.24304411635297, -2.2989965509712578, -2.35006514196968, -2.3954379425356933, -2.434321008194226, -2.4659687824279817, -2.4897171104733253, -2.5050157545115095, -2.5114568733005846, -2.5087963310045245, -2.4969657630740625, -2.4760746755045755, -2.4464031061823355, -2.408386295020752, -2.3625933242067685, -2.309701851081412, -2.250470964814949, -2.1857139534399614, -2.116272441856721, -2.0429929972760767, -1.9667069242811142, -1.888213614812785, -1.8082675099954848, -1.7275684972645535, -1.646755418006281, -1.5664022881461221, -1.4870168142925164, -1.4090407977687611, -1.3328520421598962, -1.2587674096014034, -1.1870467051175402, -1.117897106605084, -1.0514778996365166, -0.9879053191959306, -0.9272573423912476, -0.8695783149905819, -0.8148833288474843, -0.7631622961944485, -0.7143836903044583, -0.6684979404798042, -0.6254404832915947, -0.5851344821130509, -0.5474932339100114, -0.5124222865631676, -0.4798212922202507, -0.4495856227690247, -0.4216077728834442, -0.39577857458196597, -0.3719882451623717, -0.3501272880157764 ], [ -2.1938028965384344, -2.2471964782579703, -2.2957752108517626, -2.3387716368397955, -2.375439580803632, -2.405081914153093, -2.427080264306802, -2.440924061088939, -2.446236014889351, -2.442791415483865, -2.430529438556857, -2.409555699323646, -2.3801363228645984, -2.3426846132063504, -2.2977419183741996, -2.245954520549508, -2.1880483904341523, -2.1248035003835506, -2.057029143027105, -1.9855413849271968, -1.911143427860484, -1.83460929096786, -1.7566709098667765, -1.678008510693219, -1.5992439708398596, -1.5209368098319225, -1.4435824347372392, -1.367612268467404, -1.2933954017954266, -1.2212414273877572, -1.151404138150502, -1.0840858040235086, -1.0194417800094742, -0.9575852407790433, -0.8985918801339949, -0.8425044539233969, -0.7893370806879155, -0.7390792443927411, -0.6916994679506687, -0.6471486452068567, -0.6053630332965358, -0.5662669175216013, -0.5297749678284276, -0.4957943102415041, -0.4642263387666472, -0.4349682937974053, -0.40791463234961567, -0.382958213873106, -0.3599913232637373, -0.3389065502983639 ], [ -2.1418555682311613, -2.192614155303025, -2.2386357243630943, -2.279197358751273, -2.3136001461885143, -2.341194494083453, -2.3614068531105907, -2.3737656640458304, -2.3779241259487582, -2.3736776044903394, -2.3609741039013006, -2.3399170479682754, -2.3107604570178335, -2.2738973148850814, -2.2298424154658267, -2.1792112546511966, -2.1226966214134624, -2.0610444810115722, -1.9950305641839707, -1.9254388016183812, -1.8530424021315983, -1.7785880127920883, -1.702783078251605, -1.6262862817923787, -1.5497008154411158, -1.4735701695170613, -1.3983761166001445, -1.3245385623039214, -1.2524169342408837, -1.1823127832746811, -1.114473283389386, -1.0490953412008779, -0.9863300618033741, -0.9262873599740515, -0.8690405498475122, -0.8146307880174866, -0.7630712820887471, -0.7143512078196134, -0.6684393030027376, -0.6252871255718362, -0.5848319778232318, -0.5469995089099235, -0.5117060146657906, -0.4788604580237794, -0.4483662353779101, -0.4201227146915196, -0.39402657039007694, -0.36997293845887524, -0.3478564130117945, -0.3275719031809914 ], [ -2.087544250831563, -2.135615837045257, -2.179036580234544, -2.2171277081815712, -2.249236662740163, -2.274760144605852, -2.293168147184781, -2.304027139076223, -2.3070203964010636, -2.301963654772071, -2.288814713116979, -2.267676265811115, -2.2387919253135715, -2.202536006881842, -2.1593981117263694, -2.1099638454082026, -2.054893153752687, -1.9948977651523891, -1.9307191067309952, -1.8631078232474434, -1.7928056997272697, -1.7205304281325682, -1.646963338153967, -1.5727399889744236, -1.4984434038342296, -1.4245996901532705, -1.351675778482794, -1.2800790030711442, -1.2101582296685922, -1.1422062219172318, -1.0764629370726082, -1.0131194592251347, -0.952322311151017, -0.8941779283210036, -0.838757123956744, -0.7860994173525253, -0.7362171359620766, -0.6890992336865376, -0.6447147932654285, -0.603016200207525, -0.5639419901307605, -0.5274193815924464, -0.49336651330051207, -0.46169440870889145, -0.43230869300557484, -0.4051110878942328, -0.3800007087663875, -0.35687518722261036, -0.33563163974203625, -0.3161675008907545 ], [ -2.0312109528701368, -2.0765661762480945, -2.1173644741099054, -2.152970457773309, -2.182776700678046, -2.2062246913395267, -2.222826448196039, -2.2321852381201452, -2.2340137241147797, -2.2281479983048955, -2.214556313298883, -2.193341832723783, -2.1647392812216175, -2.129105897112832, -2.0869075200424136, -2.0387009562656773, -1.985113950097876, -1.926824148735398, -1.8645383723703168, -1.7989732912294139, -1.7308382922213241, -1.6608209566675416, -1.5895752554179545, -1.517712363671309, -1.4457939111240317, -1.3743274672178891, -1.30376405877967, -1.2344974971687614, -1.166865256335922, -1.1011506104935014, -1.0375857264309465, -0.9763554161167122, -0.9176012860494359, -0.8614260626331863, -0.8078979195412507, -0.7570546776836662, -0.708907787627729, -0.6634460367930337, -0.6206389494171198, -0.5804398668225559, -0.5427887098391402, -0.5076144352997707, -0.47483720519371553, -0.44437029105462345, -0.4161217380805864, -0.3899958138232842, -0.36589426545678605, -0.3437174079984333, -0.3233650637135246, -0.3047373705566281 ], [ -1.973193899327998, -2.0158244049869283, -2.053998977853556, -2.087124562045933, -2.1146374018688103, -2.1360220760196453, -2.150830938412116, -2.1587026394986597, -2.159378315836912, -2.1527141379709445, -2.138689184890594, -2.1174080163211033, -2.0890977724604136, -2.0541000794384887, -2.0128584314235045, -1.9659020307013417, -1.91382727941998, -1.857278213610239, -1.7969271296232134, -1.7334564634725473, -1.6675426698898836, -1.5998424866088994, -1.530981663568062, -1.461546058638865, -1.3920749492837965, -1.3230564200586419, -1.2549246901181645, -1.1880592130357626, -1.1227853253756925, -1.05937616902056, -0.9980555862231605, -0.9390016911280971, -0.8823508509185524, -0.8282018532621813, -0.7766200846758577, -0.7276415901196693, -0.6812769239636491, -0.637514735145106, -0.5963250549450554, -0.5576622751447684, -0.5214678184002564, -0.48767251250356125, -0.45619868667345154, -0.4269620118720392, -0.3998731089755132, -0.3748389489241015, -0.3517640681435865, -0.3305516209138879, -0.3111042882596584, -0.29332506061009056 ], [ -1.9138242545657214, -1.9537409646145318, -1.9893091078940603, -2.0199766853293726, -2.0452219751665552, -2.0645708123049045, -2.0776140750427228, -2.084024244737764, -2.0835698393876223, -2.0761266031157497, -2.0616845525200773, -2.040350303467447, -2.0123444799187, -1.977994392495869, -1.9377225322222569, -1.8920317287003974, -1.8414880495945238, -1.7867026411251836, -1.7283136931650156, -1.666969536803771, -1.6033135716242874, -1.537971360386936, -1.4715399367641262, -1.4045792244211408, -1.3376054511053623, -1.2710864785728406, -1.2054389785205504, -1.1410273395396426, -1.078164113767724, -1.0171117427830918, -0.958085265455183, -0.9012557107336066, -0.846753907073445, -0.7946744845583598, -0.745079894748656, -0.69800431961152, -0.6534573809054574, -0.6114275939102214, -0.5718855346668794, -0.5347867088325935, -0.5000741239605135, -0.4676805765388412, -0.4375306713659637, -0.40954259453730213, -0.38362966306347834, -0.35970167440308654, -0.3376660783705159, -0.3174289923026392, -0.298896078327614, -0.28197329932132487 ], [ -1.8534232467244145, -1.8906545766507574, -1.9236503640946245, -1.9518982198851185, -1.9749166931479016, -1.9922709484033292, -2.0035884945250575, -2.008573989926136, -2.0070220995252406, -1.9988274437934104, -1.9839908544332223, -1.9626214121883612, -1.9349340567295854, -1.9012428926825544, -1.8619506412352376, -1.8175349794997184, -1.7685327433870754, -1.7155231076545658, -1.6591108557671113, -1.5999106853614196, -1.5385331875650972, -1.4755727843973825, -1.4115976346882966, -1.3471414047106853, -1.2826968218443375, -1.2187109905870828, -1.1555824620843236, -1.093659989234033, -1.0332428040063282, -0.9745821691738941, -0.9178839112478784, -0.8633116385827947, -0.8109903771679333, -0.7610104017411586, -0.7134310894404353, -0.6682846696873872, -0.62557978374878, -0.5853047994354936, -0.5474308510855721, -0.5119145933585545, -0.47870067060142674, -0.44772391270395584, -0.4189112743447554, -0.3921835380635321, -0.36745680325329366, -0.3446437834073235, -0.3236549331567866, -0.30439942511529483, -0.2867859945828146, -0.27072366798997716 ], [ -1.792299689499945, -1.8268897412351957, -1.8573622186407956, -1.88324276951235, -1.9040883646198776, -1.919501513075779, -1.9291444080193854, -1.932752159333125, -1.9301442328212055, -1.921233267701499, -1.9060305846724783, -1.8846479104160925, -1.8572951087210896, -1.824273999528076, -1.785968643044274, -1.7428327444523075, -1.6953750665656833, -1.6441438812889477, -1.5897114970716821, -1.5326597385189276, -1.4735669524257553, -1.4129967717108958, -1.3514886174918903, -1.2895498378723567, -1.2276494359949628, -1.166213419069045, -1.105621811538446, -1.0462073033028578, -0.9882553925982551, -0.9320057869220499, -0.8776547739661166, -0.8253582698365609, -0.7752352804565594, -0.727371557576289, -0.6818232804583271, -0.6386206403977, -0.5977712442899488, -0.5592632846558931, -0.523068447423457, -0.48914454645886773, -0.4574378865242055, -0.4278853650895804, -0.4004163291348788, -0.37495420644133115, -0.35141793245042763, -0.32972319399507, -0.3097835104454143, -0.2915111713623366, -0.2748180478783748, -0.25961629295329924 ], [ -1.7307478915079393, -1.7627546474301985, -1.7907660355218487, -1.8143440781692572, -1.833082264109933, -1.8466184303615025, -1.8546474795168528, -1.8569331999901832, -1.8533184281872082, -1.843732834715611, -1.8281977315658657, -1.8068274744437012, -1.7798272592326339, -1.7474873670955848, -1.7101741816255056, -1.66831856294387, -1.6224023872304414, -1.572944201306699, -1.5204849495543051, -1.4655745742881874, -1.4087599991659154, -1.3505746806963408, -1.2915296878451195, -1.2321062172388448, -1.1727495289092698, -1.1138643771562866, -1.0558120195296343, -0.9989088039903553, -0.9434262118531419, -0.8895921303822695, -0.8375930740277875, -0.7875770676646211, -0.7396569337534954, -0.6939137707093206, -0.6504004588313694, -0.6091450753147427, -0.5701541378310058, -0.5334156262865313, -0.4989017553081767, -0.46657148692029216, -0.4363727849664023, -0.40824462115313676, -0.38211874801580614, -0.3579212573030883, -0.335573943779476, -0.31499549466646126, -0.29610252422627537, -0.27881047162345074, -0.2630343784263618, -0.24868956014664678 ], [ -1.6690459399987232, -1.6985394785220715, -1.7241634021399357, -1.7455143856954265, -1.76222050303152, -1.7739528920506866, -1.7804371811315503, -1.7814640379596036, -1.776898179942259, -1.766685221662295, -1.7508558303184374, -1.7295268094254002, -1.702898924560656, -1.671251510789708, -1.6349341454678024, -1.5943559126749296, -1.5499729955867338, -1.5022754655516495, -1.4517741415071772, -1.3989882429220692, -1.3444342842660408, -1.288616360003353, -1.232017772594114, -1.1750939269997958, -1.1182665055613894, -1.061919028781237, -1.00639391099452, -0.9519910300413479, -0.8989677021145416, -0.8475398462370389, -0.79788406679311, -0.7501403765077133, -0.7044153103411578, -0.6607852252494157, -0.6192996285830084, -0.5799844216399794, -0.542844981447937, -0.507869032708383, -0.47502928372594555, -0.4442858162342034, -0.41558823050492144, -0.38887755501961796, -0.3640879351220432, -0.3411481181053855, -0.31998275361993866, -0.3005135285101701, -0.282660154525588, -0.26634122606809396, -0.2514749634724609, -0.23797985546591605 ], [ -1.6074543431385018, -1.634515094300094, -1.6578348543935921, -1.6770431929329084, -1.6918008271382727, -1.7018101758253839, -1.7068256173135676, -1.706662891786251, -1.7012070720550216, -1.6904185580197604, -1.6743366310692207, -1.6530802324582516, -1.626845798230844, -1.595902183952133, -1.5605829333540406, -1.5212763670191707, -1.4784141597190927, -1.4324591943698095, -1.3838934804313026, -1.3332067819887747, -1.2808863480035524, -1.2274078698502846, -1.1732276240376587, -1.1187757456262513, -1.0644506703580483, -1.0106148693028292, -0.9575919972211805, -0.905665483368562, -0.8550784658552912, -0.8060348652465751, -0.7587013378706062, -0.7132098430933937, -0.6696605858076126, -0.6281251382085435, -0.5886495908649612, -0.5512576249826024, -0.5159534326605968, -0.4827244394132266, -0.45154380401721594, -0.42237268599642475, -0.39516228192124303, -0.369855639169391, -0.34638926066252784, -0.32469451697390594, -0.3046988835711921, -0.2863270211880644, -0.2695017167100435, -0.2541447007689943, -0.24017735668415763, -0.22752133365361327 ], [ -1.5462150127540495, -1.5709320705959924, -1.5920389750540065, -1.6091964166118393, -1.622095821909373, -1.630468892334437, -1.6340968027610512, -1.632818568809617, -1.62653807902536, -1.6152293162662832, -1.598939362601779, -1.5777888930722013, -1.5519700119215845, -1.5217414638414541, -1.4874214515878732, -1.4493784917150085, -1.4080209124832368, -1.363785701711779, -1.3171274067535226, -1.2685076567837725, -1.2183856522835577, -1.1672097347726955, -1.1154100108863756, -1.0633920021605232, -1.0115313772178824, -0.9601698967375594, -0.9096126925721914, -0.8601269113900386, -0.8119416310585313, -0.7652488575022974, -0.7202053569322223, -0.6769350720063934, -0.635531895763038, -0.5960626176081159, -0.5585698991258525, -0.523075177168548, -0.4895814247499244, -0.4580757262838826, -0.42853164338709293, -0.4009113618937463, -0.37516762100881973, -0.3512454325942269, -0.3290836031936335, -0.3086160741392605, -0.28977309639694515, -0.2724822570451071, -0.2566693737338259, -0.24225927237015177, -0.2291764618291796, -0.21734571787249646 ], [ -1.4855505670922364, -1.5080200741225336, -1.5270118426777273, -1.5422159109602005, -1.5533525027502892, -1.5601806378557106, -1.562506369896887, -1.5601902184431526, -1.553153354399567, -1.541382123124791, -1.5249305514896196, -1.5039205829063604, -1.4785399157904044, -1.4490374805510424, -1.4157167679905363, -1.3789274002569833, -1.339055486445344, -1.296513392323837, -1.2517295435107645, -1.2051387626886503, -1.1571734466547192, -1.1082556939030606, -1.058790380147049, -1.009159180140038, -0.9597156057064581, -0.9107811875707337, -0.8626429133387443, -0.8155519476771455, -0.769723547875441, -0.7253379952006338, -0.6825423131835957, -0.641452537532798, -0.6021563254235176, -0.5647157293818423, -0.5291700015737424, -0.4955383315327193, -0.4638224514758309, -0.4340090678937951, -0.40607209668438826, -0.3799746927406813, -0.355671074631158, -0.3331081517036458, -0.3122269653206884, -0.2929639585414878, -0.275252089829751, -0.2590218066193961, -0.24420189407958093, -0.23072021341018178, -0.21850434266002794, -0.20748213155565565 ], [ -1.425663930793673, -1.4459875481040356, -1.4629668051922575, -1.4763193289416012, -1.4857922615154706, -1.4911700221749498, -1.4922816728653805, -1.4890075056132976, -1.4812844650377035, -1.4691100433544841, -1.4525443406125351, -1.4317100700064826, -1.4067904051761988, -1.3780247085838373, -1.3457023377295552, -1.3101548823450095, -1.2717473154356023, -1.2308686128987043, -1.1879223834441737, -1.1433179470167227, -1.0974621364887316, -1.0507519375697028, -1.0035679906514907, -0.9562689785307775, -0.9091869782397292, -0.862623895362642, -0.8168490783537192, -0.7720981307311238, -0.728572837782758, -0.6864420410941934, -0.6458432493258779, -0.6068847671809627, -0.5696481450099273, -0.5341907856028805, -0.5005485821090592, -0.4687384956061009, -0.4387610099381041, -0.41060242449690554, -0.3842369631454978, -0.3596286903817012, -0.3367332350540486, -0.31549932829669447, -0.29587016651313536, -0.2777846127310286, -0.2611782508735321, -0.24598430776176428, -0.23213445723062276, -0.219559519817214, -0.20819007024612923, -0.19795696354079406 ], [ -1.3667382070803167, -1.3850216816836052, -1.4000945492019496, -1.4117002920905402, -1.4196111358594201, -1.4236350350975768, -1.423622247534734, -1.4194711589204663, -1.4111330197281449, -1.398615277790596, -1.3819832412832067, -1.3613598846168669, -1.3369237142632437, -1.3089047376937064, -1.277578717214671, -1.2432600258920774, -1.2062935325264454, -1.1670460007966277, -1.1258974738089562, -1.0832330279128586, -1.039435146315494, -0.994876835054724, -0.9499155306976902, -0.9048878459384277, -0.8601052355921817, -0.815850688633336, -0.7723765262805783, -0.7299033140176986, -0.6886198066770379, -0.6486837725856205, -0.6102235027409215, -0.5733398045858138, -0.5381082978080616, -0.5045818601434833, -0.4727931051884875, -0.44275680607737167, -0.4144722059300636, -0.387925177569161, -0.3630902115123418, -0.3399322234488409, -0.31840818115396363, -0.2984685568444223, -0.28005861495238915, -0.26311954768913837, -0.24758947196036396, -0.2334043014835092, -0.22049850758307699, -0.2088057813005817, -0.19825960832017642, -0.18879376691998062 ], [ -1.3089367953041946, -1.3252886339497163, -1.3385634334509056, -1.3485288346913504, -1.3549803640014673, -1.3577477103880506, -1.3567005817744395, -1.351753842505725, -1.3428716351831702, -1.330070212313601, -1.31341924938496, -1.2930414813721907, -1.2691105978226411, -1.2418474430396167, -1.2115146886591317, -1.1784102618728949, -1.1428599043804066, -1.1052092839546581, -1.065816067511811, -1.0250422931969716, -0.9832472729393511, -0.9407811562277167, -0.897979226811829, -0.8551569962499357, -0.8126061779313876, -0.7705916333212749, -0.7293493527723993, -0.689085468660082, -0.649976222011754, -0.6121687407785483, -0.5757824528350381, -0.5409109506463785, -0.5076241398366943, -0.47597053090576114, -0.44597956398310745, -0.4176638856104189, -0.3910215215555324, -0.36603790982247353, -0.34268777355408986, -0.3209368250749871, -0.3007433006401188, -0.28205933123037097, -0.26483215854835795, -0.24900520767738432, -0.23451902903502142, -0.2213121225640302, -0.20932165678599923, -0.19848409458463312, -0.18873573654399745, -0.18001319147468453 ], [ -1.2524037256664975, -1.2669339818931782, -1.278520053063036, -1.2869520858980978, -1.2920471850236577, -1.2936550432442053, -1.2916631475531313, -1.2860012981296614, -1.2766451805890888, -1.2636187536129873, -1.2469952565710407, -1.226896705220833, -1.2034918264114731, -1.176992480466846, -1.1476487243343931, -1.1157427670344595, -1.0815821452674264, -1.0454924849022356, -1.007810203251474, -0.9688754505674045, -0.9290255066413852, -0.8885887700343751, -0.8478794291834055, -0.8071928921989207, -0.7668020578216146, -0.7269545058368716, -0.687870653196452, -0.649742864517169, -0.6127354401686935, -0.576985351527151, -0.5426035627081278, -0.5096767723401434, -0.47826942188825816, -0.44842584067145075, -0.4201724250700636, -0.39351977582586994, -0.3684647403515151, -0.3449923257331031, -0.3230774627074753, -0.30268661183558954, -0.2837792110202695, -0.2663089690502889, -0.2502250135248134, -0.23547290375518815, -0.22199552039623804, -0.20973384389800698, -0.19862763360873936, -0.18861601867904998, -0.17963801096514387, -0.17163294902952964 ], [ -1.1972641822014483, -1.210083360829485, -1.2200900003166208, -1.2270951524633478, -1.2309358439043452, -1.231480116650192, -1.228631645995231, -1.2223337041730464, -1.212572242975561, -1.1993778898409806, -1.182826691087015, -1.1630394931307855, -1.1401799259361103, -1.114451038240182, -1.086090723784297, -1.055366160879494, -1.0225675509692658, -0.9880014729653555, -0.9519841622061053, -0.9148349795842268, -0.876870273265207, -0.8383977747375477, -0.799711630700295, -0.7610881558695626, -0.7227823864233363, -0.6850255003136778, -0.6480231370866123, -0.6119545985444388, -0.5769728558278118, -0.5432052431727874, -0.5107546927323712, -0.4797013595838422, -0.45010449691936993, -0.4220044619327412, -0.395424757157401, -0.3703740358306027, -0.34684802093802913, -0.3248313050124707, -0.3042990114602815, -0.2852183085534805, -0.2675497747919906, -0.2512486196592878, -0.23626576734829152, -0.22254881322582953, -0.21004286395608118, -0.19869127257440455, -0.18843627960069842, -0.17921957067625605, -0.17098276034114823, -0.16366781055726687 ], [ -1.1436251850689276, -1.1548432658416683, -1.163378787821447, -1.1690621650059918, -1.1717487610073434, -1.1713233928695639, -1.1677044180288223, -1.1608472005224182, -1.150746758834745, -1.1374394183967524, -1.1210033278127252, -1.1015577492287796, -1.0792610980241197, -1.0543077810894634, -1.0269239596076194, -0.9973624322124234, -0.9658968871047326, -0.9328157978446413, -0.8984162326996005, -0.8629978152224934, -0.8268570261013645, -0.7902819892450613, -0.7535478508387968, -0.7169128406806605, -0.6806150917325149, -0.644870273813323, -0.6098700632578513, -0.5757814245665278, -0.5427466325122312, -0.5108839249394599, -0.4802886544860734, -0.45103480269509055, -0.42317672906707604, -0.3967510453072267, -0.37177852638614595, -0.3482659914120658, -0.3262081065429556, -0.3055890782880424, -0.28638421838700645, -0.268561371271264, -0.25208220234481304, -0.23690335044765853, -0.22297745131889402, -0.21025404103094347, -0.19868034952489122, -0.18820199478546762, -0.17876358805143355, -0.17030925992619217, -0.16278311646802712, -0.15612963341085195 ], [ -1.0915764037917783, -1.1013019835737334, -1.1084729009696344, -1.1129374520548594, -1.1145678274606223, -1.1132641285850813, -1.1089579761579964, -1.1016155319612908, -1.0912397618762144, -1.0778717882714857, -1.0615912128270164, -1.0425153368377602, -1.020797262963888, -0.9966229264755361, -0.9702071693748475, -0.9417890296753967, -0.9116264622549634, -0.8799907301997916, -0.8471607036073242, -0.8134172795809529, -0.7790381015121334, -0.7442927189379477, -0.7094382995794881, -0.6747159838214802, -0.6403479531595735, -0.6065352600426861, -0.5734564327959499, -0.5412668283288833, -0.5100986645709773, -0.4800616322376743, -0.4512439667953878, -0.42371385719781807, -0.3975210755084837, -0.3726987267300388, -0.34926503690433086, -0.327225116654291, -0.30657265481870577, -0.28729151170876444, -0.2693571935256238, -0.25273819876977655, -0.23739723439232496, -0.22329230438844827, -0.2103776769034309, -0.19860473805123235, -0.1879227418196332, -0.1782794658874025, -0.16962178309804754, -0.16189615787701706, -0.15504907617312935, -0.14902741665582275 ], [ -1.0411910742400268, -1.0495306251364083, -1.0554409482820337, -1.0587868082481484, -1.0594557904822834, -1.0573618753847125, -1.0524486167284834, -1.0446917672000735, -1.0341012019604456, -1.0207220100581855, -1.004634653748865, -0.9859541367509984, -0.9648281723274297, -0.9414343973653434, -0.9159767342641826, -0.8886810521395431, -0.8597903161254885, -0.8295594333527493, -0.7982500046770765, -0.7661251749873846, -0.7334447483485379, -0.7004607050935605, -0.667413231843675, -0.6345273531641811, -0.6020102316584073, -0.5700491770585698, -0.5388103721993323, -0.5084382870091004, -0.47905571648399436, -0.4507643510800736, -0.42364577192192243, -0.39776275931770133, -0.37316080928584716, -0.34986976580272233, -0.32790549286009996, -0.3072715274342548, -0.2879606703035973, -0.26995648534388095, -0.253234689142096, -0.23776442155663435, -0.22350939447073137, -0.21042892077444675, -0.19847882890817137, -0.18761227041574458, -0.17778042915281245, -0.16893314129544068, -0.1610194352773584, -0.1539880004000398, -0.1477875922311258, -0.14236738213409317 ], [ -0.992526993805923, -0.9995842328431255, -1.0043348805949468, -1.0066588258209928, -1.0064576959575104, -1.003658031089342, -0.9982140764333727, -0.9901100556285196, -0.9793617957112902, -0.9660175925662055, -0.9501582331317031, -0.9318961270617941, -0.9113735441046686, -0.888760001089074, -0.8642488898194427, -0.838053479282765, -0.810402457337812, -0.7815351947525736, -0.7516969168529266, -0.7211339570628231, -0.6900892467605209, -0.6587981724395362, -0.6274849079014764, -0.5963593068455908, -0.5656144178307978, -0.5354246566793439, -0.5059446403101473, -0.47730865298798286, -0.4496306854087295, -0.42300496340590565, -0.3975068692086614, -0.37319415456838434, -0.350108350132351, -0.32827628651365237, -0.30771165676620416, -0.288416565069878, -0.2703830207284077, -0.2535943491472472, -0.2380265019012402, -0.22364925629785115, -0.21042730117098096, -0.19832121027498473, -0.18728830788186612, -0.17728343329283547, -0.16825961220265517, -0.16016864340706216, -0.15296160939364967, -0.14658931904635364, -0.14100269014152444, -0.13615307861519366 ], [ -0.9456275712174625, -0.9515029358335165, -0.9551912527506213, -0.956586261658541, -0.9556023591850751, -0.9521774115313981, -0.9462752014226004, -0.937887388967163, -0.9270348748133377, -0.9137684708012134, -0.8981688082120289, -0.8803454459977843, -0.8604351793704313, -0.8385995901580618, -0.8150219208135103, -0.7899033897999009, -0.7634590933841888, -0.7359136548401177, -0.7074967858041866, -0.6784389173823466, -0.6489670436599009, -0.6193009010935875, -0.5896495864277169, -0.5602086939661621, -0.5311580293953952, -0.5026599308488993, -0.47485819876642354, -0.44787760645475916, -0.42182393650778227, -0.39678446776171494, -0.3728288253551455, -0.35001010305581337, -0.32836617106713106, -0.3079210918998909, -0.2886865792610429, -0.2706634482593486, -0.25384301809461385, -0.23820843989155116, -0.22373593203946318, -0.21039591321585194, -0.19815402931627268, -0.18697207499757096, -0.17680881371487311, -0.1676207022386993, -0.15936252689948316, -0.15198795941494825, -0.1454500402742247, -0.13970159741732413, -0.13469560747221365, -0.13038550618611433 ], [ -0.90052290969, -0.9053131322263035, -0.9080325044061914, -0.90858741554187, -0.9069038384855072, -0.9029298166017921, -0.8966376020163866, -0.8880253400300796, -0.87711820338816, -0.8639688957610816, -0.8486574662688319, -0.8312904054351524, -0.8119990260755678, -0.7909371679922889, -0.7682783000026859, -0.7442121234910088, -0.718940805311253, -0.6926749823396776, -0.6656296845603988, -0.6380203191342588, -0.6100588465101238, -0.5819502636858673, -0.5538894910047194, -0.5260587380736179, -0.49862540136460853, -0.4717405206750618, -0.4455377946380408, -0.42013312885173715, -0.39562466664974316, -0.372093234621071, -0.349603124284668, -0.3282031280460913, -0.30792775072678036, -0.28879852583734955, -0.2708253764445123, -0.2540079722398323, -0.23833704595761085, -0.22379564276966635, -0.21036028526825357, -0.19800204399479981, -0.1866875092332012, -0.1763796641213644, -0.16703866224818675, -0.15862251500853186, -0.15108769528534016, -0.14438966469432324, -0.13848333181492367, -0.133323448671389, -0.12886495232659967, -0.12506325789799622 ], [ -0.8572309045088519, -0.861028678150199, -0.8628682396190115, -0.8626674986139694, -0.8603628901320666, -0.8559115685227889, -0.8492932705220732, -0.8405117556496088, -0.8295957409990523, -0.8165992619600548, -0.8016014106359944, -0.7847054289432899, -0.7660371622429761, -0.7457429098906475, -0.723986738851081, -0.7009473528821161, -0.6768146303643592, -0.6517859569582702, -0.6260624842833225, -0.5998454432364879, -0.5733326317380381, -0.5467151832172255, -0.520174705320491, -0.49388085883592225, -0.46798942497061535, -0.442640885300426, -0.4179595139688683, -0.3940529578302674, -0.37101225940576854, -0.34891226172696266, -0.32781232457094833, -0.30775727839191425, -0.28877854463582064, -0.27089535769704676, -0.2541160329510699, -0.2384392356145888, -0.22385521549426413, -0.21034698220721637, -0.19789140374811143, -0.18646021816088654, -0.17602095354994196, -0.16653775584744057, -0.15797212680435702, -0.15028357677575466, -0.14343019820313185, -0.13736916642067487, -0.1320571746712258, -0.12745081013275228, -0.12350687743023414, -0.12018267562558016 ], [ -0.8157583385768069, -0.8186520667259745, -0.8196964878888815, -0.8188199744241638, -0.8159683867094074, -0.81110700425751, -0.804222143908473, -0.7953223853595218, -0.7844393326685161, -0.7716278537328914, -0.756965757902082, -0.7405528941430349, -0.7225096773503261, -0.7029750768038129, -0.6821041264152499, -0.6600650391552494, -0.637036026017304, -0.6132019317050812, -0.5887508043493399, -0.5638705152087582, -0.5387455373269474, -0.5135539805876033, -0.4884649654950173, -0.463636399998953, -0.439213203323785, -0.4153259987591116, -0.3920902748677886, -0.3696059931745084, -0.3479576019147457, -0.327214401403805, -0.30743119794683227, -0.2886491800585742, -0.27089695246052337, -0.254191668749127, -0.23854021146920457, -0.2239403773400206, -0.21038203455643756, -0.19784822770554222, -0.1863162134638816, -0.1757584166669135, -0.16614330153240275, -0.15743615684204726, -0.1495997968685625, -0.1425951819314708, -0.13638196382972678, -0.1309189621800806, -0.12616457801787906, -0.12207715100676264, -0.1186152663520117, -0.11573801710040232 ], [ -0.7761019618726506, -0.7781755827322971, -0.7785049322520958, -0.7770278580823317, -0.7736986844366124, -0.7684899076531311, -0.7613935970273404, -0.752422431617172, -0.7416103117349957, -0.7290124961016753, -0.7147052319071348, -0.6987848646647087, -0.6813664367183767, -0.6625818061527771, -0.6425773400074741, -0.6215112553963655, -0.5995506978503704, -0.5768686568271983, -0.5536408233277388, -0.5300424939810437, -0.5062456203183439, -0.4824160919886933, -0.4587113291209326, -0.43527824257915415, -0.41225160216298873, -0.3897528327160962, -0.3678892377810292, -0.34675363130737846, -0.32642434147748656, -0.3069655382037484, -0.28842782799651157, -0.27084905678243265, -0.2542552623621013, -0.23866172262163898, -0.22407405227152166, -0.21048930872319427, -0.19789707584480065, -0.18628050210527847, -0.17561727659956805, -0.16588053242444967, -0.15703967177441625, -0.1490611109832385, -0.14190894664367315, -0.13554554602016777, -0.12993206636205556, -0.12502890855816884, -0.12079611096865706, -0.11719368933203711, -0.11418192846698139, -0.11172163114577116 ], [ -0.7382495430881529, -0.7395824212189094, -0.7392720927646761, -0.7372649620082462, -0.7335229281532876, -0.7280248702815585, -0.7207678556407661, -0.7117680111207364, -0.7010610053736871, -0.6887021002403428, -0.6747657447030717, -0.6593447019203627, -0.6425487190971022, -0.6245027698236578, -0.6053449177041768, -0.5852238671918664, -0.564296281307457, -0.5427239554064174, -0.5206709408777845, -0.49830071254057784, -0.4757734688475679, -0.45324364532116834, -0.4308577095312842, -0.4087522910169892, -0.3870526825701681, -0.3658717311261068, -0.3453091182476853, -0.32545101311098157, -0.30637006625155183, -0.28812570112600366, -0.2707646533636032, -0.25432170449757696, -0.23882055757113263, -0.22427480557193946, -0.2106889492646744, -0.19805942777215613, -0.18637563242885746, -0.17562088140292875, -0.1657733389516829, -0.15680686871082772, -0.14869181502459816, -0.14139571000575302, -0.13488390683568285, -0.12912014187523035, -0.12406702956999127, -0.11968649501500228, -0.11594014950123532, -0.11278961449883829, -0.11019679942419214, -0.10812413826357203 ], [ -0.7021808838964885, -0.70284776068769, -0.7019684562394246, -0.6994970794555263, -0.6954022855246136, -0.6896685729574656, -0.6822973216881316, -0.6733075201173162, -0.6627361361260744, -0.65063809729958, -0.6370858586177595, -0.6221685511690596, -0.6059907222412424, -0.5886706944367999, -0.5703385881144751, -0.551134066319978, -0.5312038734076376, -0.5106992469798723, -0.48977328711637624, -0.4685783669985688, -0.4472636651150692, -0.4259728916236083, -0.40484227063813827, -0.38399882680040887, -0.36355900919518325, -0.34362766934366107, -0.3242973936824127, -0.3056481757141134, -0.28774739995716425, -0.27065009976047727, -0.25439944446592233, -0.23902740835960556, -0.22455557403643445, -0.21099602561408104, -0.1983522919332057, -0.18662030571663113, -0.17578935095995574, -0.16584297705656925, -0.1567598639432095, -0.14851462765579404, -0.14107855999766028, -0.13442029952174273, -0.12850643375414306, -0.12330203461500111, -0.1187711304178074, -0.11487711875013318, -0.11158312505409262, -0.10885231192314104, -0.1066481440924607, -0.10493461389163894 ], [ -0.6678687883230738, -0.66793978361624, -0.6665575453874477, -0.663683099402568, -0.6592911045560268, -0.6533709825667493, -0.6459278059973514, -0.6369828994918139, -0.6265741158122873, -0.6147557575389089, -0.6015981269267039, -0.5871866999230946, -0.5716209350618551, -0.5550127430174026, -0.5374846570800795, -0.5191677577432161, -0.5001994151143903, -0.4807209203018008, -0.4608750808522839, -0.4408038555651501, -0.42064610064884156, -0.40053549249264986, -0.38059868270886277, -0.36095372910692736, -0.3417088325670219, -0.3229613951973671, -0.3047974006131322, -0.2872911036311434, -0.270505005030123, -0.2544900779788821, -0.23928620668782608, -0.22492279485707511, -0.2114195013304454, -0.1987870625382644, -0.18702816521385301, -0.1761383378631567, -0.16610683497376466, -0.15691749349228457, -0.14854954632690998, -0.14097838231635396, -0.1341762461242917, -0.12811287482860556, -0.12275607059553706, -0.11807221081488528, -0.11402669850026714, -0.11058435671295763, -0.10770977133444681, -0.1053675867722379, -0.10352275920855547, -0.10214077185664494 ], [ -0.6352799815202008, -0.6348206390321005, -0.6329969225456884, -0.6297760485253208, -0.6251379907163126, -0.6190764611283264, -0.6115996660156702, -0.6027307978807139, -0.592508230745719, -0.5809853943604895, -0.5682303133988584, -0.5543248096313156, -0.5393633779589733, -0.5234517603392495, -0.5067052542320731, -0.48924680344793225, -0.471204928462188, -0.4527115597921185, -0.4338998415266353, -0.41490197237497095, -0.39584714868495086, -0.37685966797614356, -0.35805724299413155, -0.33954956561288263, -0.3214371477167839, -0.3038104532233259, -0.2867493224861226, -0.2703226782847712, -0.2545884922262034, -0.2395939822411195, -0.2253760063023056, -0.21196161458642493, -0.19936872185787258, -0.18760686348674516, -0.17667800172193537, -0.16657735309033472, -0.15729421258360743, -0.14881275520285264, -0.1411128001362092, -0.1341705271243243, -0.12795913829425087, -0.12244946185846439, -0.11761049658177902, -0.11340989785258704, -0.1098144076150509, -0.10679023139738741, -0.10430336628182113, -0.10231988397643321, -0.10080617323456953, -0.09972914578234482 ] ], "zauto": true, "zmax": 2.893958124249367, "zmin": -2.893958124249367 }, { "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.15333192485667324, 0.13969693125855834, 0.12803478208708266, 0.11859732301395995, 0.11167654965046522, 0.10758217439059191, 0.10657575535491945, 0.10877896574171629, 0.11410997102204891, 0.12229366720583955, 0.13293473172552883, 0.14560268420316688, 0.1598908991715764, 0.1754431994886358, 0.19195861370314538, 0.20918593831171403, 0.22691530609405505, 0.2449700333044864, 0.26319982096049266, 0.28147543403096525, 0.29968466629613527, 0.31772934291901417, 0.335523139917142, 0.3529900408359783, 0.37006328552587847, 0.38668469147679096, 0.40280424704297924, 0.4183798907616407, 0.4333774036462957, 0.44777035279988725, 0.4615400353837896, 0.4746753820499504, 0.4871727884238763, 0.49903585211199214, 0.5102750009984347, 0.5209070063065632, 0.5309543810451836, 0.5404446710396067, 0.5494096517297729, 0.557884449220414, 0.5659066085570199, 0.5735151356968928, 0.5807495419434264, 0.5876489205194062, 0.5942510843248664, 0.6005917916974605, 0.6067040832275599, 0.6126177475704595, 0.6183589280689974, 0.623949875282002 ], [ 0.13921530149980227, 0.12567048077141316, 0.11428165590738054, 0.10528668473154172, 0.09894684351837876, 0.09552509815480362, 0.09522250170353608, 0.09809450075935519, 0.10400343496038199, 0.11264446256224066, 0.12362193192909648, 0.13652515430851925, 0.15097475910765684, 0.16664034829581265, 0.18324131496704987, 0.20054083136808123, 0.21833837307724585, 0.2364629031340043, 0.25476726632585694, 0.2731237590775584, 0.29142069295300516, 0.30955977149195296, 0.3274541330510331, 0.34502693996896777, 0.36221041145819083, 0.3789452076392458, 0.39518007916201714, 0.41087170349202, 0.4259846363347156, 0.4404913150677147, 0.45437206023986704, 0.467615030812217, 0.48021609849682423, 0.49217861601027546, 0.5035130631086098, 0.5142365628031113, 0.5243722681201766, 0.5339486271304854, 0.5429985406834263, 0.5515584332489197, 0.5596672623397871, 0.5673654959593003, 0.5746940901546552, 0.5816934998271018, 0.5884027552753179, 0.5948586344525624, 0.6010949566616878, 0.6071420176169171, 0.6130261788447322, 0.6187696167809844 ], [ 0.12571538922503847, 0.1122913000977046, 0.1012564492210723, 0.092836601492445, 0.0872471763926686, 0.084671116021836, 0.08520763790298534, 0.0888159884933035, 0.09529834350254147, 0.10433803378683576, 0.11556431082785418, 0.12860675040745548, 0.14312515868336298, 0.15881977596613775, 0.17543099647317587, 0.19273508929345803, 0.2105390806813173, 0.22867596482768174, 0.24700054256885876, 0.26538590394605344, 0.2837205122084627, 0.30190584740471127, 0.3198545701379387, 0.3374891598827504, 0.35474097127016363, 0.371549641204265, 0.38786277278596776, 0.4036358198613679, 0.4188320983156463, 0.4334228560969898, 0.44738734230320193, 0.4607128254919389, 0.4733945218632431, 0.4854354045087655, 0.49684587513362427, 0.507643289313375, 0.5178513353460295, 0.5274992750506113, 0.536621062403194, 0.5452543626002662, 0.5534394998419642, 0.5612183666109961, 0.5686333302186892, 0.5757261736280915, 0.5825371068312256, 0.5891038822536786, 0.5954610428477037, 0.6016393249671916, 0.6076652302316342, 0.6135607719672841 ], [ 0.11295922128805168, 0.09965463877124789, 0.08903045541007244, 0.08130778163800852, 0.07663696184291795, 0.07507446766224317, 0.07656544979036489, 0.08094539684476267, 0.08796438120540509, 0.09732233025373731, 0.10870146566929345, 0.12178937200238935, 0.13629256261615097, 0.15194300216044013, 0.16850022748255622, 0.1857509851907449, 0.20350753251929352, 0.22160524301506712, 0.23989990562492525, 0.25826499037045425, 0.27658908633384394, 0.29477365815765927, 0.31273120782501623, 0.3303838733597267, 0.34766245050160555, 0.36450579001014827, 0.38086050207678457, 0.3966808888483875, 0.41192902409016285, 0.42657490326889136, 0.44059659575646887, 0.45398034172501167, 0.46672054830655885, 0.47881965178655966, 0.4902878243972467, 0.5011425153546499, 0.5114078260093803, 0.5211137283225635, 0.5302951443176853, 0.5389909116331685, 0.5472426666625901, 0.5550936817836931, 0.5625876965433732, 0.5697677840710625, 0.5766752931809576, 0.5833489034673129, 0.5898238252590713, 0.5961311688663141, 0.6022974986265038, 0.60834457752385 ], [ 0.10118061173399258, 0.08796253596339752, 0.07777756537979526, 0.07085679937650027, 0.06725885890622257, 0.06684976471019036, 0.06936229439893624, 0.07449463344229566, 0.08197105003599059, 0.09154414903056395, 0.10297456796843125, 0.11601924545493526, 0.13043313075258614, 0.14597713639061596, 0.16242600403805646, 0.17957348962956374, 0.1972346339844057, 0.21524577237443232, 0.23346308901355517, 0.2517604142906274, 0.27002679055137296, 0.28816416398683103, 0.3060854171645845, 0.32371284448452536, 0.3409770905208224, 0.3578165151651863, 0.37417691502670625, 0.3900115129457736, 0.4052811224419676, 0.4199543977227839, 0.43400808944136404, 0.4474272392428601, 0.4602052604272904, 0.47234386649778953, 0.4838528231693771, 0.4947495121887442, 0.5050583069325131, 0.5148097702246268, 0.5240396941866402, 0.5327880101942885, 0.541097604037577, 0.5490130769279229, 0.5565794967315838, 0.5638411853717589, 0.570840587425885, 0.5776172613884238, 0.5842070289318775, 0.5906413091017125, 0.5969466543055529, 0.6031444939912187 ], [ 0.09078212060764088, 0.07760335636141791, 0.06786477839992042, 0.06182706555913149, 0.05941691191375963, 0.06022935981174693, 0.06373810486884705, 0.069521008459932, 0.0773214991160477, 0.08698047802506513, 0.0983532754770347, 0.11126842969383587, 0.12552491052930634, 0.14090645837388346, 0.15719762948151378, 0.1741953446282333, 0.19171512975531826, 0.2095932149903893, 0.22768597034928192, 0.24586790580172366, 0.26402911128136664, 0.2820727035038403, 0.29991260969349515, 0.31747184767200387, 0.3346813442661487, 0.351479257307007, 0.3678107205353643, 0.3836279075481999, 0.39889030420233546, 0.41356508353100907, 0.4276274890975156, 0.44106114855232226, 0.4538582565527487, 0.46601958349994105, 0.4775542827749137, 0.48847948387260554, 0.4988196719587956, 0.5086058660153301, 0.5178746180369569, 0.5266668647625045, 0.5350266710840486, 0.5429999103389035, 0.5506329307828344, 0.5579712592497637, 0.5650583919566454, 0.5719347184075685, 0.5786366174398105, 0.5851957549961885, 0.5916386018683988, 0.5979861773435988 ], [ 0.08239606085588315, 0.06924603184901579, 0.059967295844627545, 0.054857783391497265, 0.05365309876068387, 0.0556061970921815, 0.05993513935114293, 0.06615590652669273, 0.07408226871783699, 0.08366578712997516, 0.09485805882043215, 0.10755155800865748, 0.12157953645623451, 0.13674006816760964, 0.15282135022879803, 0.16961958132065394, 0.18694870767143498, 0.20464407062491718, 0.22256225522451467, 0.24057893635457325, 0.25858594038725063, 0.276488277821004, 0.2942015721562992, 0.3116500851522221, 0.32876538971561603, 0.34548564709241186, 0.36175538949499697, 0.37752568204426623, 0.39275453087289375, 0.4074074110266677, 0.4214578032132321, 0.43488764836223354, 0.44768765032255586, 0.45985737779486796, 0.47140513563826447, 0.4823475925520884, 0.492709166835259, 0.5025211847160345, 0.5118208369107472, 0.5206499687856071, 0.5290537477411225, 0.5370792579800127, 0.544774077249913, 0.5521848919854271, 0.5593562060705031, 0.5663291939433568, 0.5731407410098441, 0.5798227037164828, 0.5864014089199107, 0.5928973984185743 ], [ 0.07688149125035189, 0.06386976318334811, 0.055114291211087144, 0.050903996216753566, 0.05072251107347607, 0.053494354790131815, 0.05827556694664391, 0.06460267547422589, 0.07239156563512178, 0.08170240335086353, 0.09256877312761866, 0.10493154606663178, 0.11864531016405873, 0.13351299544229994, 0.14932017082709664, 0.16585858846938353, 0.18293871199223413, 0.20039429066626238, 0.21808214630434475, 0.23587952745302004, 0.253680562313871, 0.2713927265181219, 0.28893382466579054, 0.3062297110380319, 0.3232127986154331, 0.33982129537605893, 0.3559990431752002, 0.371695804380023, 0.3868678353483774, 0.40147859613357856, 0.4154994660860559, 0.42891036018691103, 0.441700167203801, 0.45386695564563106, 0.4654179157147452, 0.47636902461560604, 0.48674443886099217, 0.49657563107963376, 0.5059003007541966, 0.5147610986264447, 0.5232042132568813, 0.5312778751968034, 0.5390308389700964, 0.5465109050040536, 0.5537635422656277, 0.5608306673270087, 0.5677496269192083, 0.5745524191737947, 0.5812651745612258, 0.5879079022011877 ], [ 0.07513749044646109, 0.06253362785923089, 0.05440962957071736, 0.0509234994380451, 0.0513138684545143, 0.054341647558935134, 0.05905927087542711, 0.06508469707207265, 0.07243135723481305, 0.08124334463549013, 0.09161243111963974, 0.10350993165197697, 0.11679919237162313, 0.13127950271105784, 0.14672831565212513, 0.16292961803137998, 0.1796885730035801, 0.19683650451537535, 0.21423024045620456, 0.23174870161648806, 0.24928855538427386, 0.26675999029717634, 0.2840831694356208, 0.30118560287702223, 0.31800047779459856, 0.33446585982510607, 0.35052460798785706, 0.36612481316104845, 0.38122056612717115, 0.3957728764237782, 0.40975058987991475, 0.42313118443809505, 0.4359013560072274, 0.4480573357376512, 0.45960490584185826, 0.4705591026292058, 0.4809436132160812, 0.4907898871612565, 0.5001359967956913, 0.5090252907718841, 0.5175048945077395, 0.52562411853544, 0.5334328407822453, 0.5409799308459147, 0.5483117827503378, 0.5554710170712642, 0.5624954036958365, 0.5694170433025713, 0.5762618298903217, 0.5830491996999347 ], [ 0.07770238611194864, 0.06580633727416035, 0.058343527018331245, 0.05524031924715839, 0.055611631753544354, 0.058279989352901185, 0.062422304064450124, 0.06775594345452471, 0.07436501557600513, 0.0824467802372364, 0.09212944743573441, 0.10340178290337837, 0.1161281919285097, 0.13009936204607053, 0.14508120394753152, 0.16084755569034306, 0.1771966821030727, 0.19395647055470613, 0.2109831531595144, 0.22815697577082444, 0.24537692485273915, 0.2625557111266943, 0.27961562772202436, 0.2964855363296424, 0.31309900558936604, 0.329393484315628, 0.34531031219133085, 0.36079533625791155, 0.3757999006610352, 0.39028199883131304, 0.4042074119496141, 0.4175506972748965, 0.4302959290079175, 0.44243712939845886, 0.45397835730375213, 0.46493344532496267, 0.475325395787033, 0.4851854613114972, 0.4945519486193431, 0.5034687952189829, 0.511983978054032, 0.5201478208112312, 0.5280112718496728, 0.5356242268332981, 0.5430339683733661, 0.5502837888135316, 0.5574118516677956, 0.5644503326697671, 0.5714248639976084, 0.5783542865324867 ], [ 0.08444043478168796, 0.07337085863713219, 0.06642162445487865, 0.06331411495872932, 0.0631875436238545, 0.06505517572801632, 0.06826508258280099, 0.07262630978293254, 0.07826784492930984, 0.08541742530019131, 0.09422758221962245, 0.1047012136149713, 0.11670437850507408, 0.13002017864905088, 0.14440320454162078, 0.15961662956410233, 0.17545094374928946, 0.19172965508065692, 0.2083075320684902, 0.22506538245727556, 0.2419038247539342, 0.258737433699409, 0.2754899609510924, 0.2920909092894079, 0.3084734730284137, 0.3245736933953555, 0.34033058615040457, 0.35568696174769343, 0.3705906615139437, 0.3849959632637174, 0.3988649543447647, 0.4121687194261811, 0.4248882374628619, 0.43701492324431096, 0.4485507823308886, 0.4595081743223566, 0.4699091995939222, 0.47978474048777525, 0.4891732009092084, 0.498118999330117, 0.506670879742223, 0.5148801129371096, 0.522798665965881, 0.530477419838035, 0.5379645135559752, 0.5453038858325189, 0.5525340742065676, 0.5596873153139224, 0.5667889709966392, 0.5738572844622931 ], [ 0.09466391236309293, 0.0843178605868234, 0.07763176429799569, 0.07422185386697977, 0.0733346620275792, 0.07419249312860582, 0.07630348396657893, 0.07955082063064649, 0.08408916728419016, 0.09016201000264122, 0.09794141948328276, 0.10744893929075207, 0.11856086506765579, 0.13106054886255478, 0.14469634003873663, 0.1592231831760153, 0.17442444422320633, 0.19011892171171163, 0.20615913433022542, 0.22242548478170196, 0.2388191922397493, 0.25525563438417165, 0.27165893487408355, 0.28795812734031756, 0.30408490854577774, 0.31997279687626623, 0.33555740401774553, 0.35077748643631235, 0.3655764512526845, 0.37990403115076743, 0.39371789949121766, 0.40698505734894835, 0.41968288033128054, 0.43179976031869577, 0.44333531446901464, 0.45430016183169675, 0.46471528870258877, 0.47461103962668016, 0.48402578362573767, 0.4930043160534463, 0.5015960659760559, 0.5098531869390143, 0.5178286146489829, 0.525574177407254, 0.5331388430073793, 0.5405671785109925, 0.5478980866867688, 0.5551638655316264, 0.5623896165293276, 0.5695930050527528 ], [ 0.10751724171470514, 0.09768604649463954, 0.09102803911883062, 0.0871390947946518, 0.08539403375450505, 0.08519424307042607, 0.08617645647244597, 0.08827787325953085, 0.09166322778348211, 0.09657958005202787, 0.10321442404560639, 0.1116138462746981, 0.12167656905332458, 0.13319899553210712, 0.14593305097934384, 0.1596314806230903, 0.17407349337913644, 0.1890741398944423, 0.20448349143297032, 0.22018072552417117, 0.23606651566167985, 0.2520557208268297, 0.2680714182626249, 0.28404070755587113, 0.2998923198744524, 0.31555582219723577, 0.33096207338864986, 0.34604454083260905, 0.36074109970735124, 0.37499598915591004, 0.3887616702449236, 0.40200040393973957, 0.4146854332246021, 0.42680170712845217, 0.4383461249899342, 0.44932730852161284, 0.4597649299443737, 0.4696886395902575, 0.4791366483140191, 0.4881540303593639, 0.49679082160825466, 0.5050999961579856, 0.5131354100241835, 0.5209498032045152, 0.5285929491025234, 0.5361100325124796, 0.5435403237838832, 0.5509161980451307, 0.558262525939461, 0.565596438327582 ], [ 0.12224680209850661, 0.1127216597514368, 0.10592183359635496, 0.10146966475597201, 0.09885971463245276, 0.0976345154901634, 0.09752782528003952, 0.09851292983104765, 0.1007522508129101, 0.10448535065211803, 0.10990849936822591, 0.11709435167092945, 0.12597433409443548, 0.13637179010432932, 0.1480549808493422, 0.1607837390949991, 0.17433875619524875, 0.18853413744290287, 0.20321840910379238, 0.21826924965847064, 0.23358580921543606, 0.24908103405977378, 0.264675322634022, 0.28029209132455424, 0.29585533391032004, 0.31128894918779865, 0.3265174438831092, 0.3414675596220722, 0.356070392099708, 0.37026363708084337, 0.3839936847448908, 0.39721737128481327, 0.4099032726023128, 0.42203248441791885, 0.4335988761472658, 0.444608835327842, 0.45508053910948637, 0.46504280308901824, 0.47453356849009753, 0.4835980981696736, 0.4922869608428481, 0.5006538909316289, 0.5087536174912208, 0.516639758283516, 0.5243628727892699, 0.5319687597290201, 0.5394970702043704, 0.5469802875332728, 0.5544431008358007, 0.5619021737486076 ], [ 0.13827600174768392, 0.12889136398599518, 0.121843849988932, 0.11680147332015126, 0.11336081425479533, 0.11117262148064583, 0.1100420980240714, 0.10996496956201128, 0.11109299163320314, 0.1136496438113416, 0.1178319249455637, 0.12373618233672422, 0.1313316171278777, 0.14047968293127872, 0.15097792321760167, 0.16260446340645, 0.1751494715986168, 0.18843094503126517, 0.20229822547269966, 0.2166281142483919, 0.23131770701272872, 0.2462767686007955, 0.26142130241894784, 0.27666908970400994, 0.2919373618788135, 0.30714237813878326, 0.3222004690798756, 0.33703003577308493, 0.351554020254041, 0.36570244671281465, 0.3794147377776144, 0.392641612447689, 0.40534645767482463, 0.41750612962456124, 0.42911118457992026, 0.44016556762722353, 0.45068580483738896, 0.46069975622968656, 0.47024499577554274, 0.4793668930614495, 0.4881164796375802, 0.4965481910626508, 0.5047175819332297, 0.512679114051551, 0.5204841156559533, 0.5281790010973477, 0.5358038251222993, 0.5433912247033517, 0.5509657758682928, 0.5585437657390081 ], [ 0.15518374537142318, 0.14582249526520838, 0.13846921060812659, 0.13284180383601552, 0.12862033288914357, 0.12553777527275942, 0.1234514299951641, 0.12236995253627203, 0.12242990839474661, 0.12383352744295961, 0.12677134362118436, 0.1313575019437728, 0.13759866523059705, 0.145400799926012, 0.15460137669613647, 0.16500811353351857, 0.17643009683022903, 0.18869585163544375, 0.20165946403214405, 0.21519860321346515, 0.22920845113543942, 0.24359462551316793, 0.25826705915585635, 0.27313582523268887, 0.2881091685108649, 0.3030935211770298, 0.3179950211542967, 0.3327219661186894, 0.34718767301209214, 0.36131331611000256, 0.37503044167866156, 0.3882829739187388, 0.401028620149255, 0.4132396494077286, 0.424903061110227, 0.43602018537009457, 0.44660577056484424, 0.4566866222000917, 0.4662998638174359, 0.4754908976868078, 0.4843111508483635, 0.4928157000375973, 0.501060875598692, 0.5091019476986703, 0.5169909960841736, 0.5247750558913511, 0.5324946161777093, 0.5401825256025997, 0.5478633328894982, 0.5555530610640037 ], [ 0.17266265735568048, 0.16324776531786006, 0.15556260190573865, 0.14937216625885927, 0.14442339600674461, 0.1405115082968792, 0.13753155165328396, 0.13549878230904674, 0.13453290051899455, 0.13481285636367282, 0.1365176658155384, 0.13977269382711688, 0.1446180491085004, 0.1510057843301458, 0.15882025318465331, 0.1679085221096483, 0.17810830628944485, 0.18926651421036622, 0.2012473284358667, 0.2139322309994866, 0.22721545121888911, 0.24099793992394997, 0.2551820348989047, 0.2696679854732976, 0.2843526818815805, 0.2991303698256939, 0.3138948246418305, 0.32854236724438807, 0.3429751567967302, 0.3571043224091471, 0.3708526420150566, 0.3841566059796837, 0.39696780070972615, 0.40925361220903156, 0.42099728723865815, 0.4321974089979556, 0.4428668530182216, 0.4530312933622058, 0.46272733318693327, 0.47200033918795936, 0.4809020666779469, 0.4894881700719979, 0.497815700513223, 0.5059406960321146, 0.5139159678488309, 0.5217891776549328, 0.5296012844266905, 0.5373854162577726, 0.5451661948147438, 0.5529595101922684 ], [ 0.19048403650095364, 0.1809681338480734, 0.17294523094722458, 0.16622176156666482, 0.16059753695844572, 0.1559147243216004, 0.15209552968155882, 0.1491577103486089, 0.1472042157513377, 0.14639093724912744, 0.1468826068769535, 0.14881005708664663, 0.15224110627557255, 0.1571717685609982, 0.1635363370619263, 0.17122840006224965, 0.18012317319678434, 0.19009427221791306, 0.20102240729467924, 0.2127969531730499, 0.22531303713081843, 0.2384669755496223, 0.25215223576061335, 0.2662571625880808, 0.28066484238804795, 0.2952548563831058, 0.30990634385359417, 0.32450171240611997, 0.3389304132243346, 0.35309235629908964, 0.3669007072846558, 0.38028394583625336, 0.3931871619230266, 0.4055726243680299, 0.41741968455336026, 0.42872408886611124, 0.4394967752806903, 0.4497622289406982, 0.4595564724992864, 0.4689247708618359, 0.4779191367050492, 0.4865957313407824, 0.49501226296946066, 0.5032254886053077, 0.5112889245938713, 0.5192508619923365, 0.5271527665563113, 0.5350281194252945, 0.5429017258792955, 0.5507894887780331 ], [ 0.20847353122312764, 0.19883009783850172, 0.1904759813461817, 0.18325263605289963, 0.177001258108621, 0.17159928324590135, 0.16698826660728083, 0.16318588138041135, 0.16027942415532057, 0.15840329632722247, 0.15770701462463144, 0.15832253089531095, 0.16033937957046082, 0.16379314294739244, 0.16866777193051172, 0.17490758482451085, 0.18243249990821753, 0.19115086529910563, 0.2009669588084436, 0.21178308019438286, 0.22349799275334273, 0.23600403941102327, 0.2491848846514, 0.2629150111444041, 0.277061248844872, 0.29148598942093706, 0.3060514254838008, 0.3206241122590714, 0.33507927796762826, 0.3493045036384879, 0.3632025787398198, 0.37669347913741624, 0.38971550124343557, 0.4022256298832822, 0.41419923186989005, 0.4256291660616779, 0.4365243938421865, 0.4469081677890834, 0.4568158739822448, 0.46629260581890186, 0.4753905536155155, 0.4841663028231853, 0.49267814182357905, 0.5009834852166946, 0.5091365177097228, 0.5171861553584195, 0.5251744043595582, 0.5331351736161418, 0.5410935680312433, 0.5490656580784137 ], [ 0.22649528305349273, 0.2167121059850442, 0.20804070794015392, 0.20035137002598158, 0.19351740923991803, 0.18744262240803297, 0.18208218111630128, 0.17745211840424854, 0.17362564436381292, 0.17071790970224326, 0.16886353385880062, 0.16819264477611354, 0.16881105067313687, 0.17078844591465628, 0.17415568165928105, 0.1789091521176238, 0.18501850578757584, 0.19243386165569665, 0.20109017533131435, 0.2109083757499558, 0.22179441966131944, 0.23363801893090633, 0.246312547240893, 0.25967690227998, 0.27357930996314844, 0.2878625005265685, 0.302369462437457, 0.31694903454217416, 0.3314608048120046, 0.34577902586080683, 0.3597954578705992, 0.37342118101749205, 0.38658748633745665, 0.39924597459669386, 0.4113679870438539, 0.4229434755441572, 0.43397940260043344, 0.44449774952595855, 0.4545332055901311, 0.4641306121804631, 0.47334224239595846, 0.48222500560647313, 0.49083767547306006, 0.4992382456979336, 0.5074815176573128, 0.5156170161698481, 0.5236873132968254, 0.5317268160458525, 0.5397610443506135, 0.5478063939571816 ], [ 0.24444173628158644, 0.23451635288437844, 0.22554600396290234, 0.21742425356052877, 0.21004916708794338, 0.20334414209446863, 0.19727379824098654, 0.19185168426838417, 0.18713866637586984, 0.1832331280403652, 0.18025586615375802, 0.17833340765450287, 0.17758327131116725, 0.1781035744546142, 0.17996768567065577, 0.18322293103004952, 0.18789131521695812, 0.19397020641682702, 0.20143184164704042, 0.21022178097688243, 0.22025741089500114, 0.23142786372661683, 0.24359629523775025, 0.25660467939896603, 0.27028054752086034, 0.2844446902425293, 0.29891880858847997, 0.31353233324851687, 0.3281279640703337, 0.34256578373106705, 0.35672600762999473, 0.37051054016264096, 0.3838435396746667, 0.39667118156145, 0.40896077684734916, 0.4206993689114799, 0.4318919027384198, 0.44255904266593843, 0.45273470635962776, 0.46246338318229124, 0.4717973118009735, 0.48079360180142083, 0.48951139400582383, 0.49800916089328906, 0.506342249199255, 0.5145607594774543, 0.5227078414650282, 0.5308184603015529, 0.5389186592439359, 0.5470253127694913 ], [ 0.26222701679478483, 0.2521636660637343, 0.2429153816494148, 0.23439426830675245, 0.22651734583338445, 0.21922252513674625, 0.21248089741903303, 0.20630318901849407, 0.20073969379830378, 0.19587452326857005, 0.19181614157851823, 0.18868658651097983, 0.18661146210121413, 0.18571188809623557, 0.1860984494851555, 0.18786625206463023, 0.19108986316606297, 0.1958173677069797, 0.2020637852598183, 0.20980513436661893, 0.21897491407982786, 0.22946442537675626, 0.24112736869393503, 0.25378803359527674, 0.26725162999285484, 0.28131511354830063, 0.29577714463438326, 0.31044634314673725, 0.3251475211019378, 0.33972595338066247, 0.35404995268073736, 0.3680120811367734, 0.3815293119319729, 0.3945423966880497, 0.40701462964896085, 0.4189301440431753, 0.4302918357488622, 0.4411189850498141, 0.451444636748601, 0.4613127990525519, 0.47077552898614505, 0.47988998303269315, 0.4887155227106666, 0.49731097248748846, 0.5057321289760814, 0.5140296138012469, 0.5222471471950025, 0.5304202960990544, 0.5385757215556496, 0.5467309187387629 ], [ 0.2797825052652081, 0.26959015172450096, 0.26008673440596164, 0.2511989716736147, 0.2428583464702952, 0.23501350614678904, 0.22763995347216526, 0.2207456249980345, 0.21437197939169755, 0.20859125671724124, 0.20350128445488014, 0.19921937902342893, 0.19587648322562823, 0.19361184310258522, 0.19256758574538355, 0.1928819429927038, 0.19467997406734505, 0.19806162388306123, 0.2030885084761109, 0.20977219065844188, 0.21806706391130343, 0.22786996110524343, 0.23902670207763896, 0.25134394112342334, 0.26460366446353195, 0.27857771809893656, 0.2930404878739306, 0.30777880279387204, 0.3225989174823446, 0.33733090556534956, 0.3518309879086, 0.36598232384864676, 0.37969470565466606, 0.39290348310009077, 0.40556794203873264, 0.4176692822422681, 0.42920828729052235, 0.44020274951339966, 0.45068470078657275, 0.4606975003320011, 0.47029283898549734, 0.47952773151853867, 0.48846158073218604, 0.49715340574615835, 0.5056593293475352, 0.5140304135344517, 0.5223109178539712, 0.5305370326159707, 0.5387361107864609, 0.5469263915718231 ], [ 0.2970537456018473, 0.2867448321524792, 0.27701046360422116, 0.267788806753814, 0.2590223833042354, 0.2506678295609628, 0.24270370895453627, 0.23513547891239614, 0.22799744490018323, 0.2213522449945816, 0.2152888553139362, 0.20992012113021916, 0.20538035801489374, 0.20182274325935262, 0.19941530560713747, 0.19833374396011777, 0.19874954027721678, 0.2008131751191111, 0.20463447537548748, 0.21026426709435536, 0.21768224778900508, 0.22679457389194613, 0.23744164900515963, 0.249413591460613, 0.2624692810341503, 0.2763550730528874, 0.2908205765458334, 0.3056304144165772, 0.3205720249691257, 0.33546016529894207, 0.35013894686074715, 0.36448215637201226, 0.3783924423705312, 0.3917997688209138, 0.40465939146770863, 0.4169495096080287, 0.4286686813497866, 0.43983305570068615, 0.4504734614900704, 0.4606323940421028, 0.47036094999082084, 0.47971577397777365, 0.48875609420326865, 0.4975409334690057, 0.5061265856780065, 0.5145644429159029, 0.5228992446378654, 0.531167798957258, 0.5393981987522419, 0.5476095254466773 ], [ 0.31399816272324604, 0.3035878373492172, 0.29364793844471476, 0.28412559524865494, 0.27497181093744655, 0.2661492714892956, 0.257638798601151, 0.24944389067475561, 0.24159332246958795, 0.23414226324358045, 0.22717264689531802, 0.22079345180748272, 0.21514107234045757, 0.2103791518070035, 0.20669630864095584, 0.20429951250376618, 0.20340100005359302, 0.20419806391982184, 0.20684781026369384, 0.21144208264633377, 0.2179893553406499, 0.22640901113705808, 0.2365393698741322, 0.24815635588448665, 0.26099716240035165, 0.27478344142316674, 0.2892404681125543, 0.3041109482308749, 0.31916372986330593, 0.3341984438451086, 0.3490472441720569, 0.3635746482106788, 0.37767620695891435, 0.3912764840882643, 0.40432663100664923, 0.41680171692507223, 0.42869789626150934, 0.4400294563997192, 0.4508257746021189, 0.461128214486623, 0.4709870031062147, 0.480458144155318, 0.4896004370322676, 0.4984726820038679, 0.5071311558734724, 0.5156274386185389, 0.5240066589083405, 0.5323062060619442, 0.5405549299693355, 0.5487728218332891 ], [ 0.3305832719013907, 0.3200889050807049, 0.3099701170511389, 0.3001810996624826, 0.290679478577077, 0.28143268109285735, 0.2724234048759547, 0.26365386220479997, 0.2551488565466785, 0.246958086288986, 0.239158231732968, 0.23185525786590935, 0.22518690023692067, 0.21932451650669302, 0.21447252570947878, 0.21086285278798164, 0.20874171329190677, 0.20834739298306382, 0.20988072023414528, 0.2134739062752476, 0.21916616739378406, 0.2268936875442776, 0.23649672972379612, 0.24774067561580235, 0.2603439524850689, 0.27400568653959617, 0.28842838856958325, 0.30333396030907006, 0.31847343505347653, 0.333631837497895, 0.3486296857928762, 0.36332239230999924, 0.3775984493399392, 0.39137695889479324, 0.40460482707535617, 0.41725378946052416, 0.4293173451181898, 0.44080763281719326, 0.4517522677689425, 0.46219115931730664, 0.47217334153113133, 0.481753864019513, 0.49099080524059413, 0.4999424817628794, 0.5086649318149342, 0.5172097484104242, 0.5256223258931789, 0.5339405647203674, 0.5421940547079377, 0.5504037297144918 ], [ 0.3467851908998161, 0.3362260557851557, 0.32595624722935984, 0.31593561256655683, 0.3061270961997511, 0.2965020444895966, 0.2870449624127282, 0.2777575499422856, 0.2686621247861395, 0.25980477112034583, 0.25125864135198167, 0.24312769132699485, 0.2355506893421388, 0.22870459742313043, 0.22280546666594922, 0.2181040831355211, 0.21487328850675275, 0.2133849660200908, 0.2138777364633791, 0.21652098331589947, 0.2213846834399715, 0.2284245716342011, 0.23748722610986353, 0.24833231084399537, 0.26066393458418496, 0.27416236522187865, 0.28851015115428386, 0.303410407963125, 0.31859772881445925, 0.3338434079460246, 0.34895682942412065, 0.36378452860735444, 0.37820796985872024, 0.39214068395656027, 0.4055251232357977, 0.4183294124230349, 0.43054407142539786, 0.44217873688666587, 0.4532588923460261, 0.4638226187858837, 0.47391738927242766, 0.4835969472090564, 0.492918323082357, 0.5019390561967769, 0.5107146933422362, 0.5192966341183904, 0.5277303823377932, 0.5360542453281942, 0.5442984999559296, 0.5524850185389768 ], [ 0.3625873459095924, 0.35198437482977746, 0.34159261637019944, 0.3313765699723337, 0.3213036284741767, 0.3113486006671139, 0.30149795276944896, 0.2917536966090533, 0.2821370553958528, 0.27269219655478605, 0.26349035865742837, 0.2546345430924868, 0.24626453208621424, 0.2385613056271683, 0.2317490061068805, 0.22609164696101944, 0.22188127058835902, 0.21941504493683428, 0.21896165367884096, 0.2207221552169306, 0.2247951952878493, 0.23115754525350837, 0.23966632606996965, 0.25008110653098703, 0.2620974357536667, 0.27538179287299785, 0.28960078428240305, 0.30444168052445886, 0.3196246369580581, 0.3349084774931791, 0.3500921604086022, 0.36501365911561556, 0.37954745355999864, 0.3936013639480125, 0.4071131292852691, 0.42004692710507513, 0.43238991511726815, 0.4441488192871878, 0.45534657290607655, 0.4660190120022443, 0.476211643942887, 0.4859765217420925, 0.49536927192034785, 0.5044463355004928, 0.5132624875520082, 0.5218686992074912, 0.5303103969008773, 0.538626157452494, 0.5468468563246515, 0.5549952624409601 ], [ 0.37797931146652164, 0.36735487321233096, 0.3568713481897802, 0.3464972062664812, 0.3362037478164282, 0.3259690515753324, 0.3157818422475888, 0.3056452682851249, 0.2955807270991383, 0.28563197953485797, 0.27586979815038015, 0.2663972340720678, 0.2573552096822282, 0.24892751242284025, 0.2413433975468202, 0.23487506359420268, 0.2298266738901016, 0.22651214280345, 0.22522147966169018, 0.22618022835347507, 0.22951169747228214, 0.2352136673132947, 0.24315735656556473, 0.25310808032312815, 0.26475942765238725, 0.27777025071165007, 0.2917962860355025, 0.30651275758438423, 0.32162800774916955, 0.3368900614990295, 0.3520884069249853, 0.3670529021318528, 0.38165114178561627, 0.3957851052876349, 0.4093875416641449, 0.4224183149730666, 0.43486080321297804, 0.44671837894444666, 0.4580109752410169, 0.4687717388494161, 0.4790437824892061, 0.48887706298498157, 0.4983254266933052, 0.5074438751873991, 0.5162861101353922, 0.5249024154190146, 0.5333379264369424, 0.5416313218946978, 0.5498139538274208, 0.557909409472012 ], [ 0.3929557544457568, 0.38233341969165074, 0.3717892584632964, 0.36129527708115056, 0.35082638322331783, 0.34036391146144285, 0.3298992165746688, 0.3194373617255536, 0.3090010327545652, 0.2986348741948958, 0.28841041993390376, 0.27843163113147934, 0.2688407059621829, 0.25982325127079225, 0.251611110982069, 0.24448025691238473, 0.2387405376424827, 0.2347144653217821, 0.232704480988054, 0.2329525748840115, 0.2356013246738009, 0.2406680038125202, 0.2480403829116318, 0.2574949224848735, 0.2687300344600176, 0.28140368864923765, 0.29516655203526526, 0.30968629280776094, 0.3246626329634002, 0.3398348920434703, 0.3549843350645323, 0.36993334026265456, 0.38454283058100674, 0.3987088781503209, 0.4123589964800466, 0.42544838115879097, 0.4379562131287169, 0.4498820634693727, 0.4612424075299036, 0.4720672504256504, 0.4823968733250431, 0.49227872294954833, 0.5017644803133694, 0.5109073555800022, 0.5197596617599057, 0.5283707195132135, 0.5367851381929192, 0.5450415050604944, 0.5531714967933441, 0.561199407101843 ], [ 0.40751546982582215, 0.3969197487845249, 0.3863467878163654, 0.3757718780888448, 0.36517339994158954, 0.3545360362005471, 0.343854158941417, 0.3331354353050925, 0.32240476917964406, 0.3117087292698305, 0.3011205723183143, 0.2907458107242114, 0.2807279527285352, 0.27125352505443157, 0.2625547744365094, 0.25490764344755845, 0.24862205136966106, 0.2440218127553489, 0.24141349836124598, 0.24104753260984907, 0.24307969895431428, 0.24754405270722854, 0.25434605576339914, 0.263277690111632, 0.2740484534774986, 0.28632213825897207, 0.29975042538979585, 0.31399834891103406, 0.3287606526996654, 0.3437704426556659, 0.35880232869400697, 0.3736720877642838, 0.3882343613241702, 0.4023793724534957, 0.4160292399383082, 0.42913419515372137, 0.4416688454298033, 0.45362854082696363, 0.46502586195486717, 0.4758872350131006, 0.4862496837686854, 0.4961577385032939, 0.5056605337533467, 0.5148091364180292, 0.523654151226831, 0.5322436503205906, 0.5406214674080186, 0.5488258851056032, 0.556888727947156, 0.5648348550548116 ], [ 0.42166050553810996, 0.4111165538982248, 0.4005470301363132, 0.38993038462472734, 0.37924843885300275, 0.3684893640166694, 0.3576509045100085, 0.3467438978085728, 0.33579618759865, 0.3248570370218905, 0.3140020926752922, 0.30333879237733413, 0.29301181379444813, 0.28320769738704, 0.27415715043911276, 0.2661328464778667, 0.2594400585396776, 0.2543977454204546, 0.25130943380192977, 0.2504267240332529, 0.2519125950149548, 0.25581444013560023, 0.26205527559136405, 0.270445595747167, 0.2807111398752521, 0.2925275798898832, 0.30555348421431006, 0.31945627422534423, 0.33392962482305455, 0.34870324460727914, 0.3635469725600024, 0.3782711392860177, 0.3927247219435446, 0.4067923323421301, 0.42039067445968054, 0.43346482654924834, 0.44598452787012743, 0.4579405515072784, 0.4693411961244113, 0.48020891112237757, 0.4905770682136272, 0.5004868991821968, 0.5099846289271622, 0.5191188410778581, 0.5279381181271908, 0.5364889977789885, 0.5448142815757894, 0.5529517212375256, 0.5609330936134921, 0.5687836583972242 ], [ 0.4353953781685211, 0.4249286755101752, 0.4143948723037061, 0.40377553106919906, 0.3930559354931088, 0.3822278866339628, 0.3712927877187569, 0.3602650662285812, 0.3491760069120766, 0.3380780609992299, 0.3270496299716769, 0.31620016792363825, 0.305675175081148, 0.2956602448552582, 0.28638278842255416, 0.27810948612225717, 0.2711371501321173, 0.2657749788937864, 0.26231769621384393, 0.2610120436483889, 0.2620228081866736, 0.2654070416699607, 0.27110414421169543, 0.2789446411125984, 0.28867420944116007, 0.2999853388080864, 0.31254869814393577, 0.3260388669078833, 0.3401523966044464, 0.3546186133163242, 0.3692047350078788, 0.3837170748539478, 0.39799981431851356, 0.4119324083190433, 0.42542630592546515, 0.43842139000984465, 0.4508823557514883, 0.46279513883236206, 0.4741634459940794, 0.4850054145643329, 0.4953504202477219, 0.5052360549283784, 0.5147053025077172, 0.5238039469840627, 0.5325782505474393, 0.5410729389452903, 0.5493295262054518, 0.5573850012186382, 0.565270885612096, 0.5730126572303307 ], [ 0.4487263824242202, 0.4383623923972363, 0.42789625617033283, 0.4173126414732709, 0.40660032843602584, 0.39575485651966674, 0.38478148121759453, 0.37369848070449924, 0.36254086140477976, 0.3513644890359148, 0.34025059748532877, 0.32931047874030195, 0.3186899103248239, 0.30857251900126487, 0.2991808281767193, 0.2907732795395079, 0.2836352700627046, 0.27806257079044105, 0.2743368217499175, 0.2726952910985205, 0.2733001512048917, 0.27621461146377707, 0.28139259968551267, 0.28868487061542986, 0.29785919373096326, 0.30862843801758494, 0.32067959581171207, 0.3336986132008653, 0.3473886562985121, 0.36148171731806605, 0.3757447138140639, 0.38998160105870694, 0.40403287566775276, 0.4177735177671601, 0.43111008308860704, 0.4439773894841032, 0.4563350570071987, 0.46816404405688755, 0.4794632552730258, 0.4902462630554285, 0.5005381709786362, 0.510372645007606, 0.519789141175558, 0.5288303621742069, 0.5375399774689946, 0.5459606405104818, 0.5541323316850663, 0.5620910469246344, 0.5698678401154581, 0.5774882138313834 ], [ 0.4616609964131334, 0.451424820615164, 0.4410575681030859, 0.43054701510348825, 0.4198854567007994, 0.4090722232111559, 0.39811650944660226, 0.3870405450301204, 0.37588313011331426, 0.3647035280834747, 0.35358562857207093, 0.34264215230946726, 0.3320184480792424, 0.32189512569607787, 0.31248840089095065, 0.304046681860702, 0.2968417847908131, 0.2911535178000082, 0.2872475336650214, 0.28534840796989797, 0.2856123593533616, 0.28810570594859874, 0.29279471210861613, 0.29954953941247303, 0.308160806116087, 0.318363909758099, 0.3298652315174377, 0.3423655068038843, 0.35557782931908805, 0.36923976335139286, 0.38312029183576596, 0.39702282339797373, 0.41078548032562723, 0.4242796606256569, 0.43740758905512267, 0.45009933004013325, 0.462309555885852, 0.4740142437116288, 0.48520740111322874, 0.49589787971680244, 0.506106315985974, 0.5158622312634966, 0.5252013219831878, 0.5341629720966944, 0.5427880202550666, 0.5511168124815029, 0.5591875661656753, 0.5670350631431426, 0.5746896789497422, 0.5821767430665028 ], [ 0.47420738282331953, 0.4641234210723394, 0.45388515578451066, 0.4434834632938298, 0.4329141369057505, 0.42218028107246325, 0.411295007402783, 0.40028444689446074, 0.38919107939490594, 0.3780773414381719, 0.3670293942484134, 0.35616080152858126, 0.3456156716153332, 0.3355705618305356, 0.3262341520207039, 0.31784344700248035, 0.31065521573296817, 0.30493174240840343, 0.30092097075466384, 0.29883279394881346, 0.2988151736000697, 0.30093506905261774, 0.30516884132678407, 0.31140455922494764, 0.3194553283204446, 0.32907995091736947, 0.3400060970568673, 0.3519518165481838, 0.3646428605120662, 0.3778249696406217, 0.3912714691229327, 0.4047870834373361, 0.4182090024748976, 0.43140610342819874, 0.44427702074577924, 0.45674754908014825, 0.46876769812228825, 0.4803085999668474, 0.4913593925063583, 0.5019241559747504, 0.5120189543831274, 0.5216690213699354, 0.5309061250907323, 0.5397661450557044, 0.5482868924681911, 0.5565062028543878, 0.5644603246878669, 0.5721826201002478, 0.5797025840081825, 0.5870451768806334 ], [ 0.4863739836851955, 0.4764656127298243, 0.46638496689070197, 0.45612598783153513, 0.44568790380473644, 0.4350775029868674, 0.42431168688000465, 0.4134203039935597, 0.4024492437056768, 0.3914637261251244, 0.3805516460284565, 0.36982670833548265, 0.35943092415004857, 0.34953582647001014, 0.34034154308470077, 0.3320727009281732, 0.32497015490683956, 0.31927790205122974, 0.31522540360833523, 0.3130068783025227, 0.3127606185003235, 0.3145523550675536, 0.31836645200556035, 0.324107022536951, 0.3316085066665546, 0.3406529577780061, 0.3509901844886904, 0.36235717491421704, 0.37449440161756464, 0.3871579663611208, 0.4001276039599671, 0.413211163847915, 0.42624639513023016, 0.43910082520106974, 0.45167037762624396, 0.46387720842437, 0.4756670938105299, 0.4870065910142455, 0.4978801163294938, 0.5082870346836866, 0.5182388251756472, 0.5277563705065516, 0.5368674096820134, 0.5456041888395886, 0.5540013417705182, 0.5620940278458442, 0.5699163496211677, 0.5775000650506615, 0.5848736002036549, 0.5920613582633067 ], [ 0.4981692040042393, 0.48845848509658063, 0.4785623001269961, 0.4684775864247653, 0.4582068929124272, 0.44776052971907426, 0.43715896848026636, 0.4264354799968143, 0.41563897097838604, 0.40483693578683677, 0.3941183652403316, 0.3835963469556866, 0.3734099495188647, 0.36372481590714295, 0.3547317300440312, 0.3466423252476542, 0.33968117266707337, 0.3340738421919752, 0.3300312570043824, 0.32773172595580935, 0.3273031687040659, 0.3288087616632565, 0.3322390323591894, 0.3375121571735136, 0.3444822715338077, 0.3529537735061597, 0.3626985973461263, 0.3734734727502644, 0.38503498281705983, 0.39715128945417166, 0.409610304083324, 0.42222466384703117, 0.4348341362147037, 0.447306113318592, 0.4595347761424474, 0.47143938509986894, 0.48296203192342985, 0.494065087535901, 0.5047285062417851, 0.5149470955605656, 0.5247278281927442, 0.5340872526230668, 0.5430490471113036, 0.5516417546798184, 0.559896731526704, 0.5678463362787032, 0.5755223815920784, 0.5829548623776349, 0.5901709664399578, 0.5971943640304518 ], [ 0.5096011774595658, 0.5001086010149479, 0.4904216560760812, 0.48054016771958835, 0.47046984117580437, 0.4602242827941462, 0.4498272374553499, 0.43931501693639213, 0.4287390661360309, 0.41816856860070056, 0.40769292460650375, 0.3974238413352745, 0.3874966576056213, 0.3780703971878042, 0.3693259334639733, 0.36146160573035346, 0.3546857293062528, 0.3492057717727246, 0.3452145758825336, 0.3428748440437224, 0.34230394818299714, 0.3435616400815984, 0.346643066587337, 0.3514785348321312, 0.3579399988078536, 0.3658528031281509, 0.3750103448207189, 0.3851892096862627, 0.39616285487161373, 0.40771270119293734, 0.4196362495396694, 0.43175237066880673, 0.44390420535808545, 0.45596020430617207, 0.4678138100404073, 0.4793822008950789, 0.49060442206144206, 0.5014391428792406, 0.5118622113443114, 0.5218641269910651, 0.531447519123429, 0.5406246949784455, 0.5494153080791041, 0.5578441876192863, 0.5659393627991545, 0.5737303098806965, 0.5812464432930474, 0.5885158648784797, 0.5955643772875564, 0.6024147589107997 ], [ 0.5206776057438225, 0.5114218788536222, 0.5019666734324378, 0.49231455678015484, 0.4824741808496939, 0.47246216926726636, 0.4623051840808921, 0.45204213643945695, 0.44172647680940186, 0.43142845685384795, 0.4212371938168187, 0.4112622885822206, 0.4016346547596315, 0.3925061209869096, 0.38404729799719894, 0.376443198176219, 0.36988621484750034, 0.3645663674503912, 0.3606592203040961, 0.35831253183308365, 0.35763332240307955, 0.3586774087968551, 0.3614433052214498, 0.36587166550889233, 0.37185032848020233, 0.3792239126726571, 0.38780616815591334, 0.3973931147845665, 0.40777530867480694, 0.41874815495154344, 0.43011978544304275, 0.4417164901306271, 0.453385979328534, 0.46499888022826796, 0.47644888689273995, 0.48765193746892943, 0.4985447236793816, 0.5090827680166338, 0.519238244296095, 0.528997670688709, 0.5383595704377626, 0.5473321718252203, 0.5559312028137936, 0.5641778245706736, 0.5720967396625071, 0.5797145035295894, 0.5870580608688931, 0.5941535212357483, 0.6010251803794694, 0.6076947857440822 ], [ 0.5314056620429777, 0.5224035421459783, 0.5132001353769845, 0.5038005717171969, 0.4942162025149107, 0.48446634908317343, 0.4745801938214267, 0.4645987698833041, 0.4545769771486171, 0.44458551197054474, 0.4347125444858934, 0.4250649112274602, 0.41576851782952834, 0.40696757937503736, 0.398822286930256, 0.39150451168188594, 0.38519128384740875, 0.3800560477907318, 0.37625810382767627, 0.3739311485911765, 0.3731722916559676, 0.3740331750662921, 0.3765146931065876, 0.38056625891684354, 0.3860897247069536, 0.3929472004391786, 0.4009714061757722, 0.4099769862240025, 0.4197713863793849, 0.43016430328737276, 0.44097518267675695, 0.452038641896665, 0.4632079636603876, 0.4743569517048962, 0.48538048512202403, 0.49619409338753745, 0.5067328296905553, 0.5169496670831042, 0.5268135920323259, 0.5363075283286387, 0.5454261920988391, 0.5541739549149501, 0.5625627748510983, 0.5706102428554674, 0.5783377822251705, 0.5857690309261819, 0.5929284290358834, 0.5998400261553685, 0.6065265160509729, 0.6130084981306843 ], [ 0.5417919486192556, 0.5330581243599093, 0.5241240309280544, 0.5149971529729723, 0.5056912651117982, 0.4962280392145417, 0.48663875811851776, 0.47696608580831845, 0.4672658171751939, 0.4576084941776417, 0.4480807293579969, 0.43878602434273173, 0.429844816163735, 0.42139343970603793, 0.41358167927303946, 0.40656862214413586, 0.4005166508947176, 0.3955836402747573, 0.3919137549036436, 0.38962762890894803, 0.38881305020972945, 0.3895174413073364, 0.39174331576553467, 0.39544746907545675, 0.4005440275240275, 0.40691081495242076, 0.41439800154450623, 0.4228377904441242, 0.4320539794660427, 0.4418705158213743, 0.45211851775387685, 0.46264156543625234, 0.4732993078730851, 0.4839695801749382, 0.49454929118390123, 0.5049543503085352, 0.5151188789610887, 0.5249939146241619, 0.534545775988269, 0.5437542219478099, 0.552610507901939, 0.5611154199369438, 0.5692773501170288, 0.5771104629271975, 0.5846329925444528, 0.5918657019227098, 0.598830526825253, 0.6055494204095145, 0.6120434065415548, 0.6183318427148593 ], [ 0.5518424984158868, 0.5433895167459757, 0.5347396568945202, 0.525902528352005, 0.5168940335339176, 0.5077378328628831, 0.4984668825007407, 0.48912499089565614, 0.479768315443838, 0.4704666887037412, 0.4613046253716264, 0.45238181938153915, 0.4438129010389609, 0.4357261974622195, 0.4282612412507048, 0.42156482173487686, 0.41578548990134667, 0.4110666233486434, 0.4075384224390654, 0.4053095027634149, 0.4044589981573855, 0.4050302011720171, 0.4070266701844593, 0.41041140939981663, 0.41510924614533967, 0.42101201907570057, 0.4279857918848187, 0.4358791125132226, 0.444531361624424, 0.45378042181039036, 0.46346916458115267, 0.4734505164736103, 0.48359107811181823, 0.4937734120804456, 0.5038971914289261, 0.513879426325473, 0.5236539799174448, 0.5331705611090465, 0.5423933524869934, 0.5512994024576702, 0.5598768849799184, 0.568123309110877, 0.5760437437238629, 0.5836491094215779, 0.5909545788996072, 0.5979781179271889, 0.6047391910075807, 0.6112576481990686, 0.61755280229545, 0.6236426985604362 ], [ 0.5615628109683001, 0.5534010479473006, 0.545047747352116, 0.5365143989489336, 0.5278187273747101, 0.518986016256234, 0.5100504743555243, 0.5010565879633735, 0.4920603814060319, 0.4831304802297653, 0.47434884056214566, 0.4658109763494627, 0.457625489301918, 0.4499126933840339, 0.4428021388227647, 0.4364288941077514, 0.43092855096314436, 0.4264310815151969, 0.42305388764255936, 0.42089460609282153, 0.4200244137836299, 0.4204826508952682, 0.4222734951165665, 0.4253651708702579, 0.42969181013698615, 0.43515768799365706, 0.44164323688847307, 0.44901206981355507, 0.45711823201818386, 0.4658130222941565, 0.47495091956591495, 0.48439435906950024, 0.49401728218580027, 0.5037075145463981, 0.5133681062166743, 0.522917804282653, 0.5322908346529045, 0.5414361583630865, 0.5503163474692466, 0.5589062029524482, 0.5671912154799191, 0.5751659509909304, 0.5828324272827647, 0.590198534769608, 0.5972765437884782, 0.6040817315966011, 0.6106311540008621, 0.6169425789983398, 0.6230335926808553, 0.6289208809217779 ], [ 0.5709579135895919, 0.5630955851290955, 0.5550486191774181, 0.5468301334289087, 0.5384593675575943, 0.5299628696637401, 0.5213756977948188, 0.5127425804912368, 0.5041189606883979, 0.49557182446169323, 0.4871801915241589, 0.47903512113059477, 0.4712390702112671, 0.4639044375862122, 0.457151148455336, 0.45110318709745506, 0.44588408054902934, 0.44161147266616607, 0.4383910947810719, 0.4363106086827442, 0.43543392833279015, 0.435796672682975, 0.4374033297374367, 0.4402265179962551, 0.4442084501473364, 0.44926440000004186, 0.45528771943198215, 0.4621558011755513, 0.46973635395051694, 0.4778934316398101, 0.4864927986368603, 0.4954063754309194, 0.5045156573250883, 0.5137141151787207, 0.5229086644362494, 0.5320203311195876, 0.5409842591239746, 0.5497492010739345, 0.5582766228735629, 0.5665395355526162, 0.5745211506523898, 0.5822134391621492, 0.5896156597139361, 0.5967329094740433, 0.6035747406698059, 0.6101538765625685, 0.616485052534551, 0.6225840005025268, 0.6284665879318218, 0.6341481162502777 ], [ 0.5800324397041404, 0.5724756476700591, 0.564742323944557, 0.5568469604723751, 0.5488100105987667, 0.5406589429625285, 0.5324292874235015, 0.52416561808468, 0.5159224016392443, 0.5077646206056856, 0.49976806214100095, 0.49201914693797827, 0.4846141636537353, 0.4776577783944806, 0.47126071310552486, 0.46553653817655144, 0.46059760744922823, 0.4565502764515545, 0.4534896760991792, 0.451494442276015, 0.45062189571643674, 0.45090419402423565, 0.4523459160476843, 0.4549233870823857, 0.45858583673882725, 0.4632582458774351, 0.46884553681763763, 0.47523763245430783, 0.4823148717102512, 0.4899533124605817, 0.4980295527670849, 0.5064248253066653, 0.5150282409434753, 0.523739157804632, 0.5324687245151491, 0.541140690778314, 0.54969160007342, 0.5580704842816854, 0.5662381746259754, 0.5741663322665205, 0.5818362886134785, 0.5892377719694357, 0.596367584573391, 0.6032282828817807, 0.609826903993767, 0.6161737723186771, 0.6222814126538083, 0.6281635885856174, 0.6338344784173678, 0.639307994619587 ], [ 0.5887907172447504, 0.581543525842346, 0.5741287982889496, 0.5665621514650852, 0.5588649630150788, 0.5510652993258768, 0.5431988164308246, 0.5353095810919031, 0.5274507451893073, 0.5196849916693079, 0.5120846563071813, 0.5047314190599489, 0.49771545555432994, 0.49113394801893884, 0.4850888809298775, 0.47968409431063797, 0.47502163898908306, 0.4711975702856924, 0.4682974197573302, 0.46639168131126213, 0.46553171529864784, 0.46574648916877726, 0.4670405209087831, 0.46939327210138365, 0.47276006962309536, 0.4770744518778896, 0.48225167467189, 0.48819300372031044, 0.4947903797883455, 0.5019310652108654, 0.5095019501725141, 0.5173932910487895, 0.5255017502005942, 0.5337326917732369, 0.5420017534342206, 0.5502357579243874, 0.5583730531640867, 0.5663633797246372, 0.5741673643387847, 0.5817557317752201, 0.5891083178631659, 0.5962129557560181, 0.6030642968733644, 0.6096626179576617, 0.6160126565314413, 0.622122508729038, 0.6280026158965993, 0.6336648593882294, 0.63912177655413, 0.6443859049932696 ], [ 0.5972368611302871, 0.5903013983028287, 0.5832080065739255, 0.5759731876011946, 0.5686189708184101, 0.5611737233124465, 0.5536729172957998, 0.5461598054208413, 0.538685942584515, 0.5313114813342069, 0.5241051580611356, 0.517143881162088, 0.510511833336516, 0.5042990118126859, 0.4985991562636386, 0.49350705727257893, 0.48911529893383265, 0.48551056414698857, 0.48276971188439166, 0.4809559085091648, 0.480115143113084, 0.4802734636193375, 0.4814352260440492, 0.4835825548435465, 0.4866760815305353, 0.4906568856804654, 0.495449434466739, 0.50096522673871, 0.5071068074474826, 0.5137718273755455, 0.5208568708829118, 0.5282608447644245, 0.5358877982785256, 0.5436491154665328, 0.55146507856458, 0.5592658428678989, 0.5669918895308718, 0.5745940361063482, 0.5820330884554299, 0.5892792151552131, 0.5963111192816485, 0.6031150743303372, 0.609683882291335, 0.6160158032293521, 0.6221134974878507, 0.6279830139573649, 0.6336328507295942, 0.6390731078622582, 0.6443147458737475, 0.6493689579681959 ], [ 0.6053748649410258, 0.5987514435588782, 0.591980071293707, 0.5850779074159702, 0.5780673810996328, 0.5709768918311838, 0.563841455595058, 0.5567032506166084, 0.5496120071357348, 0.5426251770166338, 0.5358078123882614, 0.5292320799211994, 0.5229763412450898, 0.5171237431387369, 0.5117602860262022, 0.5069723775617949, 0.5028439292757669, 0.49945311493659816, 0.49686897230583615, 0.4951480846686006, 0.4943316123642092, 0.4944429460462513, 0.4954862159174363, 0.49744581603500587, 0.500287000331096, 0.5039574947163418, 0.5083899675864589, 0.513505126352611, 0.5192151701182256, 0.5254273292574541, 0.5320472546871071, 0.5389820718743126, 0.5461429750506426, 0.5534472956289379, 0.5608200287355201, 0.568194839879656, 0.5755145996980087, 0.5827315098487562, 0.5898068897506588, 0.5967106943721538, 0.6034208298025218, 0.609922327547402, 0.616206431565169, 0.6222696447587887, 0.6281127743994767, 0.633740009006226, 0.6391580526326276, 0.6443753363507397, 0.6494013209849089, 0.6542458998576224 ], [ 0.6132086879611152, 0.606895941809878, 0.6004453880686028, 0.5938746323481411, 0.5872062743979072, 0.5804685081717018, 0.5736956590145585, 0.5669286156070972, 0.560215107016268, 0.5536097689436589, 0.5471739392849116, 0.5409751230510189, 0.5350860724889979, 0.5295834418853597, 0.5245459997171648, 0.5200524142749235, 0.5161786717016901, 0.5129952343185554, 0.5105640962113063, 0.508935934090073, 0.5081475751290312, 0.5082200017245673, 0.5091570814801936, 0.5109451506364668, 0.513553498429932, 0.5169357113343124, 0.5210317545772167, 0.5257706066354153, 0.531073228530295, 0.5368556452908457, 0.5430319378312132, 0.5495169819324527, 0.5562288180836993, 0.5630905836359386, 0.5700319812625044, 0.5769902918595228, 0.5839109647365341, 0.5907478337994877, 0.5974630168561942, 0.6040265579348715, 0.6104158712899177, 0.6166150419950934, 0.6226140327714762, 0.6284078407184216, 0.633995641394513, 0.6393799515200334, 0.6445658356023078, 0.6495601761069664, 0.6543710214651954, 0.6590070212642661 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4751370847225189, 0.3287440202502788, 0.27316714445221585, 0.19459702638646723, 0.2802780569925018, 0.2295567470134425, 0.2523691645385567, 0.2890441543857179, 0.19148566302081013, 0.12231792148114219, 0.11724656569468946, 0.43438009452074766, 0.06299462028534658, 0.08439424725911049, 0.12851231724953235, 0.10671824388122823, 0.15954570452480107, 0.168584870243706, 0.16005944378860845, 0.13014798424200916, 0.16111776712735856, 0.23959186859428883, 0.060091243125498295, 0.43912462517619133, 0.9032109640538692, 0.40544616102602865, 0.3781252887855262, 0.3598899775890065, 0.33564243011303435 ], "xaxis": "x", "y": [ 0.43589335680007935, 0.3505050804822706, 0.3193981394608902, 0.27112903948916633, 0.212322966651161, 0.27219282301812564, 0.2520796645739599, 0.26181689942280323, 0.2303568783052031, 0.1758667109508257, 0.1785812576533865, 0.7873201342299581, 0.1748178667734754, 0.14598164709344713, 0.09328417767881127, 0.09713372309381456, 0.04018334368415399, 0.1304953326137722, 0.1686943300182876, 0.15536908716404307, 0.19011600334524087, 0.14445746690034866, 0.592651198618114, 0.6067354921251535, 0.42226934991776943, 0.5618983866615351, 0.5474140226066075, 0.5125507484598707, 0.42542385287359963 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4751370847225189, 0.3287440202502788, 0.27316714445221585, 0.19459702638646723, 0.2802780569925018, 0.2295567470134425, 0.2523691645385567, 0.2890441543857179, 0.19148566302081013, 0.12231792148114219, 0.11724656569468946, 0.43438009452074766, 0.06299462028534658, 0.08439424725911049, 0.12851231724953235, 0.10671824388122823, 0.15954570452480107, 0.168584870243706, 0.16005944378860845, 0.13014798424200916, 0.16111776712735856, 0.23959186859428883, 0.060091243125498295, 0.43912462517619133, 0.9032109640538692, 0.40544616102602865, 0.3781252887855262, 0.3598899775890065, 0.33564243011303435 ], "xaxis": "x2", "y": [ 0.43589335680007935, 0.3505050804822706, 0.3193981394608902, 0.27112903948916633, 0.212322966651161, 0.27219282301812564, 0.2520796645739599, 0.26181689942280323, 0.2303568783052031, 0.1758667109508257, 0.1785812576533865, 0.7873201342299581, 0.1748178667734754, 0.14598164709344713, 0.09328417767881127, 0.09713372309381456, 0.04018334368415399, 0.1304953326137722, 0.1686943300182876, 0.15536908716404307, 0.19011600334524087, 0.14445746690034866, 0.592651198618114, 0.6067354921251535, 0.42226934991776943, 0.5618983866615351, 0.5474140226066075, 0.5125507484598707, 0.42542385287359963 ], "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": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "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 } } }, "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": {}, "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.9340446788375123, 0.9344393922369529, 0.9351743658342007, 0.936252863627365, 0.9376772305897012, 0.9394490022222074, 0.9415690414768336, 0.9440376989604209, 0.9468549890024995, 0.9500207600444533, 0.9535348210432503, 0.9573969836494196, 0.9616069991327992, 0.9661643971713528, 0.9710682547812759, 0.9763169317622736, 0.9819078067865494, 0.9878370407045628, 0.9940993845723514, 1.0006880414539723, 1.0075945841984304, 1.014808926437211, 1.0223193409153204, 1.0301125176707997, 1.0381736541445332, 1.0464865696601555, 1.055033837534978, 1.063796929111586, 1.0727563650552925, 1.0818918702340963, 1.0911825293281332, 1.1006069409857633, 1.1101433688608124, 1.1197698882490275, 1.129464527317378, 1.139205402112991, 1.1489708446729865, 1.1587395236517326, 1.168490556953883, 1.1782036159218585, 1.1878590206840642, 1.1974378263302887, 1.206921899647741, 1.2162939862260331, 1.2255377678229589, 1.2346379099733888, 1.2435800999197741, 1.2523510750415499, 1.2609386420590276, 1.2693316873822336 ], [ 0.9343755438181097, 0.9347741809258147, 0.9355178031024026, 0.9366098620099554, 0.9380528314314782, 0.9398483266908383, 0.941997250740946, 0.9444999618369975, 0.9473564610638636, 0.9505665829926293, 0.9541301462819933, 0.958047011947256, 0.962317019579399, 0.9669398088659971, 0.9719145612798252, 0.9772397062362571, 0.9829126319764431, 0.9889294311830921, 0.9952846998889833, 1.0019713981183114, 1.0089807728938234, 1.016302338915938, 1.0239239091240198, 1.0318316660380198, 1.0400102647469223, 1.048442959184676, 1.0571117445247502, 1.065997509842176, 1.0750801964493968, 1.08433895840568, 1.0937523225872139, 1.1032983463859314, 1.1129547716024057, 1.1226991734453113, 1.1325091037822317, 1.1423622279367944, 1.1522364544225903, 1.1621100570668221, 1.1719617890228382, 1.1817709882117649, 1.1915176737781716, 1.201182633197394, 1.210747499736081, 1.220194820043296, 1.229508111736635, 1.238671910944845, 1.2476718098721171, 1.2564944845570707, 1.265127713106934, 1.2735603847914363 ], [ 0.93506092706317, 0.9354632898084146, 0.9362151149225997, 0.9373200586385435, 0.938780733275212, 0.9405988435861652, 0.9427753490210854, 0.9453106402016683, 0.9482047338208859, 0.9514574788891692, 0.9550687290067206, 0.9590384152676529, 0.9633664799024458, 0.9680526783054406, 0.9730962917957474, 0.9784958040516913, 0.9842485877903595, 0.9903506348957694, 0.9967963491598809, 1.003578408968559, 1.0106876985660491, 1.0181133009478525, 1.0258425425069846, 1.0338610786586857, 1.0421530101383214, 1.050701020925655, 1.0594865303412841, 1.068489853473934, 1.0776903655426067, 1.0870666669875038, 1.0965967469989293, 1.106258143856638, 1.1160281009048332, 1.1258837172801128, 1.1358020926849048, 1.145760465597682, 1.1557363443629771, 1.1657076306323124, 1.1756527346476027, 1.1855506818819406, 1.195381210586415, 1.2051248598389388, 1.2147630477541922, 1.224278139592422, 1.2336535055978706, 1.242873568502292, 1.2519238407424493, 1.2607909515584004, 1.2694626642575335, 1.27792788404337 ], [ 0.9361153427504594, 0.9365214648408146, 0.9372812379878319, 0.9383985388259799, 0.9398761201171953, 0.9417157734840965, 0.9439185213339263, 0.9464848091734793, 0.9494147053711814, 0.9527081158278681, 0.9563649705637431, 0.9603853049956176, 0.9647691862865249, 0.9695164932115328, 0.9746265995157669, 0.9800980220620467, 0.9859280861473569, 0.9921126438193318, 0.9986458644167329, 1.0055201030872374, 1.012725843552983, 1.0202517056830682, 1.028084505813242, 1.0362093573866853, 1.0446098005523352, 1.0532679511532264, 1.0621646615507276, 1.071279687628149, 1.0805918579222904, 1.0900792420817054, 1.099719316756779, 1.1094891276392542, 1.1193654467518959, 1.1293249243065546, 1.1393442345560443, 1.1494002151057536, 1.159469999156898, 1.1695311401474078, 1.1795617282532156, 1.1895404982211684, 1.1994469280307312, 1.2092613279262525, 1.2189649194267664, 1.2285399040040075, 1.2379695212200017, 1.2472380962301537, 1.2563310766818756, 1.2652350591685617, 1.2739378055283535, 1.2824282494023909 ], [ 0.9375530433095065, 0.9379632249130201, 0.9387309079701869, 0.9398602099428154, 0.9413540232989996, 0.9432142137845247, 0.9454418620076828, 0.9480374858228745, 0.9510012458473701, 0.9543331599470729, 0.9580332914402563, 0.9621018267232168, 0.966538986499472, 0.9713447807580622, 0.9765186640010518, 0.9820591587794969, 0.9879635044520013, 0.9942273687784895, 1.000844641076751, 1.0078073107322654, 1.0151054247127949, 1.0227271120262325, 1.0306586608746913, 1.0388846345350897, 1.047388013729215, 1.0561503556166458, 1.0651519619763457, 1.0743720512975352, 1.08378893122181, 1.0933801690421436, 1.1031227588181398, 1.1129932841936163, 1.1229680762896506, 1.1330233661733902, 1.1431354314326443, 1.1532807363657918, 1.1634360652576727, 1.1735786481753017, 1.1836862786945144, 1.1937374229668476, 1.203711319557509, 1.2135880695314216, 1.2233487163338022, 1.2329753151031426, 1.2424509911646073, 1.251759987577589, 1.2608877017477305, 1.2698207112558326, 1.2785467891987143, 1.287054909473945 ], [ 0.9393877604423277, 0.939802593287609, 0.9405783706159618, 0.9417194825805447, 0.9432289696117727, 0.9451087597382092, 0.9473599827042047, 0.9499832419854424, 0.9529788310955061, 0.9563469404877731, 0.960087831466354, 0.9642018936946409, 0.968689531203207, 0.9735508900403842, 0.9787854883113697, 0.9843918207019027, 0.9903669970573484, 0.9967064533780005, 1.0034037529264648, 1.0104504789820394, 1.0178362101234795, 1.0255485633315258, 1.0335732885711466, 1.0418943995349974, 1.0504943276930014, 1.0593540897522082, 1.0684534614605723, 1.077771153051311, 1.087284983404694, 1.0969720512238013, 1.106808902273987, 1.1167716921403241, 1.1268363441250888, 1.1369787019309627, 1.1471746767236541, 1.1574003880875938, 1.1676322983090115, 1.1778473393590831, 1.1880230319142195, 1.1981375957435834, 1.2081700508166402, 1.2181003085341389, 1.2279092525631925, 1.2375788088576534, 1.2470920045666625, 1.2564330156720285, 1.2655872033448772, 1.2745411391678574, 1.2832826195248197, 1.2918006696095288 ], [ 0.9416324183124006, 0.9420528200281625, 0.9428371050750723, 0.9439899818608974, 0.9455146712745631, 0.9474131730330101, 0.9496866676203922, 0.9523358578707063, 0.9553612062986467, 0.9587631315779789, 0.9625421529033203, 0.9666989100055053, 0.9712340135287779, 0.9761477434995135, 0.981439658146127, 0.9871081860308376, 0.9931502615922149, 0.9995610420853362, 1.0063337220471131, 1.0134594443153795, 1.0209272956298976, 1.0287243695175405, 1.0368358782145715, 1.0452452972368438, 1.0539345294448832, 1.0628840789902059, 1.072073228707406, 1.081480217019796, 1.091082412192164, 1.1008564828751237, 1.1107785644875814, 1.1208244212320149, 1.1309696035667203, 1.1411896008720086, 1.1514599889153927, 1.1617565715870515, 1.17205551626621, 1.1823334821016416, 1.1925677404487334, 1.2027362867008993, 1.2128179427814187, 1.2227924496210143, 1.2326405490334804, 1.2423440545134832, 1.2518859106142288, 1.2612502407135473, 1.2704223831403862, 1.2793889158034581, 1.288137669633222, 1.2966577313106273 ], [ 0.9442988003598702, 0.9447260806867718, 0.945519560882897, 0.9466843161185842, 0.9482238119303428, 0.9501401721788595, 0.9524346584581554, 0.9551080954715719, 0.9581611466847317, 0.9615945022396811, 0.9654089822653448, 0.9696055060752371, 0.9741848993364565, 0.9791475627949472, 0.9844930642066372, 0.9902197246707259, 0.9963242581014241, 1.0028015003656945, 1.0096442420786125, 1.0168431613110687, 1.0243868413285797, 1.032261853598749, 1.040452886180767, 1.048942900391939, 1.0577133026753456, 1.066744122676061, 1.0760141919858013, 1.0855013205705735, 1.0951824695613552, 1.1050339200200614, 1.115031437694215, 1.1251504338365443, 1.1353661220447797, 1.1456536708798364, 1.1559883518168237, 1.1663456819083167, 1.1767015604098863, 1.1870323985366644, 1.197315241483619, 1.2075278818466026, 1.2176489636206709, 1.2276580760227462, 1.2375358364843363, 1.2472639622837078, 1.2568253304326382, 1.266204025596885, 1.2753853760063325, 1.2843559774946351, 1.293103705991234, 1.3016177189638438 ], [ 0.9473971301702835, 0.9478330860959647, 0.9486368258428469, 0.949813819070838, 0.9513678540387525, 0.9533012770919829, 0.9556155069888077, 0.958311538953367, 0.9613902741990707, 0.9648527039282285, 0.9686999679933546, 0.9729332690487457, 0.9775536348487456, 0.9825615589524682, 0.987956580220568, 0.993736869233407, 0.9998988777656659, 1.0064370854735578, 1.0133438550662253, 1.0206093891457209, 1.0282217708883719, 1.0361670665264708, 1.0444294684491582, 1.0529914615221325, 1.0618340000427169, 1.070936687306177, 1.0802779533855227, 1.0898352292244213, 1.0995851166135555, 1.1095035543026455, 1.1195659806562266, 1.1297474931185862, 1.1400230044800694, 1.1503673956404774, 1.160755664306011, 1.1711630688583636, 1.1815652665032572, 1.1919384447343324, 1.2022594451275948, 1.2125058785019924, 1.2226562305363402, 1.2326899570170464, 1.2425875680015674, 1.2523307003180562, 1.2619021779787234, 1.271286060260694, 1.280467677397891, 1.28943365402469, 1.2981719207086857, 1.3066717140978195 ], [ 0.9509355522231042, 0.9513825409239104, 0.9521980958627468, 0.9533880717308038, 0.9549566369344064, 0.9569064763463307, 0.9592392897086434, 0.9619563339683079, 0.9650587998402297, 0.9685479986252439, 0.9724253843734363, 0.9766924198743652, 0.9813502994329136, 0.9863995662788868, 0.991839684558209, 0.9976686310382465, 1.0038825595737195, 1.0104755694761165, 1.0174395858203087, 1.0247643415425252, 1.0324374405846386, 1.0404444780367639, 1.0487691952286238, 1.0573936525503693, 1.0662984083479676, 1.0754626971720918, 1.084864604331419, 1.0944812360175777, 1.1042888854444006, 1.1142631958085594, 1.1243793207552064, 1.1346120826767576, 1.1449361287590452, 1.1553260843154023, 1.1657567026595017, 1.1762030105715056, 1.186640448298741, 1.1970450029861606, 1.2073933344362155, 1.2176628921405157, 1.2278320225980417, 1.2378800660327933, 1.2477874417457073, 1.2575357214808522, 1.267107690352866, 1.276487395069501, 1.2856601793842937, 1.2946127069242523, 1.303332971746787, 1.3118102971803765 ], [ 0.9549195910919456, 0.9553805234249195, 0.956209983960967, 0.9574141762020405, 0.9589976740716794, 0.9609635995523327, 0.9633140701825913, 0.9660507219362645, 0.9691751006146595, 0.9726888524574709, 0.9765937243801656, 0.9808913967138215, 0.985583177720401, 0.9906696057124639, 0.9961500197083872, 1.0020221616006666, 1.0082818598464052, 1.0149228224647402, 1.0219365438024026, 1.0293123114875153, 1.0370372900865008, 1.0450966558117163, 1.053473759882796, 1.0621503040297924, 1.071106517851138, 1.0803213329071375, 1.0897725519920924, 1.09943701402628, 1.1092907557889098, 1.119309171703235, 1.1294671724635421, 1.1397393427363864, 1.1501000976418554, 1.160523837304161, 1.1709850984761048, 1.1814587020755634, 1.1919198953999208, 1.2023444877781717, 1.2127089784591358, 1.2229906756028888, 1.2331678053332173, 1.2432196099195605, 1.2531264342871964, 1.2628698002065986, 1.272432467686968, 1.2817984832935898, 1.2909532153200525, 1.299883375966946, 1.3085770309002582, 1.3170235967744157 ], [ 0.9593517398176516, 0.9598300043848655, 0.9606759616897084, 0.9618961254492093, 0.9634954812693032, 0.9654776495123515, 0.9678452678619688, 0.9706004530037543, 0.9737451684052334, 0.9772814081179578, 0.9812111851403482, 0.9855363468609326, 0.99025825546418, 0.995377385447462, 1.0008929008300929, 1.006802273615308, 1.013100990672827, 1.0197823733513665, 1.0268375106319854, 1.0342552889624592, 1.0420224929534365, 1.0501239502587396, 1.0585426985294704, 1.0672601592113498, 1.0762563096953606, 1.0855098505471779, 1.0949983678103545, 1.104698491910527, 1.114586054977927, 1.1246362479804877, 1.1348237783444042, 1.1451230280127367, 1.155508211300187, 1.1659535314925324, 1.1764333349011564, 1.1869222609808818, 1.1973953871096932, 1.2078283666763638, 1.2181975592004948, 1.2284801513049806, 1.2386542674677328, 1.2486990695982687, 1.2585948446192514, 1.2683230793878253, 1.2778665224686934, 1.2872092324708209, 1.2963366128781888, 1.3052354335354726, 1.3138938391816288, 1.3223013456473207 ], [ 0.9642312675446312, 0.9647306400407207, 0.9655961274736061, 0.9668345245422971, 0.9684512235653149, 0.9704503645278736, 0.9728351523094371, 0.9756082403983702, 0.978772047875772, 0.9823289204448049, 0.9862811082792688, 0.9906305753143713, 0.9953786787346259, 1.0005257735065933, 1.0060708052763943, 1.0120109516806017, 1.0183413563259105, 1.025054976221081, 1.0321425399744122, 1.0395925970488622, 1.047391630584892, 1.0555242068656563, 1.0639731403588717, 1.0727196610083032, 1.0817435774910107, 1.091023435181708, 1.1005366703284842, 1.1102597628555866, 1.1201683899256432, 1.1302375815372632, 1.1404418784571628, 1.150755491950493, 1.161152464183472, 1.1716068278314598, 1.182092763284638, 1.192584751839044, 1.203057723334425, 1.2134871968103613, 1.2238494128721056, 1.2341214565763996, 1.244281369764769, 1.2543082518923063, 1.2641823485323764, 1.273885126889216, 1.2833993378264588, 1.2927090641208951, 1.301799754874433, 1.3106582462552134, 1.3192727689807278, 1.3276329431889946 ], [ 0.9695542094253168, 0.9700787723343491, 0.9709672023391352, 0.9722265518793951, 0.9738626031552036, 0.9758800029333667, 0.9782825194295873, 0.9810733476163469, 0.9842553634118987, 0.9878312492955983, 0.991803458050063, 0.99617402127905, 1.0009442378520574, 1.0061142960160452, 1.0116828911206068, 1.017646896422344, 1.0240011277597287, 1.030738219210796, 1.0378486038238481, 1.0453205775107919, 1.05314041782916, 1.0612925314432218, 1.0697596111228551, 1.078522791524336, 1.0875618000563376, 1.0968551036740812, 1.1063800544541684, 1.1161130369330765, 1.1260296192708825, 1.136104709029447, 1.1463127131843929, 1.1566277011370678, 1.1670235689957178, 1.1774742031976828, 1.1879536415534997, 1.1984362299190556, 1.208896772874336, 1.2193106769625175, 1.2296540852002154, 1.2399040017040805, 1.2500384053970586, 1.2600363518713422, 1.269878062607433, 1.2795450008911198, 1.2890199339400623, 1.2982869809510034, 1.3073316470044152, 1.3161408430076662, 1.3247028921077875, 1.3330075232478982 ], [ 0.9753134512076712, 0.9758675145310173, 0.9767826004036473, 0.9780659945274746, 0.9797238385396724, 0.9817612465169828, 0.9841825077709331, 0.9869913205052199, 0.9901909822119103, 0.9937844740123383, 0.9977744067792805, 1.0021628309497388, 1.0069509404571495, 1.0121387208056791, 1.017724599535064, 1.0237051523385445, 1.0300749012179038, 1.03682621781261, 1.0439493230545989, 1.0514323597885114, 1.0592615103349485, 1.0674211346123614, 1.0758939125866316, 1.0846609835703438, 1.0937020816078868, 1.1029956698769516, 1.1125190780121534, 1.1222486454448244, 1.1321598722559467, 1.1422275774089317, 1.1524260629778291, 1.1627292822410729, 1.1731110092177244, 1.1835450072519182, 1.1940051944616177, 1.2044658041482612, 1.214901538540664, 1.2252877144816288, 1.2356003998486356, 1.245816539636581, 1.2559140707375425, 1.265872024548612, 1.2756706166429985, 1.2852913228663359, 1.2947169413790893, 1.3039316403600263, 1.3129209913115298, 1.3216719881559995, 1.3301730525702202, 1.3384140262558826 ], [ 0.9814988508237179, 0.9820868613812828, 0.9830325167869994, 0.9843433053380899, 0.9860256842138281, 0.9880851754590981, 0.9905265208470989, 0.9933538528693432, 0.9965708263425715, 1.0001806616667945, 1.0041860724840697, 1.0085890782237608, 1.013390727905365, 1.0185907802672385, 1.0241873929559688, 1.0301768682329198, 1.036553486112863, 1.0433094336860511, 1.050434819068778, 1.0579177459332731, 1.065744421946222, 1.073899279761429, 1.0823650983157485, 1.0911231209660235, 1.100153172935527, 1.109433782958828, 1.1189423136372014, 1.1286551031077274, 1.138547618359167, 1.1485946186526186, 1.158770326335683, 1.169048601861787, 1.1794031198652506, 1.1898075434808186, 1.2002356945517136, 1.210661717818119, 1.2210602375530817, 1.231406505391834, 1.2416765382907633, 1.2518472456737166, 1.2618965449044164, 1.2718034642910907, 1.2815482329068253, 1.2911123566145604, 1.3004786798297283, 1.309631432739505, 1.3185562639216741, 1.327240258557527, 1.3356719426974146, 1.3438412742965768 ], [ 0.9880973796524387, 0.9887238162023592, 0.9897040358842549, 0.9910456907909446, 0.9927554981056431, 0.9948393145008244, 0.997302248835996, 1.0001487796514188, 1.003382835686262, 1.0070078023001108, 1.0110264328050445, 1.0154406659629442, 1.0202513730275784, 1.0254580741126358, 1.0310586700035351, 1.037049229848117, 1.0434238592567238, 1.0501746527698654, 1.057291716600711, 1.0647632376168208, 1.0725755743340333, 1.0807133528498576, 1.0891595605786573, 1.097895639101665, 1.1069015820724477, 1.1161560447588594, 1.1256364697197747, 1.135319229972936, 1.1451797881283914, 1.155192868026385, 1.16533263455152, 1.1755728772808478, 1.1858871941296307, 1.1962491718814805, 1.206632561214532, 1.217011444445524, 1.2273603946644123, 1.2376546252291603, 1.247870128762144, 1.2579838048758771, 1.2679735758952766, 1.2778184898717198, 1.2874988102276617, 1.296996091450296, 1.306293240379064, 1.315374562808051, 1.3242257953452654, 1.332834122724313, 1.3411881810337531, 1.3492780475957131 ], [ 0.995093286482391, 0.9957625456148893, 0.9967812765319586, 0.9981572483722061, 0.9998973738443242, 1.002007762055246, 1.004493794479612, 1.0073601976659565, 1.0106110813019753, 1.0142499142966193, 1.018279424131831, 1.0227014225368622, 1.0275165786822595, 1.0327241744667248, 1.038321880900265, 1.0443055882875552, 1.0506693077433686, 1.057405142894897, 1.0645033152630046, 1.0719522199057228, 1.079738490572107, 1.0878470628386856, 1.0962612343850517, 1.1049627292675153, 1.1139317757619698, 1.1231472056134981, 1.1325865783576836, 1.1422263299092634, 1.152041941267587, 1.1620081214646267, 1.1720989985984367, 1.1822883134605264, 1.1925496113682208, 1.202856428971203, 1.213182473795008, 1.2235017950262919, 1.2337889445334755, 1.2440191273940968, 1.2541683413248057, 1.2642135044392546, 1.2741325707434081, 1.2839046327575352, 1.2935100106596216, 1.3029303273960104, 1.3121485693129205, 1.3211491320281508, 1.3299178514797607, 1.3384420203436094, 1.3467103902861755, 1.3547131607920284 ], [ 1.0024682915457925, 1.0031845727222013, 1.0042455864762598, 1.0056591657392486, 1.0074323484211987, 1.0095714096012476, 1.0120819059971213, 1.0149687120069497, 1.0182360240266264, 1.0218873136499667, 1.025925220582968, 1.0303513903211758, 1.0351662760126756, 1.0403689340725795, 1.0459568453630148, 1.0519257866683647, 1.0582697627274928, 1.064980992413201, 1.0720499302311466, 1.0794653008321549, 1.0872141302013065, 1.0952817687936727, 1.1036519132872267, 1.1123066401219908, 1.1212264640672245, 1.1303904302573704, 1.1397762414798123, 1.149360416685822, 1.1591184731553639, 1.1690251236127125, 1.1790544802271439, 1.1891802589989966, 1.199375979829995, 1.2096151591806001, 1.2198714934404984, 1.2301190319565256, 1.2403323391351655, 1.2504866452524077, 1.260557985650952, 1.270523327958251, 1.2803606868773931, 1.2900492260295964, 1.2995693462926279, 1.3089027601025074, 1.3180325512754922, 1.3269432200632778, 1.335620713368482, 1.3440524403036953, 1.3522272735563168, 1.36013553729996 ], [ 1.010201815191634, 1.010969013780572, 1.0120757905227329, 1.013529984535221, 1.015338685973336, 1.0175082492732344, 1.0200443112294546, 1.0229517979257845, 1.0262349036399934, 1.0298970287222056, 1.0339406719228355, 1.0383672839236693, 1.0431770998067709, 1.0483689752296141, 1.0539402511266491, 1.0598866638194244, 1.0662023035696646, 1.0728796098983784, 1.0799093826064867, 1.0872807876784218, 1.094981346985986, 1.1029969150959649, 1.1113116586155425, 1.1199080582820082, 1.1287669505669957, 1.1378676169037616, 1.1471879191342713, 1.156704472743213, 1.166392846145513, 1.17622777424013, 1.186183376369009, 1.1962333714769158, 1.2063512858043275, 1.2165106504485739, 1.2266851875005877, 1.2368489842788808, 1.2469766555753645, 1.2570434939376667, 1.267025607956294, 1.2769000483895252, 1.286644921806641, 1.296239491304191, 1.3056642637775326, 1.3149010632276084, 1.3239330896570398, 1.3327449632572448, 1.3413227537997123, 1.3496539954019653, 1.357727687121183, 1.3655342801115298 ], [ 1.0182712408952452, 1.0190928568550341, 1.0202484889169081, 1.021745922931453, 1.02359222887866, 1.0257937574498428, 1.0283561367395102, 1.031284257056209, 1.0345822321232137, 1.0382533287370754, 1.0422998640064185, 1.0467230781025567, 1.051522998467192, 1.0566983156484826, 1.0622462889585345, 1.0681626913807094, 1.0744417898296699, 1.0810763439636009, 1.088057600329815, 1.0953752627892126, 1.1030174341358747, 1.1109705414706306, 1.119219270788494, 1.1277465386533414, 1.1365335208419989, 1.145559744441937, 1.1548032372519823, 1.1642407204293603, 1.173847827901701, 1.183599337674551, 1.193469403734554, 1.2034317811105788, 1.213460039884089, 1.2235277662282567, 1.2336087499560136, 1.2436771587714475, 1.2537076996674645, 1.2636757678802844, 1.2735575836341904, 1.283330316680879, 1.2929721984171463, 1.3024626211905788, 1.3117822242986428, 1.3209129661638632, 1.3298381822299423, 1.338542628265501, 1.3470125089716243, 1.3552354920479324, 1.3632007081565853, 1.37089873751028 ], [ 1.0266522075909226, 1.0275312753097046, 1.0287383961045244, 1.0302812438878175, 1.0321667995622423, 1.034401333656092, 1.0369903864855483, 1.0399387372350677, 1.0432503543560572, 1.0469283232846214, 1.050974753289812, 1.055390671965315, 1.0601759213451514, 1.0653290714240855, 1.070847363123825, 1.0767266832527742, 1.0829615611157195, 1.0895451651190289, 1.0964692740995907, 1.1037242062932375, 1.111298707527669, 1.1191798216532525, 1.1273527799192602, 1.1358009452655518, 1.1445058337193719, 1.1534472160596023, 1.162603287093347, 1.1719508817464195, 1.1814657164610822, 1.191122638297057, 1.2008958696140026, 1.2107592412696493, 1.2206864110380764, 1.230651066348107, 1.2406271117249885, 1.2505888418360271, 1.2605111010907293, 1.2703694305483928, 1.280140202583733, 1.2898007434437222, 1.299329443548763, 1.3087058551789876, 1.317910777058564, 1.3269263253144319, 1.3357359903404467, 1.3443246792365178, 1.3526787437006944, 1.360785993511285, 1.368635696022135, 1.376218562382439 ], [ 1.0353189226964201, 1.0362579649267958, 1.0375187056190174, 1.03910865139956, 1.0410346313680936, 1.0433027687502276, 1.0459184491391522, 1.0488862795597866, 1.0522100340246978, 1.0558925845387928, 1.0599358211893504, 1.064340569847924, 1.0691065193292555, 1.074232169628856, 1.0797148076716432, 1.085550506924784, 1.0917341347045542, 1.0982593410593886, 1.1051185020626693, 1.1123026025870335, 1.1198010674183552, 1.1276015752898734, 1.1356899048422113, 1.1440498566510882, 1.1526632745343548, 1.161510163916757, 1.17056888631158, 1.1798164015733954, 1.189228531566301, 1.198780225640574, 1.2084458158052163, 1.2181992555604744, 1.2280143404138697, 1.237864910387227, 1.2477250358423952, 1.2575691881937543, 1.2673723968958335, 1.2771103937267156, 1.2867597449703425, 1.2962979717092638, 1.305703658114564, 1.3149565473816824, 1.3240376248190606, 1.3329291875532787, 1.3416149003659332, 1.3500798373147278, 1.3583105089993088, 1.366294875591155, 1.374022346032648, 1.3814837640984297 ], [ 1.0442444850483381, 1.0452454912633005, 1.046561464717196, 1.048199695001968, 1.0501668050577717, 1.0524687148786827, 1.0551106020785819, 1.0580968558943602, 1.0614310228207513, 1.0651157449535162, 1.0691526957565305, 1.073542521305127, 1.0782847965929163, 1.0833780046314754, 1.0888195397515312, 1.0946057260170914, 1.100731829484528, 1.1071920342572805, 1.1139793535668936, 1.1210854633433753, 1.1285004749140928, 1.1362126938261905, 1.1442084267136592, 1.152471888050493, 1.1609852292596488, 1.1697286803657179, 1.1786807734772076, 1.1878186119630276, 1.1971181548340366, 1.2065544957747227, 1.2161021256387392, 1.2257351739902003, 1.2354276293068802, 1.2451535394183337, 1.2548871943919264, 1.2646032939993266, 1.2742771014821321, 1.2838845848137292, 1.2934025461425591, 1.3028087396573966, 1.312081977762877, 1.3212022252032298, 1.33015068062626, 1.3389098450357926, 1.3474635766330711, 1.3557971316852018, 1.3638971912662328, 1.3717518739737238, 1.379350735007404, 1.3866847522821315 ], [ 1.0534012063484277, 1.05446563353735, 1.0558379424946525, 1.0575251634723295, 1.0595336688661692, 1.061869131917051, 1.0645364833698125, 1.0675398645431724, 1.0708825768807162, 1.074567030468518, 1.0785946966921458, 1.0829660722214645, 1.087680661594459, 1.0927369825374806, 1.098132591013944, 1.1038641122697403, 1.10992725234985, 1.1163167568434833, 1.1230262870276442, 1.1300482036293198, 1.1373732829357985, 1.1449904249042602, 1.1528864278823332, 1.1610458882754477, 1.16945124484509, 1.1780829483464537, 1.1869197152700701, 1.1959388222904, 1.205116408001567, 1.2144277616254304, 1.223847589238315, 1.2333502550990803, 1.2429099993664179, 1.2525011349586974, 1.2620982265102227, 1.2716762539740845, 1.2812107627985654, 1.2906780019587472, 1.3000550505473187, 1.3093199331534846, 1.3184517238963116, 1.3274306387282673, 1.3362381154826113, 1.3448568810989983, 1.3532710055170276, 1.3614659418661086, 1.369428552786337, 1.3771471229692924, 1.3846113582871462, 1.3918123721595825 ], [ 1.062760920469903, 1.063889712637628, 1.0653189772179732, 1.067055451542955, 1.0691052239699825, 1.0714736902871285, 1.0741655096687555, 1.0771845600748053, 1.080533894474526, 1.084215701192188, 1.088231273500944, 1.0925809944961293, 1.0972643422052124, 1.1022799158035532, 1.1076254761275106, 1.1132979829497458, 1.1192936002189946, 1.125607633862534, 1.1322343721840364, 1.1391668223943545, 1.146396376028589, 1.1539124747303389, 1.1617023621527625, 1.1697509847730783, 1.1780410566340518, 1.186553258343015, 1.1952665190195513, 1.2041583318826405, 1.2132050685841287, 1.222382273243312, 1.2316649289469992, 1.2410276963795137, 1.2504451274083408, 1.2598918573546856, 1.2693427794464935, 1.2787732042638789, 1.288159006198243, 1.297476758215248, 1.3067038555975299, 1.3158186288581317, 1.3248004456566949, 1.333629801308702, 1.342288397345405, 1.3507592075501589, 1.3590265309565384, 1.3670760314331571, 1.3748947636838358, 1.382471185741327, 1.3897951583057453, 1.396857931553317 ], [ 1.0722952717690253, 1.073488893337719, 1.0749752919466997, 1.076760887792825, 1.0788514627809747, 1.0812521169971276, 1.0839672265413207, 1.0870004036535221, 1.090354461335907, 1.0940313860887645, 1.0980323234412641, 1.1023575809438222, 1.1070066513153891, 1.1119782536839613, 1.1172703829304873, 1.1228803466899764, 1.1288047591046726, 1.1350394551622984, 1.141579296885512, 1.1484178689718747, 1.155547104022837, 1.1629569183790025, 1.1706349522133155, 1.1785664783585297, 1.1867344890723055, 1.1951199214417725, 1.2037019619575258, 1.2124583770299624, 1.221365834440096, 1.2304001985322517, 1.239536794157944, 1.248750640872193, 1.258016661433597, 1.2673098690368156, 1.276605537111082, 1.2858793546142508, 1.29510756885031, 1.3042671170589357, 1.3133357473991856, 1.3222921294700858, 1.3311159541650002, 1.3397880224289223, 1.3482903223674516, 1.3566060941326141, 1.3647198820745219, 1.3726175737872177, 1.380286425876808, 1.3877150765226685, 1.394893545166999, 1.4018132199336577 ], [ 1.0819759759838379, 1.0832344539504974, 1.0847777715231113, 1.0866120168886693, 1.0887426536371725, 1.0911744792429512, 1.0939115867067377, 1.0969573309715404, 1.1003143027250815, 1.103984313127023, 1.1079683933938764, 1.1122668124102921, 1.1168791128893236, 1.1218041614404182, 1.127040200007842, 1.1325848762811332, 1.1384352214115956, 1.1445875398130445, 1.151037185256853, 1.1577782257047777, 1.1648030430699312, 1.1721019546501028, 1.1796629529629385, 1.1874716269313077, 1.19551126786123, 1.2037631139375167, 1.2122066688592328, 1.2208200397682445, 1.2295802603057508, 1.2384635834547595, 1.247445740985238, 1.256502172326466, 1.2656082277179883, 1.2747393504692386, 1.283871242311121, 1.292980014782588, 1.3020423286331757, 1.3110355224258918, 1.3199377309035416, 1.3287279932175102, 1.3373863507890231, 1.3458939343614924, 1.3542330396940563, 1.3623871913309755, 1.3703411939480772, 1.37808117091503, 1.3855945899063162, 1.3928702756276499, 1.3998984099786973, 1.4066705202278975 ], [ 1.0917750499622847, 1.0930980199559086, 1.094697698040557, 1.096579834215715, 1.0987495712799764, 1.1012114067894883, 1.103969159795563, 1.1070259443389106, 1.1103841523812166, 1.1140454493213967, 1.118010785064069, 1.1222804222494034, 1.1268539801384758, 1.1317304873182688, 1.1369084288147493, 1.1423857642956423, 1.148159886400353, 1.1542274867533417, 1.1605843085403909, 1.167224793459229, 1.1741416732782177, 1.1813255936557958, 1.1887648643903246, 1.196445394429822, 1.2043508105407092, 1.2124627104524826, 1.2207609852252, 1.2292241566356366, 1.2378296967508022, 1.2465543157037733, 1.2553742155273397, 1.2642653135187079, 1.273203440314267, 1.282164517618878, 1.2911247195685378, 1.300060620611747, 1.3089493318188319, 1.317768626738985, 1.3264970573197763, 1.3351140599586018, 1.343600051444629, 1.3519365143530082, 1.3601060713556106, 1.3680925479025858, 1.3758810227969958, 1.3834578663184318, 1.3908107657381525, 1.3979287382915482, 1.4048021319158555, 1.4114226143038477 ], [ 1.1016650089802842, 1.103051761138879, 1.1047069454357827, 1.1066359750474424, 1.10884367723005, 1.1113342597344948, 1.1141112833102615, 1.1171776423736026, 1.1205355563165444, 1.124186573984375, 1.1281315931914628, 1.1323708953406249, 1.1369041918210556, 1.1417306736007806, 1.1468490484625062, 1.1522575427258526, 1.1579538386421637, 1.1639349194421242, 1.1701968068802218, 1.176734204382104, 1.1835400975801482, 1.1906053959303282, 1.1979187018458746, 1.2054662586977165, 1.2132320738822129, 1.2211981692207943, 1.2293448965394136, 1.237651266880053, 1.2460952620619772, 1.2546541152666644, 1.2633045586610478, 1.272023041467891, 1.2807859235207855, 1.2895696490965682, 1.2983509048695299, 1.307106764764913, 1.3158148235410485, 1.3244533201663855, 1.3330012514761924, 1.3414384761683071, 1.3497458089029826, 1.3579051040873287, 1.3658993288353416, 1.3737126245881626, 1.3813303569456217, 1.3887391533885096, 1.3959269287480587, 1.4028828984904043, 1.4095975801125673, 1.416062783175787 ], [ 1.1116190325159465, 1.113068554171018, 1.1147781365329743, 1.1167528633515742, 1.118997257354892, 1.1215152516216005, 1.1243101679634104, 1.1273847042750582, 1.1307409329215727, 1.1343803119233962, 1.138303709665481, 1.1425114417534914, 1.1470033151656454, 1.151778669891746, 1.1568364021570385, 1.1621749472928649, 1.167792196828817, 1.1736853273536871, 1.179850532457205, 1.186282675313926, 1.192974912629619, 1.1999183657711427, 1.207101914231242, 1.2145121545773208, 1.2221335201445527, 1.2299485186379853, 1.2379380317236865, 1.246081629359511, 1.2543578693424864, 1.2627445688342216, 1.2712190452794292, 1.2797583294278292, 1.2883393549286015, 1.2969391288928256, 1.3055348870122572, 1.3141042358570691, 1.3226252840944275, 1.3310767636517997, 1.3394381412974892, 1.3476897207066392, 1.3558127348014712, 1.3637894279795306, 1.3716031277597034, 1.379238305370207, 1.3866806248658983, 1.3939169804829654, 1.4009355221054922, 1.4077256689161648, 1.4142781115178227, 1.420584803027517 ], [ 1.121611100881808, 1.1231221141997003, 1.1248847675383924, 1.1269038269672207, 1.129183525423086, 1.1317275391030521, 1.134538971362968, 1.137620345799001, 1.140973610041451, 1.1446001511876904, 1.1485008224978883, 1.1526759787251548, 1.1571255140782843, 1.161848892369852, 1.1668451538850382, 1.172112879170899, 1.1776500885631052, 1.1834540610075286, 1.1895210695680778, 1.1958460541723723, 1.202422278951435, 1.2092410397778293, 1.216291484409778, 1.2235605801247975, 1.2310332243783313, 1.2386924624620965, 1.2465197643044077, 1.2544953186182854, 1.262598316975824, 1.2708072144246425, 1.279099962996196, 1.2874542196603567, 1.2958475322833627, 1.3042575073670102, 1.312661962779713, 1.3210390678896724, 1.3293674727356846, 1.337626427217892, 1.3457958907789616, 1.3538566326660757, 1.3617903225991776, 1.3695796115044163, 1.377208201890853, 1.384660907441978, 1.3919237014515116, 1.398983753844711, 1.4058294566808267, 1.4124504382158987, 1.4188375658042858, 1.4249829381174663 ], [ 1.1316161060386545, 1.133187099852982, 1.1350013056677668, 1.1370631862971612, 1.1393767014298188, 1.1419452887349255, 1.1447718525483284, 1.1478587614270046, 1.151207855495307, 1.1548204636863926, 1.158697429522882, 1.1628391418247013, 1.1672455636268826, 1.1719162488192092, 1.176850332183932, 1.1820464758310893, 1.1875027554521167, 1.1932164756959416, 1.19918391704852, 1.2054000360438226, 1.211858161173247, 1.2185497391535354, 1.2254641815538319, 1.2325888391798423, 1.2399091006282479, 1.2474085862244506, 1.255069398062421, 1.2628723903898944, 1.2707974354362142, 1.2788236712775705, 1.286929726910176, 1.2950939247103102, 1.3032944627035012, 1.3115095796288734, 1.3197177055138931, 1.327897599888205, 1.336028479130115, 1.3440901338722664, 1.3520630369329323, 1.35992844188945, 1.3676684721623822, 1.3752662003213838, 1.3827057172454125, 1.3899721907613451, 1.3970519134367616, 1.403932339304605, 1.4106021094388144, 1.4170510664691638, 1.4232702583069048, 1.4292519315380012 ], [ 1.1416099402718651, 1.1432391962274677, 1.145103265449551, 1.147206323097719, 1.1495520723378094, 1.1521437295734416, 1.1549840169494825, 1.1580751629717605, 1.161418911557644, 1.1650165388760179, 1.168868875828781, 1.1729763318958588, 1.177338913359788, 1.1819562259223653, 1.1868274490627715, 1.1919512682699744, 1.1973257530507968, 1.2029481749649213, 1.208814771622209, 1.214920478185894, 1.2212586629429116, 1.2278209111745773, 1.234596896374468, 1.2415743599291416, 1.2487391967063894, 1.2560756244217197, 1.2635664055926312, 1.2711930923756225, 1.2789362722475863, 1.2867758014549147, 1.294691020406041, 1.3026609498286743, 1.3106644689026672, 1.3186804774572565, 1.3266880443568785, 1.3346665438505, 1.3425957811880065, 1.3504561083460191, 1.3582285303102202, 1.3658948020503774, 1.3734375160982575, 1.3808401804920516, 1.388087286776595, 1.39516436773792, 1.4020580445961546, 1.4087560634724174, 1.4152473210741239, 1.4215218796970897, 1.4275709718108534, 1.4333869946636388 ], [ 1.1515695663186678, 1.1532551800694093, 1.1551672685333116, 1.1573097347660735, 1.1596860410925873, 1.1622991976959007, 1.1651517578546227, 1.1682458202223638, 1.1715830379058252, 1.1751646330847416, 1.1789914144616223, 1.1830637929268406, 1.187381788598391, 1.1919450201737043, 1.196752665926359, 1.201803385620895, 1.2070951952309081, 1.2126252925798795, 1.2183898419631531, 1.224383737856397, 1.2306003783671364, 1.2370314834819167, 1.243666988105374, 1.2504950260056227, 1.2575020030513275, 1.2646727432049125, 1.2719906831159131, 1.2794380912294108, 1.2869962923952718, 1.2946458856329601, 1.3023669485898512, 1.3101392263595182, 1.317942304722345, 1.3257557689789559, 1.3335593498539895, 1.3413330578317884, 1.3490573069873792, 1.3567130290336333, 1.3642817779873628, 1.3717458255941466, 1.3790882474541304, 1.3862929996597746, 1.393344985688326, 1.400230113280626, 1.4069353410776821, 1.4134487148686445, 1.4197593934199237, 1.4258576639948723, 1.4317349478262698, 1.437383795959069 ], [ 1.161473072136044, 1.1632129706869332, 1.165171090813725, 1.1673510780779959, 1.1697561678094086, 1.1723891762036873, 1.1752524972146727, 1.1783481052170721, 1.1816775627274858, 1.18524203147253, 1.189042283764745, 1.1930787095388227, 1.1973513126794915, 1.2018596887757078, 1.2066029757044712, 1.2115797692042924, 1.2167879985991583, 1.2222247635437309, 1.2278861407747543, 1.2337669788556818, 1.2398607060692397, 1.2461591788552588, 1.2526525936369624, 1.259329474304323, 1.2661767344943238, 1.2731798025616992, 1.2803227908616122, 1.2875886901808895, 1.2949595732762964, 1.3024167962321276, 1.3099411909380565, 1.3175132455030492, 1.3251132716877592, 1.3327215596668491, 1.3403185209477337, 1.3478848203598799, 1.35540149789728, 1.362850080976286, 1.3702126874375724, 1.3774721194135497, 1.384611948019864, 1.3916165887183936, 1.3984713671406095, 1.4051625751507753, 1.41167751696456, 1.4180045452123924, 1.4241330869415527, 1.43005365967717, 1.4357578778007223, 1.4412384496458541 ], [ 1.1712997129401275, 1.1730916693304059, 1.1750936995933838, 1.1773092049146074, 1.179741205253474, 1.1823923321098666, 1.1852648260903829, 1.1883605388956975, 1.1916809386599414, 1.1952271166449198, 1.1989997921425095, 1.2029993111524118, 1.2072256331636138, 1.2116782994901674, 1.2163563765385343, 1.2212583686385106, 1.2263820981081894, 1.2317245551866236, 1.2372817268758616, 1.2430484202887195, 1.249018100830002, 1.2551827664590438, 1.2615328753825843, 1.2680573365493146, 1.2747435626426542, 1.2815775768359767, 1.288544159493438, 1.295627019776928, 1.3028089788706232, 1.3100721547862535, 1.3173981421641998, 1.324768183362599, 1.3321633291615875, 1.3395645886563443, 1.3469530685578697, 1.3543101023673965, 1.361617369903398, 1.368857007555827, 1.3760117094941653, 1.3830648199084805, 1.390000416239392, 1.3968033832664195, 1.4034594778784566, 1.409955384345944, 1.4162787599482285, 1.422418270877234, 1.4283636184330082, 1.4341055556408762, 1.4396358945449528, 1.4449475045608964 ], [ 1.1810299425504585, 1.1828715889966313, 1.1849152825273623, 1.187164191332538, 1.1896211293603292, 1.1922885499892404, 1.1951685434508563, 1.1982628373481423, 1.2015727989625604, 1.2050994372237676, 1.2088434012707, 1.2128049715630485, 1.2169840386883557, 1.2213800646204727, 1.225992021561735, 1.23081830499273, 1.235856620398449, 1.2411038472850304, 1.2465558890319217, 1.2522075218018174, 1.2580522587747545, 1.2640822461353007, 1.2702882040133165, 1.2766594195874634, 1.2831837924324174, 1.2898479258722868, 1.296637254029452, 1.3035361928752898, 1.3105283044272225, 1.3175964653677257, 1.324723033872821, 1.3318900107110836, 1.3390791924218104, 1.346272315562036, 1.3534511917151293, 1.3605978333080433, 1.3676945704119388, 1.3747241586972545, 1.3816698786466364, 1.3885156260411855, 1.3952459936544017, 1.4018463440290643, 1.4083028731830607, 1.4146026650933128, 1.4207337368416448, 1.42668507436969, 1.4324466588762128, 1.4380094839936766, 1.4433655639942524, 1.4485079333914437 ], [ 1.1906454355252707, 1.1925342759481636, 1.1946172693189123, 1.1968973604724114, 1.1993771646424336, 1.2020589613983559, 1.204944691302275, 1.2080359544385526, 1.211334009382794, 1.2148397704881273, 1.2185538006281524, 1.2224762958533733, 1.2266070579523207, 1.2309454508766464, 1.2354903376361557, 1.240239995809868, 1.2451920123431104, 1.250343161660204, 1.2556892748418274, 1.2612251109031427, 1.2669442431191575, 1.2728389731079788, 1.278900282766868, 1.285117829658816, 1.2914799861789865, 1.2979739180828997, 1.3045856947129364, 1.311300421882485, 1.318102388638452, 1.3249752204504524, 1.3319020331459286, 1.3388655836514838, 1.3458484150456265, 1.352832994490337, 1.3598018433095942, 1.3667376588964149, 1.3736234283382474, 1.3804425337274224, 1.3871788491252972, 1.3938168291162412, 1.400341588847732, 1.4067389754224886, 1.4129956304974756, 1.41909904395749, 1.4250375985687573, 1.4308006055786509, 1.436378331307895, 1.4417620148761698, 1.4469438773050725, 1.4519171223477567 ], [ 1.2001291011284443, 1.2020625237385187, 1.2041823466032633, 1.206491299275077, 1.2089918038665286, 1.2116859687562984, 1.2145755840595278, 1.2176621179012417, 1.2209467120296407, 1.2244301747521535, 1.2281129686316792, 1.231995189940789, 1.2360765366737152, 1.240356262123815, 1.244833111812855, 1.2495052430247686, 1.2543701283515156, 1.259424447320451, 1.2646639729376656, 1.2700834622651127, 1.2756765613157837, 1.2814357341336144, 1.2873522238329738, 1.293416049990201, 1.2996160428632162, 1.305939911331087, 1.3123743388664582, 1.3189051005708194, 1.325517194219743, 1.3321949790359646, 1.3389223171164102, 1.345682713734592, 1.3524594538971446, 1.359235733448385, 1.3659947836742132, 1.3727199887878525, 1.3793949959372998, 1.3860038175092244, 1.3925309255622509, 1.3989613382377624, 1.40528069799455, 1.411475341511066, 1.417532361106875, 1.4234396575588, 1.4291859842295145, 1.4347609824866616, 1.4401552084663072, 1.4453601513220198, 1.4503682431952454, 1.455172861238811 ], [ 1.2094650898442794, 1.2114403802035332, 1.2135944661506237, 1.2159298687355276, 1.2184488212696096, 1.2211532624535257, 1.2240448304253315, 1.2271248567229427, 1.2303943587424098, 1.2338540288491506, 1.2375042179217584, 1.2413449108625767, 1.245375691603624, 1.2495956954883578, 1.2540035477227647, 1.2585972879135698, 1.2633742825009033, 1.2683311289664052, 1.27346355773234, 1.2787663392391053, 1.2842332043767188, 1.289856785968829, 1.2956285873479478, 1.3015389815050913, 1.3075772413649591, 1.3137315990143592, 1.3199893296622267, 1.3263368549609633, 1.3327598600452248, 1.3392434190409097, 1.3457721245906367, 1.352330217879687, 1.3589017165470452, 1.3654705386287491, 1.3720206212686235, 1.3785360333511147, 1.385001081489642, 1.391400408976257, 1.3977190873976633, 1.4039427006765224, 1.410057421327746, 1.4160500787421575, 1.4219082193360402, 1.4276201584401411, 1.4331750238498913, 1.438562791019622, 1.4437743099565679, 1.4488013239523794, 1.4536364803771198, 1.458273333849041 ], [ 1.218638792948419, 1.2206531476991556, 1.2228388463965238, 1.2251982073973227, 1.227733278695381, 1.2304458302618027, 1.2333373465926711, 1.2364090184692629, 1.2396617326103245, 1.2430960575874745, 1.2467122241359099, 1.2505100978939956, 1.254489142727839, 1.2586483732212324, 1.2629862956953553, 1.267500838276324, 1.272189271984399, 1.2770481264151385, 1.2820731050687635, 1.287259006458883, 1.292599657516919, 1.2980878653377799, 1.303715391999431, 1.3094729552467483, 1.3153502556170038, 1.3213360284996747, 1.327418117991813, 1.3335835684068384, 1.33981872892789, 1.3461093670500677, 1.3524407869514192, 1.358797949591987, 1.3651655920235752, 1.3715283440097488, 1.3778708405628473, 1.3841778293926565, 1.3904342725408732, 1.3966254416669588, 1.4027370065774383, 1.4087551166734273, 1.4146664750478584, 1.4204584050083155, 1.4261189088435327, 1.431636718697888, 1.4370013394720549, 1.4422030837310682, 1.4472330986722066, 1.4520833852831228, 1.4567468099019434, 1.4612171084728667 ], [ 1.2276368355333964, 1.2296873768014571, 1.2319019673148146, 1.2342827278974406, 1.236831524271998, 1.2395499585201797, 1.2424393601751524, 1.2455007760026688, 1.2487349572821365, 1.252142343188359, 1.255723038745089, 1.2594767858273423, 1.2634029258897257, 1.2675003535441223, 1.271767460829211, 1.2762020729935908, 1.2808013777809824, 1.2855618514248615, 1.2904791856400575, 1.2955482206291504, 1.3007628893187995, 1.3061161776072232, 1.311600104366053, 1.317205723453171, 1.3229231483082664, 1.3287415980943325, 1.3346494630456214, 1.3406343858194778, 1.3466833552496926, 1.3527828088991938, 1.3589187410962886, 1.3650768135872382, 1.3712424664436025, 1.3774010273493154, 1.3835378178171638, 1.3896382552295743, 1.395687949864013, 1.401672796259853, 1.4075790584248418, 1.4133934484813842, 1.4191031984289242, 1.4246961247601815, 1.4301606857248956, 1.4354860310904476, 1.4406620443084288, 1.4456793770613607, 1.4505294762342062, 1.4552046034301234, 1.45969784722673, 1.4640031284453685 ], [ 1.2364470633504954, 1.2385308536995954, 1.2407715587333263, 1.2431711065465223, 1.2457311835345224, 1.2484532249749043, 1.2513384047983498, 1.2543876236840916, 1.257601494439557, 1.260980323493051, 1.264524087280337, 1.2682324023817042, 1.2721044885065957, 1.2761391238576882, 1.2803345930442398, 1.2846886285298884, 1.2891983475255682, 1.293860187163319, 1.2986698415699145, 1.3036222049520068, 1.308711324887134, 1.313930369630515, 1.3192716124246764, 1.3247264346529073, 1.330285348382655, 1.3359380375939098, 1.341673416343374, 1.3474797013795052, 1.3533444963263244, 1.359254884461976, 1.365197527261164, 1.3711587661628202, 1.3771247253886525, 1.3830814140131995, 1.3890148258327024, 1.3949110358781138, 1.4007562926600918, 1.4065371054245992, 1.4122403258444947, 1.417853223685185, 1.4233635560717677, 1.4287596300588277, 1.434030358270676, 1.4391653074432782, 1.4441547397638437, 1.4489896469710701, 1.4536617772493794, 1.4581636550226271, 1.4624885938260825, 1.4666307025071361 ], [ 1.2450585238404952, 1.2471725815720929, 1.2494365823133644, 1.251852266121783, 1.2544211431664778, 1.2571444835016568, 1.2600233057067751, 1.2630583636233477, 1.2662501303003775, 1.2695987781917497, 1.2731041546590147, 1.2767657519516602, 1.2805826710910477, 1.2845535794887537, 1.2886766626820065, 1.292949571238992, 1.2973693646151825, 1.3019324544417317, 1.3066345502935761, 1.311470611314844, 1.3164348070936591, 1.3215204908451277, 1.3267201873068724, 1.3320255968604913, 1.3374276163882834, 1.3429163763933816, 1.3484812930704033, 1.3541111333903988, 1.3597940908881478, 1.3655178696970562, 1.3712697744237885, 1.3770368036337381, 1.3828057449727045, 1.3885632702327089, 1.3942960289466886, 1.3999907393474769, 1.405634275741645, 1.4112137515268768, 1.416716597226102, 1.4221306330285572, 1.427444135424418, 1.4326458976018082, 1.437725283348736, 1.4426722742720222, 1.4474775102136888, 1.452132322813991, 1.456628762240266, 1.4609596171711163, 1.4651184281955958, 1.46909949485497 ], [ 1.2534614417625343, 1.255602756315195, 1.257887207540131, 1.260316352227485, 1.262891527763251, 1.265613841211266, 1.2684841570442547, 1.271503082854796, 1.274670952305478, 1.2779878045553392, 1.2814533594487747, 1.2850669878947094, 1.2888276771139862, 1.2927339907973614, 1.2967840246861315, 1.3009753586321613, 1.3053050067649645, 1.3097693679216962, 1.3143641789053173, 1.3190844733548348, 1.3239245489868146, 1.328877945682262, 1.3339374363699186, 1.3390950319585335, 1.344342000785178, 1.3496689022706332, 1.3550656337922178, 1.3605214892579616, 1.3660252275210265, 1.3715651486061147, 1.3771291757040722, 1.3827049409888874, 1.3882798734821238, 1.3938412873973816, 1.3993764696139688, 1.4048727651353734, 1.4103176595742815, 1.4156988578673406, 1.4210043585600527, 1.4262225231181505, 1.4313421398207524, 1.4363524818771278, 1.4412433594871104, 1.4460051656384514, 1.4506289155052585, 1.45510627938149, 1.4594296091527896, 1.4635919583788648, 1.4675870961258595, 1.4714095147530073 ], [ 1.2616471898761432, 1.2638127370696774, 1.2661147821830352, 1.2685547037228213, 1.27113367019341, 1.2738526286315572, 1.276712291660061, 1.2797131224916567, 1.2828553172789403, 1.2861387842169831, 1.2895631188788357, 1.2931275754141818, 1.2968310334771986, 1.3006719610706385, 1.304648373887321, 1.3087577921705826, 1.3129971965606688, 1.3173629847925845, 1.3218509314064941, 1.3264561527739895, 1.3311730796980503, 1.335995439602238, 1.3409162499042278, 1.3459278236167256, 1.3510217875985877, 1.356189113260549, 1.3614201589759323, 1.3667047230025466, 1.3720321054115152, 1.3773911773436454, 1.3827704558598175, 1.3881581826931555, 1.393542405319233, 1.3989110589088942, 1.4042520478940654, 1.4095533260438282, 1.4148029741058348, 1.4199892742109688, 1.425100780365887, 1.4301263844691132, 1.4350553773843262, 1.4398775046919774, 1.444583016820503, 1.4491627133334322, 1.453607981220661, 1.4579108271122094, 1.4620639034013285, 1.4660605283309358, 1.4698947001623597, 1.473561105607257 ], [ 1.2696082551743748, 1.2717950120582648, 1.2741117977721492, 1.2765598178225444, 1.2791400762506062, 1.2818533637756517, 1.2847002443979878, 1.2876810399877698, 1.2907958123780066, 1.2940443425131993, 1.2974261062918278, 1.3009402468902531, 1.304585543570953, 1.308360377256092, 1.3122626934754296, 1.3162899636514644, 1.3204391460319265, 1.32470664788022, 1.3290882907474253, 1.3335792807396714, 1.3381741856393645, 1.34286692053336, 1.3476507432613667, 1.3525182605577286, 1.357461445265829, 1.3624716645076038, 1.3675397182372553, 1.3726558872336228, 1.377809989309426, 1.3829914423432095, 1.3881893326627592, 1.3933924873118513, 1.3985895487946218, 1.4037690509940748, 1.4089194950855655, 1.414029424398574, 1.4190874973114502, 1.424082557387882, 1.4290037000782687, 1.4338403354128137, 1.4385822462073843, 1.443219641389296, 1.4477432041297447, 1.4521441345448962, 1.4564141867994687, 1.460545700515919, 1.46453162645985, 1.4683655465374668, 1.4720416882034852, 1.4755549334374498 ], [ 1.2773382011992578, 1.2795431602932592, 1.2818718506965734, 1.284325310541944, 1.2869043843551842, 1.2896097109641023, 1.2924417098618097, 1.2954005656387058, 1.2984862101080104, 1.301698301797332, 1.3050362025710158, 1.3084989512902938, 1.312085234610892, 1.3157933552558916, 1.3196211983725028, 1.3235661968652006, 1.327625296867824, 1.331794924743913, 1.3360709571577578, 1.3404486958132396, 1.3449228483990399, 1.3494875171047773, 1.354136195796292, 1.358861776584279, 1.363656566124193, 1.3685123115828752, 1.373420235834701, 1.3783710811333405, 1.3833551602617602, 1.3883624139990234, 1.393382473653888, 1.3984047273926683, 1.4034183891183905, 1.4084125687250957, 1.4133763426419685, 1.4182988236854803, 1.423169229345202, 1.4279769477351851, 1.432711600544014, 1.4373631024117728, 1.4419217162505393, 1.4463781041078636, 1.4507233732501936, 1.45494911721702, 1.4590474516671195, 1.4630110449061684, 1.4668331430508237, 1.470507589847442, 1.474028841224035, 1.4773919747109 ], [ 1.2848316269906266, 1.2870518097416226, 1.289389599562137, 1.2918458731895426, 1.294421321089331, 1.2971164352781994, 1.2999314956376224, 1.302866554410142, 1.3059214185945962, 1.3090956300119647, 1.3123884429059867, 1.3157987990743152, 1.3193253006958212, 1.3229661812215268, 1.3267192749195904, 1.3305819858913943, 1.3345512575864646, 1.3386235440146304, 1.3427947839635284, 1.3470603795602758, 1.3514151804579786, 1.3558534747803799, 1.3603689877314094, 1.3649548884898326, 1.369603805688091, 1.3743078514465532, 1.379058653625968, 1.3838473956929331, 1.3886648633797618, 1.3935014971674182, 1.3983474495274582, 1.403192645820287, 1.4080268477531406, 1.412839718341657, 1.417620887383071, 1.4223600165283947, 1.427046863127788, 1.431671342112818, 1.4362235852677225, 1.440693997327463, 1.4450733084220202, 1.4493526224644695, 1.4535234611545125, 1.457577803340428, 1.4615081195507342, 1.4653074015728011, 1.4689691870191395, 1.4724875788830682, 1.4758572601433393, 1.4790735035318716 ] ], "zauto": true, "zmax": 1.4790735035318716, "zmin": -1.4790735035318716 }, { "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.014264361966753918, 0.012685999724610283, 0.011316217119751813, 0.010181139422825744, 0.009318912060506977, 0.008776140817333118, 0.008594891327002693, 0.008793495067909798, 0.00935534626919469, 0.010236299283686747, 0.011382777214311036, 0.012746067710540035, 0.014287858280445091, 0.015979983466558254, 0.017802110090447573, 0.019739316463081583, 0.021780189937248347, 0.023915493031085446, 0.02613728195984785, 0.02843834759908195, 0.030811875969820934, 0.03325125526822262, 0.03574997971280474, 0.038301616625634013, 0.04089981393151887, 0.043538332393680976, 0.04621109168359609, 0.048912222643591956, 0.05163612036947488, 0.05437749434718733, 0.05713141303411928, 0.059893341123402645, 0.06265916836416256, 0.06542522929927236, 0.06818831367008067, 0.07094566755565358, 0.07369498558177695, 0.07643439476362669, 0.07916243074160233, 0.08187800733392783, 0.08458038046213616, 0.08726910760443822, 0.0899440039954685, 0.09260509681735789, 0.09525257861584667, 0.09788676112698397, 0.1005080306172062, 0.10311680572591563, 0.10571349866064256, 0.10829848043663931 ], [ 0.012519998838477372, 0.011000676657635804, 0.009691067111010579, 0.008613289462318943, 0.007802923148159708, 0.007306484931245668, 0.007167152495420747, 0.007402014810743731, 0.007989738418718723, 0.008881604904779022, 0.01002301499422173, 0.011367572877255629, 0.01288069720555734, 0.014537870751541138, 0.016321683340839315, 0.01821930986657806, 0.02022073087688418, 0.02231757451821322, 0.02450239440911067, 0.02676823425022086, 0.029108377086947197, 0.0315162132195279, 0.03398518456420318, 0.0365087781335857, 0.03908055047896152, 0.041694170691306265, 0.04434347328282444, 0.04702251477238892, 0.049725629536237936, 0.05244748172736876, 0.05518311097876468, 0.05792797029310468, 0.06067795505792112, 0.06342942255889292, 0.06617920172812722, 0.06892459317969622, 0.07166335986323834, 0.07439370891365196, 0.07711426549263808, 0.07982403960397329, 0.08252238701695565, 0.08520896554713504, 0.08788368801794963, 0.0905466732582452, 0.09319819647856771, 0.09583864031423266, 0.09846844772835335, 0.10108807783804742, 0.10369796556831469, 0.10629848585844828 ], [ 0.010932971225663765, 0.009486373791629872, 0.00825494565284787, 0.007255378546159232, 0.006517895580088597, 0.006084930789441856, 0.005996569113558427, 0.006266187861983098, 0.006868790865634666, 0.007755114323571967, 0.008873889678209764, 0.010183853394067984, 0.011655280130518534, 0.013267339044735649, 0.015005077788263049, 0.016857159898915137, 0.018814386407975656, 0.02086878290510309, 0.02301305042303624, 0.02524024248783337, 0.02754358321356583, 0.029916375189979978, 0.03235196581645865, 0.03484375207168977, 0.03738521024068647, 0.039969941063987935, 0.04259172331581162, 0.045244570567035486, 0.047922787155807105, 0.05062102034202406, 0.05333430636305189, 0.05605810870403892, 0.05878834739256261, 0.061521418556469754, 0.06425420386515136, 0.06698406982021814, 0.06970885717705108, 0.07242686106460702, 0.07513680262524451, 0.07783779321584416, 0.08052929239092871, 0.08321106102408493, 0.08588311101164829, 0.08854565303978093, 0.09119904388240548, 0.09384373463395744, 0.09648022117154369, 0.09910899799159757, 0.1017305163844592, 0.1043451477057349 ], [ 0.009496664140760842, 0.008133134889378951, 0.006996107613769548, 0.006095546663791601, 0.0054527981229320725, 0.005100459508306764, 0.005069522493173681, 0.005367478743418556, 0.005969316787783245, 0.0068314924057298184, 0.007910773577299721, 0.009173006166946234, 0.010593420180921027, 0.01215413580531426, 0.01384172718791291, 0.015645509320828012, 0.017556455559569306, 0.019566534321630358, 0.02166830283338658, 0.023854658160026344, 0.026118688451316784, 0.02845359162288331, 0.03085264140240904, 0.033309187205108226, 0.035816677852460045, 0.03836870132726414, 0.04095903429211702, 0.04358169628748196, 0.04623100449301541, 0.048901625741514534, 0.05158862315929895, 0.0542874954011866, 0.056994206976949506, 0.05970520864661884, 0.06241744730460838, 0.0651283651821936, 0.067835888575067, 0.0705384066453583, 0.07323474115143033, 0.07592410821955209, 0.07860607348341554, 0.08128050207637681, 0.08394750506262201, 0.08660738393592457, 0.089260574796899, 0.09190759374492068, 0.09454898489315962, 0.09718527224231398, 0.09981691643985637, 0.10244427721841523 ], [ 0.008211079038097084, 0.00693564678852507, 0.005905188154553807, 0.00512165354802847, 0.004592906016710899, 0.004334264432822613, 0.004361206864885997, 0.004675367485277778, 0.005258179171601483, 0.0060788188624816735, 0.00710568757392492, 0.008312225033769202, 0.009677605190319013, 0.0111855361914355, 0.012822919440298664, 0.014578835953047497, 0.016443850543177877, 0.018409536392109987, 0.020468143537530795, 0.02261236596624873, 0.024835181958236367, 0.027129752122261774, 0.029489363710474555, 0.03190741156778599, 0.034377407112043845, 0.03689300767170409, 0.03944805946235042, 0.04203664843519355, 0.044653154132505056, 0.047292302513414874, 0.04994921446683795, 0.0526194474158107, 0.05529902805031254, 0.05798447481228047, 0.06067280930072534, 0.06336155626808218, 0.06604873233860446, 0.06873282399300623, 0.07141275572609249, 0.07408784959099989, 0.07675777759048702, 0.07942250855760848, 0.08208225128239639, 0.08473739568556063, 0.08738845381567736, 0.09003600235575317, 0.09268062817485057, 0.09532287825927255, 0.0979632151176474, 0.10060197848799886 ], [ 0.007091702761518982, 0.005902670680460733, 0.004984673309279009, 0.004330022713030295, 0.003926868487564844, 0.0037651213216759057, 0.0038409556928824394, 0.004154100666174163, 0.004700105926078054, 0.005466273871086295, 0.006434020083781801, 0.0075832372374097685, 0.008895147912043613, 0.010353347279297528, 0.011943849379893833, 0.01365475611847275, 0.01547583588857184, 0.017398119828615104, 0.019413553188277387, 0.021514713715778153, 0.023694598279834857, 0.025946473204189704, 0.028263780487156307, 0.03064009051396827, 0.03306909157910256, 0.03554460704759987, 0.03806063190490807, 0.04061138150817038, 0.043191346416344985, 0.04579534818292859, 0.04841859192880633, 0.051056712376469464, 0.05370581082641108, 0.05636248129585736, 0.059023824720011185, 0.06168745073603194, 0.0643514671277088, 0.06701445750204525, 0.06967544819449195, 0.07233386575426086, 0.07498948664176391, 0.07764238097321179, 0.08029285227088809, 0.0829413752203006, 0.08558853339914883, 0.08823495883188018, 0.09088127504545968, 0.09352804506766274, 0.09617572553239968, 0.09882462775300188 ], [ 0.0061828749352288714, 0.005072482656320463, 0.004264952631772323, 0.0037403501080822167, 0.0034595866819003927, 0.0033816206253677343, 0.003485705187837901, 0.0037768791882247113, 0.004270731443576303, 0.0049748641727693195, 0.005882718811601802, 0.00697820636558743, 0.008242194278130473, 0.009656436790650268, 0.01120504948793176, 0.012874679297623115, 0.01465416138165856, 0.016534040166490484, 0.01850610829933273, 0.020563019014573948, 0.02269798623077726, 0.024904569285114055, 0.027176532001991768, 0.029507763347444815, 0.031892246796304334, 0.034324066486534424, 0.03679743959211258, 0.039306765786192015, 0.0418466860543283, 0.044412144411736035, 0.04699844727580601, 0.04960131635038226, 0.05221693189589063, 0.054841964189872645, 0.05747359182546687, 0.060109506249871734, 0.06274790261078815, 0.06538745755620155, 0.06802729512223568, 0.07066694224418336, 0.07330627573683215, 0.07594546280990108, 0.07858489731219598, 0.08122513393385089, 0.08386682254248806, 0.08651064469191165, 0.08915725413030352, 0.09180722286185523, 0.09446099399748148, 0.09711884228491678 ], [ 0.00557099911050017, 0.00453018714663197, 0.003822271584565053, 0.0034108224571131954, 0.0032251763488926194, 0.0031968287270387405, 0.0032971829373719167, 0.003542835372059101, 0.003970903811037761, 0.004608214454943846, 0.005457736070541196, 0.006504408781379546, 0.007726307540857842, 0.009101852694905694, 0.010612556712108952, 0.01224340267490106, 0.013982347944541479, 0.01581962725694454, 0.017747100981111964, 0.019757721312594168, 0.0218451263341786, 0.024003350396918893, 0.026226632898266936, 0.02850930677735848, 0.030845749361406327, 0.03323038016448853, 0.03565769229271707, 0.03812230605179532, 0.040619035143340976, 0.04314295748555758, 0.045689484216697517, 0.04825442184281533, 0.05083402377311369, 0.05342502864301297, 0.05602468385475624, 0.05863075366845581, 0.06124151195683065, 0.06385572039981524, 0.06647259344533199, 0.0690917518044801, 0.07171316658504362, 0.07433709639776609, 0.07696401989593582, 0.0795945662317682, 0.08222944583637225, 0.08486938376102304, 0.08751505756669332, 0.0901670414317389, 0.09282575778298217, 0.09549143736422962 ], [ 0.005374849732606428, 0.004398777433946224, 0.0037681033104872163, 0.0034265953274683673, 0.003280748186537076, 0.003250588184954039, 0.0033096116439367464, 0.0034861124147330946, 0.0038347213826715014, 0.004398319534457529, 0.00518721340577844, 0.006185271906421893, 0.0073660466478671265, 0.008703574706891266, 0.010176297176637521, 0.011767417286916675, 0.013464074718693321, 0.015256329194542275, 0.017136266280188658, 0.019097292407926136, 0.021133611041919076, 0.023239853206206043, 0.025410833775752005, 0.02764140759629555, 0.029926402944603334, 0.03226061305401565, 0.03463882923824342, 0.03705590161835917, 0.03950681569394215, 0.041986775064791065, 0.04449128252752217, 0.04701621353713623, 0.049557877623750975, 0.052113064777074836, 0.054679075052940944, 0.05725373072129964, 0.0598353711748298, 0.062422831564006645, 0.06501540673123608, 0.06761280249336933, 0.070215076675446, 0.07282257253294276, 0.07543584731778895, 0.07805559874722968, 0.08068259202911966, 0.08331758989062128, 0.08596128776216251, 0.08861425590255145, 0.09127688983575459, 0.09394937002921848 ], [ 0.005682632818271999, 0.004763206715612449, 0.004171878994246, 0.0038383922782460325, 0.003667386144909041, 0.003585419928202793, 0.0035724652866812455, 0.003662654943545103, 0.003919711783707913, 0.004398052114121396, 0.0051152014220098956, 0.006054810766956049, 0.00718606870373571, 0.00847833066032457, 0.009906616284696464, 0.011452092882518599, 0.013100928481312387, 0.014842929504376774, 0.016670377646923376, 0.018577133546648132, 0.020557980499052202, 0.02260816485047889, 0.024723092875128885, 0.02689815034694962, 0.029128616685502647, 0.03140965000289506, 0.03373632293409603, 0.036103692172203265, 0.0385068873927266, 0.040941207836873904, 0.04340221724234849, 0.045885830031016935, 0.04838838365233885, 0.05090669371899757, 0.05343809005452094, 0.055980433014747456, 0.05853211046768772, 0.06109201664434171, 0.06365951472985552, 0.06623438556806999, 0.06881676521600527, 0.07140707431594864, 0.07400594235584523, 0.0766141298678002, 0.07923245147474825, 0.08186170244635295, 0.08450259108126454, 0.08715567881381321, 0.08982132947369965, 0.09249966863435005 ], [ 0.006482857333893485, 0.005595609508310536, 0.004998185811353953, 0.0046194436167208315, 0.004377587685095684, 0.00421391111333356, 0.004114797165398448, 0.004113792581780482, 0.0042741248811921295, 0.004655328471933356, 0.005282861631667052, 0.0061443933005990254, 0.007207875725292356, 0.008439114979394974, 0.009809720772805884, 0.011298459525850624, 0.012890122937207274, 0.014573926773586175, 0.0163420946355926, 0.018188757111058544, 0.020109144000859513, 0.022099017326857522, 0.024154295463427105, 0.02627082691888874, 0.028444279463353418, 0.030670115733937277, 0.03294363072347022, 0.035260030257977276, 0.03761453300828988, 0.0400024818529771, 0.04241945348060538, 0.04486135791802514, 0.04732452214008348, 0.0498057540271719, 0.05230238469570399, 0.05481228866001393, 0.05733388243203221, 0.05986610306962258, 0.06240836888271952, 0.06496052502796115, 0.06752277708729756, 0.07009561594622124, 0.07267973736947424, 0.07527595962109991, 0.07788514229757378, 0.08050810924757432, 0.08314557805588518, 0.08579809809395976, 0.08846599861356172, 0.0911493478131259 ], [ 0.007686102521420041, 0.006797406820802051, 0.006157329962943677, 0.005703015416780079, 0.005370023506846486, 0.005114470215417228, 0.004927877944342636, 0.004839727542468213, 0.004906022911992531, 0.005184288239121786, 0.0057061242915363505, 0.0064673419435313595, 0.007439809469482284, 0.00858884546035483, 0.009883697496647083, 0.011300728548272418, 0.01282297606345866, 0.014438624560892836, 0.016139447470982702, 0.017919526187463626, 0.01977428388324397, 0.02169979601895733, 0.02369232717201703, 0.02574804777811313, 0.027862890617539094, 0.030032512379959474, 0.03225233038413461, 0.03451760893283483, 0.03682357406557957, 0.03916553962194966, 0.04153903142575244, 0.04393989991420045, 0.046364414580256336, 0.04880933614040301, 0.05127196440434695, 0.05375016145811715, 0.05624235104249807, 0.05874749598047633, 0.061265056235654966, 0.06379493071196976, 0.06633738626164272, 0.06889297757022204, 0.0714624616435687, 0.07404671053673656, 0.07664662574537418, 0.07926305733687312, 0.0818967304485279, 0.08454818124792036, 0.08721770386707173, 0.08990530922097338 ], [ 0.009194532712057921, 0.008275707728588247, 0.007570839073264123, 0.007028143281983406, 0.006598619328531308, 0.006250453989534769, 0.005978928314673724, 0.005808565379011846, 0.005785691157998334, 0.0059610489330161835, 0.006368360620765017, 0.0070121284550048926, 0.00787219197678144, 0.00891738636997398, 0.01011691223395197, 0.011445586870538692, 0.012884753740329111, 0.01442129783616566, 0.016046183854708795, 0.017753093629433465, 0.019537332755499955, 0.021395022085363306, 0.023322541558781353, 0.025316182805822502, 0.027371967215120138, 0.02948558951889413, 0.03165245131172601, 0.03386775381419938, 0.03612662437011194, 0.03842425633818758, 0.040756046912960635, 0.043117721759282475, 0.04550543904584543, 0.04791586848578612, 0.05034624337932088, 0.05279438548792994, 0.05525870395058095, 0.05773817047480028, 0.06023227377787268, 0.06274095677482973, 0.06526454034829407, 0.06780363771212257, 0.07035906340644354, 0.07293174084104587, 0.07552261204265213, 0.07813255287018424, 0.08076229645871374, 0.08341236706422248, 0.08608302584128569, 0.08877422943170976 ], [ 0.010934418956882323, 0.009966220468937931, 0.009185278411080642, 0.008550312004096233, 0.008024540354624618, 0.007585188637883207, 0.007230058484787611, 0.006979031275736571, 0.0068691197278445875, 0.006942728839180454, 0.00723220390172264, 0.0077484509625906075, 0.00848037842521589, 0.009403401713568233, 0.010489477347909174, 0.011713551018076212, 0.013055970322558001, 0.014502436485105916, 0.016042940533032363, 0.01767049036156456, 0.01937997293709744, 0.021167261953837432, 0.023028581496869885, 0.024960098066350148, 0.026957700497634036, 0.02901692492253715, 0.031132984256766846, 0.033300866435729326, 0.03551547151615601, 0.03777176397043507, 0.040064922423346964, 0.042390474335140496, 0.04474440753468867, 0.04712325402054727, 0.0495241441473333, 0.05194483132611035, 0.054383688830697635, 0.05683968134805276, 0.0593123146450533, 0.06180156722229681, 0.06430780813505502, 0.06683170530783766, 0.06937412866244426, 0.0719360522233904, 0.07451845906329575, 0.07712225251391103, 0.07974817651478429, 0.0823967473296057, 0.08506819816667782, 0.08776243753612369 ], [ 0.012855522474259211, 0.011826471218971615, 0.010964425521937202, 0.010236942316931733, 0.009616471597727435, 0.00908673009172965, 0.008647054880403314, 0.008313362793784989, 0.008114799349713372, 0.00808588171086457, 0.008255776559562476, 0.008639027634525438, 0.00923250787555499, 0.01001946019126951, 0.010976862416811946, 0.01208175150777706, 0.013314682467372971, 0.014660711181015026, 0.016108963386145092, 0.017651645713328112, 0.019282986373466218, 0.020998327778317585, 0.02279344636378365, 0.024664102834228162, 0.02660579366733166, 0.028613662411576965, 0.030682527365157537, 0.032806985721490635, 0.034981560421717836, 0.03720086304042521, 0.03945975295868979, 0.04175347922100156, 0.04407779654701932, 0.046429050933185834, 0.04880423323983039, 0.05120100129177818, 0.05361767251667714, 0.0560531901748558, 0.058507066931654673, 0.06097930997955369, 0.06347033218851877, 0.06598085387537453, 0.06851179974538557, 0.07106419537191626, 0.07363906724413047, 0.07623734993644417, 0.07885980335531372, 0.0815069423294661, 0.0841789800678818, 0.08687578626097008 ], [ 0.014922947704217848, 0.01382661014728345, 0.012881572096682453, 0.012062439907150498, 0.011348482032943957, 0.010727963444669223, 0.010201045204939559, 0.009780378878339152, 0.009488830539223232, 0.009354244216946821, 0.009402136207421818, 0.009648652385681796, 0.010096799134101607, 0.01073746613659321, 0.011553938967633142, 0.012527076301665654, 0.013639054953684624, 0.014875148117355913, 0.016223995486221637, 0.01767704974224568, 0.01922772968395964, 0.02087059152085139, 0.022600664320126567, 0.02441299465177112, 0.02630239120646012, 0.028263334800295546, 0.030290010700870815, 0.03237642114629117, 0.03451654165442039, 0.03670449233714161, 0.0389347031799775, 0.04120205914516285, 0.04350201658315596, 0.04583068673191031, 0.048184885191195494, 0.05056214841609613, 0.0529607197258428, 0.055379508282897776, 0.057818025122338974, 0.06027630070753411, 0.06275478871354638, 0.06525426081906333, 0.06777569722464259, 0.07032017740448039, 0.07288877523803068, 0.07548246216146923, 0.0781020213459166, 0.08074797518064065, 0.08342052755739822, 0.08611952166470122 ], [ 0.017110851598245838, 0.015943754200615702, 0.014915240592647473, 0.01400538606874885, 0.013198432954247928, 0.01248577875778787, 0.011867932032395986, 0.01135489489231106, 0.010964639797568647, 0.010719649231214467, 0.01064200516558473, 0.010748262727195493, 0.011045872544079597, 0.011532498394609179, 0.012198162004904848, 0.013028802517977063, 0.014009593206863596, 0.015127073551731558, 0.01637000257312442, 0.017729301371721715, 0.01919753156783319, 0.020768249761855297, 0.022435437473574252, 0.024193094338061952, 0.0260350108836355, 0.027954698579990545, 0.029945438507197004, 0.03200040721133914, 0.03411284282062729, 0.036276222136137036, 0.038484427614086825, 0.04073189051462177, 0.04301370240852628, 0.04532569162570682, 0.0476644642911576, 0.050027411626034156, 0.05241268649440548, 0.05481915299760903, 0.057246313434540036, 0.05969421726664881, 0.062163356905076975, 0.06465455519059188, 0.06716884936010527, 0.06970737607303046, 0.07227126169839823, 0.07486152154065903, 0.07747897102636378, 0.08012415111727504, 0.08279726940313961, 0.08549815751004178 ], [ 0.019398788203556373, 0.018159102473035947, 0.017047165442546492, 0.016047227670564473, 0.01514713188904454, 0.01434040409034484, 0.013627601788061392, 0.013016590086074468, 0.012521559270432057, 0.012160782332069825, 0.011953376799385199, 0.01191570289888082, 0.012058362032554778, 0.012384739667442872, 0.012891468143663126, 0.013570347802411186, 0.014410746759976832, 0.015401593238316007, 0.0165325470453133, 0.01779438782876437, 0.019178884135340524, 0.020678431036592324, 0.022285667752738596, 0.023993191694604413, 0.02579340978214703, 0.02767852052487495, 0.02964059696487606, 0.03167173365207685, 0.033764223432962565, 0.03591073684090096, 0.038104484940832704, 0.04033935376247593, 0.04261000419368155, 0.044911935309830606, 0.04724151183717107, 0.04959595815002221, 0.05197332222624186, 0.054372413597877804, 0.05679271971064608, 0.05923430534482347, 0.061697699890402774, 0.0641837773123623, 0.06669363356913573, 0.06922846603583846, 0.07178945911763522, 0.07437767971591415, 0.07699398554643012, 0.07963894853797084, 0.0823127947090751, 0.0850153610833728 ], [ 0.021769782765973616, 0.02045657536383341, 0.01926142242783833, 0.018171731226811687, 0.01717793835898535, 0.01627499926539065, 0.015463347418935923, 0.0147491282562977, 0.014143610835497299, 0.013661790728087767, 0.013320326723371974, 0.013135116011256614, 0.013118983292289534, 0.013280035703493285, 0.013621088294945438, 0.014140189712202466, 0.01483187322510392, 0.015688575046390728, 0.016701772135587194, 0.01786265567703675, 0.019162388599014743, 0.020592106453517774, 0.022142824413786927, 0.023805362909997803, 0.02557034555866157, 0.02742827799998731, 0.029369690347434012, 0.03138531603836657, 0.03346628030164692, 0.035604277005773996, 0.03779171961613837, 0.04002185828425119, 0.04228885988259145, 0.044587851029149264, 0.04691492612096365, 0.04926712351332493, 0.05164237358699083, 0.054039422786739254, 0.056457737936140104, 0.05889739530130663, 0.06135895900051924, 0.06384335341502302, 0.06635173421347491, 0.06888536242351431, 0.07144548564548579, 0.074033229999922, 0.07664950574665122, 0.07929492874387987, 0.08196975907936965, 0.08467385736025827 ], [ 0.024209360921779926, 0.022822204813660818, 0.02154408283514722, 0.02036477566604503, 0.019276584668699394, 0.01827541589491137, 0.017361490816007467, 0.01653957347304596, 0.015818670947093893, 0.015211229125759515, 0.014731901874838655, 0.014396024911136627, 0.014217984709069076, 0.014209728275151498, 0.01437967202577741, 0.014732191502646739, 0.015267710313378592, 0.015983231449637023, 0.016873063207411197, 0.017929520804211344, 0.01914348763141555, 0.020504822932811775, 0.02200266091034502, 0.02362565719709954, 0.0253622219765424, 0.027200755496905604, 0.029129883650187954, 0.031138682367809003, 0.033216878295597434, 0.0353550162080619, 0.037544587930346526, 0.039778121363341405, 0.04204923087551166, 0.04435263185687415, 0.046684122943471996, 0.04904053967039358, 0.05141968337028377, 0.053820229167847664, 0.0562416169997932, 0.05868392971935481, 0.06114776249115534, 0.06363408779250415, 0.06614412035641026, 0.06867918627262605, 0.07124060017587372, 0.07382955398684714, 0.07644702004572584, 0.07909367072576709, 0.08176981578707677, 0.08447535788812607 ], [ 0.02670506896620998, 0.025243871268755033, 0.023883085433308696, 0.02261427327075021, 0.021431078498954183, 0.02033003601518598, 0.019311123912840497, 0.01837800085871568, 0.017537918144907905, 0.016801333985531113, 0.016181276495772678, 0.015692500057939224, 0.015350469128847114, 0.015170205318098099, 0.015165066103415623, 0.015345582987944828, 0.015718536831749282, 0.01628643839072192, 0.017047493419763898, 0.0179960030096462, 0.019123051320193984, 0.02041730822807244, 0.021865813393010955, 0.02345466962577319, 0.025169622760215737, 0.026996531408900657, 0.028921738645056407, 0.03093235826871804, 0.033016487012767264, 0.035163352948936154, 0.03736340952171907, 0.03960838371296326, 0.04189128569658175, 0.044206386101086494, 0.046549165854772874, 0.048916242696915684, 0.05130527786551007, 0.05371486620875379, 0.056144412953699284, 0.058594000516628, 0.06106424896316187, 0.06355617393428734, 0.06607104597199799, 0.06861025514827353, 0.07117518468917486, 0.07376709688229764, 0.07638703397577135, 0.07903573605806143, 0.08171357710301892, 0.08442051953700803 ], [ 0.029246232691306273, 0.02771118636279749, 0.026268182049737084, 0.02491012147475196, 0.02363162136828442, 0.022429635576215284, 0.02130390531929669, 0.020257213074458137, 0.019295448771597192, 0.018427520044583024, 0.01766513965087086, 0.01702249674559706, 0.01651576968044787, 0.016162389051435515, 0.015979951731476646, 0.015984763043750565, 0.016190151834105417, 0.016604891296287297, 0.017232134950702718, 0.018069151561337544, 0.019107869207635655, 0.020335985722337472, 0.021738304183557662, 0.023298010018728086, 0.02499773252456944, 0.026820345664901567, 0.028749528821372362, 0.03077013365384249, 0.03286840549416038, 0.03503210029261324, 0.037250528388418004, 0.03951454739077046, 0.04181651924791484, 0.044150241276447816, 0.04651085730892278, 0.048894752869547385, 0.05129943706964016, 0.05372341342423229, 0.05616604177560243, 0.05862739376539918, 0.06110810466479401, 0.06360922472835127, 0.06613207349059705, 0.06867810051104284, 0.07124875595849942, 0.07384537410032133, 0.07646907224428585, 0.07912066700961756, 0.08180060903494812, 0.0845089364292513 ], [ 0.03182382222368254, 0.03021542391248871, 0.0286908913931413, 0.027244142972714706, 0.025870512474004948, 0.024567243092584002, 0.023333871968602607, 0.022172501115154723, 0.02108797478446772, 0.020087998141204013, 0.01918322668687126, 0.01838732140143698, 0.017716898806016852, 0.017191221033471066, 0.016831407636459936, 0.016658976285867218, 0.016693701211682493, 0.016951106847770722, 0.0174402313078323, 0.018162350559887908, 0.01911103318354739, 0.020273379799501886, 0.021631926870394527, 0.02316664113824838, 0.024856616237585272, 0.02668131987257442, 0.02862140673373923, 0.03065918729368983, 0.032778854839076235, 0.034966556436449324, 0.03721036957405117, 0.039500224765714825, 0.04182779835238641, 0.044186388946365306, 0.04657078431024238, 0.04897712173652775, 0.05140274320155292, 0.05384604597749062, 0.05630632949224295, 0.058783639686548095, 0.06127861270114539, 0.06379232028113181, 0.0663261197072377, 0.06888151129108008, 0.07146000647151378, 0.074063009317249, 0.07669171379865336, 0.0793470185809404, 0.08202946037001443, 0.0847391660768355 ], [ 0.03443035488590652, 0.032749453537374025, 0.03114443323023464, 0.02960999704422976, 0.028142024502329006, 0.026737977091644702, 0.025397240079174974, 0.024121408397249324, 0.022914543059045788, 0.02178343506502412, 0.020737906986699976, 0.019791148558034426, 0.01896001388383304, 0.018265105736460636, 0.017730362182593613, 0.01738181026165409, 0.017245269732267775, 0.017343160326864827, 0.01769110282607153, 0.018295372165137973, 0.019152085546055332, 0.02024829773043729, 0.02156441274724329, 0.02307700044984622, 0.02476128619858363, 0.026592973148708184, 0.02854937992535773, 0.030610036673143697, 0.0327569151700081, 0.034974439616990045, 0.03724937997010748, 0.03957069043393353, 0.04192932771586336, 0.04431806591995888, 0.04673131479166427, 0.04916494279793586, 0.05161610429766922, 0.054083069529852076, 0.05656505650986298, 0.059062064685618476, 0.061574711070663014, 0.06410407036502308, 0.06665152119322057, 0.0692186009739565, 0.0718068720635074, 0.07441780168719427, 0.07705265781677105, 0.07971242261185672, 0.08239772438019607, 0.08510878829178428 ], [ 0.03705980246607956, 0.03530765700046098, 0.033623632770717844, 0.03200305677268393, 0.03044224633694621, 0.028938853647203718, 0.027492179576010294, 0.02610347162736975, 0.024776235602227963, 0.023516598933520653, 0.022333757949781576, 0.02124051200436495, 0.020253823518401118, 0.019395236753129493, 0.018690848290828014, 0.018170400228746605, 0.017865083566731797, 0.017803956512528685, 0.018009547409150287, 0.01849392642782091, 0.01925669075046342, 0.020285572509388578, 0.021559197032458483, 0.02305075993189438, 0.0247314451746461, 0.02657295228306278, 0.02854903876170078, 0.030636275607032783, 0.032814283436929485, 0.035065673526117475, 0.03737584569007625, 0.03973273229911427, 0.04212653451778584, 0.044549470830885264, 0.046995543834744906, 0.049460324564178905, 0.05194075110573876, 0.05443493793376069, 0.05694199314225583, 0.05946184188718115, 0.06199505554905245, 0.06454268718749012, 0.06710611468954197, 0.06968689356616262, 0.0722866216131733, 0.07490681763598599, 0.07754881617363815, 0.08021367969658322, 0.08290212915526482, 0.08561449309013025 ], [ 0.03970748763715275, 0.037885820400882834, 0.03612479377185428, 0.0344202527603986, 0.03276889256738249, 0.03116856109564375, 0.02961855457112427, 0.028119924804857248, 0.02667582874554945, 0.02529195814216121, 0.023977083277187543, 0.022743721051431867, 0.021608882083394843, 0.020594750292891293, 0.01972899632101695, 0.019044252512931382, 0.01857618973864992, 0.018359839546747286, 0.018424482294695357, 0.018788417163389592, 0.01945553791166309, 0.020415100935057974, 0.021644563893214477, 0.023114053188954275, 0.024790782269833504, 0.026642392677127504, 0.028638983503076143, 0.03075406923527971, 0.03296483673383134, 0.03525201737445043, 0.03759958558217862, 0.039994404058877935, 0.04242587475889464, 0.04488561901814698, 0.047367191819567514, 0.04986582693855833, 0.05237820697105724, 0.054902252228100364, 0.05743692365297123, 0.05998203647777728, 0.06253808288307022, 0.06510606326356451, 0.06768732674895883, 0.07028342235040645, 0.07289596250101966, 0.0755265008547344, 0.07817642604111655, 0.08084687269637937, 0.08353865056573269, 0.08625219186593719 ], [ 0.04236996422362983, 0.04048100216605861, 0.03864554346837425, 0.036859887570474016, 0.035121083655415476, 0.033427204577085125, 0.03177763093731759, 0.030173365489010912, 0.02861740813074886, 0.027115228149849045, 0.02567536819118196, 0.024310195946705408, 0.023036772758579738, 0.02187771673341888, 0.020861786690921556, 0.020023711650136618, 0.019402621301517833, 0.01903850533171085, 0.018966724173698855, 0.019211739544729097, 0.019782277223297704, 0.02066998362956866, 0.02185200699915063, 0.023296048116798765, 0.02496574071060926, 0.026824863019961422, 0.028839928217451308, 0.030981400203760653, 0.03322400450304917, 0.035546548838910966, 0.037931530889999905, 0.04036468898788689, 0.04283457006577697, 0.045332142672406005, 0.04785045951284642, 0.0503843639523626, 0.052930231851628, 0.05548574033188198, 0.05804965665218711, 0.06062164234419804, 0.0632020696346423, 0.06579184879203594, 0.06839226628722166, 0.07100483454196965, 0.0736311545699638, 0.07627279302293669, 0.07893117508598305, 0.08160749437610612, 0.08430264054972476, 0.08701714478401162 ], [ 0.04504488151841303, 0.04309138052348523, 0.04118465515555152, 0.039321427761938275, 0.03749910408690343, 0.03571602822699312, 0.03397175983786517, 0.03226739406959766, 0.030605953158844554, 0.028992884273634185, 0.02743669715706835, 0.02594976065749675, 0.024549238125931138, 0.02325806077469861, 0.02210569552266773, 0.02112825462043746, 0.020367275344088692, 0.019866458808418794, 0.019666121650469676, 0.01979627179406235, 0.020270577478526366, 0.021083809547075828, 0.02221382914591511, 0.023626886983653218, 0.025283784521395465, 0.027144925681214283, 0.02917351571217621, 0.03133709946695286, 0.033607980247851145, 0.035963026596926476, 0.03838321347446416, 0.04085309321747737, 0.04336028923928156, 0.04589504700989902, 0.0484498477301642, 0.05101907773846359, 0.053598742940858896, 0.056186217816737945, 0.058780020411898254, 0.06137960701257713, 0.06398518236357327, 0.06659752313280484, 0.06921781376350312, 0.07184749488916113, 0.07448812514135203, 0.07714125749705485, 0.07980833134098689, 0.08249058121700528, 0.08518896287404841, 0.08790409674080746 ], [ 0.04773083590247615, 0.04571608619623295, 0.04374185589823915, 0.04180528223738439, 0.03990414847888742, 0.0380371267965196, 0.0362040518570757, 0.03440624502636898, 0.03264691614287635, 0.03093167465651702, 0.029269181352016477, 0.027671960068086837, 0.026157355584235882, 0.02474855272135336, 0.023475441316409714, 0.02237490922071827, 0.021489907624879127, 0.02086652002571456, 0.020548600016978717, 0.020570609612122287, 0.02095078564247457, 0.021687474689845852, 0.022760283753333013, 0.024135225794229127, 0.02577134132572959, 0.02762644835042502, 0.029660946978301825, 0.03183974051455647, 0.034132832562806435, 0.03651517770531664, 0.038966196727199094, 0.04146919410966497, 0.04401079355090386, 0.046580436316608055, 0.04916995130903311, 0.05177319015564121, 0.05438571557316438, 0.057004531149755504, 0.05962784256792059, 0.06225484273252392, 0.0648855156255827, 0.06752045572286335, 0.07016070139577384, 0.07280758188392751, 0.07546257819067188, 0.07812719867174509, 0.08080287021023917, 0.08349084575758106, 0.08619212873281085, 0.08890741437305201 ], [ 0.050427214597396394, 0.04835502705338406, 0.0463176276054639, 0.04431257652895193, 0.04233806693365954, 0.04039316038126201, 0.03847805893246247, 0.03659443239459514, 0.034745825290049236, 0.03293817196648743, 0.031180447555330473, 0.02948547206873677, 0.027870855675794923, 0.026360010058820025, 0.024983033265321804, 0.023777088246982197, 0.022785662617512435, 0.022055950698682446, 0.02163383020902295, 0.021556830599830944, 0.021846958938411806, 0.02250621275144771, 0.02351680760792306, 0.024845793849276234, 0.026451732413096674, 0.028290892120059568, 0.030321586361878355, 0.03250651196713553, 0.03481359749596768, 0.03721596855668339, 0.039691491438545744, 0.042222174254631095, 0.04479356784656214, 0.04739422569677303, 0.050015238547949176, 0.0526498396148326, 0.05529306911795153, 0.05794148581357336, 0.06059291472451753, 0.06324622264614846, 0.06590111540439099, 0.06855795294334786, 0.07121758000594637, 0.07388117142950473, 0.07655009193805126, 0.07922577082149827, 0.08190959210266816, 0.08460280076485756, 0.08730642540535756, 0.09002121735402326 ], [ 0.05313403697931472, 0.05100871161324384, 0.04891300964198286, 0.046844932487210354, 0.04480312070248504, 0.04278708551384479, 0.0407974803687755, 0.038836429737715776, 0.03690793695212278, 0.03501839569072297, 0.0331772283973523, 0.031397664903308, 0.029697647724416344, 0.02810079359825955, 0.02663723572353185, 0.02534400363095244, 0.024264386015048645, 0.023445574361196625, 0.022934050528703138, 0.022768955109402148, 0.022975001337047114, 0.02355754178661906, 0.02450195121669277, 0.02577745387394088, 0.027343449324012174, 0.029155835104286768, 0.031171725592503648, 0.03335219688538079, 0.03566344215054286, 0.03807692269166958, 0.040569001486869274, 0.04312037315292111, 0.04571546050259694, 0.048341855109428, 0.05098982796311311, 0.05365191140587391, 0.056322543421689714, 0.058997762697138204, 0.06167494360128956, 0.06435256223497157, 0.06702998696146484, 0.06970728890349599, 0.07238506960389417, 0.07506430435884333, 0.07774620065916406, 0.08043207175726289, 0.0831232256661826, 0.08582086994798722, 0.08852603251855222, 0.09123949844129063 ], [ 0.055851798786042996, 0.05367807780921219, 0.05152941033773724, 0.04940426169574246, 0.047301757613292576, 0.04522191350082591, 0.04316590557421571, 0.0411363992753661, 0.03913795381935101, 0.037177523373883206, 0.03526507311745933, 0.033414318161302276, 0.03164356791874665, 0.029976606559652605, 0.028443446712105632, 0.02708064760911334, 0.025930707132494995, 0.02503990966068005, 0.0244541419161812, 0.02421282529353653, 0.024342243935236953, 0.02485053349884199, 0.025726413457937556, 0.02694211974173415, 0.02845906332841222, 0.03023394820824473, 0.03222366489300317, 0.0343883723209476, 0.036692980490056086, 0.03910754329988982, 0.04160704091238107, 0.04417088669493471, 0.046782354222319404, 0.04942802183789828, 0.052097274228589695, 0.05478187018980897, 0.057475572012204365, 0.06017382704823618, 0.06287349146840192, 0.06557258752206822, 0.06827008751999715, 0.07096571965918215, 0.07365979246039675, 0.07635303589692263, 0.07904645825009435, 0.08174121836055787, 0.08443851329596327, 0.08713948157604347, 0.0898451220369109, 0.09255622823013919 ], [ 0.05858132396596024, 0.056364332461501174, 0.05416843339719282, 0.05199257909878747, 0.049836414210003954, 0.04770050337497576, 0.04558660115461556, 0.04349797762979034, 0.04143981543105464, 0.03941969443318486, 0.03744817700762446, 0.035539495879871166, 0.033712322103155425, 0.03199054299238676, 0.030403897468636108, 0.028988192295108278, 0.027784674253363863, 0.026838035939083828, 0.02619264796148507, 0.025887129998430704, 0.02594829521266516, 0.02638635276286041, 0.027193227853336943, 0.02834463514254001, 0.029804887703728734, 0.031532535370677024, 0.03348520573928504, 0.035622904263518274, 0.037909799277393345, 0.04031488442946573, 0.0428119556748828, 0.045379239656914754, 0.047998886849885215, 0.050656446044590825, 0.05334037453854057, 0.05604160328772921, 0.05875315867249835, 0.06146983499514964, 0.06418790958642609, 0.0669048926820115, 0.06961930554147634, 0.07233048185901561, 0.07503838899745857, 0.0777434668127602, 0.08044648277871937, 0.08314840277583985, 0.08585027730280315, 0.08855314304501527, 0.09125793973703408, 0.09396544213165774 ], [ 0.06132362803160542, 0.059068805649838005, 0.05683172356188651, 0.054611841184100667, 0.05240934873859439, 0.05022539309928516, 0.048062345006701, 0.045924118985107135, 0.0438165585498335, 0.04174789865270808, 0.03972931287739662, 0.03777554140997681, 0.035905572034065185, 0.034143302839598905, 0.03251804372097925, 0.031064611274594423, 0.02982265630619387, 0.02883479807002766, 0.028143248765058505, 0.02778503465138674, 0.02778664855962468, 0.02815965550831987, 0.028898822176195813, 0.029983457832355485, 0.031381326506414675, 0.0330536254977625, 0.03495956944075666, 0.03705976280433512, 0.03931822099511575, 0.04170329585214809, 0.044187871733756386, 0.04674914934559351, 0.049368237137161035, 0.052029681620754095, 0.05472100535030839, 0.05743228289248213, 0.06015576402274026, 0.06288554306203857, 0.06561726907370309, 0.0683478906418508, 0.071075429461104, 0.07379877806016522, 0.07651751818479247, 0.07923175745165761, 0.08194198275954669, 0.08464892958254741, 0.08735346668191098, 0.09005649598668428, 0.09275886744450626, 0.09546130857312614 ], [ 0.06407979575737714, 0.06179282284534682, 0.05952083419608859, 0.05726381096713946, 0.055022506504639794, 0.05279866940701749, 0.050595306026571606, 0.04841699155860725, 0.04627023917565071, 0.04416393498377384, 0.04210984116977325, 0.04012315773927436, 0.038223110426190796, 0.03643349304812224, 0.0347830315372848, 0.033305354713684794, 0.03203827176440841, 0.03102202054476875, 0.03029625689867908, 0.029895897618783238, 0.02984649165285422, 0.030160323392563585, 0.03083452333557013, 0.03185184008765577, 0.03318371074876929, 0.034794501418792104, 0.03664568328194037, 0.03869913328023469, 0.0409192983223041, 0.043274345648301585, 0.045736577701334616, 0.04828239000034796, 0.050891985024379804, 0.053548981216128375, 0.056239997494471936, 0.058954254265647404, 0.06168320831113943, 0.06442022610873949, 0.06716029395490508, 0.06989976083225752, 0.07263610951414874, 0.07536775187155412, 0.07809384516544624, 0.08081412696566555, 0.08352876708736165, 0.08623823551760336, 0.08894318570421365, 0.09164435280820449, 0.09434246660561837, 0.0970381786953464 ], [ 0.0668508750331754, 0.06453759639217692, 0.06223711794545184, 0.059949950228456506, 0.05767741703485132, 0.055421874263977274, 0.05318696538706182, 0.05097792049720793, 0.04880190537811021, 0.046668424454515495, 0.04458977531936137, 0.042581540377975846, 0.04066307964792021, 0.03885795396446887, 0.03719415705227702, 0.03570397127177919, 0.034423202867519036, 0.03338954030469918, 0.03263988074072792, 0.03220674500524712, 0.03211432725074944, 0.03237511914253056, 0.032988115770588196, 0.03393917862306673, 0.03520337746045216, 0.036748499076476114, 0.03853872921332802, 0.040537762093973174, 0.04271100735589553, 0.04502690517067535, 0.047457536911671865, 0.04997875844111361, 0.05257004986463532, 0.055214220264844883, 0.057897054990869834, 0.060606955321139536, 0.06333459564593863, 0.06607260865189407, 0.06881530103186195, 0.07155839840496593, 0.0742988166485389, 0.07703445660642648, 0.07976401948592378, 0.0824868408150058, 0.0852027414016573, 0.08791189421972874, 0.0906147065008839, 0.09331171653345523, 0.09600350476824421, 0.09869061883031853 ], [ 0.06963778774984244, 0.06730413683379953, 0.06498164037543254, 0.06267133808348162, 0.06037512100753191, 0.0580959444488884, 0.05583807396448468, 0.0536073693075557, 0.05141160991004048, 0.04926086223564393, 0.047167882673756, 0.04514853766595917, 0.04322220297397384, 0.041412073938935264, 0.03974527750883548, 0.03825262942418485, 0.036967842290144305, 0.0359259952584802, 0.03516117042701124, 0.034703380410055384, 0.034575229560249277, 0.03478903669645038, 0.03534520017339875, 0.03623228655952367, 0.03742877773087987, 0.038905910014920365, 0.040630835180221245, 0.04256945671541289, 0.044688588630164845, 0.04695736599701674, 0.04934801208916186, 0.05183613277455949, 0.05440070372521211, 0.05702388033256496, 0.05969071975366021, 0.062388870817300685, 0.06510826343354255, 0.06784081357926268, 0.0705801506591272, 0.07332136896451945, 0.07606080247302724, 0.07879582125377892, 0.08152464757146635, 0.08424618999018675, 0.08695989412199454, 0.08966560901004778, 0.09236346841605952, 0.09505378647020798, 0.09773696723662695, 0.10041342775981436 ], [ 0.07244125780183824, 0.07009318370392588, 0.06775511556605578, 0.06542861402087659, 0.06311612402671904, 0.06082118001509538, 0.05854864008578164, 0.056304952096052956, 0.05409845268797071, 0.05193969652659322, 0.049841806162407895, 0.04782082149192139, 0.04589601007254197, 0.04409007427654862, 0.042429159110641795, 0.04094253089289192, 0.03966177582367789, 0.038619383775649066, 0.03784666776489416, 0.03737114252326002, 0.037213720435405356, 0.03738628595559629, 0.03789024680615545, 0.038716451364632844, 0.03984647022598227, 0.04125485605478776, 0.04291180145940937, 0.04478565838547201, 0.046844978017772904, 0.049059949791667445, 0.05140327750281462, 0.05385060889495784, 0.056380651218406644, 0.05897508770920855, 0.06161838103602439, 0.06429752189624616, 0.06700175896312568, 0.06972233094864828, 0.07245221157163972, 0.07518587222294613, 0.07791906378022838, 0.08064861734842092, 0.08337226300218745, 0.08608846543759247, 0.08879627552572547, 0.09149519693762473, 0.09418506718716253, 0.0968659525713702, 0.09953805655936836, 0.10220164119144876 ], [ 0.07526175566728577, 0.0729051547513501, 0.07055786200124303, 0.06822194297083413, 0.06590037387528912, 0.06359723719441022, 0.061317941945397754, 0.05906946965244987, 0.05686064482611232, 0.0547024247123557, 0.0526081962896049, 0.050594057906370594, 0.048679047532015886, 0.046885258973949184, 0.04523776314623686, 0.04376422901667871, 0.04249412981014758, 0.04145744270761925, 0.04068282487776019, 0.04019538364813578, 0.04001433045825494, 0.04015095029395298, 0.040607341981954405, 0.04137623764907222, 0.042441930834621736, 0.04378205480408001, 0.045369782719199385, 0.04717601892054411, 0.049171272906623494, 0.05132707022732042, 0.05361688952924949, 0.05601669498823519, 0.05850516302627419, 0.06106369944994511, 0.0636763253859043, 0.06632948923251393, 0.06901184312047792, 0.07171400803340577, 0.07442834172753296, 0.07714871707706727, 0.079870314494737, 0.08258942980725402, 0.0853032977774355, 0.08800993092231318, 0.09070797309112955, 0.09339656725636127, 0.09607523702527188, 0.09874378143768558, 0.10140218264717121, 0.10405052607712428 ], [ 0.07809945856063635, 0.07574011211857976, 0.0733897766949297, 0.07105099967051075, 0.0687272577523796, 0.06642314141894255, 0.06414455950404924, 0.06189896334898877, 0.059695587475834214, 0.05754569960084971, 0.05546284634559074, 0.053463071506890045, 0.051565070719915174, 0.04979023006320631, 0.04816247861477207, 0.04670787123139471, 0.045453817135540184, 0.04442789521753872, 0.04365626067361099, 0.04316175190190679, 0.042961931389304084, 0.04306739264823189, 0.04348067875398705, 0.0441960532429192, 0.04520016563536154, 0.04647344061141843, 0.04799187900919904, 0.04972893304529186, 0.05165718953639554, 0.05374971024996131, 0.05598098692367039, 0.05832754268177156, 0.060768247902792456, 0.06328442650547172, 0.06585982046172742, 0.06848046590546171, 0.07113451937682823, 0.07381206023715256, 0.07650488585410128, 0.07920630955932415, 0.08191096703763456, 0.0846146340990046, 0.08731405718846584, 0.0900067971073362, 0.0926910859711951, 0.09536569722678805, 0.09802982847024451, 0.10068299677899809, 0.10332494624778632, 0.1059555673849644 ], [ 0.08095422482996206, 0.0785977437108373, 0.07625032528593235, 0.07391496949623026, 0.07159561606282554, 0.06929731641467353, 0.06702642123863572, 0.06479078173226373, 0.06259996004343708, 0.060465440339473764, 0.05840082599776042, 0.056422000146388096, 0.054547216111904336, 0.05279707192238653, 0.05119431100179181, 0.04976338397589928, 0.04852971118515367, 0.04751861091878724, 0.04675391163122646, 0.046256346301767254, 0.046041917224020686, 0.04612048692149513, 0.046494857304563764, 0.04716052356650741, 0.04810614757766488, 0.04931463869443048, 0.05076461694803323, 0.052431998494966436, 0.05429148106659019, 0.056317785881947774, 0.05848659589902911, 0.060775194643829564, 0.0631628475621263, 0.06563098241516636, 0.06816322455777794, 0.07074533454276555, 0.07336508470200907, 0.0760121011374326, 0.078677689176274, 0.08135465405689034, 0.08403712418349253, 0.0867203813253937, 0.08940070024131354, 0.09207519904798869, 0.09474170096990722, 0.09739860772048778, 0.10004478454998607, 0.10267945687054589, 0.1053021182845353, 0.10791244977017278 ], [ 0.08382558106630147, 0.08147735783901032, 0.07913854575884838, 0.07681256296545948, 0.07450376950034425, 0.0722176256695685, 0.06996086167114908, 0.0677416554832832, 0.06556981341524602, 0.06345694391527262, 0.06141660991976684, 0.05946443805171431, 0.05761815451267617, 0.05589750843984065, 0.05432403586145538, 0.05292061482310739, 0.051710770023584304, 0.05071770920493191, 0.04996311724206045, 0.049465794625628404, 0.04924029181030422, 0.04929573673131435, 0.04963505462361535, 0.05025472402215116, 0.05114511106249187, 0.05229130911483361, 0.05367432211347303, 0.055272393465663795, 0.05706229935511676, 0.05902047706255629, 0.06112392091001048, 0.06335083158634927, 0.06568104019096753, 0.06809624620913311, 0.07058011318400095, 0.07311826242172587, 0.07569819803699454, 0.07830918887006617, 0.08094212579144888, 0.08358936724404643, 0.08624458161583852, 0.0889025920043924, 0.09155922686487117, 0.0942111786693358, 0.09685587183231162, 0.09949134061013377, 0.10211611733992416, 0.10472913116508918, 0.10732961724374557, 0.10991703632078959 ], [ 0.0867127202831725, 0.08437788916653452, 0.08205306347050935, 0.07974204123089827, 0.07744955640378444, 0.07518142295502106, 0.07294468613509576, 0.07074777711542717, 0.06860066467028891, 0.06651499411735526, 0.06450419913225947, 0.06258356633952296, 0.06077022610163427, 0.059083036622108, 0.05754232417220791, 0.05616944283606124, 0.05498612639687719, 0.054013626500411714, 0.05327166656742822, 0.05277728682503676, 0.05254370221623361, 0.05257932586059882, 0.052887109794131804, 0.053464313855633515, 0.054302740018538, 0.055389384953939025, 0.0567073949083094, 0.058237173093616326, 0.05995749436476132, 0.061846514780774214, 0.06388260838742063, 0.0660450058163085, 0.06831424080179478, 0.07067242939577961, 0.07310341442591943, 0.07559280805245262, 0.07812796147409265, 0.08069788540346304, 0.08329313941237804, 0.08590570341046579, 0.08852884063949842, 0.09115695863296598, 0.09378547247040327, 0.09641067317452803, 0.09902960309027758, 0.10163993940886569, 0.1042398865487163, 0.10682807779957876, 0.10940348642089205, 0.11196534622409565 ], [ 0.08961450949075761, 0.08729791401171624, 0.08499211525337186, 0.08270125006575556, 0.08043037764114559, 0.07818560896457524, 0.07597423973954233, 0.07380488239605186, 0.07168759047476987, 0.0696339656106914, 0.06765723347428945, 0.06577227049552742, 0.0639955584292401, 0.06234503972933686, 0.06083984483036169, 0.05949986500008391, 0.05834515401312418, 0.05739516065197278, 0.05666782226883493, 0.05617858414297431, 0.05593944249146072, 0.05595812966993941, 0.05623755761915425, 0.05677560506261682, 0.05756528034861045, 0.05859522957827106, 0.05985050682934796, 0.061313493648813534, 0.06296485275938365, 0.06478442080801441, 0.06675197647141805, 0.06884785283994115, 0.07105338965436428, 0.07335123880373948, 0.07572554584660489, 0.07816203318749104, 0.08064800929277686, 0.08317232497885746, 0.0857252937597437, 0.08829858933466474, 0.09088512993076532, 0.09347895651713259, 0.09607510984717894, 0.09866950977100501, 0.10125883917281076, 0.10384043412211866, 0.10641218129041527, 0.10897242330559051, 0.11151987244266565, 0.1140535328438752 ], [ 0.09252950501466445, 0.09023567313508726, 0.0879535805090027, 0.08568766005555366, 0.0834432465754526, 0.08122669152231371, 0.07904547796952413, 0.07690833103933044, 0.07482531697723159, 0.0728079214158784, 0.07086909421709003, 0.06902324480628738, 0.06728616857607463, 0.06567488255623051, 0.06420734838107665, 0.06290206426797652, 0.06177751696849027, 0.06085150062363056, 0.06014033178392832, 0.059658015683705816, 0.059415442451952814, 0.05941970564167116, 0.059673632251261856, 0.060175590337608206, 0.060919600918800845, 0.06189573479793086, 0.06309073445569167, 0.06448877615029777, 0.06607228176769611, 0.06782270129403814, 0.06972120842989127, 0.07174927642339665, 0.07388912298582277, 0.07612402920252082, 0.07843854711029585, 0.08081861503143879, 0.08325160038472774, 0.08572628805902542, 0.08823282973267772, 0.09076266655335315, 0.09330843481727988, 0.09586386191639212, 0.09842365791336113, 0.10098340662962448, 0.10353945902403243, 0.10608883082363275, 0.10862910577206011, 0.11115834542518796, 0.11367500610093599, 0.11617786334551643 ], [ 0.0954559739802522, 0.09318910026164794, 0.09093501738288473, 0.08869841095448402, 0.08648484197965758, 0.08430084719955369, 0.08215403681884731, 0.08005318473632782, 0.07800830458065679, 0.07603070264581183, 0.07413299632298448, 0.07232908406574722, 0.07063405074096231, 0.0690639911128269, 0.06763573516537862, 0.06636646315853004, 0.06527320682257057, 0.064372246449814, 0.0636784311682893, 0.0632044689568052, 0.06296024972893463, 0.0629522737791329, 0.06318325445092066, 0.06365194629740338, 0.06435322079422942, 0.06527837738003162, 0.06641564660170529, 0.06775082150051431, 0.0692679464488548, 0.07094999848474937, 0.0727795107314593, 0.07473910561636787, 0.07681192294341428, 0.0789819417239761, 0.08123420405051628, 0.08355495447471967, 0.08593171024549218, 0.0883532774534193, 0.09080972657182747, 0.09329233879104881, 0.09579353237272896, 0.09830677626222623, 0.1008264965032109, 0.10334797962452999, 0.10586727609125596, 0.10838110608461443, 0.1108867692486849, 0.1133820595685061, 0.11586518618491369, 0.11833470067492083 ], [ 0.09839192048888322, 0.09615585473860057, 0.09393370231372736, 0.09173035842309656, 0.08955156208616508, 0.08740398255649032, 0.085295300783997, 0.08323428106366706, 0.08123082646293074, 0.07929600982801815, 0.07744207025818502, 0.07568236314135195, 0.07403125056030442, 0.07250391868515055, 0.07111611041009777, 0.06988376577913363, 0.06882257032384734, 0.0679474224478556, 0.06727184466343337, 0.06680737783405966, 0.06656300946810016, 0.06654469288117223, 0.06675501068058867, 0.06719302250237626, 0.06785431508693175, 0.06873124709937983, 0.0698133573361238, 0.07108788815833299, 0.07254036888014305, 0.07415520626125437, 0.07591623877366799, 0.07780722446115172, 0.07981224572244852, 0.08191602593468793, 0.08410416137768902, 0.0863632772837738, 0.08868111948543897, 0.09104659377982105, 0.09344976449291192, 0.09588182239967365, 0.09833503056313064, 0.10080265506483678, 0.10327888615761122, 0.10575875414158185, 0.10823804325656916, 0.11071320607963964, 0.11318128028570701, 0.11563980913791638, 0.11808676669230828, 0.12052048840175028 ], [ 0.10133511514261354, 0.09913335690012277, 0.0969466714669179, 0.09478012162855332, 0.0926395782701426, 0.0905317935859158, 0.08846446744843996, 0.0864463022387016, 0.08448704014681849, 0.08259747554043398, 0.08078943359186595, 0.07907570517936328, 0.07746992747274574, 0.07598640004045983, 0.07463982832160802, 0.07344499042949923, 0.07241632984430461, 0.07156748553324906, 0.07091078164920751, 0.0704567096190565, 0.07021344384572405, 0.07018643587826753, 0.07037812876888797, 0.07078782285725678, 0.07141170774626832, 0.07224305586678813, 0.0732725547612189, 0.07448874165646632, 0.07587849719303848, 0.07742755555601036, 0.0791209942955531, 0.08094367651231683, 0.08288062843323672, 0.08491734486391013, 0.08704002249645748, 0.08923572622284755, 0.09149249661284668, 0.09379940799534507, 0.0961465866427419, 0.0985251978668075, 0.10092740975818523, 0.10334634009630934, 0.1057759917816705, 0.10821118108319198, 0.11064746208534908, 0.11308104996614121, 0.11550874512529448, 0.11792785969143461, 0.12033614754550406, 0.12273173868480754 ], [ 0.1042831267195677, 0.10211882489290311, 0.09997076278258683, 0.09784413044972984, 0.09574488716585486, 0.09367982227084361, 0.09165660774686298, 0.08968383806032637, 0.0877710517807207, 0.08592872840797039, 0.08416825285684587, 0.08250183935825459, 0.08094240642600131, 0.07950339535961165, 0.07819852689939044, 0.07704149445899389, 0.07604559799134686, 0.07522332980641454, 0.07458593186629628, 0.07414295199165052, 0.0739018323474614, 0.07386756577958731, 0.07404245274116376, 0.0744259833691649, 0.07501485673985799, 0.07580313462376768, 0.07678251296660907, 0.07794268343238393, 0.0792717513205905, 0.08075667539248586, 0.08238369881583882, 0.08413874703719976, 0.08600777620569448, 0.08797706335302188, 0.09003343592147156, 0.09216444298410821, 0.09435847358921813, 0.09660482931248807, 0.09889375865528485, 0.10121646073618698, 0.1035650650862288, 0.1059325935049536, 0.10831290902105266, 0.11070065612432907, 0.11309119564588853, 0.11548053698108407, 0.11786526977609602, 0.12024249672500319, 0.12260976873620412, 0.1249650234105027 ], [ 0.10723335495663844, 0.10510931190129316, 0.1030026575862272, 0.10091867127852955, 0.09886336029316967, 0.09684350946877056, 0.09486672131277112, 0.09294144268632823, 0.09107697308081031, 0.08928344874911517, 0.0875717963151903, 0.08595364916769027, 0.0844412201757513, 0.08304712531393965, 0.08178415491744528, 0.08066499270937577, 0.07970188748702295, 0.07890628818761851, 0.07828845938274043, 0.07785710010978518, 0.07761899311871642, 0.07757871287360517, 0.07773841814190967, 0.07809774857732997, 0.07865383509338982, 0.07940142257520479, 0.08033309255541628, 0.08143956475322975, 0.08271005111718878, 0.0841326346382961, 0.08569464729196613, 0.08738302603195845, 0.0891846315872314, 0.09108652079531349, 0.0930761685331853, 0.09514163952743135, 0.09727171330364076, 0.09945596735840231, 0.10168482451479467, 0.10394957060331102, 0.10624234833004777, 0.10855613264667101, 0.1108846922661066, 0.11322254127152426, 0.1155648841032517, 0.11790755660995844, 0.12024696532889707, 0.12258002671556616, 0.12490410766976837, 0.12721696839368163 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4751370847225189, 0.3287440202502788, 0.27316714445221585, 0.19459702638646723, 0.2802780569925018, 0.2295567470134425, 0.2523691645385567, 0.2890441543857179, 0.19148566302081013, 0.12231792148114219, 0.11724656569468946, 0.43438009452074766, 0.06299462028534658, 0.08439424725911049, 0.12851231724953235, 0.10671824388122823, 0.15954570452480107, 0.168584870243706, 0.16005944378860845, 0.13014798424200916, 0.16111776712735856, 0.23959186859428883, 0.060091243125498295, 0.43912462517619133, 0.9032109640538692, 0.40544616102602865, 0.3781252887855262, 0.3598899775890065, 0.33564243011303435 ], "xaxis": "x", "y": [ 0.43589335680007935, 0.3505050804822706, 0.3193981394608902, 0.27112903948916633, 0.212322966651161, 0.27219282301812564, 0.2520796645739599, 0.26181689942280323, 0.2303568783052031, 0.1758667109508257, 0.1785812576533865, 0.7873201342299581, 0.1748178667734754, 0.14598164709344713, 0.09328417767881127, 0.09713372309381456, 0.04018334368415399, 0.1304953326137722, 0.1686943300182876, 0.15536908716404307, 0.19011600334524087, 0.14445746690034866, 0.592651198618114, 0.6067354921251535, 0.42226934991776943, 0.5618983866615351, 0.5474140226066075, 0.5125507484598707, 0.42542385287359963 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4751370847225189, 0.3287440202502788, 0.27316714445221585, 0.19459702638646723, 0.2802780569925018, 0.2295567470134425, 0.2523691645385567, 0.2890441543857179, 0.19148566302081013, 0.12231792148114219, 0.11724656569468946, 0.43438009452074766, 0.06299462028534658, 0.08439424725911049, 0.12851231724953235, 0.10671824388122823, 0.15954570452480107, 0.168584870243706, 0.16005944378860845, 0.13014798424200916, 0.16111776712735856, 0.23959186859428883, 0.060091243125498295, 0.43912462517619133, 0.9032109640538692, 0.40544616102602865, 0.3781252887855262, 0.3598899775890065, 0.33564243011303435 ], "xaxis": "x2", "y": [ 0.43589335680007935, 0.3505050804822706, 0.3193981394608902, 0.27112903948916633, 0.212322966651161, 0.27219282301812564, 0.2520796645739599, 0.26181689942280323, 0.2303568783052031, 0.1758667109508257, 0.1785812576533865, 0.7873201342299581, 0.1748178667734754, 0.14598164709344713, 0.09328417767881127, 0.09713372309381456, 0.04018334368415399, 0.1304953326137722, 0.1686943300182876, 0.15536908716404307, 0.19011600334524087, 0.14445746690034866, 0.592651198618114, 0.6067354921251535, 0.42226934991776943, 0.5618983866615351, 0.5474140226066075, 0.5125507484598707, 0.42542385287359963 ], "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": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "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 } } }, "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": {}, "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.44277631902973513, -0.5861839433280139, -0.5861839433280139, -0.5861839433280139, -0.6897889139192221, -0.6897889139192221, -0.9034604140084544, -0.9162449258226859, -1.0691768894412954, -1.2659888866204512, -1.3044115350355505, -1.5001301527822664, -1.5001301527822664, -1.5001301527822664, -1.5001301527822664, -1.5543389282952091, -1.5543389282952091, -1.725280886746349, -1.7736755191817968, -2.3006104255028457, -2.4737120171355196, -2.7786012359723937, -3.0384022642797515, -3.0384022642797515, -3.0733344584452573, -3.2076258531776487, -3.274567832438444, -3.274567832438444, -3.274567832438444, -3.306668352040229 ] }, { "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.44277631902973513, -0.5861839433280139, -0.5861839433280139, -0.5861839433280139, -0.6897889139192221, -0.6897889139192221, -0.9034604140084544, -0.9162449258226859, -1.0691768894412954, -1.2659888866204512, -1.3044115350355505, -1.5001301527822664, -1.5001301527822664, -1.5001301527822664, -1.5001301527822664, -1.5543389282952091, -1.5543389282952091, -1.725280886746349, -1.7736755191817968, -2.3006104255028457, -2.4737120171355196, -2.7786012359723937, -3.0384022642797515, -3.0384022642797515, -3.0733344584452573, -3.2076258531776487, -3.274567832438444, -3.274567832438444, -3.274567832438444, -3.306668352040229 ] }, { "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.44277631902973513, -0.5861839433280139, -0.5861839433280139, -0.5861839433280139, -0.6897889139192221, -0.6897889139192221, -0.9034604140084544, -0.9162449258226859, -1.0691768894412954, -1.2659888866204512, -1.3044115350355505, -1.5001301527822664, -1.5001301527822664, -1.5001301527822664, -1.5001301527822664, -1.5543389282952091, -1.5543389282952091, -1.725280886746349, -1.7736755191817968, -2.3006104255028457, -2.4737120171355196, -2.7786012359723937, -3.0384022642797515, -3.0384022642797515, -3.0733344584452573, -3.2076258531776487, -3.274567832438444, -3.274567832438444, -3.274567832438444, -3.306668352040229 ] }, { "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": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "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.7.10" } }, "nbformat": 4, "nbformat_minor": 2 }