{ "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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] 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 04-25 21:18:37] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:37] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:38] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/gpytorch/lazy/lazy_tensor.py:1741: UserWarning:\n", "\n", "torch.triangular_solve is deprecated in favor of torch.linalg.solve_triangularand will be removed in a future PyTorch release.\n", "torch.linalg.solve_triangular has its arguments reversed and does not return a copy of one of the inputs.\n", "X = torch.triangular_solve(B, A).solution\n", "should be replaced with\n", "X = torch.linalg.solve_triangular(A, B). (Triggered internally at ../aten/src/ATen/native/BatchLinearAlgebra.cpp:1672.)\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:44] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:50] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:18:57] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:02] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:08] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:14] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:20] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:26] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:31] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:37] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:42] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:48] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:19:54] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:20:00] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:20:04] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:20:09] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-25 21:20:13] 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.22637613467008277,\n", " 'x2': 0.07548106422379,\n", " 'x3': 0.5462105765393369,\n", " 'x4': 0.24757068559356862,\n", " 'x5': 0.3199846305494837,\n", " 'x6': 0.6463687042752487}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9678762491691202, 'hartmann6': -3.1728447965223836}" ] }, "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.3409929290721014, -2.4042580624276417, -2.4640741084827757, -2.519783349692516, -2.570710864816692, -2.616175856834907, -2.6555059838133293, -2.688054908360143, -2.713222987203823, -2.7304805450879726, -2.739392528089664, -2.739642600474883, -2.7310541217585174, -2.71360517031898, -2.687435100050756, -2.6528411121292486, -2.6102648316869246, -2.560270498545714, -2.5035176272580406, -2.4407315169640484, -2.372674736728516, -2.3001218942112436, -2.2238389624313664, -2.1445675008124696, -2.0630134374222053, -1.979839713650947, -1.8956619742540866, -1.8110465264034592, -1.7265099106264727, -1.642519567995405, -1.5594952201398504, -1.4778106883229636, -1.3977959625572332, -1.3197393943550235, -1.2438899317456982, -1.170459347084717, -1.0996244305615799, -1.0315291378470222, -0.9662866908211527, -0.903981636963009, -0.844671876498237, -0.7883906673012462, -0.7351486162540972, -0.6849356627245571, -0.6377230555648549, -0.5934653201543946, -0.5521022071503269, -0.5135606103709335, -0.47775643810326973, -0.4445964204102093 ], [ -2.346866258969275, -2.4106045679930546, -2.4708987924703276, -2.527085324738196, -2.578481835871667, -2.6243983864610962, -2.6641516167138595, -2.697082306185107, -2.7225763136743257, -2.7400884271320742, -2.749167969793971, -2.7494842022687287, -2.7408488209357946, -2.7232324639040075, -2.696772384519485, -2.66176947977085, -2.6186745199813704, -2.5680652662562142, -2.51061760190332, -2.447074413050199, -2.3782156539019534, -2.304832086376118, -2.2277040097093894, -2.1475852545835266, -2.065192000012315, -1.9811956038108174, -1.8962185422329039, -1.8108326250228437, -1.7255587975470077, -1.6408680017175943, -1.5571827107717031, -1.4748788682122644, -1.3942880480004844, -1.315699715842647, -1.2393635157285967, -1.1654915368082084, -1.0942605371631573, -1.0258141158227587, -0.9602648343080123, -0.897696295198246, -0.8381651883836837, -0.7817033162465504, -0.7283196073866807, -0.6780021251042937, -0.6307200722017491, -0.5864257883942614, -0.5450567314017858, -0.5065374282693118, -0.4707813801505152, -0.43769290201643174 ], [ -2.3499597207488265, -2.414034579426343, -2.4746731038209466, -2.53120771146455, -2.5829508119032036, -2.6292056614613593, -2.669280343255075, -2.7025052326954384, -2.728254048451255, -2.745968113614081, -2.755182744910492, -2.7555538153995034, -2.746881686172797, -2.729129182929253, -2.702430448330292, -2.6670885389396988, -2.6235614385054564, -2.5724382289630787, -2.5144088089524796, -2.4502312515071902, -2.3807005473919283, -2.306621401904154, -2.228786434685158, -2.147959990025595, -2.06486700624032, -1.9801860280026833, -1.894545376024249, -1.8085215895465587, -1.7226394276976427, -1.6373728927331856, -1.5531468910622224, -1.470339267511113, -1.389283036265321, -1.3102686943236557, -1.2335465466585975, -1.1593290021644043, -1.0877928200494982, -1.0190813004339616, -0.9533064223531373, -0.8905509382216971, -0.8308704366992186, -0.7742953862157697, -0.7208331695060227, -0.6704701157752286, -0.6231735321138147, -0.5788937301410552, -0.5375660383047522, -0.49911278547364557, -0.4634452379845253, -0.4304654704920179 ], [ -2.3502291199179357, -2.4144986364369565, -2.4753418675289502, -2.5320891912213437, -2.5840499525286393, -2.630523034054252, -2.6708105672184774, -2.7042352070772493, -2.730161156946366, -2.748018667473967, -2.757331016617205, -2.757742051070746, -2.7490414155233758, -2.7311839396503625, -2.704299695006762, -2.668692259675195, -2.6248246614386677, -2.5732947692123416, -2.5148037671680505, -2.450122147309826, -2.380057268080589, -2.3054253159829052, -2.227029047756567, -2.1456414528125034, -2.061994679541588, -1.976773210698806, -1.8906102301872298, -1.8040862538941784, -1.7177292908128083, -1.632015992317255, -1.5473734080453538, -1.4641810894617382, -1.3827733706323642, -1.3034417174257318, -1.2264370786418752, -1.1519722014313984, -1.0802238931188128, -1.0113352250544634, -0.9454176831566916, -0.882553275384353, -0.8227966090569265, -0.7661769510554386, -0.7127002817969416, -0.6623513498738871, -0.6150957289258916, -0.5708818723443726, -0.5296431555493687, -0.49129989054643153, -0.45576129385337705, -0.42292738704779853 ], [ -2.3476467190126185, -2.4119650919887348, -2.472869103856306, -2.529689020467387, -2.5817333342579447, -2.628299033478881, -2.668684998111619, -2.7022089989908222, -2.7282285660720107, -2.7461655507546485, -2.7555334892940815, -2.7559659090664956, -2.747242672067676, -2.7293106575657573, -2.7022950025777686, -2.6664981106066485, -2.6223856812219344, -2.570561529105698, -2.5117350390105253, -2.4466860066377474, -2.3762311906784603, -2.3011955678221603, -2.2223896923134, -2.1405932372707834, -2.056543967696646, -1.9709310448985182, -1.8843915445213806, -1.797509226989047, -1.710814812443051, -1.6247872158172258, -1.539855364050452, -1.4564003419736602, -1.374757701765285, -1.2952198316408214, -1.2180383206573941, -1.1434262844445233, -1.0715606357267906, -1.0025842965437135, -0.9366083578129755, -0.8737141972777677, -0.8139555694194136, -0.757360680894642, -0.7039342627397641, -0.6536596463545048, -0.6065008446811047, -0.5624046337344273, -0.5213026235043885, -0.48311330200575764, -0.44774403251226347, -0.41509298216276647 ], [ -2.3422018318456748, -2.406420821054194, -2.467238871944077, -2.523988031632671, -2.5759781321681476, -2.6225067516460605, -2.662872261140155, -2.696390477049365, -2.722415255190289, -2.7403629475436584, -2.749739935161346, -2.7501714606965733, -2.741428858584662, -2.723451361472273, -2.696358449126717, -2.660449645885668, -2.6161907968498093, -2.564188559469722, -2.505157121387798, -2.4398821591301436, -2.369186602188396, -2.2939013293978556, -2.2148422221315194, -2.132793601170172, -2.048497221603912, -1.9626456580174065, -1.87587891638012, -1.7887832871693656, -1.701891682979915, -1.6156849162187013, -1.530593542696492, -1.4470000223717085, -1.3652410363649967, -1.2856098591698868, -1.2083587252403045, -1.1337011563019392, -1.0618142342586467, -0.9928408172781722, -0.9268917052035734, -0.8640477657385729, -0.8043620353345335, -0.7478618086076312, -0.6945507276774711, -0.6444108784110533, -0.5974048947334226, -0.5534780656575613, -0.512560433316642, -0.474568864853554, -0.4394090771874517, -0.40697759183481286 ], [ -2.333901149585643, -2.3978716243341096, -2.4584557688453854, -2.514989248187175, -2.5667853745068987, -2.6131447626921736, -2.6533680073283237, -2.6867719324950077, -2.712709809638607, -2.7305955518549005, -2.739931203915754, -2.7403360464354396, -2.7315744474731227, -2.7135785659438305, -2.686461676932528, -2.650518764677785, -2.6062132022855, -2.554151192255069, -2.4950480808677815, -2.4296917559112536, -2.3589078783048683, -2.28353018490746, -2.2043773120599885, -2.122236135288218, -2.037850748499702, -1.951915869688519, -1.8650734800400395, -1.7779116965775508, -1.6909651175821971, -1.6047160978115822, -1.5195965827399396, -1.4359902565604032, -1.3542348458326674, -1.2746244795805777, -1.1974120461406166, -1.1228115136831, -1.0510001995184706, -0.9821209858442049, -0.916284488091975, -0.853571187335536, -0.7940335407098076, -0.7376980836761731, -0.6845675354665278, -0.6346229145066848, -0.5878256646233275, -0.5441197861308558, -0.503433959333478, -0.46568364240421956, -0.43077312169723436, -0.3985974907306016 ], [ -2.3227687874149807, -2.386342311970625, -2.446545064135109, -2.502718087759152, -2.554180236012172, -2.600237532137351, -2.640195467177657, -2.673374806919309, -2.699131349238316, -2.716879715333774, -2.7261205930304926, -2.726469850905562, -2.717686717878836, -2.6996971096699562, -2.672607745338726, -2.6367075031432634, -2.592454650486135, -2.5404515307921653, -2.481410848250868, -2.4161188675454297, -2.345400398700881, -2.2700888855249177, -2.1910030770183146, -2.1089302703551693, -2.024615227534717, -1.9387535329785979, -1.8519881870210857, -1.76490843101027, -1.678050043559168, -1.5918965672682244, -1.5068810976557312, -1.4233883909432377, -1.3417571336754697, -1.2622822753687888, -1.1852173643791597, -1.1107768535110663, -1.0391383599547042, -0.9704448766749492, -0.9048069409403569, -0.8423047710686024, -0.7829903850330263, -0.7268897145026275, -0.6740047253737478, -0.6243155512514345, -0.5777826402240779, -0.5343489084216346, -0.4939418871457226, -0.4564758446805959, -0.42185385994804103, -0.3899698233891602 ], [ -2.308846050101012, -2.3718764638787295, -2.431552464126833, -2.4872221435031063, -2.5382118546342483, -2.583835292602405, -2.6234054142886745, -2.6562497766139606, -2.6817297669898483, -2.69926386943686, -2.708354470981323, -2.708616725717822, -2.699806752777842, -2.6818452780056967, -2.6548323139043415, -2.619049209481726, -2.574946560566771, -2.5231194470754517, -2.464274084522929, -2.3991912151974493, -2.3286911524618024, -2.253603844831763, -2.174745475116279, -2.0929016045465003, -2.0088159758760042, -1.923183750515089, -1.8366479810508287, -1.7497983203940017, -1.663171211397411, -1.5772510190724234, -1.4924717384831343, -1.4092190351269487, -1.3278324601264588, -1.2486077402976556, -1.1717990819461963, -1.0976214535482385, -1.0262528306269725, -0.9578363988225584, -0.8924827198933541, -0.8302718709440307, -0.7712555698868747, -0.7154593001685637, -0.6628844453241729, -0.6135104393084118, -0.5672969323812166, -0.5241859653862948, -0.48410413847166267, -0.4469647545619255, -0.4126699139363603, -0.3811125345430091 ], [ -2.29219092419909, -2.354535874728204, -2.4135435134615695, -2.4685705502416466, -2.518952675428129, -2.5640133848661164, -2.6030755296551504, -2.6354761722231785, -2.660585239987367, -2.6778281629224487, -2.686712069719058, -2.6868541514132263, -2.6780095656290097, -2.6600950693421943, -2.633204007913691, -2.5976089614158653, -2.553750443428128, -2.502212982288853, -2.4436925363792295, -2.378960473333051, -2.308828988712392, -2.2341213428207127, -2.1556484721178144, -2.0741920352335814, -1.9904930534449767, -1.9052449565918206, -1.819089860751834, -1.7326170943768855, -1.6463632249632556, -1.560813051644449, -1.4764011969531392, -1.393514053007242, -1.3124919220896336, -1.233631249090342, -1.1571868821412759, -1.083374324307114, -1.0123719576408199, -0.9443232338984929, -0.8793388352283652, -0.8174988139523056, -0.7588547234707589, -0.703431752498731, -0.6512308724683472, -0.6022310033682989, -0.5563911971232477, -0.5136528306552165, -0.473941793951947, -0.43717065271576505, -0.40324076123521646, -0.3720442994705866 ], [ -2.272877313303412, -2.3343997022205585, -2.3926026546920847, -2.446852957352318, -2.496497343738551, -2.54087108457765, -2.5793091822420022, -2.6111607407216293, -2.6358070063379513, -2.6526832904376043, -2.661304400458192, -2.6612922696192953, -2.6524032671475766, -2.6345515014796743, -2.6078238568340675, -2.572483120275866, -2.528957550922046, -2.4778180707819843, -2.4197468177048806, -2.3555020952007593, -2.2858844759722112, -2.2117074114496442, -2.133773947116272, -2.052859679737166, -1.969701194458035, -1.8849888558501104, -1.7993628224267928, -1.7134113267678457, -1.627670485693253, -1.5426251098723207, -1.458710145375355, -1.3763124993841251, -1.2957730861510395, -1.2173889867437366, -1.1414156552902983, -1.068069131427261, -0.9975282375665879, -0.9299367530154936, -0.8654055663774746, -0.8040148137802342, -0.7458160136446959, -0.6908342090874449, -0.6390701268285428, -0.5905023570189595, -0.5450895523049142, -0.5027726375317113, -0.4634770147068006, -0.4271147421307966, -0.3935866627335636, -0.36278445509105994 ], [ -2.2509940404049233, -2.3115633466821643, -2.3688319779645686, -2.4221781443843655, -2.470961186875141, -2.514529955714945, -2.552233666724336, -2.583435787458523, -2.6075314391352804, -2.623968532859168, -2.632272299962141, -2.6320719775334345, -2.6231272497867533, -2.605350923814514, -2.578823764086033, -2.5437979773920025, -2.500687705726852, -2.4500475488776075, -2.392542583837656, -2.328914633422554, -2.25994934744225, -2.1864473829589373, -2.109201323817483, -2.028978571996158, -1.9465095547045936, -1.8624802091398585, -1.7775276749615319, -1.6922382720669298, -1.6071470450883845, -1.5227383493077664, -1.4394471093741454, -1.3576604989282854, -1.2777198721200336, -1.1999228354903493, -1.1245253883575916, -1.051744087462374, -0.9817582111531924, -0.9147119123543896, -0.8507163594061734, -0.7898518703577703, -0.7321700497672236, -0.677695937689706, -0.6264301785200886, -0.5783512130660741, -0.533417491270053, -0.4915696961984749, -0.45273296323572043, -0.4168190728021799, -0.3837285911417583, -0.35335293226976283 ], [ -2.2266436477553704, -2.2861370978353417, -2.342349702637583, -2.3946723275598636, -2.4424783387967515, -2.4851317913373627, -2.521997964173947, -2.5524567680459116, -2.575919489643561, -2.5918490820868865, -2.5997836786395574, -2.599362152679989, -2.590349452436959, -2.5726583903132934, -2.5463640537122565, -2.511707527825733, -2.4690873362461114, -2.4190394629659386, -2.3622091048096743, -2.2993185555611686, -2.2311355276736524, -2.1584450936528823, -2.0820269187067484, -2.00263812597575, -1.921001265594726, -1.8377964582089494, -1.7536567193309192, -1.6691655874980196, -1.5848563598521506, -1.5012124172492, -1.4186682695032433, -1.3376110642490286, -1.2583823844850561, -1.181280217342985, -1.1065610168613, -1.0344418118891916, -0.9651023304897356, -0.8986871267938343, -0.8353077066215878, -0.7750446551012511, -0.7179497733368445, -0.6640482320981711, -0.6133407487471779, -0.5658057895546291, -0.5214017938098263, -0.48006940951399957, -0.4417337239339876, -0.40630646682516613, -0.3736881604934368, -0.34377018953613137 ], [ -2.1999410295042874, -2.2582445906873385, -2.3132884403720033, -2.364477215199557, -2.411199575227008, -2.452836219251932, -2.4887701142616687, -2.518399430282545, -2.5411536120117875, -2.556512774800143, -2.5640301062244144, -2.563356152322445, -2.554262853418244, -2.536664238063312, -2.5106302275995396, -2.4763904870762508, -2.434326809846999, -2.384954746827298, -2.328897285923948, -2.2668545850229656, -2.1995737572269296, -2.1278217500540624, -2.052363006693282, -1.9739423626647807, -1.8932727898925212, -1.8110271833928953, -1.7278332868627575, -1.644270935089749, -1.5608709448078812, -1.478115146504481, -1.3964371881830657, -1.316223850113014, -1.2378166893733609, -1.1615138902818964, -1.0875722375534773, -1.0162091581383677, -0.9476047986961826, -0.8819041209148123, -0.81921900780795, -0.7596303814976119, -0.703190337194449, -0.6499242993460855, -0.5998332044712577, -0.5528957114257864, -0.5090704343708895, -0.46829818736058637, -0.4305042231854248, -0.3956004438487888, -0.36348755658565324, -0.3340571481461183 ], [ -2.171011935655379, -2.2280211166130544, -2.281793294568693, -2.3317478771889624, -2.377289936187826, -2.4178180633116035, -2.452734305522873, -2.4814566307351447, -2.503434314304099, -2.518166401407025, -2.525222922160842, -2.524267792025988, -2.5150814064724654, -2.4975800859383064, -2.471829135804347, -2.4380467306451763, -2.3965972144213623, -2.3479743855668893, -2.2927772219296, -2.2316816267652237, -2.1654118535953955, -2.094714480107445, -2.020336616150846, -1.9430089056078004, -1.8634330798534797, -1.7822733926695595, -1.700151133482354, -1.617641460624933, -1.5352719204370726, -1.4535221589184057, -1.3728244593851617, -1.293564841601444, -1.2160845351503526, -1.1406816965327442, -1.0676132805831429, -0.9970970065915445, -0.9293133812726537, -0.86440775665726, -0.8024924124822149, -0.7436486605104469, -0.6879289728321111, -0.6353591378276415, -0.5859404463739932, -0.5396519074504749, -0.49645248716575974, -0.4562833592020237, -0.41907014869337456, -0.3847251465555461, -0.35314946802904834, -0.32423512817002775 ], [ -2.1399913875108805, -2.195611837752768, -2.2480198537370035, -2.296650497325377, -2.340926218190636, -2.3802645585119633, -2.414087800659929, -2.441834964793083, -2.4629764992064462, -2.4770317796060626, -2.48358908536362, -2.4823270390684833, -2.473035668358868, -2.455634503497011, -2.4301847987814504, -2.3968933721800836, -2.3561067724975193, -2.3082962150451762, -2.254035398909199, -2.1939743609961955, -2.128812666219994, -2.0592746078147224, -1.9860880776430752, -1.909967759535634, -1.8316025459078322, -1.751646646156113, -1.6707136915540686, -1.5893731496639885, -1.5081484544934851, -1.4275163777676636, -1.3479072800441696, -1.2697059751868627, -1.1932530156981578, -1.1188462620542206, -1.046742640339981, -0.9771600228106643, -0.9102791884267074, -0.8462458369868612, -0.7851726425531619, -0.7271413402051352, -0.6722048452114298, -0.6203894057389772, -0.5716967895157391, -0.5261065018381221, -0.4835780275830297, -0.4440530842517538, -0.4074578674585341, -0.37370526558932937, -0.34269701735039093, -0.3143257850743981 ], [ -2.1070220447262926, -2.161169952736195, -2.212132136267603, -2.2593600773874356, -2.3022944185792493, -2.340372518699658, -2.3730378149607105, -2.39975135047173, -2.420005759234156, -2.433341782892152, -2.4393669778289593, -2.4377756549196397, -2.4283683644530827, -2.411068598636752, -2.385934121029541, -2.3531607003253647, -2.3130770807254466, -2.2661315179342414, -2.212871672630504, -2.1539206035923173, -2.089951798553528, -2.0216657035059376, -1.9497693626755366, -1.874959896810229, -1.7979118523732374, -1.7192680268616034, -1.639633186314343, -1.5595700651077582, -1.479597100504526, -1.400187450760712, -1.3217689442365406, -1.2447246933101845, -1.1693941766455147, -1.0960746472905827, -1.025022764873177, -0.9564563807668764, -0.890556428039998, -0.8274688851412144, -0.7673067948712161, -0.7101523290083761, -0.656058894444305, -0.6050532791413386, -0.5571378359506615, -0.5122926997532391, -0.4704780291146028, -0.4316362584652571, -0.3956943416262275, -0.36256596317475087, -0.33215369142140916, -0.30435104611170494 ], [ -2.072252562448734, -2.124854859532339, -2.1743005411851524, -2.220058158018346, -2.261587209677432, -2.2983455494064606, -2.3297984575934843, -2.3554296951139664, -2.3747547763811134, -2.3873364948041984, -2.392802351963013, -2.390862991852172, -2.381330106817838, -2.3641317407065268, -2.3393227073302745, -2.307088172462332, -2.2677393536633716, -2.2217015717863635, -2.1694961533043817, -2.1117185381353876, -2.0490151792412727, -1.9820614722545953, -1.9115422590625726, -1.838135685841502, -1.762500564956953, -1.6852669755221448, -1.607029629695789, -1.5283434754931766, -1.4497210397788178, -1.3716310884205172, -1.2944982635779592, -1.218703434941115, -1.1445845663104852, -1.0724379504001906, -1.002519704665135, -0.9350474515023481, -0.8702021294229699, -0.8081298993669065, -0.7489441233822794, -0.6927274021496421, -0.6395336637478541, -0.5893902989494136, -0.5423003385192818, -0.4982446659030799, -0.4571842549284246, -0.41906241747183737, -0.38380704132433663, -0.35133279457143773, -0.32154327039404307, -0.2943330457458726 ], [ -2.035835973926672, -2.0868303571274365, -2.1346998540542974, -2.178930614417936, -2.21900151106866, -2.2543913860479714, -2.2845878293874042, -2.309097753024207, -2.327459948985597, -2.339259625730247, -2.3441445706747235, -2.34184210219279, -2.332175429303545, -2.3150775859281865, -2.290600946755331, -2.2589206247288263, -2.220330821386078, -2.1752342851033597, -2.124126116484813, -2.067573921668156, -2.0061965669142494, -1.9406435485524192, -1.8715764366378904, -1.7996532031452879, -1.7255156819721886, -1.6497800137859586, -1.5730297099112922, -1.4958108879072791, -1.418629237420256, -1.3419483257980895, -1.2661889198556682, -1.1917290666643845, -1.1189047347603063, -1.0480108654729, -0.9793027225636979, -0.9129974584557029, -0.8492758386200997, -0.7882840835240412, -0.7301358009430216, -0.674913991080449, -0.6226731132573563, -0.573441206261607, -0.5272220551084591, -0.48399739539637054, -0.44372914322984514, -0.406361634561603, -0.37182385360509707, -0.34003162649555696, -0.3108897543104565, -0.2842940593309997 ], [ -1.9979281297180498, -2.047262922121793, -2.093507349848904, -2.1361655751931474, -2.174736215728114, -2.208719421305644, -2.2376253494835665, -2.2609842550140593, -2.2783583348501284, -2.289355288283639, -2.293643241813115, -2.290966265979684, -2.281159248581531, -2.2641605164722165, -2.240020477570555, -2.208904812095466, -2.1710913933849714, -2.126961029862346, -2.0769830415761747, -2.0216973560398905, -1.9616950691492638, -1.8975992658316778, -1.8300474602548182, -1.7596764753633845, -1.6871100863577757, -1.6129493851093657, -1.537765599864505, -1.462095003554779, -1.386435526412329, -1.3112447184655704, -1.2369387584041034, -1.1638922608835482, -1.0924386860660524, -1.0228711996075242, -0.9554438677739433, -0.89037310156478, -0.8278392867353278, -0.76798855449896, -0.7109346613045034, -0.6567609560233727, -0.6055224195633041, -0.5572477656729553, -0.5119415928474232, -0.46958657621748856, -0.43014568567351597, -0.3935644129427811, -0.35977298669039315, -0.3286885517172171, -0.30021728662519465, -0.27425643432436786 ], [ -1.9586862195286436, -2.006320089701302, -2.0509010259790723, -2.0919515015683383, -2.1289901113669636, -2.1615384671580395, -2.189129360075032, -2.211316362128591, -2.2276849649458517, -2.237865186593795, -2.2415453025682996, -2.2384859928828615, -2.2285338080576436, -2.211632552787189, -2.1878310969712924, -2.1572863478064934, -2.120260663223223, -2.0771137484768207, -2.028289856727305, -1.9743017013132929, -1.9157127469572504, -1.8531194650710585, -1.7871348061219934, -1.7183736989001588, -1.6474409581988938, -1.5749216459183306, -1.5013737107770453, -1.4273226171984874, -1.3532576367364142, -1.2796294862937707, -1.2068490329377852, -1.1352868296090686, -1.065273290407439, -0.9970993540398836, -0.9310175179095249, -0.8672431531742465, -0.8059560335077135, -0.7473020279997553, -0.6913949223000448, -0.6383183422478134, -0.5881277612152596, -0.5408525765326321, -0.4964982419861338, -0.45504844290249014, -0.4164672983013593, -0.38070157167596075, -0.3476828688922049, -0.31732979919885396, -0.2895500740196646, -0.2642425184445141 ], [ -1.918267397162336, -1.9641689613222533, -2.007057989579266, -2.046475452602153, -2.0819600237768356, -2.1130547788543144, -2.1393150361516136, -2.1603174690278353, -2.1756705506794813, -2.1850262392678386, -2.1880925703655554, -2.184646512714682, -2.1745461189014392, -2.1577407562092934, -2.13427813847701, -2.1043070731523117, -2.068075294043537, -2.0259223837717495, -1.978268445069356, -1.9255996895758853, -1.868452363353556, -1.8073963984866062, -1.7430199329219072, -1.67591548290987, -1.606668187349792, -1.5358462406305786, -1.4639934190900454, -1.391623483631819, -1.3192161884748037, -1.2472146204199914, -1.176023614298864, -1.106009023854965, -1.0374976640515934, -0.9707777757018294, -0.9060998941326078, -0.8436780296637365, -0.783691089134391, -0.7262844849736504, -0.6715718918530841, -0.6196371211776582, -0.5705360908841851, -0.5242988725080281, -0.4809317995602068, -0.4404196213267757, -0.4027276847754524, -0.36780412495843207, -0.3355820418235318, -0.305981639361794, -0.27891230209098916, -0.2542745843687413 ], [ -1.8768275234376195, -1.9209748543716976, -1.9621530143108314, -1.9999215510738226, -2.03383919547083, -2.063470351790929, -2.0883926077654156, -2.1082053599881525, -2.1225395822814166, -2.1310686278972724, -2.1335197470587652, -2.1296857379697975, -2.119435880992012, -2.1027251074243134, -2.0796003088265547, -2.0502028585790004, -2.0147667967877823, -1.9736126548368844, -1.9271374448204335, -1.8758017788791563, -1.8201153199448454, -1.7606217735161305, -1.6978844517344387, -1.6324731566976303, -1.564952823194091, -1.4958740930771428, -1.4257657946552802, -1.3551291749338519, -1.284433668797141, -1.2141139699273806, -1.144568176738896, -1.0761568098041314, -1.0092025262989601, -0.9439903865761005, -0.880768555305705, -0.8197493435196977, -0.7611105180656212, -0.7049968215420569, -0.6515216590145125, -0.6007689179756548, -0.5527948953671169, -0.5076303102676593, -0.46528238336061656, -0.42573696489444357, -0.38896069202453654, -0.35490315475362966, -0.32349904780994354, -0.2946702843375024, -0.26832804674255906, -0.24437475078568505 ], [ -1.8345200365518122, -1.8769001024705911, -1.9163572739007604, -1.9524696550198102, -1.984815901406587, -2.012981488806484, -2.0365658869688894, -2.0551907033792243, -2.0685087973454457, -2.0762142434602566, -2.0780528431301413, -2.07383266145864, -2.0634338460443997, -2.046816825605112, -2.024027955164301, -1.9952018158225875, -1.9605596916911658, -1.9204041809113443, -1.8751103563866396, -1.825114269676254, -1.7708998106940521, -1.7129849703637468, -1.6519084296340474, -1.5882171759615276, -1.5224555940590534, -1.4551562440166366, -1.3868323566393306, -1.317971951558009, -1.2490334126347906, -1.1804423250522165, -1.1125893758830316, -1.045829133557196, -0.9804795432002233, -0.9168219989344354, -0.8551018777878138, -0.7955294412548212, -0.7382810291427858, -0.6835004859584514, -0.6313007728118911, -0.5817657277867531, -0.5349519451220146, -0.490890748567526, -0.44959023716756596, -0.41103738283103697, -0.37520015880504776, -0.34202967711345855, -0.3114623117360251, -0.28342178335618895, -0.257821181371914, -0.23456489986073192 ], [ -1.791494954516466, -1.8321030092960813, -1.8698372528105027, -1.904294231965129, -1.935072294514179, -1.9617776252893786, -1.9840310805720474, -2.0014758588554815, -2.0137859866588186, -2.020675491121915, -2.0219079769977726, -2.0173061407358612, -2.0067605738340717, -1.9902370813282917, -1.9677817207957633, -1.9395228871733905, -1.9056700289628228, -1.8665089400639325, -1.8223939540705842, -1.773737691214281, -1.7209992084012498, -1.6646714545404429, -1.6052688520494045, -1.5433156545926563, -1.4793355229966738, -1.4138425602705822, -1.3473338807305524, -1.280283668504203, -1.2131386058158422, -1.1463145132558423, -1.0801940324286619, -1.0151251864413922, -0.9514206681759195, -0.8893577249765741, -0.8291785279955534, -0.7710909330971913, -0.7152695569790065, -0.6618571066211096, -0.6109659122103914, -0.562679623325883, -0.5170550355057062, -0.47412401948906013, -0.43389552864833525, -0.39635766169606823, -0.3614797580654239, -0.3292145029015294, -0.2995000178926561, -0.27226191372806685, -0.24741528022592219, -0.22486659141832566 ], [ -1.747898010116658, -1.7867369540012907, -1.8227538289973124, -1.8555634268657528, -1.8847834672275174, -1.9100403926457865, -1.9309758629385885, -1.9472539647827518, -1.9585690982257342, -1.9646544083662478, -1.965290499647635, -1.9603140166215314, -1.9496255281058703, -1.933196051569061, -1.9110715419569226, -1.8833747706846051, -1.8503042356420802, -1.8121300390229336, -1.7691869885343068, -1.7218654534506042, -1.6706006878127726, -1.6158613950755008, -1.5581382595030244, -1.4979330407911677, -1.4357486602358538, -1.3720805360509778, -1.3074092775512915, -1.2421947351922313, -1.176871327641616, -1.1118445233543452, -1.0474883349722965, -0.984143682552099, -0.9221174896206537, -0.8616823895158292, -0.8030769351006405, -0.7465062207032228, -0.6921428398667194, -0.6401281155895482, -0.5905735509190548, -0.5435624569345578, -0.49915172232361804, -0.4573736940035771, -0.41823814173047125, -0.38173428162456347, -0.3478328343727264, -0.31648809397035804, -0.2876399827093341, -0.2612160681633502, -0.2371335185562129, -0.21530097438140428 ], [ -1.7038699154492034, -1.7409496425733313, -1.7752615197170083, -1.80643831060121, -1.8341167110415746, -1.857942896717406, -1.8775786795531544, -1.8927082706496219, -1.9030455985194406, -1.908342050489887, -1.9083943947525905, -1.9030525136025738, -1.8922264593124587, -1.8758922651296486, -1.8540959370222152, -1.8269551375811732, -1.7946582512620146, -1.757460764352082, -1.7156791584742028, -1.6696827513185775, -1.6198840800611645, -1.56672848998226, -1.5106835658662092, -1.4522289487227786, -1.391846946202731, -1.3300142018082894, -1.267194558036782, -1.2038331444916581, -1.1403516475522801, -1.0771446712413073, -1.0145770742358096, -0.952982159491344, -0.8926605951791167, -0.8338799541967022, -0.7768747712466186, -0.7218470292851831, -0.6689669997217524, -0.6183743723401205, -0.5701796211028451, -0.5244655605824385, -0.48128905466392957, -0.44068284440379, -0.4026574656222952, -0.3672032291551621, -0.3342922379921536, -0.30388041615668304, -0.2759095245437786, -0.25030913944061806, -0.22699857044651361, -0.20588869622188177 ], [ -1.6595457504808873, -1.6948824967591396, -1.7275078786173426, -1.757072293317149, -1.7832309539288436, -1.8056491861164008, -1.8240082512545943, -1.8380116793436527, -1.8473920511934623, -1.8519180997180555, -1.8514019075209762, -1.8457058734915381, -1.8347490249664546, -1.8185121900205505, -1.7970415417482855, -1.7704500988692307, -1.7389169139802672, -1.7026838823904462, -1.6620503255037957, -1.617365702340972, -1.5690209463976887, -1.5174389934111803, -1.463065058176186, -1.406357150292988, -1.3477772130594525, -1.2877831508193425, -1.2268218973067422, -1.165323582962113, -1.103696787877837, -1.0423248187337966, -0.9815629194952292, -0.9217363122341272, -0.8631389616926695, -0.8060329613097121, -0.7506484464540408, -0.6971839504860909, -0.6458071296322777, -0.5966557926399745, -0.5498391802656535, -0.5054394475360509, -0.46351330826110626, -0.42409380642962735, -0.38719218294252267, -0.35279980878849027, -0.3208901574861731, -0.29142079072051996, -0.26433533194490444, -0.23956540365706291, -0.21703250538652408, -0.1966498113587003 ], [ -1.6150544681910317, -1.6486701704012952, -1.6796330308016458, -1.7076106857249957, -1.732276354813212, -1.7533138855556512, -1.770423250056403, -1.7833264662289738, -1.7917738765976723, -1.7955506582886724, -1.794483360361981, -1.7884461790008095, -1.7773666037049634, -1.7612300192214125, -1.7400828482203108, -1.7140338810003992, -1.6832535601961274, -1.6479711550966054, -1.608469944343392, -1.5650806952528704, -1.5181738547135526, -1.4681509337184395, -1.4154355725247918, -1.360464726113782, -1.3036803275316726, -1.2455216890714456, -1.1864188045128854, -1.1267866309667387, -1.0670203619081216, -1.0074916548809916, -0.9485457463239166, -0.8904993687845209, -0.8336393788943083, -0.7782220046298604, -0.7244726249681196, -0.6725860020952739, -0.6227268944766854, -0.5750309874176344, -0.529606085645301, -0.4865335195480822, -0.4458697228029693, -0.40764794410862004, -0.37188005962797166, -0.3385584556313015, -0.3076579529093437, -0.27913774605556485, -0.25294333199530716, -0.22900840347059925, -0.2072566848280597, -0.187603689584658 ], [ -1.570518507636516, -1.6024401820192629, -1.6317693318829503, -1.6581903913012201, -1.6813940347861804, -1.7010819705379132, -1.7169721196752459, -1.7288041451349112, -1.736345259568819, -1.7393961908127462, -1.737797119050904, -1.7314333298416194, -1.720240265144081, -1.7042076169078402, -1.6833821101661157, -1.6578686744766575, -1.627829803489622, -1.5934830403740883, -1.555096680420451, -1.5129839259375197, -1.4674958398118796, -1.4190135082437012, -1.367939836513705, -1.314691370461094, -1.2596904735364953, -1.2033581099735255, -1.1461074024988114, -1.0883380581321038, -1.030431693809517, -0.9727480468399543, -0.9156220229608034, -0.8593615148665272, -0.8042459138427693, -0.7505252338931971, -0.6984197692178573, -0.6481202102959457, -0.5997881498181638, -0.5535569163660299, -0.5095326804065501, -0.46779578343197015, -0.42840224665545423, -0.3913854204258467, -0.3567577394049748, -0.32451255161109094, -0.2946259918098779, -0.2670588716329272, -0.24175856047020328, -0.21866083286661264, -0.1976916600727836, -0.17876892570681413 ], [ -1.5260535055979414, -1.5563126520872999, -1.5840411370771734, -1.608939712893658, -1.6307159259744821, -1.649088661755697, -1.663793016709763, -1.6745854550358406, -1.6812491774366136, -1.6835995863734015, -1.6814896787360611, -1.6748151398961664, -1.6635188635702995, -1.6475945929705995, -1.6270893825604011, -1.6021046238144188, -1.5727954623143525, -1.5393685479538175, -1.5020781882902112, -1.461221097086189, -1.4171300273899956, -1.3701666386505096, -1.3207139661244085, -1.2691688419238818, -1.2159345698188184, -1.161414092126526, -1.1060038179765936, -1.0500882167707988, -0.9940352243946546, -0.9381924652595883, -0.8828842608032106, -0.8284093734106835, -0.7750394218953254, -0.7230178985906174, -0.6725597168363129, -0.6238512195966198, -0.577050583891842, -0.5322885607408233, -0.48966949573987617, -0.44927258078156274, -0.41115329243058274, -0.37534497693131974, -0.3418605456332955, -0.31069424779069066, -0.28182349030679177, -0.2552106762060098, -0.23080503561755616, -0.20854442505024728, -0.18835707290593007, -0.1701632516457945 ], [ -1.4817680972212883, -1.5104001335455943, -1.5365646668949984, -1.5599782582779582, -1.5803647206159517, -1.597459419879918, -1.6110138514494827, -1.620800444939158, -1.6266175245616088, -1.628294315732296, -1.6256958444226082, -1.6187275295231487, -1.6073392290652888, -1.5915284790565387, -1.5713426685141143, -1.5468799318494912, -1.518288609759967, -1.485765224960646, -1.449551026394091, -1.4099272591032008, -1.367209401820721, -1.3217406699217693, -1.2738851033503298, -1.2240205493934169, -1.1725318154023312, -1.1198042158209915, -1.066217680355227, -1.0121415334300992, -0.9579300044966953, -0.9039184871036177, -0.8504205327767155, -0.797725543112943, -0.746097108781704, -0.6957719357435087, -0.6469592953740366, -0.5998409349498831, -0.5545713869941424, -0.5112786194284219, -0.47006497268144, -0.4310083343815714, -0.39416350667064814, -0.3595637252886241, -0.32722229326509433, -0.29713429527329294, -0.2692783614936354, -0.24361845230051649, -0.2201056373711101, -0.19867984507755532, -0.17927156040676295, -0.1618034522572227 ], [ -1.4377637961552234, -1.4648075244980745, -1.4894479568157897, -1.5114169305066791, -1.5304539047335721, -1.5463100238184324, -1.5587524102726458, -1.5675686380264613, -1.5725713137365414, -1.5736026634254854, -1.570538985269427, -1.5632947919255595, -1.5518264345744308, -1.536134984197119, -1.5162681510773721, -1.4923210556654294, -1.464435722532333, -1.432799248525593, -1.3976406861945931, -1.3592267715046775, -1.317856698726367, -1.273856196213447, -1.2275711803404892, -1.1793612618632145, -1.1295933540528091, -1.0786355920471766, -1.0268517253437623, -0.9745960967065431, -0.9222092757552827, -0.8700143770409332, -0.818314061710371, -0.7673881989116674, -0.7174921471050805, -0.6688556052756213, -0.6216819784571896, -0.5761481998323075, -0.5324049519860435, -0.49057723187319957, -0.4507652070798305, -0.4130453145427564, -0.377471556675006, -0.3440769535751478, -0.3128751135095915, -0.28386188707140003, -0.25701707332916635, -0.2323061489447693, -0.2096819937551888, -0.18908658879956852, -0.17045266533630543, -0.15370528611548662 ], [ -1.3941349450068254, -1.4196320526834727, -1.4427908793244244, -1.4633579903027942, -1.4810878626505406, -1.495746717834599, -1.507116544347154, -1.514999259259903, -1.5192209383065467, -1.5196360183400552, -1.5161313460523769, -1.5086299166557007, -1.497094121626549, -1.4815283122614884, -1.4619804916493133, -1.4385429752957546, -1.4113519098705283, -1.380585605968445, -1.3464617163735015, -1.3092333661037885, -1.2691844047212641, -1.2266239974780753, -1.1818807958730067, -1.1352969300149813, -1.0872220480011556, -1.038007596518339, -0.9880014979518353, -0.9375433378604995, -0.8869601370005284, -0.8365627469629074, -0.7866428793766865, -0.7374707558888034, -0.6892933493995999, -0.6423331755435737, -0.5967875862300499, -0.5528285132778249, -0.5106026089578667, -0.4702317308923103, -0.43181372066390167, -0.3954234282023841, -0.36111393716776696, -0.32891794987094114, -0.29884929356833045, -0.2709045131254857, -0.24506451802055795, -0.22129625446717305, -0.1995543761341274, -0.17978288960481015, -0.16191675342988843, -0.1458834124392181 ], [ -1.350968727420124, -1.374963322064961, -1.3966852277636692, -1.4158951791601266, -1.4323620403528081, -1.4458664150303164, -1.4562044117940638, -1.4631915134074087, -1.466666481854689, -1.4664952095515473, -1.4625744024812248, -1.4548349567630627, -1.4432448708965258, -1.42781152696608, -1.4085831801463295, -1.3856495197130045, -1.3591412063114081, -1.3292283460091634, -1.296117925362011, -1.260050295414577, -1.2212948483272843, -1.1801450718481623, -1.136913190504682, -1.0919246075816027, -1.0455123507423751, -0.9980117004171222, -0.9497551484577049, -0.9010677995426769, -0.8522632931121947, -0.8036402918610416, -0.7554795555639785, -0.7080415968801208, -0.661564898745568, -0.6162646605658397, -0.5723320320076608, -0.5299337880491303, -0.4892123963954841, -0.4502864277913754, -0.41325126063365136, -0.3781800331712828, -0.3451247991099764, -0.31411784533509923, -0.285173133515495, -0.2582878304102485, -0.23344389469256477, -0.2106096910067381, -0.18974160480510904, -0.17078563431510485, -0.1536789388105484, -0.13835132524296911 ], [ -1.3083452336588686, -1.3308834126988536, -1.3512148525285552, -1.3691138931573064, -1.3843631573200588, -1.3967569465708596, -1.406104762581017, -1.4122349027505514, -1.4149980647750233, -1.4142708768070318, -1.4099592497597149, -1.402001428865382, -1.3903706066296357, -1.3750769530333957, -1.3561689249497255, -1.3337337374606024, -1.3078969149776667, -1.278820887085353, -1.24670264786355, -1.211770551791851, -1.1742803677714084, -1.134510750041918, -1.092758307559633, -1.049332460845432, -1.0045502686822199, -0.9587313891775628, -0.9121933142331116, -0.8652469870568653, -0.8181928822097978, -0.771317599205376, -0.7248909954368853, -0.6791638629891299, -0.6343661369037505, -0.5907056095187637, -0.5483671161719472, -0.5075121513221763, -0.46827887046107675, -0.43078243154613216, -0.395115629621972, -0.3613497794023264, -0.3295358025149606, -0.2997054785783846, -0.27187282205737673, -0.24603554976947883, -0.22217660687835394, -0.2002657221592028, -0.18026096623987353, -0.16211028942237804, -0.1457530185953766, -0.13112129567575148 ], [ -1.2663375722015229, -1.2874670258662593, -1.3064558411587084, -1.3230913987287187, -1.3371694578820275, -1.3484973476470803, -1.3568972571894014, -1.3622095756458796, -1.364296219065059, -1.363043867126932, -1.358367015928343, -1.3502107376257015, -1.3385530261970722, -1.3234066043889856, -1.3048200729881199, -1.2828783016357028, -1.2577019904011475, -1.2294463711220205, -1.1982990631686203, -1.164477144760148, -1.1282235430388041, -1.0898028793900094, -1.0494969280905302, -1.0075998552240355, -0.9644134016324375, -0.9202421605133887, -0.8753890799325726, -0.8301512959787971, -0.7848163762608149, -0.7396590280887427, -0.6949383025081313, -0.6508953052489005, -0.6077514089932314, -0.5657069481671516, -0.524940367494952, -0.4856077884692753, -0.4478429532760482, -0.41175750315522475, -0.3774415472787769, -0.3449644786199708, -0.3143759946469866, -0.2857072827155107, -0.2589723325279578, -0.23416934078753893, -0.21128217607428135, -0.1902818749238604, -0.1711281430557221, -0.15377083865836383, -0.1381514175967744, -0.12420432335943254 ], [ -1.225012020496132, -1.2447816672506025, -1.2624767348436194, -1.2778970827485256, -1.2908509944107012, -1.3011581725462171, -1.308652811574247, -1.3131866986619483, -1.314632284276762, -1.312885650648109, -1.3078692932141427, -1.2995346178392588, -1.2878640478161685, -1.2728726320987753, -1.2546090521747486, -1.233155940841384, -1.2086294518271044, -1.1811780530213336, -1.1509805549195122, -1.1182434257210225, -1.083197481106742, -1.0460940663930904, -1.0072008689740768, -0.9667975086155899, -0.925171052564371, -0.8826115930168625, -0.8394080084028912, -0.7958440095760982, -0.7521945496441302, -0.7087226537228695, -0.6656767037796733, -0.6232881948644892, -0.5817699629100054, -0.5413148710788498, -0.5020949312814686, -0.46426082977442085, -0.42794182038972206, -0.39324594561673165, -0.36026054412978614, -0.32905300310410013, -0.29967171448853325, -0.27214719603422344, -0.24649334007723334, -0.22270875564829407, -0.20077817228394435, -0.18067387683575564, -0.1623571575492022, -0.14577973267183642, -0.13088514383062932, -0.11761009737464811 ], [ -1.1844282086527056, -1.2028878616983614, -1.2193387747302225, -1.2335927302681422, -1.245469935737819, -1.2548018323573948, -1.2614339621468127, -1.2652288462630896, -1.2660688188380174, -1.2638587501195566, -1.2585285819172574, -1.2500355886634877, -1.2383662708337262, -1.223537786162464, -1.2055988298905431, -1.1846298892544498, -1.1607428195200575, -1.1340797177370145, -1.104811103563406, -1.0731334507447636, -1.0392661446843439, -1.0034479679506096, -0.9659332343203799, -0.9269877019511811, -0.8868843975472843, -0.845899476912596, -0.804308234690297, -0.7623813592844788, -0.7203815098383386, -0.6785602723657338, -0.6371555330036258, -0.5963892887929166, -0.5564659009707582, -0.5175707827471127, -0.4798695030045449, -0.44350727921703736, -0.40860882695109346, -0.37527852935336314, -0.3436008877772001, -0.3136412138807021, -0.28544652386593095, -0.25904659676713093, -0.23445516060093285, -0.21167117256473555, -0.19068016214719985, -0.17145560887422806, -0.1539603293651699, -0.1381478513582246, -0.12396375534105264, -0.11134696736413541 ], [ -1.1446393304550377, -1.161839393799773, -1.1770961722086735, -1.190232824109244, -1.2010808951081104, -1.2094829498011177, -1.2152952454982489, -1.2183904030103403, -1.218660021957526, -1.2160171794623758, -1.2103987423678928, -1.2017674155422935, -1.190113444017121, -1.1754558863685216, -1.1578433823500967, -1.1373543501637662, -1.1140965678581285, -1.088206118106346, -1.059845704056006, -1.0292023734531281, -0.9964847160163479, -0.9619196225225058, -0.9257487113424159, -0.8882245381802178, -0.849606707369621, -0.8101579989076884, -0.7701406156690196, -0.7298126414482429, -0.6894247841891752, -0.6492174614042237, -0.6094182675478809, -0.5702398468727147, -0.5318781806679781, -0.49451128511711584, -0.45829830547034467, -0.4233789838288897, -0.3898734714874579, -0.3578824523239843, -0.327487540954184, -0.2987519180529832, -0.2717211651416376, -0.24642426200946876, -0.2228747115552987, -0.20107175899537522, -0.1810016749188399, -0.16263907444152936, -0.14594824760880232, -0.13088447915051216, -0.11739533864286944, -0.10542192504014158 ], [ -1.105692376642794, -1.1216835691661151, -1.1357963980532881, -1.1478648612632516, -1.157731272761527, -1.1652487264732307, -1.1702835883883322, -1.1727179740488871, -1.1724521621128003, -1.1694068875802661, -1.1635254512563247, -1.154775576150848, -1.1431509380948972, -1.128672298251597, -1.1113881705745097, -1.0913749682811669, -1.0687365900110382, -1.0436034276737316, -1.0161308024715217, -0.9864968610982092, -0.9548999883776799, -0.9215558134841417, -0.8866939027242792, -0.8505542416689112, -0.8133836129315983, -0.7754319734935127, -0.7369489280513399, -0.6981803835988661, -0.6593654566199765, -0.6207336890908792, -0.582502614015864, -0.5448756962932769, -0.5080406609384683, -0.47216820848742247, -0.43741110700031727, -0.4039036415738726, -0.3717613956441326, -0.34108133352472936, -0.31194215043345674, -0.2844048545216289, -0.25851354492750356, -0.2342963504044857, -0.21176649441282924, -0.1909234545084555, -0.17175418623878946, -0.1542343844140408, -0.13832975744631026, -0.12399729334670795, -0.11118649887526022, -0.09984059619840902 ], [ -1.0676283859439737, -1.0824614918606694, -1.0954804859167646, -1.1065296816985686, -1.1154616089025366, -1.1221393184604118, -1.126438704180011, -1.1282508002913962, -1.127484008740333, -1.124066204208149, -1.1179466592288037, -1.109097727278852, -1.0975162193960026, -1.0832244108315081, -1.0662706193791094, -1.0467293068665406, -1.0247006697967058, -1.0003097035949162, -0.9737047460737326, -0.9450555278642797, -0.9145507788013821, -0.8823954578140406, -0.8488076883362488, -0.8140154907015839, -0.7782534070839812, -0.7417591135008226, -0.7047701078373106, -0.6675205536962148, -0.6302383481617644, -0.5931424683219578, -0.5564406375506837, -0.5203273388875207, -0.48498218997287434, -0.45056868233456004, -0.4172332776648142, -0.38510484522913724, -0.3542944177636893, -0.3248952381124899, -0.29698306533235064, -0.27061670690461215, -0.2458387428581299, -0.22267640782870735, -0.201142598152666, -0.1812369728213632, -0.16294711933071038, -0.14624975799091433, -0.13111196098953748, -0.11749236532389973, -0.10534236155869214, -0.09460724316236346 ], [ -1.0304827098256217, -1.0442083539637927, -1.0561833462249919, -1.066261805739718, -1.0743059433805544, -1.0801882168417696, -1.0837934924412425, -1.0850211752234895, -1.0837872642393616, -1.0800262850566291, -1.0736930470987347, -1.0647641700235124, -1.053239321900856, -1.0391421133030796, -1.0225205963129067, -1.0034473262874894, -0.9820189569447453, -0.958355355399864, -0.9325982421392441, -0.904909380188322, -0.8754683563644932, -0.8444700140228506, -0.8121216098725235, -0.7786397764345635, -0.7442473761568459, -0.7091703331701352, -0.6736345246033978, -0.6378628059752194, -0.6020722352770035, -0.5664715488293272, -0.5312589296400757, -0.4966200965325551, -0.46272673032621014, -0.4297352422873255, -0.39778588024219186, -0.36700215936150093, -0.33749059778570745, -0.3093407319831658, -0.28262538296191253, -0.2574011420827873, -0.2337090440952354, -0.21157539496069977, -0.19101272285265547, -0.17202082223904225, -0.15458786298545069, -0.13869153880870488, -0.12430023202627494, -0.11137417427809027, -0.09986658565760909, -0.08972477741149265 ], [ -0.994285287377479, -1.006953733723431, -1.0179340870051603, -1.0270897766725513, -1.0342921788892925, -1.0394226300602223, -1.0423744388824674, -1.0430548606795014, -1.0413869937965736, -1.0373115538840416, -1.0307884783807375, -1.0217983110164734, -1.0103433153778185, -0.9964482682260505, -0.980160887899544, -0.9615518610893692, -0.9407144425012246, -0.9177636159498186, -0.8928348214300666, -0.8660822695404066, -0.8376768810242794, -0.8078039039026772, -0.7766602726395192, -0.7444517822622421, -0.7113901549683858, -0.677690077464424, -0.6435662844003811, -0.6092307573110364, -0.5748901001197192, -0.5407431422287623, -0.5069788092179193, -0.4737742898429259, -0.44129351692123864, -0.40968596925529677, -0.37908579231332307, -0.3496112271989533, -0.32136433063412984, -0.2944309633129649, -0.26888102004052983, -0.2447688724749557, -0.22213399392029243, -0.20100173531614285, -0.18138422216473682, -0.16328134344718226, -0.1466818054369492, -0.1315642255605738, -0.11789824394759152, -0.1056456329373816, -0.09476138747837726, -0.08519478199232466 ], [ -0.959060927150729, -0.9707218991650072, -0.9807563386088858, -0.989036505656637, -0.9954424449095971, -0.9998638655462995, -1.0022020131743041, -1.0023714992867852, -1.0003020508636757, -0.9959401394301994, -0.9892504461422805, -0.9802171176902847, -0.968844767563835, -0.9551591790656145, -0.9392076708576763, -0.9210590930167593, -0.9008034315178335, -0.8785510113811329, -0.8544313027161755, -0.8285913486489267, -0.8011938485716978, -0.7724149432657412, -0.7424417593085273, -0.7114697781181415, -0.6797000996252445, -0.6473366718140567, -0.6145835554222818, -0.5816422883268296, -0.5487094071012866, -0.5159741745105092, -0.4836165519211889, -0.45180544533044475, -0.42069724346223714, -0.39043465658703136, -0.3611458557285381, -0.332943903989841, -0.3059264650282383, -0.28017576832386637, -0.2557588068371295, -0.23272773988770967, -0.21112047251725974, -0.19096138208323188, -0.1722621632162975, -0.15502276338918364, -0.1392323830247939, -0.12487051616002942, -0.11190801004002293, -0.10030812452766846, -0.09002757477809409, -0.08101754317109533 ], [ -0.9248295931449567, -0.9355321144141829, -0.9446685796732057, -0.9521196164005373, -0.9577734599817024, -0.9615277083195288, -0.9632910625097777, -0.9629850215723451, -0.9605454963917195, -0.9559243053979003, -0.9490905124053569, -0.9400315658200005, -0.928754198581252, -0.915285050179967, -0.8996709762466566, -0.881979017726871, -0.86229601050694, -0.8407278272091505, -0.8173982551739266, -0.7924475276220813, -0.7660305377687713, -0.7383147773632908, -0.7094780509771057, -0.6797060247561637, -0.6491896729239149, -0.6181226869426827, -0.5866989110143894, -0.5551098638127127, -0.5235424004073599, -0.4921765607630878, -0.46118364249734234, -0.430724526275726, -0.4009482727876825, -0.3719910010921157, -0.34397504959856784, -0.3170084133214339, -0.29118444450364134, -0.2665817983641767, -0.2432646016248292, -0.22128281859355425, -0.20067278785190612, -0.1814579018978013, -0.1636494022900561, -0.14724726377249708, -0.13224114236286888, -0.11861136432432606, -0.1063299351562228, -0.09536155012737613, -0.0856645903291402, -0.0771920906677428 ], [ -0.8916066924732007, -0.9013989463270167, -0.9096844620008823, -0.9163517873862342, -0.9212968902094005, -0.9244247945907191, -0.9256511990522439, -0.9249040459800255, -0.922125010159465, -0.9172708718834407, -0.9103147385324777, -0.9012470777724222, -0.8900765259805004, -0.8768304375586192, -0.8615551447101102, -0.8443159031887225, -0.8251965074308298, -0.8042985680915214, -0.7817404558526816, -0.7576559268231279, -0.7321924561777987, -0.7055093171441487, -0.677775451367937, -0.6491671835450711, -0.6198658376401054, -0.5900553138751466, -0.55991968500437, -0.5296408673935226, -0.49939641742720187, -0.4693574971796942, -0.4396870455561648, -0.4105381826975585, -0.38205286677771166, -0.3543608137997074, -0.32757868295605075, -0.3018095228272166, -0.27714246735768966, -0.25365266529922503, -0.23140142271180508, -0.21043653516344385, -0.1907927844189845, -0.17249257355871417, -0.15554667449462967, -0.13995506261122515, -0.12570781459875824, -0.11278604732342967, -0.10116287765538234, -0.09080438543270763, -0.08167056407695972, -0.07371624571187052 ], [ -0.8594033625409518, -0.8683325693288733, -0.8758131323441226, -0.8817410897219773, -0.8860197021779115, -0.8885609786507551, -0.8892871796533053, -0.8881322702701211, -0.8850432927383153, -0.8799816268472821, -0.8729241052105842, -0.863863950068004, -0.852811498972861, -0.8397946887986215, -0.8248592711887851, -0.8080687379838035, -0.789503942245002, -0.769262409035821, -0.7474573397251334, -0.7242163237180993, -0.6996797815868895, -0.6739991729384988, -0.6473350104417965, -0.6198547277681161, -0.5917304534507796, -0.5631367446746486, -0.5342483347626459, -0.505237945772218, -0.47627421340441345, -0.44751976569780894, -0.41912949011261125, -0.391249016009245, -0.3640134315865935, -0.33754624643466635, -0.31195860330148717, -0.2873487357434248, -0.2638016622328516, -0.24138910218002985, -0.22016959526766722, -0.20018880251522075, -0.18147996555120183, -0.16406449959724756, -0.14795269554627222, -0.13314450711761983, -0.11963040025386551, -0.10739224354689902, -0.09640422041382712, -0.08663374586789185, -0.0780423729465003, -0.07058667608427815 ], [ -0.8282267558523405, -0.8363390666402087, -0.8430595493469608, -0.8482913189646358, -0.8519445087160965, -0.853937691564967, -0.8541992764419325, -0.852668852973419, -0.8492984568208046, -0.8440537263877066, -0.8369149208086061, -0.8278777690195195, -0.8169541205772339, -0.8041723709727978, -0.7895776376549413, -0.7732316679251676, -0.7552124662424374, -0.7356136360947225, -0.714543440129234, -0.6921235912422223, -0.6684877962981456, -0.6437800825452966, -0.6181529441185083, -0.5917653518534817, -0.5647806736749624, -0.5373645548941147, -0.5096828078229827, -0.48189935827764097, -0.45417429299011514, -0.42666204695868637, -0.39950976366250845, -0.3728558542042164, -0.346828774181023, -0.32154602976220037, -0.2971134173782608, -0.27362449487010876, -0.251160276115062, -0.22978913619340968, -0.20956691017585127, -0.19053716563152046, -0.17273162696044442, -0.15617072857901215, -0.1408642737373751, -0.12681217620325214, -0.11400526307774528, -0.10242611848240002, -0.09204994964663382, -0.08284545891595463, -0.074775707294922, -0.06779895725222862 ], [ -0.7980803208086464, -0.8054207263167076, -0.8114247941455646, -0.816002319487587, -0.8190699061572105, -0.8205522904020227, -0.8203836370814577, -0.8185087837532881, -0.8148844068091257, -0.8094800827392017, -0.8022792170367948, -0.7932798133600258, -0.782495056555485, -0.7699536852015547, -0.755700132590566, -0.7397944195996157, -0.7223117886566606, -0.703342074829884, -0.6829888176788647, -0.6613681255338488, -0.6386073118805444, -0.6148433310679934, -0.5902210471927584, -0.5648913753744664, -0.5390093384447635, -0.5127320841557832, -0.48621690831802045, -0.45961932785567683, -0.43309124476830374, -0.40677923763412327, -0.38082301186209744, -0.3553540337065537, -0.33049436642187113, -0.3063557201713587, -0.28303872070509617, -0.2606323956421841, -0.2392138716425536, -0.2188482709875892, -0.19958879220785586, -0.1814769564449641, -0.1645429992072469, -0.14880638602669616, -0.13427643016462798, -0.12095299083827671, -0.10882723133041772, -0.09788241767375072, -0.08809474025141784, -0.07943414251295766, -0.07186514297461066, -0.0653476386725933 ] ], "zauto": true, "zmax": 2.757742051070746, "zmin": -2.757742051070746 }, { "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.33416990708528505, 0.31730822415520604, 0.3005313515984961, 0.28397115644208837, 0.2677856814252369, 0.25216362310089435, 0.23732787694036772, 0.22353652085355782, 0.2110787896411499, 0.2002629747044352, 0.19139355221758325, 0.18473734157762237, 0.18048370361897145, 0.1787099444892106, 0.1793654419249072, 0.18228229602794446, 0.18720856807909528, 0.19385069303105962, 0.20191079722458244, 0.2111109312839983, 0.22120365325958863, 0.2319728016748644, 0.2432292389875789, 0.25480529267764895, 0.2665500397288107, 0.27832626296668783, 0.29000908278216786, 0.30148587705535485, 0.31265700009969966, 0.3234368622636539, 0.333755040563211, 0.34355720334367784, 0.352805724247849, 0.3614799263497024, 0.369575938721241, 0.3771061707288908, 0.38409842014236495, 0.390594634943444, 0.39664934963515286, 0.40232781790471495, 0.40770386686661947, 0.412857505271622, 0.41787232976105254, 0.42283278935164925, 0.42782138763976973, 0.43291592224950265, 0.4381868781848585, 0.4436951016592528, 0.44948987954940617, 0.45560753409906457 ], [ 0.32843646006968097, 0.31128498173356955, 0.2942120290076605, 0.2773488409967057, 0.2608532474373005, 0.24491476875509857, 0.22975904370785033, 0.2156499026690531, 0.20288640837348856, 0.19179127896888243, 0.18268717994473552, 0.17585990602296556, 0.17151353759726184, 0.16973048318563677, 0.170452898934737, 0.17349529869086006, 0.17858348448812147, 0.18540319754614976, 0.19364141735917123, 0.2030115533638194, 0.2132628434286228, 0.22417911326514395, 0.23557263464938502, 0.24727724060442988, 0.2591428950763216, 0.27103241406913803, 0.28282016501608287, 0.2943922050408361, 0.3056472639319424, 0.3164980733237256, 0.32687268548443144, 0.33671555832112937, 0.3459882860840657, 0.3546699247499579, 0.3627569025008453, 0.37026252684287275, 0.3772161080762765, 0.38366171998531723, 0.3896566172415598, 0.39526932838232903, 0.4005774457215408, 0.40566514083750327, 0.41062044728422975, 0.4155323708493287, 0.42048791070697034, 0.4255690993242615, 0.4308501906189898, 0.4363951393414192, 0.4422555148304095, 0.4484689756608136 ], [ 0.32325098859110984, 0.30584955770980354, 0.28852335013528196, 0.27140296974257805, 0.25464581962043004, 0.23844173687739026, 0.22301821668503483, 0.20864351762643157, 0.19562478049439125, 0.18429709430316998, 0.17499917525608946, 0.16803381476613, 0.1636181352964203, 0.1618383062901602, 0.16262836303112824, 0.1657850733577587, 0.1710128530855751, 0.177978627660186, 0.18635671350856803, 0.19585443646817535, 0.20621993499910465, 0.2172387144474699, 0.22872561183414242, 0.24051667842254149, 0.25246315886245974, 0.26442809036333476, 0.2762851546658217, 0.2879190895436894, 0.29922696626821993, 0.3101197820571686, 0.3205239909193754, 0.3303827483837286, 0.3396567572841765, 0.34832467373394804, 0.3563830728559713, 0.36384599238282955, 0.37074407734926246, 0.37712334731335445, 0.3830436036514899, 0.3885764919633768, 0.3938032360836161, 0.39881206752059356, 0.40369538848125314, 0.4085467280898065, 0.4134575785672055, 0.4185142277282573, 0.42379473101190485, 0.4293661839663049, 0.43528245832667883, 0.44158254711829925 ], [ 0.31864289522406236, 0.30103329700509734, 0.28349895973207306, 0.2661700004701405, 0.24920336546691627, 0.23278889258007152, 0.21715520383719225, 0.2025737135658859, 0.18935773552245844, 0.1778522029911214, 0.16840890395732755, 0.16134452908489194, 0.15688646056361394, 0.15512261351427195, 0.15597807469218053, 0.159232510880262, 0.16457101642532235, 0.1716447084310442, 0.1801184927097607, 0.1896965135505428, 0.20012804879488982, 0.21120181372103342, 0.22273614652909374, 0.23456982667854484, 0.24655562086242644, 0.2585568789245876, 0.2704466146823132, 0.28210823199763824, 0.29343711393563887, 0.304342481466999, 0.31474913260266374, 0.3245988412354497, 0.3338513133909866, 0.3424846715804977, 0.35049547648100265, 0.3578983106135648, 0.364724950444994, 0.371023148415091, 0.37685503982356516, 0.3822951849627517, 0.3874282571490176, 0.39234639454989956, 0.3971462493630413, 0.40192579228093317, 0.4067809618427627, 0.4118022835375908, 0.4170716163328884, 0.4226592069532452, 0.4286212369799425, 0.4349980291520191 ], [ 0.3146390688247283, 0.29686458161627965, 0.2791689764837606, 0.2616821724109005, 0.2445608033976809, 0.22799458691154723, 0.21221272121928755, 0.19748859882474737, 0.1841397060395435, 0.1725178811129259, 0.16298419081660434, 0.15586498626821735, 0.1513939830409852, 0.14965817710179502, 0.15057308900470634, 0.15390293156486365, 0.15931686825068453, 0.16645434010845273, 0.17497474049262707, 0.18458210878381967, 0.19502896480614565, 0.20610849325077746, 0.2176431891608217, 0.22947484500252524, 0.24145784032760853, 0.25345584705010704, 0.26534119869493117, 0.2769959541458621, 0.2883138002377555, 0.29920216830478347, 0.30958417027880514, 0.3194001414684838, 0.32860870017738764, 0.3371873070556232, 0.345132343034161, 0.35245873672150657, 0.359199170409452, 0.36540288569988655, 0.3711341004333623, 0.3764700418872194, 0.38149860012947795, 0.38631561243563145, 0.39102180659123664, 0.3957194583019271, 0.4005088544202916, 0.40548469518153046, 0.4107326081166815, 0.4163259746397061, 0.42232327811799963, 0.4287661627091049 ], [ 0.311263741423619, 0.29336868756042705, 0.2755598307234848, 0.25796728962418264, 0.24074767431292926, 0.2240906294769049, 0.20822554442157507, 0.19342671576482623, 0.18001374654522753, 0.16834210276882355, 0.1587776269424268, 0.15165107424903612, 0.1471975677810978, 0.14550004247585355, 0.14646421995517298, 0.14984160865860127, 0.15529011535430054, 0.16244258816501678, 0.17095722291288218, 0.18054099950208932, 0.1909515032464412, 0.2019873001165806, 0.2134753913734207, 0.22526064776508858, 0.2371990234049123, 0.24915446632429758, 0.2609986130795075, 0.2726121924016334, 0.28388722684368806, 0.29472938773821616, 0.3050601101232432, 0.3148182654985714, 0.32396131586818655, 0.33246594398750784, 0.34032818770959694, 0.3475631148582687, 0.3542040698766636, 0.3603015122007119, 0.3659214542043038, 0.37114349760253645, 0.37605846462411324, 0.38076562689600135, 0.38536955303842024, 0.38997662640166664, 0.3946913259057951, 0.39961241110761087, 0.4048291994204641, 0.41041815813191407, 0.4164400453130614, 0.4229378135677774 ], [ 0.30853832902365363, 0.29056763714117734, 0.27269411607498356, 0.2550485458760077, 0.23778789246597823, 0.22110188860580024, 0.2052198440363764, 0.19041595765670916, 0.1770098497154032, 0.16535708390318657, 0.15582325139672906, 0.1487375304819341, 0.144330887019722, 0.14267890772833236, 0.1436778435488599, 0.14707028979339795, 0.15250858835024533, 0.1596246799668978, 0.16807998681014782, 0.17758723755039857, 0.18791052428752583, 0.19885433024514895, 0.2102502209033732, 0.22194602500181204, 0.23379914194492893, 0.24567372928728926, 0.25744073417598723, 0.26897961806512116, 0.28018082793121196, 0.2909483605291902, 0.30120203246239624, 0.3108792661683673, 0.3199363282959209, 0.32834902644608144, 0.3361129001393027, 0.343242947058396, 0.34977291719995063, 0.35575419326856533, 0.36125426084660195, 0.36635476063052475, 0.37114911083000024, 0.3757396938894562, 0.3802346207169812, 0.38474411899849065, 0.3893766388494311, 0.3942348242341204, 0.39941155325514255, 0.40498629217906035, 0.4110220237213524, 0.41756298964309635 ], [ 0.30648123633829966, 0.28848002121057537, 0.2705904253396928, 0.25294436005688326, 0.2356995501795279, 0.2190460117510491, 0.20321273770217838, 0.1884728352213275, 0.17514378719509371, 0.16357756861239522, 0.15413423163290332, 0.14713512047029378, 0.14280138744713453, 0.14119828028512357, 0.14221359006484333, 0.14558557964940796, 0.15096726130456917, 0.1579954819891011, 0.16633908926324525, 0.1757189634254847, 0.1859067182982554, 0.19671293973841308, 0.20797357703398575, 0.21953916720464836, 0.23126838282270906, 0.24302554062363052, 0.25468095659231527, 0.2661129541321767, 0.2772105627369414, 0.2878762548608927, 0.29802834346190904, 0.3076028627305778, 0.3165548802027607, 0.32485925562198736, 0.33251088889216657, 0.3395245016575766, 0.34593398575164747, 0.3517913347306859, 0.357165157359262, 0.3621387584139625, 0.36680776626357764, 0.3712772919989546, 0.3756586246687636, 0.3800655033616775, 0.3846100586564255, 0.3893985783160902, 0.3945273150271933, 0.4000786033255368, 0.4061175732559333, 0.41268972788740543 ], [ 0.3051076116935836, 0.2871207722892512, 0.26926314649657634, 0.2516681951768129, 0.23449475208362663, 0.21793325556184087, 0.202212081966327, 0.18760218237973497, 0.17441667728950694, 0.16300022777159534, 0.15370212295714486, 0.14682988411412792, 0.14258973475591938, 0.14103433339177868, 0.14204471705288138, 0.1453597728040201, 0.15063936855023474, 0.15753069243434695, 0.1657136945096519, 0.17491930071502032, 0.1849272527424712, 0.19555414401547236, 0.20663996786321556, 0.21803765761835484, 0.22960699318773187, 0.2412124487959353, 0.2527238378621019, 0.26401855251403333, 0.27498443849054915, 0.2855226628776005, 0.29555020908157775, 0.30500183301803646, 0.31383143832782207, 0.32201289319319265, 0.3295403357761517, 0.33642801502643777, 0.34270969990998157, 0.34843767072058407, 0.3536812864671325, 0.3585251066563233, 0.3630665381210191, 0.36741298194846794, 0.37167847586264163, 0.37597986613166023, 0.3804325997640608, 0.3851462972431169, 0.39022033738171635, 0.39573974315231103, 0.401771682963368, 0.4083628819087462 ], [ 0.30442904847172964, 0.2865008808535015, 0.2687222068458501, 0.25122834561497076, 0.2341794632832364, 0.21776641654778708, 0.20221651383779773, 0.1877973499189318, 0.17481539398977036, 0.16360437759839075, 0.15449801965678345, 0.14778484189828087, 0.14365213534033253, 0.1421387790336297, 0.14312133514800618, 0.1463441619684456, 0.15147954056762755, 0.15818962416167642, 0.16616841115121844, 0.17515822749178775, 0.1849472060367217, 0.1953576683462906, 0.2062332409258275, 0.21742894476959737, 0.2288055492183807, 0.2402277554377602, 0.2515650827830539, 0.2626942785048011, 0.2735023125359201, 0.28388933185484594, 0.2937712219478001, 0.3030816191011204, 0.3117733383197138, 0.3198192441321162, 0.3272126140026763, 0.33396704195022614, 0.3401159144351359, 0.34571146926228397, 0.35082342655313864, 0.355537163150605, 0.35995139240292295, 0.3641753146407778, 0.3683252242291364, 0.3725205999874709, 0.37687976701997467, 0.3815152943296178, 0.3865293722160316, 0.3920094787712754, 0.3980246759504867, 0.4046228567108071 ], [ 0.30445324216799224, 0.28662706210876915, 0.26897277015614984, 0.2516276944849937, 0.23475337011756617, 0.2185408579743631, 0.2032157347501698, 0.18904087527159438, 0.17631379402326972, 0.1653539651610459, 0.1564754810371075, 0.14994393506589, 0.14592516488283794, 0.14444424567627817, 0.1453758839601402, 0.1484742024695763, 0.15342838955069216, 0.15991909768750556, 0.16765649138924768, 0.1763951434025784, 0.18593159018422287, 0.1960935179799545, 0.20672778581078563, 0.2176912507436827, 0.2288456300800456, 0.24005600243095984, 0.25119187993075753, 0.26212972370073967, 0.27275600102245673, 0.28297018197915996, 0.292687336789721, 0.30184018525727035, 0.3103805672769237, 0.3182803637114878, 0.32553191800315645, 0.33214800558920266, 0.33816138141406743, 0.34362391307672907, 0.3486052837927167, 0.35319122987104107, 0.3574812663284101, 0.361585856526741, 0.365623002318836, 0.3697142738988517, 0.3739803638460965, 0.3785363324959676, 0.3834867992649914, 0.3889214077306105, 0.3949109291276888, 0.40150435139575247 ], [ 0.3051836251721365, 0.2875013963683076, 0.2700149097818397, 0.2528634618299173, 0.23620976809809008, 0.22024463416680898, 0.20519101103416224, 0.1913055506862014, 0.17887459108144926, 0.16820049720865732, 0.1595746891517492, 0.1532373948056861, 0.14933206025305987, 0.14787097964178683, 0.14872967879615978, 0.15167547250449928, 0.15641766326344006, 0.1626577509124782, 0.1701233667445013, 0.17858174425471368, 0.18783768107749907, 0.19772386786263346, 0.20809006905354635, 0.21879481975954285, 0.22970083393890336, 0.2406737970774701, 0.25158356805488397, 0.26230673797377896, 0.27272969462693836, 0.2827516190052839, 0.2922870891723334, 0.3012681486147431, 0.30964580943003034, 0.3173910191499944, 0.32449514021179987, 0.33096998725741994, 0.3368474500333382, 0.34217870598330535, 0.3470330020120289, 0.35149596392694377, 0.35566737949508814, 0.35965840221591283, 0.36358814334207745, 0.3675796637615558, 0.37175544604470157, 0.37623251514074263, 0.3811174708187815, 0.38650177547014775, 0.39245768337300757, 0.3990351819143434 ], [ 0.30661901223759275, 0.28912097946211834, 0.27184329603228097, 0.25492698020402205, 0.23853550464413334, 0.22285871723208242, 0.2081158488231987, 0.19455575991659013, 0.18245159902530697, 0.1720864109374438, 0.16372704875606922, 0.1575874507138721, 0.15378915982522517, 0.15233347886543028, 0.15309921918456093, 0.15586930780318542, 0.16037506789234127, 0.16634007243372295, 0.17350999614193038, 0.1816648100522385, 0.1906173598456295, 0.2002050478506989, 0.2102803314603199, 0.2207033781547403, 0.23133803838898212, 0.2420509018312498, 0.2527125776576214, 0.2632002407333383, 0.2734006536038579, 0.2832131240641725, 0.292552088286775, 0.30134918069432753, 0.30955475999162785, 0.31713891734624694, 0.3240920125224772, 0.33042477998273134, 0.3361680294978863, 0.34137194171898855, 0.3461049337376036, 0.3504520475615458, 0.35451280061959983, 0.35839843755921463, 0.3622285427200755, 0.3661270176800388, 0.3702174996095075, 0.37461838889226845, 0.37943775513819405, 0.3847684777334646, 0.39068402484535836, 0.39723526150888694 ], [ 0.3087532959765472, 0.2914776274380027, 0.2744469449258669, 0.25780354290036256, 0.2417110105466966, 0.22635733160865862, 0.21195679149389995, 0.1987489306424326, 0.18699203346808, 0.17694836059450136, 0.16885945676359412, 0.1629133862835786, 0.15921137455192044, 0.15774594462846486, 0.158401257760311, 0.16097727888951985, 0.16522810264626142, 0.17089965037425353, 0.1777556331860056, 0.18558859748233797, 0.1942192174493577, 0.20348942117970084, 0.2132542808840325, 0.22337566715463994, 0.23371879011560495, 0.24415149312422527, 0.25454556899384223, 0.2647792469439402, 0.2747401298161115, 0.28432807879983973, 0.29345775119565315, 0.302060655480185, 0.31008669034004477, 0.3175051889588924, 0.3243055095471047, 0.33049720980748554, 0.33610982599438455, 0.34119225321784324, 0.34581169787193666, 0.35005215024778846, 0.35401231065879274, 0.35780290171027157, 0.36154331907389603, 0.36535761865337324, 0.3693699112024216, 0.3736993315532055, 0.37845485500703135, 0.3837303257918357, 0.3896001149458982, 0.39611581429185583 ], [ 0.3115752321532135, 0.29455768031201573, 0.2778090756301687, 0.26147236932461126, 0.24571045183191204, 0.23070839839777169, 0.21667428637398292, 0.2038369607615611, 0.1924386066924755, 0.18272001080763156, 0.17489769961665894, 0.16913531920811387, 0.16551606220853904, 0.1640259841173283, 0.16455615678152113, 0.16692413520804258, 0.1709066113282838, 0.17627140077212958, 0.1827998152295712, 0.19029666333105716, 0.19859026429071622, 0.2075270094387865, 0.21696464427403125, 0.22676692316795943, 0.23680071000491534, 0.2469354872022507, 0.25704467591709607, 0.2670080282672075, 0.27671444627218256, 0.2860647656508823, 0.29497422680196717, 0.3033745000117929, 0.31121522767623533, 0.3184650987193098, 0.3251124900906106, 0.3311657077305958, 0.3366528431998873, 0.3416212386949188, 0.3461365275124913, 0.3502811939327413, 0.35415258121810866, 0.3578602751251189, 0.3615228096523511, 0.36526368740450305, 0.3692067811229353, 0.37347128112800393, 0.37816646200453174, 0.3833866381186545, 0.3892067338382352, 0.39567888635903214 ], [ 0.3150683487901855, 0.29834194253823487, 0.2819071152589419, 0.26590672199323084, 0.25050202353336387, 0.23587408501057067, 0.2222235739422297, 0.20976751404579813, 0.19873124799151623, 0.18933412041604517, 0.18176875396066614, 0.17617652480344473, 0.17262520126991404, 0.17109653906962638, 0.17148955938656765, 0.17363926172476668, 0.17734408986742095, 0.18239279372649853, 0.18858356577105276, 0.19573308338233542, 0.20367718576583477, 0.21226678684975156, 0.22136248990977167, 0.23083021050588393, 0.2405388174160579, 0.25035983904482956, 0.26016876630268676, 0.26984732600314365, 0.2792861573355752, 0.2883874729988793, 0.2970674456136611, 0.30525818959560647, 0.31290929694773423, 0.3199889351985628, 0.3264845353324387, 0.33240309602224716, 0.3377711154228352, 0.3426341392270526, 0.3470558885762463, 0.3511169085032524, 0.3549126621921767, 0.3585509947275357, 0.3621489089805251, 0.3658286417341418, 0.3697131024909309, 0.3739208363776106, 0.37856078268786725, 0.38372719915578074, 0.389495181106077, 0.39591719935028696 ], [ 0.31921100218429005, 0.30280578463785646, 0.28671287424646175, 0.27107419290420537, 0.25604839163130444, 0.2418114480408167, 0.22855556429363316, 0.21648512970127384, 0.20580839145077895, 0.1967238920967731, 0.18940204439641198, 0.18396446683192622, 0.1804661357079809, 0.17888637840794014, 0.17913272466606803, 0.1810569627565988, 0.1844780054096531, 0.18920426652523314, 0.195049936045824, 0.2018431370057196, 0.2094271678130096, 0.21765763166977603, 0.2263982808790054, 0.23551754923198315, 0.24488670492137304, 0.25437973964145, 0.26387464216503026, 0.2732555394009242, 0.2824152152482705, 0.29125763379746256, 0.29970022730726675, 0.3076758231513436, 0.31513416403226585, 0.3220430224114293, 0.3283889294186857, 0.3341775379355874, 0.33943362581982794, 0.3442007239094262, 0.3485403292805311, 0.3525306419390889, 0.35626474803899666, 0.35984817112202316, 0.3633957315946926, 0.36702769962919674, 0.37086530041211013, 0.37502572911091736, 0.3796169429213134, 0.3847325967111188, 0.39044754940449405, 0.39681436547404986 ], [ 0.3239765888774294, 0.3079194137452257, 0.2921928966684839, 0.2769371575877709, 0.26230727294817824, 0.24847315036790232, 0.2356176785903597, 0.22393213617942978, 0.21360786337966006, 0.2048237004157436, 0.19772988466084243, 0.192430883947776, 0.1889713334901662, 0.18732963916917242, 0.1874219962575736, 0.18911598758357664, 0.19224946694537345, 0.1966490862250327, 0.20214407688482597, 0.2085735867107365, 0.21578837023839045, 0.22364897092435201, 0.23202266356303666, 0.2407808175653181, 0.24979752549142412, 0.25894966175222245, 0.26811812207139546, 0.2771898275912735, 0.28606007908234, 0.29463493311234984, 0.302833381727821, 0.31058921503298115, 0.3178525174631148, 0.32459079157155835, 0.3307897218343365, 0.33645359126056096, 0.3416053512742463, 0.34628632546046084, 0.3505555048896094, 0.35448837146698037, 0.3581751713866541, 0.3617185595156166, 0.3652305541210075, 0.3688287856141683, 0.3726320954119642, 0.3767556377206195, 0.3813057452993005, 0.38637491834406007, 0.39203735658511385, 0.3983454540873198 ], [ 0.3293339079373563, 0.3136483038676351, 0.29830897144669377, 0.2834533771390184, 0.2692321287251607, 0.2558082287660695, 0.2433546444605649, 0.23204939227499957, 0.22206745578644482, 0.21356937727175282, 0.2066873892974769, 0.2015113172857179, 0.1980776082807572, 0.19636488276973496, 0.1962978467357995, 0.19775868717769504, 0.20060257142318846, 0.20467291959757342, 0.2098130384340896, 0.21587269786264127, 0.22271014859460045, 0.23019118217389334, 0.23818702441482245, 0.24657243770875925, 0.2552247819163506, 0.26402422945944437, 0.272854970479558, 0.28160708210510593, 0.2901787177060544, 0.2984783324293912, 0.3064267485821512, 0.31395894670745544, 0.3210255306334298, 0.32759385371153993, 0.3336488111393562, 0.3391933042017467, 0.34424837133316466, 0.348852962636879, 0.35306331317852196, 0.3569518504873654, 0.36060555842588793, 0.3641237189881346, 0.3676149721694349, 0.37119367741326925, 0.3749756306422427, 0.3790732847567568, 0.3835907265373675, 0.38861875834767656, 0.3942304930929814, 0.4004778720336746 ], [ 0.33524765492180464, 0.3199537622599435, 0.30501877555429846, 0.2905767151172546, 0.2767729383288477, 0.2637628863888965, 0.2517092420988634, 0.24077689496564045, 0.23112529020547784, 0.2228982396831369, 0.21621212193393188, 0.21114440860624034, 0.2077251667176302, 0.20593402988655454, 0.20570383665581374, 0.20693010110090776, 0.2094836785093578, 0.21322331830346983, 0.2180054644294421, 0.2236901292107067, 0.23014312398549994, 0.23723582448699498, 0.24484386356923324, 0.25284587330630476, 0.26112292947506055, 0.2695589082943433, 0.2780416592544218, 0.2864647460461158, 0.2947294755771741, 0.30274697380378673, 0.310440134285212, 0.3177453329239712, 0.3246138557926844, 0.33101302144975614, 0.33692699544657845, 0.3423572960740703, 0.3473229807743439, 0.3518604860597845, 0.3560230742305976, 0.3598798219731436, 0.3635140740629895, 0.36702128571740245, 0.3705061958329024, 0.374079315656103, 0.3778527854926863, 0.38193574218579884, 0.3864294406980361, 0.39142246461398733, 0.3969864184339175, 0.4031724969415258 ], [ 0.34167901933956857, 0.326793598389206, 0.31227661102942816, 0.2982579289096005, 0.28487701582853425, 0.2722812852658474, 0.26062300186112103, 0.25005429575632215, 0.24072006732392687, 0.23274901312484816, 0.2262436829008129, 0.2212712029045225, 0.21785672494608832, 0.2159814097405061, 0.21558570487551712, 0.21657716652474823, 0.21884077994485668, 0.2222492606222527, 0.22667130037015215, 0.2319767942563956, 0.23803918352515518, 0.244735765358556, 0.2519470369445663, 0.25955597597762453, 0.26744781613211654, 0.2755105283123596, 0.28363596323523466, 0.2917214727124364, 0.29967178641222875, 0.3074009423055373, 0.31483411875282297, 0.32190927020608223, 0.3285785131871807, 0.3348092390624411, 0.3405849447314356, 0.34590577383762655, 0.35078875266806897, 0.3552676900262916, 0.35939269271802077, 0.36322923197820917, 0.3668566859754393, 0.37036628498188273, 0.3738584046825154, 0.377439194229937, 0.3812165908433426, 0.38529585838762115, 0.38977488251910697, 0.3947395413857462, 0.40025952597477304, 0.40638498739785894 ], [ 0.3485863521089054, 0.3341228572290246, 0.32003419422545193, 0.30644549392734455, 0.29348983343532214, 0.2813063167186518, 0.2700368551529784, 0.25982136031286907, 0.2507912745645344, 0.24306175645369268, 0.23672336490387844, 0.23183459226730393, 0.22841682700801677, 0.22645304542597963, 0.22589069896213715, 0.22664814607862482, 0.2286230497862262, 0.23170082747415682, 0.23576158643211784, 0.24068475845746318, 0.24635147083215697, 0.252645256849927, 0.2594519131447428, 0.26665921942418913, 0.2741569903898198, 0.28183766173309033, 0.2895974031946253, 0.2973376292446227, 0.30496673320078876, 0.3124018788066127, 0.3195707183899699, 0.3264129486352366, 0.3328816514105692, 0.3389443922569995, 0.34458406179492174, 0.3497994466923967, 0.35460550943065794, 0.35903334288941896, 0.36312975011460447, 0.3669563853689328, 0.370588384216813, 0.3741124131240315, 0.37762408818149074, 0.38122475240250725, 0.38501766304763263, 0.3891037210288257, 0.39357696340331993, 0.398520120463302, 0.40400059034618857, 0.410067187621634 ], [ 0.35592586839551854, 0.34189457872235424, 0.3282414575015445, 0.3150864226021605, 0.30255582057680935, 0.29078033152507066, 0.27989173955466284, 0.2700183950007659, 0.2612793965941024, 0.2537778477883752, 0.24759394007271793, 0.24277895864634338, 0.23935141198985457, 0.23729621150391234, 0.2365671744931697, 0.23709229988887728, 0.23878060063305478, 0.241529039680717, 0.24522836503778989, 0.24976720537714522, 0.2550344022185854, 0.2609199978148662, 0.2673154814914013, 0.27411385512928427, 0.2812099069990536, 0.2885008804412222, 0.2958875559450797, 0.3032756592752211, 0.3105774628073884, 0.317713445839957, 0.3246139027848028, 0.3312204195048931, 0.33748716684626723, 0.3433819809800528, 0.34888721071473866, 0.35400031301956475, 0.35873417146782544, 0.36311710070285, 0.3671924863776391, 0.37101799788958356, 0.3746643048300774, 0.3782132321536258, 0.381755308451951, 0.3853867001668283, 0.3892055831599083, 0.39330807824803776, 0.3977839595980218, 0.4027124189239203, 0.4081582156434323, 0.41416854662927066 ], [ 0.36365235357587616, 0.3500605490988077, 0.3368473289968083, 0.324127046811259, 0.3120191140499653, 0.3006458159589596, 0.2901291575497766, 0.28058665253990345, 0.27212614949124325, 0.26484005310275527, 0.2587995931934462, 0.2540500182715826, 0.25060762012470655, 0.2484592451381614, 0.24756444104439876, 0.24785978118635532, 0.24926443042874807, 0.25168584834972796, 0.25502470314124825, 0.25917847993715554, 0.2640437239658697, 0.26951720332779744, 0.27549643610652874, 0.28188001633457727, 0.2885680570769385, 0.2954629181959028, 0.3024702535845644, 0.3095003229640349, 0.3164694695233177, 0.3233016567042634, 0.32992997108382405, 0.33629802068917397, 0.34236117999737653, 0.34808764906331624, 0.3534593025967616, 0.35847230542334463, 0.36313746496420996, 0.36748028128457194, 0.3715406435962958, 0.3753721121251384, 0.379040719834408, 0.38262323395368225, 0.3862048368655476, 0.3898762228717908, 0.39373016237696756, 0.39785765460988637, 0.40234386537425704, 0.4072641136457198, 0.41268021353710604, 0.4186374812751972 ], [ 0.37171984484499987, 0.35857201592917326, 0.3458004635657921, 0.33351374034297837, 0.32182424182808145, 0.3108460039731834, 0.30069168678094427, 0.2914687196977824, 0.2832747412479441, 0.27619267352640153, 0.27028598522956543, 0.26559483806807377, 0.2621337965715417, 0.2598915627554348, 0.25883280583781576, 0.25890171038266796, 0.2600265220524004, 0.2621242498003248, 0.2651048105772939, 0.26887419997034073, 0.2733366109963996, 0.27839568946391796, 0.28395525036601693, 0.2899197889144679, 0.29619504369777405, 0.30268875939659534, 0.30931169314960766, 0.31597883408534333, 0.32261076492934854, 0.3291350824308857, 0.33548779967541736, 0.34161466824639963, 0.3474723740674837, 0.35302957288466796, 0.35826773757613534, 0.36318178951744673, 0.36778048103388483, 0.37208648731082256, 0.3761361563966173, 0.37997885808271925, 0.3836758699847846, 0.387298745939443, 0.3909271315992206, 0.39464602752193956, 0.3985425514274363, 0.4027023152176519, 0.4072056007796429, 0.41212357914982295, 0.41751485570400376, 0.42342262658168117 ], [ 0.38008226703674336, 0.3673803459936757, 0.3550499059149275, 0.3431935659408945, 0.3319167297086702, 0.3213254194613962, 0.3115234389144759, 0.30260888370331007, 0.2946701499882158, 0.2877817526623268, 0.28200041551052407, 0.2773619797309337, 0.27387963893807366, 0.27154382357671103, 0.2703237567666545, 0.2701703738824347, 0.2710200493326689, 0.2727984875672465, 0.275424226541466, 0.2788114176650039, 0.28287179759079856, 0.28751597226575437, 0.29265424752256775, 0.29819726044793704, 0.304056618201313, 0.31014567209292204, 0.3163804754786569, 0.32268091299656987, 0.3289719520940277, 0.33518495323921116, 0.3412589760127103, 0.34714202704285746, 0.3527922063798825, 0.3581787173372134, 0.3632827089903268, 0.36809791992817376, 0.37263108715252946, 0.37690207667844194, 0.38094368449491356, 0.3848010507455908, 0.3885306294119029, 0.3921986638237114, 0.39587913817140596, 0.39965120899280726, 0.40359616834051454, 0.4077940486727378, 0.41232004112784637, 0.41724095278211903, 0.42261196201227663, 0.42847393291353286 ], [ 0.388694007564634, 0.3764376121526925, 0.3645456744071263, 0.353114838454052, 0.34224362554361326, 0.33203034561993766, 0.32257046410541146, 0.31395347081930375, 0.3062594058384756, 0.29955531922290257, 0.2938920461015546, 0.28930172446304564, 0.2857964342992263, 0.28336818271508446, 0.28199022850202476, 0.28161949556538785, 0.2821996437726294, 0.2836643032877361, 0.28594004400670125, 0.2889488087869646, 0.2926097259117309, 0.29684037406271285, 0.3015576673297434, 0.30667855300328745, 0.31212068727466163, 0.31780319864059553, 0.3236475888922427, 0.32957877229146804, 0.33552622127595244, 0.341425171369611, 0.3472178347135851, 0.3528545754550619, 0.3582950063947682, 0.3635089714234126, 0.3684773805001456, 0.37319286267128515, 0.37766019833403364, 0.38189648581797475, 0.3859309911969318, 0.38980462638583707, 0.39356900176996845, 0.3972850087936948, 0.40102090776942756, 0.40484992831076855, 0.40884743393603895, 0.4130877553153772, 0.4176408517219658, 0.42256900786378454, 0.42792380241295697, 0.4337435855994407 ], [ 0.39751042130155073, 0.3856971017239215, 0.3742392602782412, 0.3632276012527912, 0.3527539401167713, 0.3429092209335991, 0.33378109863587085, 0.3254511496852225, 0.31799186124610396, 0.31146364017987355, 0.3059121538765448, 0.3013663359046641, 0.29783733814206165, 0.29531858447653736, 0.29378690352836295, 0.293204536285485, 0.2935216823011236, 0.29467920253745994, 0.29661114423657864, 0.29924686804801853, 0.30251269689951593, 0.30633312776032445, 0.31063172500981706, 0.3153318411713911, 0.32035729681759567, 0.32563311364778347, 0.3310863500913146, 0.33664704945759133, 0.3422492826251201, 0.34783225134776413, 0.353341412067201, 0.35872957999682575, 0.3639579756347731, 0.3689971780780681, 0.37382794994459073, 0.3784418967975286, 0.3828419200031018, 0.3870424169198602, 0.3910691777654408, 0.3949589264546463, 0.39875845552308287, 0.402523315431311, 0.4063160382612972, 0.41020390628197917, 0.4142563165166934, 0.41854184021533125, 0.423125125067754, 0.42806382968949064, 0.43340580494608555, 0.4391867369468075 ], [ 0.40648826126181853, 0.3951137440204872, 0.3840840418942328, 0.3734840172670304, 0.3633990068861859, 0.3539129632864845, 0.3451062543596105, 0.33705319287830054, 0.32981943614759385, 0.3234594629688244, 0.31801438148997185, 0.3135103267889035, 0.3099576574532568, 0.3073510571877801, 0.30567051061272277, 0.3048829865744551, 0.3049445648341249, 0.30580270845197094, 0.3073984184810322, 0.3096680920630003, 0.3125450094355806, 0.3159604695211773, 0.3198446574936921, 0.32412735460878744, 0.3287385958377207, 0.33360935594362107, 0.33867231189365077, 0.34386269841663736, 0.34911924941644695, 0.35438520233022713, 0.35960933426592184, 0.3647469955077457, 0.3697611052133026, 0.3746230737922415, 0.3793136152632487, 0.38382341033457196, 0.3881535772513309, 0.39231590340620387, 0.3963327876258687, 0.40023684264402365, 0.4040701115580204, 0.40788286309920724, 0.41173195004779506, 0.41567874390823034, 0.41978669627457793, 0.42411862023890945, 0.4287338284182226, 0.4336853004187927, 0.43901707382390476, 0.44476205230831567 ], [ 0.41558603494247054, 0.40464445859537146, 0.3940356171950037, 0.38383867890097184, 0.37413276496288883, 0.36499522522500705, 0.35649964989908106, 0.34871369192682555, 0.3416968274296828, 0.33549823021564057, 0.33015496550822077, 0.3256907038545687, 0.3221151105242043, 0.3194239818455519, 0.3176000940507736, 0.31661462783376254, 0.3164289593596475, 0.3169965834764478, 0.3182649598928331, 0.3201771356974, 0.32267307647468924, 0.3256907116255275, 0.32916675198042966, 0.33303736347833834, 0.3372387820414307, 0.34170793929966453, 0.3463831452650494, 0.351204849712173, 0.3561164834411746, 0.36106536558769503, 0.3660036534663622, 0.37088930573602924, 0.3756870262814172, 0.38036915365989343, 0.38491645829946175, 0.389318806467312, 0.3935756465250537, 0.39769626980846395, 0.4016997967035334, 0.4056148395697903, 0.40947879973996626, 0.41333676755737664, 0.4172400136045421, 0.4212440864002271, 0.42540656598791177, 0.42978456126297215, 0.43443207687797375, 0.439397406864067, 0.4447207299752912, 0.4504320806021578 ], [ 0.42476428911730996, 0.4142484284533375, 0.40405205979501513, 0.3942488429063331, 0.384911971066344, 0.3761125845436549, 0.3679179849059801, 0.3603897231753019, 0.35358167565457804, 0.3475382557041034, 0.34229292697887204, 0.33786717405081423, 0.33427004553008577, 0.33149831675015673, 0.32953723673766133, 0.3283617464049065, 0.3279380004646618, 0.3282250067062241, 0.32917621463411345, 0.3307409322970949, 0.33286551028490113, 0.3354942895237588, 0.33857035296975846, 0.3420361453147113, 0.34583403015614067, 0.349906845451514, 0.3541985015787239, 0.35865464743605513, 0.3632234125138501, 0.3678562186348135, 0.37250864443535103, 0.377141318049199, 0.38172080788498464, 0.38622047693315026, 0.39062126205541126, 0.3949123359542006, 0.3990916061526442, 0.4031660028847305, 0.40715150718888443, 0.4110728728790169, 0.41496300275685954, 0.41886195170880774, 0.4228155481316462, 0.4268736506300402, 0.43108808810336163, 0.43551036563210926, 0.44018925183168767, 0.4451683902114173, 0.4504840919284109, 0.45616346557534315 ], [ 0.43398582786681467, 0.423887304213033, 0.41409410557913706, 0.4046745973079244, 0.39569634697524375, 0.3872246751845446, 0.37932105995861637, 0.37204146405018795, 0.36543468542233676, 0.3595408551328619, 0.35439021590223435, 0.35000230232503043, 0.34638560785591666, 0.3435377684277272, 0.34144622809555736, 0.34008929244125374, 0.33943743411005284, 0.33945470040312503, 0.34010008642678513, 0.34132877268763623, 0.3430931724043876, 0.3453437796235843, 0.34802984553573896, 0.35109993261153, 0.354502404058435, 0.3581859024233906, 0.36209986006844036, 0.36619506974961574, 0.37042432868689323, 0.3747431561307149, 0.37911057321544805, 0.3834899248049629, 0.3878497156772483, 0.39216442729902834, 0.3964152762792878, 0.40059087127121606, 0.4046877217990074, 0.4087105506782121, 0.41267236208712127, 0.41659422084453407, 0.42050470606855134, 0.42443901507007487, 0.428437711673624, 0.4325451370827073, 0.4368075298204614, 0.4412709318111768, 0.445978986683551, 0.45097075932511416, 0.4562787179271886, 0.4619270175158706 ], [ 0.44321586983270866, 0.4335253461418186, 0.4241252772847768, 0.41507896789854154, 0.4064486693463913, 0.39829426398731116, 0.39067184573107355, 0.3836322611662083, 0.37721969868104316, 0.3714704292482571, 0.36641180608776697, 0.36206161703116907, 0.3584278523038029, 0.35550890541824864, 0.35329417402277036, 0.3517649813181511, 0.35089570683911997, 0.35065500415174233, 0.35100699313565, 0.35191234158004775, 0.3533291870433775, 0.3552138868022096, 0.35752161436312746, 0.360206841497225, 0.3632237542201896, 0.36652665104820015, 0.37007036489184314, 0.3738107389848077, 0.37770517468529885, 0.38171325648448207, 0.38579744802290217, 0.38992384271871955, 0.39406294380047924, 0.39819044104589335, 0.40228794531751555, 0.4063436371278735, 0.41035278218539845, 0.41431806556211687, 0.41824969734081735, 0.42216524702721325, 0.4260891723810624, 0.4300520212579691, 0.4340893028700465, 0.4382400472868119, 0.4425450978653808, 0.4470452084447655, 0.4517790423871238, 0.4567811900594484, 0.46208033127474973, 0.4676976665734599 ], [ 0.4524221512846329, 0.44312951134890316, 0.4341119547095157, 0.42542797184103337, 0.41713480882974985, 0.409287279138122, 0.40193650588025653, 0.39512865322853424, 0.38890372262533257, 0.38329450006925775, 0.37832574067610153, 0.37401366325612573, 0.37036580081254483, 0.3673812160392064, 0.3650510504451001, 0.3633593395161355, 0.36228400152991097, 0.3617978987430547, 0.36186987727538994, 0.3624657129741533, 0.3635489192230104, 0.3650814027550063, 0.3670239797003627, 0.36933678298392514, 0.3719796025906274, 0.37491220270689163, 0.37809465594051644, 0.3814877267003238, 0.3850533252193919, 0.3887550420824857, 0.39255876148120666, 0.396433340417044, 0.40035133110500415, 0.4042897151686332, 0.40823061108404807, 0.4121619109596331, 0.4160777994095191, 0.4199791063415693, 0.42387344735800603, 0.4277751106387723, 0.431704658118656, 0.4356882218326831, 0.43975649354753477, 0.4439434267680708, 0.4482846937440995, 0.4528159642135543, 0.45757109454728423, 0.46258033248408154, 0.46786865061790234, 0.47345431886208256 ], [ 0.4615749817419095, 0.45266949338453105, 0.44402339799633656, 0.43569062567469263, 0.4277237252579883, 0.4201727962817037, 0.41308437864657405, 0.406500352792315, 0.40045691552861284, 0.39498370317486736, 0.3901031312883522, 0.38583000731125117, 0.38217144938360864, 0.3791271142855416, 0.376689705004058, 0.37484569972273857, 0.37357622445118127, 0.37285798435969814, 0.372664174655408, 0.37296530829485075, 0.37372992087504675, 0.3749251379624813, 0.37651711273622124, 0.37847135926294345, 0.3807530176324955, 0.3833270915234185, 0.38615869738645764, 0.38921335861009043, 0.3924573691261506, 0.3958582401612043, 0.3993852322736318, 0.4030099632702114, 0.40670707173898224, 0.41045490631335185, 0.4142362028507932, 0.4180387058568704, 0.42185568705620496, 0.42568631332811874, 0.42953581859941486, 0.43341544002105514, 0.43734208809857544, 0.4413377335101547, 0.44542850997350764, 0.4496435521247747, 0.45401360878422126, 0.4585694933935123, 0.46334045243419936, 0.46835254658567094, 0.47362714570425096, 0.47917963555826965 ], [ 0.4706472587436709, 0.46211772119379924, 0.4538317310532822, 0.4458389146217067, 0.43818742539989336, 0.430922988212248, 0.42408792246669014, 0.41772019165890223, 0.41185253498781643, 0.4065117405121179, 0.40171811550255315, 0.3974851975083054, 0.393819729811793, 0.39072189989072476, 0.3881858132006227, 0.3862001515894279, 0.3847489499859485, 0.38381241916804776, 0.38336774684459946, 0.3833898223986839, 0.3838518494392596, 0.38472583123850895, 0.3859829339027696, 0.3875937482773354, 0.3895284827071236, 0.3917571244272574, 0.39424960783136587, 0.3969760239028524, 0.3999068976542391, 0.4030135505239684, 0.40626855333134027, 0.4096462635322533, 0.4131234290155255, 0.41667983029864697, 0.42029892437738214, 0.4239684471877992, 0.42768092806596725, 0.4314340690495462, 0.4352309445818321, 0.43907998330115583, 0.44299470318130424, 0.44699318423645445, 0.45109727897842467, 0.45533157911887534, 0.4597221764919189, 0.46429527518984404, 0.46907572840308365, 0.47408558520083244, 0.4793427374329013, 0.484859753657458 ], [ 0.47961444801503, 0.4714493239174709, 0.46351189165133655, 0.45584772959680825, 0.44850088938625926, 0.44151304387878654, 0.43492263098327294, 0.42876403506709804, 0.42306685370999103, 0.4178552990430885, 0.4131477783444156, 0.4089566873715745, 0.40528843283319804, 0.4021436795330681, 0.3995177962053069, 0.3974014554122775, 0.3957813301764045, 0.39464082519180027, 0.3939607839045712, 0.39372012335625356, 0.3938963642513125, 0.39446604153425646, 0.3954049982275782, 0.3966885802787904, 0.39829176128961385, 0.40018923255783595, 0.40235549574880003, 0.40476499306068553, 0.40739230358331907, 0.4102124254939301, 0.4132011527232622, 0.41633554275928575, 0.4195944603309564, 0.42295917076775397, 0.42641394768186086, 0.42994665292925704, 0.4335492430573351, 0.4372181559504578, 0.4409545342986658, 0.4447642488615054, 0.44865769416874557, 0.4526493420228111, 0.4567570534565461, 0.4610011668763766, 0.465403397855667, 0.46998560294794944, 0.474768474200602, 0.47977024092159104, 0.48500545905560694, 0.4904839651920304 ], [ 0.4884545348164235, 0.4806420674928572, 0.4730415541746189, 0.46569477778543067, 0.45864197147751495, 0.4519210621574515, 0.4455669227444907, 0.43961066993934855, 0.43407904823467763, 0.42899394092237886, 0.4243720438975505, 0.42022472784561204, 0.41655809966411395, 0.41337325647091533, 0.4106667077878628, 0.4084309262068526, 0.40665497642891296, 0.4053251685341025, 0.40442568405955787, 0.4039391321724399, 0.40384700630180537, 0.4041300269686626, 0.4047683721253885, 0.4057418102684639, 0.4070297625662134, 0.40861132739606026, 0.4104653036350326, 0.4125702478164302, 0.41490459521363054, 0.41744686667360037, 0.42017597245187577, 0.4230716124049969, 0.4261147597553077, 0.4292882043162293, 0.43257712150443955, 0.4359696264393875, 0.43945726849020383, 0.4430354210965104, 0.4467035246718, 0.4504651468191684, 0.45432783370525814, 0.45830273883662553, 0.4624040300567913, 0.46664809149365377, 0.47105255333741647, 0.4756351973726176, 0.48041279861145725, 0.4853999716641437, 0.4906080933531338, 0.49604436974767685 ], [ 0.4971479517456627, 0.4896762684354454, 0.4824010304106427, 0.4753604721026801, 0.46859128036862846, 0.46212792548336035, 0.456002010654737, 0.45024167232966594, 0.4448710659585075, 0.43990997090870665, 0.4353735431438493, 0.4312722350210433, 0.4276118888063502, 0.42439399573043984, 0.42161609761023805, 0.4192722954091024, 0.41735382047397335, 0.41584962079034904, 0.41474691678533765, 0.4140316884716815, 0.4136890668633966, 0.41370361600921035, 0.4140595059811354, 0.41474059015349285, 0.415730410826919, 0.4170121647592397, 0.41856866389597347, 0.420382326345023, 0.42243522855707555, 0.42470924222598777, 0.42718626937157556, 0.4298485773963199, 0.4326792237366466, 0.4356625481993472, 0.4387847012328065, 0.4420341690909019, 0.44540225271496414, 0.4488834565239048, 0.45247574624199627, 0.45618064125559465, 0.46000311642522995, 0.46395130026263526, 0.46803597021506754, 0.47226986060261034, 0.4766668134662511, 0.481240815988066, 0.486004978943918, 0.49097051760541394, 0.49614579862539654, 0.5015355131657646 ], [ 0.5056774877267469, 0.498534689608833, 0.4915731531899829, 0.48482780429630384, 0.47833204373687244, 0.4721171580222697, 0.4662117559046891, 0.4606412589495759, 0.4554274755905278, 0.4505882864724939, 0.44613746386595515, 0.4420846395634403, 0.4384354245913676, 0.4351916715068996, 0.4323518576197406, 0.4299115569043947, 0.42786396114584613, 0.42620040798457554, 0.424910875329822, 0.4239844077581253, 0.42340945012153597, 0.4231740754137537, 0.42326610659181246, 0.42367314416565705, 0.4243825217446691, 0.42538121940188983, 0.4266557690009607, 0.42819218616271515, 0.4299759603054079, 0.4319921275031731, 0.4342254414342908, 0.436660646374775, 0.4392828441584529, 0.4420779354567857, 0.4450331057443887, 0.4481373188371497, 0.45138177658011736, 0.45476030248005794, 0.45826960988274534, 0.46190942148242065, 0.4656824160931571, 0.46959399009950853, 0.4736518340717363, 0.4778653387763523, 0.48224485821452057, 0.4868008692776843, 0.49154307701161426, 0.49647952031999226, 0.5016157344545426, 0.5069540234604841 ], [ 0.5140281823912246, 0.5072024222362626, 0.500543147129122, 0.4940822059235593, 0.4878499612450622, 0.48187477261722406, 0.47618251070629775, 0.470796127270477, 0.46573530578696676, 0.46101621565143996, 0.4566513879813304, 0.4526497235031291, 0.449016633343287, 0.4457543027928515, 0.44286205759327624, 0.4403368033809664, 0.438173502840385, 0.4363656526745016, 0.4349057240247284, 0.4337855352540505, 0.43299653439067853, 0.4325299790404446, 0.43237701306820925, 0.4325286506375257, 0.4329756881681186, 0.43370857245604777, 0.4347172578514614, 0.4359910865282155, 0.43751872335905356, 0.43928817093884576, 0.44128688144445, 0.4435019711645263, 0.445920531779048, 0.4485300210140003, 0.45131870529200024, 0.4542761194177632, 0.45739350387911565, 0.4606641793884294, 0.46408382088965777, 0.46765059917377744, 0.47136516699979597, 0.47523047754156394, 0.47925143526353026, 0.4834343920600698, 0.48778651369572756, 0.4923150522603669, 0.497026568552438, 0.5019261532102142, 0.5070166964527064, 0.5122982532443384 ], [ 0.52218720955251, 0.5156667578830313, 0.5092984902054569, 0.5031114009220793, 0.4971330497275836, 0.4913891102854394, 0.48590295371477193, 0.4806952882561904, 0.47578387624671986, 0.4711833471951159, 0.4669051211078509, 0.46295744940970857, 0.45934557234611767, 0.45607198250229936, 0.45313677510437944, 0.4505380582070891, 0.4482723907113372, 0.44633521408588983, 0.44472124499091115, 0.4434248006020763, 0.44244003582571667, 0.4417610810069141, 0.4413820792108126, 0.4412971326683559, 0.44150017749361076, 0.44198481335896894, 0.44274411967602817, 0.4437704914283987, 0.44505552589654773, 0.44658998621579277, 0.44836385949629365, 0.4503665169212675, 0.4525869718884766, 0.4550142210540436, 0.45763764323710293, 0.4604474235463171, 0.46343496552264957, 0.4665932529542239, 0.4699171253643884, 0.47340343674719537, 0.4770510754134769, 0.4808608331123211, 0.48483512307488524, 0.48897755838377027, 0.49329241317069444, 0.4977839986840094, 0.5024559934292087, 0.5073107707128669, 0.5123487675938079, 0.5175679363534581 ], [ 0.5301437529994348, 0.5239170536509651, 0.5178287694039376, 0.5119052530130876, 0.5061714838167302, 0.5006506755797809, 0.49536392155744924, 0.4903298953005975, 0.485564625035977, 0.48108135697748383, 0.47689051854023035, 0.47299978629428907, 0.46941425606494125, 0.4661367045803494, 0.4631679243751442, 0.4605071072054518, 0.4581522468365134, 0.4561005303175729, 0.4543486880417436, 0.45289327694918924, 0.45173087780887705, 0.45085819599126925, 0.4502720647230789, 0.44996935958870576, 0.44994684206996627, 0.45020095729429654, 0.450727616107948, 0.45152199352097, 0.4525783741799795, 0.45389007084730854, 0.4554494343006406, 0.4572479633567194, 0.4592765128719432, 0.46152558673096583, 0.4639856931490709, 0.4666477320870421, 0.4695033799503592, 0.47254543542925004, 0.4757680923954759, 0.4791671109458485, 0.48273986544661185, 0.4864852580690639, 0.49040349697779, 0.4944957491490049, 0.49876368787538705, 0.5032089635356479, 0.507832632469794, 0.5126345822769506, 0.5176129922435337, 0.5227638648910964 ], [ 0.5378888773967734, 0.5319445933763215, 0.5261255332218223, 0.5204556107246395, 0.5149574348187812, 0.5096519706787279, 0.5045582394266751, 0.4996930724572222, 0.4950709353834865, 0.49070383407997314, 0.48660131118543865, 0.4827705358971194, 0.47921648333780553, 0.4759421928171874, 0.4729490876783146, 0.47023733388692607, 0.4678062107704182, 0.4656544658500239, 0.4637806267959118, 0.4621832471619353, 0.4608610684548651, 0.4598130887652482, 0.4590385369582033, 0.45853676049484804, 0.45830704346966045, 0.45834837855410265, 0.4586592214650684, 0.4592372587303448, 0.4600792185575808, 0.46118075050359525, 0.4625363927166149, 0.46413963645401185, 0.4659830873029559, 0.4680587121499741, 0.4703581515728692, 0.4728730699536233, 0.4755955109763854, 0.4785182247009577, 0.48163493416191877, 0.4849405141834581, 0.4884310622976446, 0.4921038505941551, 0.495957157185368, 0.4999899858795482, 0.5042016917847112, 0.5085915381730544, 0.5131582154155184, 0.5178993557259489, 0.5228110776317525, 0.527887591553621 ], [ 0.5454153966789042, 0.5397424472111759, 0.5341821434023437, 0.5287561524044269, 0.5234849102272857, 0.5183873306373215, 0.5134805532439828, 0.5087797445685031, 0.5042979646697457, 0.5000461093830894, 0.49603293439155366, 0.4922651623577323, 0.48874766855388496, 0.48548373435247927, 0.4824753522003962, 0.4797235609392939, 0.47722878712977346, 0.47499116682461023, 0.4730108232574621, 0.47128807918794074, 0.4698235879690005, 0.4686183743728577, 0.46767378425116773, 0.4669913505099261, 0.46657259086837277, 0.4664187596477514, 0.46653058066358993, 0.46690799058080873, 0.4675499214690704, 0.46845414769879035, 0.4696172160153493, 0.47103446921942005, 0.4727001642352914, 0.47460767550331534, 0.47674976565547217, 0.4791188982845667, 0.48170756302945733, 0.4845085815937736, 0.48751536477692475, 0.49072209488404206, 0.49412381448809317, 0.4977164107444733, 0.5014964935023484, 0.505461174490813, 0.5096077631016573, 0.5139334010701747, 0.5184346631484661, 0.5231071533355126, 0.527945126246459, 0.532941160858015 ], [ 0.5527177419577919, 0.5473053315947537, 0.5419936278886373, 0.5368022332071138, 0.5317495958685622, 0.5268527618256187, 0.5221271654757387, 0.517586471445872, 0.5132424778397608, 0.5091050889694037, 0.5051823620268745, 0.5014806276476002, 0.49800467918300934, 0.49475802018028947, 0.4917431545834058, 0.488961900063895, 0.4864157021532659, 0.4841059258596445, 0.4820341024302539, 0.48020211190510786, 0.47861228694215213, 0.4772674297450252, 0.47617074129627035, 0.4753256698680791, 0.47473569324058157, 0.4744040554666234, 0.47433348368505246, 0.47452591282649104, 0.47498224570546105, 0.4757021728536923, 0.47668407074047303, 0.47792498928065696, 0.47942073054754075, 0.4811660113532726, 0.48315469384390913, 0.4853800613986367, 0.4878351126329369, 0.490512844602384, 0.493406497479533, 0.49650973680961574, 0.499816755457154, 0.503322284865069, 0.5070215134907565, 0.5109099184753345, 0.5149830240163341, 0.5192361059403637, 0.5236638661587393, 0.528260102768392, 0.5330174014609265, 0.5379268717454307 ], [ 0.5597918306369051, 0.5546294712836795, 0.549556536645444, 0.5445907356901545, 0.5397487023133584, 0.5350457852050855, 0.5304958762827889, 0.5261112878262779, 0.5219026870105379, 0.5178790941464292, 0.5140479476363543, 0.510415234583415, 0.5069856814332319, 0.5037629943564494, 0.5007501347419642, 0.49794961162592943, 0.4953637705492859, 0.4929950575466179, 0.4908462379213494, 0.48892055220281727, 0.48722179609077604, 0.4857543169919538, 0.4845229265120436, 0.48353273543140113, 0.48278892462227646, 0.48229647138069165, 0.4820598550959183, 0.48208276851744086, 0.48236786073816884, 0.48291653527887535, 0.4837288215101788, 0.4848033305584098, 0.4861372985367858, 0.4877267113167154, 0.48956649704980065, 0.4916507661375562, 0.4939730740021794, 0.4965266802461132, 0.4993047787001083, 0.5023006762481654, 0.5055079037286212, 0.5089202490100637, 0.512531709801081, 0.5163363711373603, 0.5203282191259986, 0.5245009078640653, 0.5288475000952217, 0.533360203913024, 0.5380301276337561, 0.542847072987656 ], [ 0.5666349381267267, 0.5617124648070301, 0.556868801686335, 0.5521199253344794, 0.5474808168602789, 0.5429652857498599, 0.5385858313231415, 0.5343535504422446, 0.5302780986275135, 0.5263677094511989, 0.5226292740270314, 0.5190684787384697, 0.5156899952923412, 0.5124977130754002, 0.5094950000093555, 0.5066849750382559, 0.5040707734013886, 0.5016557852324451, 0.4994438489614254, 0.4974393835290882, 0.4956474474610864, 0.49407371815199763, 0.4927243909032394, 0.49160600385041403, 0.49072520132534747, 0.49008845380512545, 0.48970175680227285, 0.48957033333364697, 0.489698364619959, 0.4900887712896461, 0.4907430627350536, 0.4916612658146766, 0.4928419364695631, 0.4942822498429703, 0.49597815703321013, 0.4979245904812289, 0.5001156958381343, 0.5025450663655922, 0.5052059565977814, 0.5080914549576441, 0.5111945998518457, 0.5145084298764415, 0.5180259654688696, 0.5217401259565294, 0.5256435918598683, 0.5297286270127017, 0.5339868782257913, 0.5384091716751179, 0.5429853249469065, 0.5477039918723091 ], [ 0.5732455732932571, 0.5685531544413686, 0.5639296023670539, 0.5593893120214831, 0.554945762101194, 0.5506113690104428, 0.5463973771993186, 0.5423137931940164, 0.5383693691521103, 0.5345716396024779, 0.5309270122160217, 0.5274409101326831, 0.5241179597580642, 0.5209622143232766, 0.5179774002018226, 0.5151671703348738, 0.5125353474424551, 0.5100861392434952, 0.5078243088328378, 0.5057552857170895, 0.503885206717729, 0.5022208808038917, 0.5007696775887138, 0.4995393452721145, 0.4985377697166226, 0.4977726915364215, 0.4972514020106953, 0.49698044082537335, 0.49696531877236966, 0.49721028646721643, 0.49771816600372004, 0.4984902566185206, 0.4995263184803829, 0.5008246313923709, 0.5023821182999506, 0.5041945177838785, 0.5062565857814415, 0.5085623049944987, 0.511105080913104, 0.5138779059502814, 0.5168734774615572, 0.5200842608659114, 0.523502495064334, 0.5271201432371062, 0.5309287973272845, 0.5349195486413402, 0.5390828397257327, 0.5434083138805968, 0.5478846783748081, 0.5524995957912293 ], [ 0.5796233585361403, 0.575151501560749, 0.5707392367595401, 0.5663995182444884, 0.562144461816116, 0.5579852255423832, 0.5539319252520288, 0.549993591104844, 0.5461781699365446, 0.5424925760222417, 0.5389427903139421, 0.5355340052079328, 0.532270808678885, 0.5291573984267751, 0.5261978138032654, 0.5233961710071099, 0.5207568856329124, 0.5182848663425494, 0.5159856643458945, 0.51386556557285, 0.5119316158284478, 0.5101915736676534, 0.5086537909142019, 0.5073270262849091, 0.5062202029966002, 0.5053421260155798, 0.504701178256481, 0.5043050171132231, 0.5041602929038331, 0.5042724090115643, 0.5046453398061572, 0.5052815171589603, 0.5061817900536558, 0.5073454551120525, 0.5087703495291716, 0.5104529926291977, 0.5123887585653332, 0.5145720609388069, 0.5169965304091145, 0.5196551685692069, 0.522540465116428, 0.5256444701631505, 0.528958818824838, 0.5324747104214285, 0.5361828492195964, 0.540073357232479, 0.5441356719275621, 0.54835844267252, 0.5527294394152756, 0.5572354856098349 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.242245 (SEM: 0)
x1: 0.39217
x2: 0.341914
x3: 0.159259
x4: 0.437701
x5: 0.745598
x6: 0.0620148", "Arm 1_0
hartmann6: -0.253544 (SEM: 0)
x1: 0.663238
x2: 0.714569
x3: 0.588652
x4: 0.27768
x5: 0.139057
x6: 0.271218", "Arm 2_0
hartmann6: -0.217305 (SEM: 0)
x1: 0.846448
x2: 0.217095
x3: 0.348404
x4: 0.671583
x5: 0.339592
x6: 0.642009", "Arm 3_0
hartmann6: -0.267878 (SEM: 0)
x1: 0.916066
x2: 0.321183
x3: 0.137546
x4: 0.505969
x5: 0.415414
x6: 0.525829", "Arm 4_0
hartmann6: -0.258422 (SEM: 0)
x1: 0.0616007
x2: 0.364805
x3: 0.217203
x4: 0.273991
x5: 0.599507
x6: 0.978689", "Arm 5_0
hartmann6: -1.23921 (SEM: 0)
x1: 0.0702075
x2: 0.223758
x3: 0.719703
x4: 0.460041
x5: 0.11914
x6: 0.769392", "Arm 6_0
hartmann6: -0.184271 (SEM: 0)
x1: 0.617574
x2: 0.465144
x3: 0.645355
x4: 0.766496
x5: 0.14884
x6: 0.638048", "Arm 7_0
hartmann6: -0.00238585 (SEM: 0)
x1: 0.224609
x2: 0.968628
x3: 0.492947
x4: 0.925068
x5: 0.883348
x6: 0.955021", "Arm 8_0
hartmann6: -0.0945877 (SEM: 0)
x1: 0.579061
x2: 0.691852
x3: 0.901277
x4: 0.752974
x5: 0.323338
x6: 0.582829", "Arm 9_0
hartmann6: -0.0220674 (SEM: 0)
x1: 0.891122
x2: 0.601659
x3: 0.468342
x4: 0.305274
x5: 0.460138
x6: 0.0038387", "Arm 10_0
hartmann6: -0.0186132 (SEM: 0)
x1: 0.872585
x2: 0.845563
x3: 0.760308
x4: 0.638518
x5: 0.535373
x6: 0.419434", "Arm 11_0
hartmann6: -0.107191 (SEM: 0)
x1: 0.989513
x2: 0.317229
x3: 0.648857
x4: 0.558124
x5: 0.306877
x6: 0.377394", "Arm 12_0
hartmann6: -0.921573 (SEM: 0)
x1: 0.00618232
x2: 0.168376
x3: 0.728567
x4: 0.439569
x5: 0.0717724
x6: 0.765224", "Arm 13_0
hartmann6: -1.38199 (SEM: 0)
x1: 0.109789
x2: 0.262375
x3: 0.725919
x4: 0.471402
x5: 0.143763
x6: 0.774094", "Arm 14_0
hartmann6: -1.49377 (SEM: 0)
x1: 0.155198
x2: 0.294492
x3: 0.71667
x4: 0.48058
x5: 0.167834
x6: 0.779717", "Arm 15_0
hartmann6: -1.62365 (SEM: 0)
x1: 0.205499
x2: 0.291081
x3: 0.654117
x4: 0.467266
x5: 0.181966
x6: 0.791011", "Arm 16_0
hartmann6: -1.69943 (SEM: 0)
x1: 0.249338
x2: 0.277159
x3: 0.634864
x4: 0.426423
x5: 0.185014
x6: 0.846738", "Arm 17_0
hartmann6: -2.17145 (SEM: 0)
x1: 0.265776
x2: 0.231359
x3: 0.645915
x4: 0.379026
x5: 0.210914
x6: 0.789028", "Arm 18_0
hartmann6: -2.48092 (SEM: 0)
x1: 0.300595
x2: 0.203987
x3: 0.685256
x4: 0.334825
x5: 0.246681
x6: 0.751305", "Arm 19_0
hartmann6: -2.55046 (SEM: 0)
x1: 0.323006
x2: 0.16023
x3: 0.71443
x4: 0.285792
x5: 0.268074
x6: 0.718299", "Arm 20_0
hartmann6: -2.51895 (SEM: 0)
x1: 0.305742
x2: 0.258394
x3: 0.711848
x4: 0.24972
x5: 0.261953
x6: 0.71249", "Arm 21_0
hartmann6: -2.59462 (SEM: 0)
x1: 0.275908
x2: 0.191027
x3: 0.726008
x4: 0.279843
x5: 0.320087
x6: 0.7388", "Arm 22_0
hartmann6: -2.60407 (SEM: 0)
x1: 0.332058
x2: 0.200396
x3: 0.670185
x4: 0.272081
x5: 0.345044
x6: 0.741917", "Arm 23_0
hartmann6: -2.30369 (SEM: 0)
x1: 0.345553
x2: 0.203027
x3: 0.755474
x4: 0.263989
x5: 0.333498
x6: 0.765127", "Arm 24_0
hartmann6: -2.90431 (SEM: 0)
x1: 0.268276
x2: 0.164962
x3: 0.655735
x4: 0.26826
x5: 0.329887
x6: 0.691725", "Arm 25_0
hartmann6: -3.06876 (SEM: 0)
x1: 0.230964
x2: 0.137343
x3: 0.609254
x4: 0.258392
x5: 0.333731
x6: 0.628885", "Arm 26_0
hartmann6: -3.11298 (SEM: 0)
x1: 0.2008
x2: 0.114854
x3: 0.569471
x4: 0.213204
x5: 0.318605
x6: 0.644291", "Arm 27_0
hartmann6: -2.99258 (SEM: 0)
x1: 0.171268
x2: 0.170045
x3: 0.585367
x4: 0.200932
x5: 0.317134
x6: 0.606951", "Arm 28_0
hartmann6: -3.17288 (SEM: 0)
x1: 0.226376
x2: 0.0754811
x3: 0.546211
x4: 0.247571
x5: 0.319985
x6: 0.646369" ], "type": "scatter", "x": [ 0.39216968417167664, 0.6632378920912743, 0.8464481560513377, 0.9160656044259667, 0.061600666493177414, 0.07020752225071192, 0.61757408734411, 0.22460891027003527, 0.5790610406547785, 0.8911219742149115, 0.8725849883630872, 0.9895133329555392, 0.006182318552444443, 0.10978948563041614, 0.15519788358769881, 0.2054992151547574, 0.249337684813159, 0.26577561120760934, 0.30059519475995394, 0.3230059141383427, 0.30574201731657313, 0.27590838019432495, 0.33205810010510606, 0.34555251984478, 0.26827590593283096, 0.23096434474891306, 0.20079968422726097, 0.1712678132364324, 0.22637613467008277 ], "xaxis": "x", "y": [ 0.3419135510921478, 0.7145686745643616, 0.21709479205310345, 0.32118295691907406, 0.364805075339973, 0.22375822626054287, 0.46514361817389727, 0.9686278151348233, 0.6918518720194697, 0.6016591601073742, 0.8455629972741008, 0.31722911540418863, 0.16837593492784814, 0.26237503606642254, 0.2944922227690307, 0.29108145196918866, 0.2771591352268353, 0.2313589707615443, 0.20398743573653666, 0.16023020585164255, 0.2583940762674886, 0.1910274303620144, 0.20039627819255287, 0.2030267269264587, 0.16496220432066894, 0.13734335657368027, 0.11485365301291779, 0.17004535308313098, 0.07548106422379 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
hartmann6: -0.242245 (SEM: 0)
x1: 0.39217
x2: 0.341914
x3: 0.159259
x4: 0.437701
x5: 0.745598
x6: 0.0620148", "Arm 1_0
hartmann6: -0.253544 (SEM: 0)
x1: 0.663238
x2: 0.714569
x3: 0.588652
x4: 0.27768
x5: 0.139057
x6: 0.271218", "Arm 2_0
hartmann6: -0.217305 (SEM: 0)
x1: 0.846448
x2: 0.217095
x3: 0.348404
x4: 0.671583
x5: 0.339592
x6: 0.642009", "Arm 3_0
hartmann6: -0.267878 (SEM: 0)
x1: 0.916066
x2: 0.321183
x3: 0.137546
x4: 0.505969
x5: 0.415414
x6: 0.525829", "Arm 4_0
hartmann6: -0.258422 (SEM: 0)
x1: 0.0616007
x2: 0.364805
x3: 0.217203
x4: 0.273991
x5: 0.599507
x6: 0.978689", "Arm 5_0
hartmann6: -1.23921 (SEM: 0)
x1: 0.0702075
x2: 0.223758
x3: 0.719703
x4: 0.460041
x5: 0.11914
x6: 0.769392", "Arm 6_0
hartmann6: -0.184271 (SEM: 0)
x1: 0.617574
x2: 0.465144
x3: 0.645355
x4: 0.766496
x5: 0.14884
x6: 0.638048", "Arm 7_0
hartmann6: -0.00238585 (SEM: 0)
x1: 0.224609
x2: 0.968628
x3: 0.492947
x4: 0.925068
x5: 0.883348
x6: 0.955021", "Arm 8_0
hartmann6: -0.0945877 (SEM: 0)
x1: 0.579061
x2: 0.691852
x3: 0.901277
x4: 0.752974
x5: 0.323338
x6: 0.582829", "Arm 9_0
hartmann6: -0.0220674 (SEM: 0)
x1: 0.891122
x2: 0.601659
x3: 0.468342
x4: 0.305274
x5: 0.460138
x6: 0.0038387", "Arm 10_0
hartmann6: -0.0186132 (SEM: 0)
x1: 0.872585
x2: 0.845563
x3: 0.760308
x4: 0.638518
x5: 0.535373
x6: 0.419434", "Arm 11_0
hartmann6: -0.107191 (SEM: 0)
x1: 0.989513
x2: 0.317229
x3: 0.648857
x4: 0.558124
x5: 0.306877
x6: 0.377394", "Arm 12_0
hartmann6: -0.921573 (SEM: 0)
x1: 0.00618232
x2: 0.168376
x3: 0.728567
x4: 0.439569
x5: 0.0717724
x6: 0.765224", "Arm 13_0
hartmann6: -1.38199 (SEM: 0)
x1: 0.109789
x2: 0.262375
x3: 0.725919
x4: 0.471402
x5: 0.143763
x6: 0.774094", "Arm 14_0
hartmann6: -1.49377 (SEM: 0)
x1: 0.155198
x2: 0.294492
x3: 0.71667
x4: 0.48058
x5: 0.167834
x6: 0.779717", "Arm 15_0
hartmann6: -1.62365 (SEM: 0)
x1: 0.205499
x2: 0.291081
x3: 0.654117
x4: 0.467266
x5: 0.181966
x6: 0.791011", "Arm 16_0
hartmann6: -1.69943 (SEM: 0)
x1: 0.249338
x2: 0.277159
x3: 0.634864
x4: 0.426423
x5: 0.185014
x6: 0.846738", "Arm 17_0
hartmann6: -2.17145 (SEM: 0)
x1: 0.265776
x2: 0.231359
x3: 0.645915
x4: 0.379026
x5: 0.210914
x6: 0.789028", "Arm 18_0
hartmann6: -2.48092 (SEM: 0)
x1: 0.300595
x2: 0.203987
x3: 0.685256
x4: 0.334825
x5: 0.246681
x6: 0.751305", "Arm 19_0
hartmann6: -2.55046 (SEM: 0)
x1: 0.323006
x2: 0.16023
x3: 0.71443
x4: 0.285792
x5: 0.268074
x6: 0.718299", "Arm 20_0
hartmann6: -2.51895 (SEM: 0)
x1: 0.305742
x2: 0.258394
x3: 0.711848
x4: 0.24972
x5: 0.261953
x6: 0.71249", "Arm 21_0
hartmann6: -2.59462 (SEM: 0)
x1: 0.275908
x2: 0.191027
x3: 0.726008
x4: 0.279843
x5: 0.320087
x6: 0.7388", "Arm 22_0
hartmann6: -2.60407 (SEM: 0)
x1: 0.332058
x2: 0.200396
x3: 0.670185
x4: 0.272081
x5: 0.345044
x6: 0.741917", "Arm 23_0
hartmann6: -2.30369 (SEM: 0)
x1: 0.345553
x2: 0.203027
x3: 0.755474
x4: 0.263989
x5: 0.333498
x6: 0.765127", "Arm 24_0
hartmann6: -2.90431 (SEM: 0)
x1: 0.268276
x2: 0.164962
x3: 0.655735
x4: 0.26826
x5: 0.329887
x6: 0.691725", "Arm 25_0
hartmann6: -3.06876 (SEM: 0)
x1: 0.230964
x2: 0.137343
x3: 0.609254
x4: 0.258392
x5: 0.333731
x6: 0.628885", "Arm 26_0
hartmann6: -3.11298 (SEM: 0)
x1: 0.2008
x2: 0.114854
x3: 0.569471
x4: 0.213204
x5: 0.318605
x6: 0.644291", "Arm 27_0
hartmann6: -2.99258 (SEM: 0)
x1: 0.171268
x2: 0.170045
x3: 0.585367
x4: 0.200932
x5: 0.317134
x6: 0.606951", "Arm 28_0
hartmann6: -3.17288 (SEM: 0)
x1: 0.226376
x2: 0.0754811
x3: 0.546211
x4: 0.247571
x5: 0.319985
x6: 0.646369" ], "type": "scatter", "x": [ 0.39216968417167664, 0.6632378920912743, 0.8464481560513377, 0.9160656044259667, 0.061600666493177414, 0.07020752225071192, 0.61757408734411, 0.22460891027003527, 0.5790610406547785, 0.8911219742149115, 0.8725849883630872, 0.9895133329555392, 0.006182318552444443, 0.10978948563041614, 0.15519788358769881, 0.2054992151547574, 0.249337684813159, 0.26577561120760934, 0.30059519475995394, 0.3230059141383427, 0.30574201731657313, 0.27590838019432495, 0.33205810010510606, 0.34555251984478, 0.26827590593283096, 0.23096434474891306, 0.20079968422726097, 0.1712678132364324, 0.22637613467008277 ], "xaxis": "x2", "y": [ 0.3419135510921478, 0.7145686745643616, 0.21709479205310345, 0.32118295691907406, 0.364805075339973, 0.22375822626054287, 0.46514361817389727, 0.9686278151348233, 0.6918518720194697, 0.6016591601073742, 0.8455629972741008, 0.31722911540418863, 0.16837593492784814, 0.26237503606642254, 0.2944922227690307, 0.29108145196918866, 0.2771591352268353, 0.2313589707615443, 0.20398743573653666, 0.16023020585164255, 0.2583940762674886, 0.1910274303620144, 0.20039627819255287, 0.2030267269264587, 0.16496220432066894, 0.13734335657368027, 0.11485365301291779, 0.17004535308313098, 0.07548106422379 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "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": [ [ 1.0131424128396587, 1.0139591905309553, 1.0151463161119043, 1.0167059267402263, 1.0186388182515371, 1.020944462049488, 1.0236210601649547, 1.0266656397413876, 1.030074184948801, 1.033841800307449, 1.0379628948700614, 1.0424313721045304, 1.047240806371349, 1.0523845847587654, 1.0578559941826833, 1.063648239236122, 1.0697543862007963, 1.0761672409925478, 1.0828791802883841, 1.0898819623724703, 1.097166545551307, 1.1047229376789862, 1.1125400924242945, 1.1206058589941676, 1.1289069842412123, 1.1374291606115008, 1.1461571104662343, 1.1550746965370278, 1.16416504897462, 1.1734107009535006, 1.1827937265730137, 1.1922958765070775, 1.2018987083195511, 1.2115837095158246, 1.2213324122504057, 1.2311264991976734, 1.2409479004735726, 1.2507788817235153, 1.2606021236132987, 1.2704007930128742, 1.280158606175175, 1.289859884204749, 1.2994896010968193, 1.3090334246153557, 1.3184777502731668, 1.3278097286798498, 1.3370172865343735, 1.346089141556304, 1.3550148116716285, 1.363784618793278 ], [ 1.0142209595819864, 1.0150608621305206, 1.0162740412966669, 1.0178626425306432, 1.0198274080660767, 1.0221676902061276, 1.0248815075552047, 1.0279656469513636, 1.0314158101801079, 1.0352267996644176, 1.0393927314687894, 1.04390725768638, 1.0487637746517375, 1.0539555901307571, 1.0594760237993268, 1.0653184225545367, 1.0714760852977085, 1.0779421079740052, 1.0847091741976518, 1.091769325341935, 1.0991137444592751, 1.1067325817574503, 1.1146148386351917, 1.122748315979024, 1.131119623174883, 1.1397142383158954, 1.1485166073837427, 1.1575102700129012, 1.1666780008604434, 1.17600195774764, 1.185463830006739, 1.1950449825035059, 1.2047265924564035, 1.214489777410275, 1.2243157135878875, 1.2341857444079711, 1.2440814792978094, 1.2539848831098375, 1.2638783565280838, 1.273744807863835, 1.2835677166197714, 1.2933311891685517, 1.3030200068584672, 1.3126196668332508, 1.3221164158383756, 1.3314972772839333, 1.3407500718422516, 1.3498634318757612, 1.3588268100130683, 1.3676304822171896 ], [ 1.015623708519035, 1.0164861333354802, 1.0177244820023197, 1.0193409350881801, 1.0213362104722477, 1.023709571015482, 1.0264588797149226, 1.0295807069685123, 1.0330704905914228, 1.0369227434622619, 1.0411312963090331, 1.0456895548423522, 1.0505907426616992, 1.0558280965144227, 1.0613949815684989, 1.0672849035959824, 1.0734914119425898, 1.0800079078672942, 1.0868273909064545, 1.0939421856582734, 1.1013436905285874, 1.1090221803442488, 1.1169666806819305, 1.125164917854025, 1.1336033378400892, 1.1422671812011722, 1.1511405987850818, 1.1602067936782539, 1.1694481771138947, 1.1788465288839334, 1.188383155559163, 1.1980390421553269, 1.2077949946808249, 1.217631772284675, 1.2275302085745354, 1.2374713221951488, 1.2474364170412895, 1.2574071726047413, 1.2673657249816617, 1.2772947390383198, 1.2871774721802884, 1.296997830111571, 1.3067404149188901, 1.316390565778073, 1.3259343925573372, 1.3353588025855274, 1.34465152086019, 1.3538011039878468, 1.3627969481734463, 1.371629291603959 ], [ 1.0173531458991512, 1.0182372258166748, 1.0194995545988328, 1.021142379517801, 1.0231664309868758, 1.025570922755439, 1.028353603587507, 1.031510867223501, 1.0350379232775688, 1.0389290251452052, 1.0431777420047186, 1.0477772513498167, 1.0527206181088267, 1.0580010196007303, 1.0636118764524325, 1.0695468611356422, 1.075799777285041, 1.082364328907401, 1.0892338205282939, 1.0964008400815115, 1.1038569735981778, 1.1115925875056012, 1.1195966965553985, 1.1278569188108862, 1.1363595072366728, 1.1450894411804253, 1.1540305595416263, 1.1631657190588132, 1.1724769643235415, 1.181945699669542, 1.1915528562990436, 1.201279050589425, 1.2111047314200425, 1.221010315648659, 1.23097631167496, 1.2409834314856518, 1.2510126917929232, 1.261045504942065, 1.2710637602395378, 1.2810498962830472, 1.2909869647904904, 1.3008586863429286, 1.3106494983891135, 1.320344595810068, 1.3299299643139704, 1.3393924069216332, 1.3487195638095266, 1.3578999257958706, 1.3669228417823118, 1.3757785204950226 ], [ 1.0194113807740879, 1.0203160099087476, 1.0216008471265894, 1.0232682414223766, 1.0253189791752064, 1.0277522754025692, 1.0305658196815344, 1.0337558858686975, 1.0373175106217676, 1.0412447384590937, 1.0455309204812226, 1.050169040715676, 1.0551520307508773, 1.0604730242387603, 1.0661255033677086, 1.072103303401483, 1.0784004678209833, 1.0850109782042152, 1.091928408908827, 1.0991455681353977, 1.1066541818197606, 1.114444659513199, 1.1225059597167688, 1.1308255529687337, 1.1393894681364998, 1.148182401398966, 1.157187866857923, 1.166388370448378, 1.175765592930717, 1.1853005719494585, 1.1949738767487659, 1.204765771901291, 1.2146563683505056, 1.2246257613261071, 1.2346541554341268, 1.2447219776042855, 1.2548099787222298, 1.2648993247766989, 1.2749716782764846, 1.2850092705844045, 1.2949949657015256, 1.3049123159331912, 1.3147456097865706, 1.3244799123919937, 1.3341010987073323, 1.3435958797530938, 1.3529518221329384, 1.362157361114922, 1.3712018075789716, 1.3800753491706845 ], [ 1.021800222466142, 1.022724106334316, 1.0240297487192664, 1.025719637190114, 1.0277946623872778, 1.0302540994768945, 1.0330956464132783, 1.0363155304485856, 1.0399086903881274, 1.0438690343104762, 1.048189760363736, 1.0528637126031886, 1.057883727555252, 1.0632429156952068, 1.068934822080541, 1.0749534267935597, 1.081292977234659, 1.087947681515584, 1.0949113219320203, 1.102176859450981, 1.1097360923520108, 1.1175794107375965, 1.125695663182136, 1.1340721303559573, 1.1426945869830925, 1.1515474280622329, 1.1606138357977556, 1.1698759675211279, 1.1793151498682781, 1.1889120692522632, 1.1986469525816743, 1.208499735056155, 1.2184502138147477, 1.2284781874124677, 1.2385635817623732, 1.2486865634806346, 1.2588276416453723, 1.2689677589243313, 1.2790883729060312, 1.2891715283268121, 1.2991999207485696, 1.3091569521227684, 1.3190267785837189, 1.3287943507502886, 1.3384454467788107, 1.3479666983980816, 1.3573456101654995, 1.3665705722067545, 1.3756308667349717, 1.384516668683824 ], [ 1.0245212505030374, 1.0254629808167692, 1.0267875731953031, 1.0284976908297825, 1.030594379728667, 1.0330770402314222, 1.0359434562833134, 1.0391898959901695, 1.0428112933504525, 1.046801512963438, 1.051153686155655, 1.0558605891071633, 1.0609150145483703, 1.0663100748464478, 1.0720393738628866, 1.0780970035065844, 1.08447735671187, 1.0911747907296008, 1.0981832075670834, 1.1054956304966435, 1.1131038451418833, 1.120998148467284, 1.1291672203247836, 1.1375981090105465, 1.1462763085168022, 1.155185900414679, 1.1643097348734521, 1.1736296301482207, 1.1831265755876164, 1.1927809284287192, 1.2025725987643772, 1.2124812199981063, 1.2224863040082867, 1.2325673813668607, 1.2427041275354949, 1.2528764761839788, 1.26306472078483, 1.2732496055308486, 1.283412406463955, 1.2935350035337079, 1.303599944146674, 1.3135904986359002, 1.3234907079788125, 1.3332854240240097, 1.342960342448944, 1.3525020286594664, 1.3618979368520603, 1.3711364224858573, 1.380206748449053, 1.3890990852468894 ], [ 1.0275758668197725, 1.0285340182264766, 1.029875659643381, 1.0316036656735328, 1.0337192894274798, 1.0362221246507834, 1.0391101253166979, 1.042379697868143, 1.046025878064024, 1.0500425961551307, 1.0544230198484368, 1.0591599449429172, 1.064246182364951, 1.0696748748170744, 1.0754396754274222, 1.0815347409480438, 1.087954531161354, 1.0946934519357472, 1.101745414541775, 1.109103395780986, 1.1167590709222162, 1.1247025633799475, 1.1329223240756694, 1.141405129094244, 1.1501361704840707, 1.1590992109889235, 1.1682767759608974, 1.177650361306736, 1.1872006425706505, 1.196907675761417, 1.2067510847541332, 1.216710233022142, 1.2267643792982015, 1.2368928178074603, 1.2470750042136707, 1.257290668575116, 1.267519916561615, 1.277743320036816, 1.2879419979221913, 1.2980976880682875, 1.3081928106878336, 1.3182105237643411, 1.3281347707439481, 1.3379503207474739, 1.3476428015016078, 1.3571987251773308, 1.366605507336816, 1.375851479218901, 1.3849258936346789, 1.3938189247920945 ], [ 1.0309653209442189, 1.0319385636748217, 1.0332954332541675, 1.03503904907508, 1.0371709215854181, 1.0396909061230108, 1.042597212680215, 1.0458864878957865, 1.0495539827482343, 1.053593811235669, 1.0579992905532976, 1.0627633326613535, 1.067878834696509, 1.0733389991682625, 1.0791375138948511, 1.0852685427189017, 1.0917265188740557, 1.098505780391136, 1.1056001229999781, 1.1130023575797765, 1.1207039453482928, 1.1286947543660395, 1.136962948810686, 1.145494997744109, 1.154275776558455, 1.1632887307881177, 1.1725160750410333, 1.1819390058792543, 1.191537914016882, 1.2012925868315776, 1.211182396421513, 1.221186471315353, 1.2312838517146847, 1.2414536291180016, 1.2516750716095926, 1.2619277362001713, 1.272191569522243, 1.2824469980078184, 1.2926750084683316, 1.3028572197933206, 1.3129759463042052, 1.3230142531540208, 1.3329560040553607, 1.342785901547644, 1.3524895199766203, 1.3620533313512317, 1.3714647242573255, 1.3807120160407256, 1.3897844585170893, 1.3986722375177876 ], [ 1.03469070133472, 1.035677920939943, 1.0370484131653235, 1.0388055722782592, 1.0409512128110774, 1.0434855164791397, 1.0464070323193049, 1.0497127468350735, 1.0533982384951368, 1.0574579229377257, 1.0618853803902295, 1.0666737359200782, 1.0718160404083794, 1.0773055835302021, 1.0831360691544158, 1.089301604791628, 1.0957964974355514, 1.102614895233309, 1.1097503499127268, 1.1171953860112838, 1.1249411488441994, 1.1329771735439487, 1.1412912855944366, 1.1498696188933408, 1.1586967242240138, 1.1677557378598011, 1.1770285833304357, 1.1864961855812721, 1.1961386833203953, 1.2059356309380056, 1.2158661855471609, 1.225909277492326, 1.2360437643718558, 1.2462485695309986, 1.2565028063709427, 1.2667858898902487, 1.2770776367681074, 1.2873583551086225, 1.297608924747728, 1.307810868814976, 1.3179464170595312, 1.3279985613023493, 1.3379511032680629, 1.34778869497964, 1.3574968718625484, 1.3670620786989236, 1.3764716885896784, 1.3857140151185807, 1.3947783179608975, 1.4036548022351878 ], [ 1.0387528896357054, 1.039753303336331, 1.041136160213258, 1.0429051554524083, 1.045062449053649, 1.0476086071995616, 1.0505425930691674, 1.0538618237536026, 1.057562307836535, 1.061638870556719, 1.0660854590008866, 1.0708954993809718, 1.076062256423828, 1.0815791290507217, 1.0874398159884346, 1.093638305480222, 1.1001686820823027, 1.107024788127189, 1.1141998109715694, 1.1216858776876575, 1.1294737255612948, 1.1375524886969142, 1.1459096106378408, 1.1545308695731002, 1.1634004900578758, 1.1725013121118961, 1.181814991730592, 1.191322212819989, 1.2010028969034672, 1.2108364023470126, 1.2208017088709817, 1.2308775858125571, 1.241042744236929, 1.2512759738634822, 1.261556266138212, 1.2718629248402646, 1.2821756654972776, 1.292474704691058, 1.30274084011771, 1.3129555220573785, 1.3231009167280476, 1.3331599618522065, 1.3431164146586343, 1.3529548924735753, 1.3626609060211532, 1.3722208855491083, 1.3816221999160416, 1.3908531688154477, 1.3999030683638065, 1.4087621303402782 ], [ 1.0431524787115323, 1.0441657377319111, 1.045560165017273, 1.0473397778861984, 1.0495071160093272, 1.0520631783306678, 1.0550074047457672, 1.0583377185209872, 1.06205064366376, 1.0661415043115972, 1.0706046995334162, 1.0754340277331405, 1.0806230143432596, 1.0861651820491307, 1.0920542026609048, 1.0982838888308701, 1.1048480192581587, 1.1117400314860013, 1.1189526468955158, 1.1264775023897224, 1.1343048516208643, 1.1424233733450548, 1.1508200967126208, 1.1594804316377734, 1.1683882803816055, 1.1775262033156964, 1.1868756145452468, 1.1964169885166724, 1.2061300646207609, 1.21599404187581, 1.2259877595872455, 1.2360898624574501, 1.2462789501912053, 1.2565337124860594, 1.2668330506549752, 1.2771561871899373, 1.2874827644693323, 1.2977929336275609, 1.3080674343962944, 1.3182876665248886, 1.3284357532128286, 1.3384945968460074, 1.3484479272267562, 1.3582803424219627, 1.3679773423226629, 1.3775253550068958, 1.3869117560205486, 1.3961248807327058, 1.4051540299773677, 1.413989469257489 ], [ 1.047889659195262, 1.048915927821945, 1.050321684231667, 1.052111283321115, 1.054287669702613, 1.056852310850562, 1.059805169606661, 1.0631447309432034, 1.0668680964245534, 1.0709711533202149, 1.0754488128040094, 1.0802952941990118, 1.085504413820461, 1.0910698242856058, 1.096985150362512, 1.103243984450765, 1.1098397358632524, 1.116765363385143, 1.1240130473811425, 1.1315738668965796, 1.1394375377195434, 1.1475922457099137, 1.1560245853099629, 1.164719593643866, 1.1736608593831783, 1.1828306821807941, 1.1922102605079612, 1.2017798904184815, 1.2115191630234532, 1.2214071530939878, 1.231422594756239, 1.2415440426780961, 1.2517500186594417, 1.2620191443662179, 1.2723302613160243, 1.2826625393008022, 1.2929955743468042, 1.3033094771455056, 1.31358495269516, 1.3238033717039126, 1.3339468341398137, 1.3439982251799227, 1.353941263714341, 1.3637605434994868, 1.3734415670277842, 1.3829707721817144, 1.392335551765798, 1.40152426605467, 1.4105262485537307, 1.4193318052363826 ], [ 1.052964082392484, 1.0540040871044252, 1.055421538739406, 1.057221138378416, 1.0594062503381902, 1.061978831744736, 1.0649393956107744, 1.0682870209816422, 1.0720194225821675, 1.0761330866981955, 1.0806234689252676, 1.0854852340129895, 1.0907125020060562, 1.0962990540452866, 1.102238451524736, 1.108524036850194, 1.1151488102809728, 1.1221052070895357, 1.129384822119861, 1.13697813723086, 1.1448742999581516, 1.1530609840070813, 1.16152434157663, 1.1702490404780963, 1.1792183687196522, 1.1884143856477736, 1.1978180999940815, 1.207409658980302, 1.2171685371476963, 1.2270737176894615, 1.23710386229302, 1.2472374677705829, 1.2574530092014515, 1.2677290701279835, 1.2780444607301045, 1.2883783250085001, 1.2987102379485762, 1.3090202934962756, 1.319289184003839, 1.32949827163149, 1.3396296520379314, 1.3496662105699728, 1.3595916710711056, 1.3693906373738287, 1.3790486275163418, 1.3885521007285442, 1.39788847726022, 1.4070461511716856, 1.4160144962681052, 1.4247838654299458 ], [ 1.0583747094044407, 1.059429754751641, 1.0608598912017164, 1.0626701667326075, 1.0648643684282657, 1.0674449482858428, 1.0704129765086559, 1.0737681344256507, 1.077508758394077, 1.0816319412163404, 1.0861336880630756, 1.0910091106950301, 1.0962526301607916, 1.1018581490280008, 1.1078191544406082, 1.1141287251920005, 1.120779437387796, 1.1277631875882483, 1.1350709713111389, 1.1426926623783542, 1.1506168336402929, 1.1588306457571014, 1.1673198139214231, 1.1760686479759679, 1.1850601521686717, 1.1942761670947464, 1.2036975368791594, 1.2133042875416147, 1.2230758062015419, 1.2329910143171658, 1.2430285310233242, 1.253166824713824, 1.2633843523805361, 1.2736596870246175, 1.2839716338562734, 1.2942993361344945, 1.304622371473499, 1.3149208393302736, 1.3251754402402074, 1.335367547214821, 1.345479269578436, 1.3554935094087195, 1.365394010664796, 1.3751654010370435, 1.3847932265331349, 1.394263978822853, 1.4035651153942337, 1.4126850726242495, 1.421613271930332, 1.4303401192437513 ], [ 1.064119657224582, 1.065191608609007, 1.0666360215037203, 1.0684582827886038, 1.0706625930983755, 1.0732518884350994, 1.0762277833887792, 1.079590546732001, 1.0833391197265576, 1.0874711835551538, 1.0919832743318372, 1.0968709331051918, 1.102128866907749, 1.1077510892664097, 1.1137310085361578, 1.120061441704882, 1.1267345481749926, 1.1337416973717824, 1.1410732994825483, 1.1487186354123418, 1.1566657189984182, 1.1649012141671449, 1.1734104165083774, 1.1821772968812703, 1.1911845966399703, 1.20041396040341, 1.2098460921558398, 1.219460922491009, 1.2292377777391679, 1.2391555446580034, 1.2491928268558363, 1.2593280909821012, 1.2695398019907522, 1.2798065475603604, 1.2901071521681409, 1.3004207814798825, 1.3107270377254039, 1.3210060466490683, 1.3312385365033845, 1.341405909423053, 1.3514903053962337, 1.361474658950654, 1.3713427486006065, 1.3810792390579327, 1.3906697161958521, 1.4001007147655713, 1.4093597388993575, 1.4184352754861134, 1.4273168005722257, 1.4359947790172103 ], [ 1.0701960524040375, 1.0712872890206597, 1.072748117501666, 1.0745842465684257, 1.0768002691071816, 1.0793995791169804, 1.0823843048080126, 1.085755267385134, 1.0895119749650028, 1.0936526580158796, 1.0981743462398295, 1.103072977759482, 1.1083435221026205, 1.1139800920505338, 1.1199760189698347, 1.1263238731305305, 1.133015423382687, 1.1400415455836574, 1.14739210151756, 1.1550558160137545, 1.1630201784462317, 1.1712713874084881, 1.179794347323982, 1.1885727162913293, 1.1975889976678653, 1.2068246644125875, 1.2162603045909164, 1.2258757777244513, 1.2356503738635112, 1.2455629696243766, 1.255592177526695, 1.2657164866020294, 1.2759143934006618, 1.2861645232626855, 1.2964457421365938, 1.3067372594163438, 1.3170187223066896, 1.3272703021761723, 1.337472773263267, 1.3476075839923665, 1.3576569210536586, 1.3676037663154081, 1.3774319465756484, 1.387126176125146, 1.3966720920843942, 1.4060562824928104, 1.415266307165282, 1.4242907113860666, 1.4331190325797967, 1.4417418001783957 ], [ 1.0765999018280663, 1.0777132453744573, 1.0791930955999958, 1.081045457177637, 1.0832752828707095, 1.0858863854813896, 1.0888813611337378, 1.0922615323844924, 1.0960269198715482, 1.1001762489272813, 1.1047069924405324, 1.1096154439222898, 1.114896807048865, 1.1205452824966111, 1.1265541320199368, 1.1329157045271097, 1.1396214184178584, 1.1466617058480022, 1.1540259342968078, 1.1617023259799901, 1.1696778952510185, 1.177938419137789, 1.1864684488045314, 1.1952513624081027, 1.2042694542312733, 1.2135040518067246, 1.222935651820903, 1.2325440662709284, 1.2423085719062292, 1.2522080578166377, 1.262221167738219, 1.2723264350435846, 1.282502409409423, 1.2927277748392625, 1.3029814591274484, 1.3132427350533058, 1.3234913136583966, 1.3337074299368208, 1.3438719211998778, 1.3539662982895344, 1.3639728097302628, 1.3738744988370173, 1.3836552537467979, 1.3932998503133174, 1.402793987801957, 1.4121243173415554, 1.4212784631303428, 1.4302450364510846, 1.4390136426228128, 1.4475748810984141 ], [ 1.0833259883686537, 1.0844646145265318, 1.0859664616862568, 1.0878377966046053, 1.0900838901861964, 1.0927089243572854, 1.0957159062413564, 1.0991065972826197, 1.1028814654246513, 1.1070396668227402, 1.1115790595470978, 1.1164962458559118, 1.1217866333273412, 1.1274445004507354, 1.133463051045518, 1.1398344449694047, 1.1465497993629439, 1.1535991631403268, 1.1609714749558144, 1.1686545192780868, 1.1766348955702894, 1.1848980124153097, 1.1934281132341495, 1.2022083347562575, 1.2112207949481388, 1.2204467043416922, 1.2298664936354708, 1.239459950686777, 1.2492063610490347, 1.2590846475703439, 1.2690735059211011, 1.2791515340754163, 1.2892973546576878, 1.2994897296832415, 1.3097076676082366, 1.3199305228127596, 1.3301380877218831, 1.3403106777702494, 1.350429209368912, 1.3604752709668215, 1.370431187231306, 1.3802800763142906, 1.3900059001307015, 1.3995935075568222, 1.409028670459475, 1.4182981124918408, 1.4273895306358633, 1.436291609532604, 1.44499402871644, 1.4534874629536354 ], [ 1.0903677968867265, 1.0915351369940705, 1.0930622184622478, 1.0949555296622113, 1.0972206107509357, 1.0998619557113958, 1.1028829184997817, 1.1062856302705015, 1.1100709352844174, 1.1142383519958725, 1.118786062704946, 1.1237109304637185, 1.129008536764557, 1.134673229475328, 1.1406981689707965, 1.147075362165505, 1.1537956788009822, 1.1608488504765266, 1.1682234586443623, 1.1759069214755484, 1.1838854903373244, 1.1921442648114031, 1.2006672316801346, 1.2094373293291294, 1.2184365355810365, 1.2276459746595643, 1.2370460379032866, 1.246616512799487, 1.2563367155428449, 1.2661856232928095, 1.2761420033383142, 1.2861845373087233, 1.2962919393141383, 1.3064430674383751, 1.3166170283616958, 1.32679327509333, 1.3369516978858151, 1.347072708419673, 1.3571373173195913, 1.3671272050143908, 1.3770247859008946, 1.3868132657269452, 1.396476692079422, 1.4059999978527506, 1.4153690375827777, 1.424570616561698, 1.4335925126973437, 1.442423491145398, 1.4510533118203346, 1.459472729977791 ], [ 1.0977174735064996, 1.098917113401893, 1.100472820822514, 1.102391260412836, 1.1046781879802445, 1.1073383482500383, 1.110375374350479, 1.113791695456649, 1.1175884597583374, 1.1217654791979763, 1.1263212000309715, 1.1312526995056706, 1.1365557047093013, 1.1422246260841047, 1.1482525964202575, 1.1546315068895872, 1.1613520347042723, 1.1684036613168285, 1.1757746843718337, 1.183452229647172, 1.191422270294771, 1.1996696598229772, 1.2081781830301415, 1.2169306263278874, 1.2259088663355866, 1.2350939737683755, 1.244466328643387, 1.254005742609881, 1.2636915845523002, 1.2735029062733931, 1.283418565828762, 1.293417346809665, 1.303478072476881, 1.313579714106294, 1.323701493219021, 1.333822977558108, 1.3439241707677254, 1.3539855957582652, 1.3639883717275072, 1.3739142847741275, 1.3837458520011796, 1.3934663789744823, 1.4030600103813424, 1.4125117737329398, 1.4218076159702713, 1.4309344328688411, 1.4398800911905938, 1.4486334435993033, 1.4571843364365777, 1.4655236105443232 ], [ 1.10536581856376, 1.1066014005257365, 1.1081891771412657, 1.1101359410017477, 1.1124476076673608, 1.115129109938862, 1.1181842922214877, 1.1216158109606935, 1.1254250479055394, 1.1296120425122642, 1.1341754479557113, 1.1391125122036025, 1.1444190820902762, 1.150089625231253, 1.1561172628369119, 1.1624938065313237, 1.1692097940983506, 1.176254522036229, 1.1836160759564758, 1.1912813622985683, 1.199236145976304, 1.2074650983293116, 1.2159518584428215, 1.2246791090605234, 1.2336286664887006, 1.242781582459974, 1.2521182550679288, 1.2616185455911124, 1.271261898172831, 1.2810274597472224, 1.2908941981462807, 1.3008410168706195, 1.3108468654845467, 1.3208908449717556, 1.3309523076532732, 1.3410109514375248, 1.351046908261408, 1.3610408266139167, 1.3709739480300518, 1.3808281774208857, 1.3905861470777008, 1.4002312741668903, 1.409747811521421, 1.4191208915408593, 1.428336563035034, 1.4373818208875346, 1.446244628472793, 1.4549139328324603, 1.4633796727003447, 1.4716327795562696 ], [ 1.1133023114169789, 1.1145774437127995, 1.116200691473714, 1.1181789257750794, 1.1205181659276389, 1.1232234712397584, 1.1262988318595915, 1.129747064286886, 1.1335697179087856, 1.137766998655521, 1.1423377144399827, 1.1472792446135642, 1.1525875327451354, 1.1582570993252876, 1.1642810692111152, 1.1706512081983587, 1.1773579640571465, 1.1843905093025258, 1.1917367852318497, 1.1993835486793127, 1.2073164240427823, 1.2155199632821103, 1.2239777159225325, 1.2326723099570198, 1.241585543300653, 1.2506984844038267, 1.259991579941762, 1.2694447671986733, 1.2790375887953132, 1.2887493076660665, 1.2985590205653135, 1.3084457687831947, 1.318388645116164, 1.3283668964350825, 1.3383600214104654, 1.3483478630972385, 1.3583106961599025, 1.3682293085518638, 1.3780850774641054, 1.3878600393444604, 1.3975369537708644, 1.4070993609483817, 1.4165316325984967, 1.4258190160220163, 1.4349476711469047, 1.4439047004188712, 1.4526781714550685, 1.4612571324570702, 1.4696316204656006, 1.4777926626331388 ], [ 1.1215151636083383, 1.1228333406671684, 1.1244953398952449, 1.1265080619181078, 1.1288775755225249, 1.1316090079668404, 1.1347064338584234, 1.1381727678303717, 1.1420096669674975, 1.1462174487889736, 1.1507950294702378, 1.1557398850101066, 1.1610480356059933, 1.166714051140605, 1.1727310739554941, 1.179090854360908, 1.1857837946773775, 1.192798998787956, 1.2001243257519025, 1.2077464475043687, 1.215650911665536, 1.2238222108414778, 1.2322438595639729, 1.2408984793825202, 1.2497678918357027, 1.2588332183086106, 1.2680749852657947, 1.2774732330864165, 1.2870076266995507, 1.2966575663640028, 1.306402297184516, 1.3162210162394248, 1.3260929764647393, 1.335997586666037, 1.3459145072000755, 1.3558237409820633, 1.3657057195397746, 1.3755413838638888, 1.3853122598073748, 1.3950005277780027, 1.404589086456609, 1.4140616102681631, 1.4234026003381, 1.4325974286862564, 1.4416323754470057, 1.450494658956261, 1.4591724586132329, 1.4676549305045723, 1.4759322158681611, 1.4839954425691233 ], [ 1.129991395771651, 1.1313559306077547, 1.13305977344468, 1.135109807440543, 1.1375120997236454, 1.140271791313888, 1.1433929854728806, 1.146878639374084, 1.1507304646326237, 1.1549488421590164, 1.1595327559039, 1.1644797484415006, 1.1697858992917145, 1.1754458248277397, 1.1814526969897288, 1.1877982771336353, 1.1944729612857596, 1.2014658337166377, 1.2087647267961952, 1.216356286192888, 1.2242260413392199, 1.2323584815411734, 1.2407371381457248, 1.249344672898569, 1.2581629721794634, 1.2671732463466079, 1.2763561330648636, 1.2856918032893199, 1.2951600685278093, 1.304740488085546, 1.3144124751534896, 1.324155400797025, 1.333948695093253, 1.3437719448311876, 1.3536049873165834, 1.3634279999085626, 1.3732215849650333, 1.3829668498949044, 1.3926454820169358, 1.402239817919432, 1.4117329070078326, 1.4211085689277843, 1.430351444562348, 1.4394470403288402, 1.4483817655420115, 1.4571429626684451, 1.4657189303686475, 1.4740989393072166, 1.4822732408039643, 1.4902330684964946 ], [ 1.138716933191811, 1.140130902550554, 1.141879440217644, 1.1439693678482163, 1.1464067039085806, 1.1491965542141251, 1.1523430010202564, 1.155848995224794, 1.1597162568083463, 1.1639451885975665, 1.1685348077092532, 1.1734826976955384, 1.1787849826885066, 1.1844363230617518, 1.1904299306265504, 1.196757600417982, 1.2034097558085148, 1.2103755039512518, 1.2176426992104763, 1.225198013033214, 1.233027009424474, 1.2411142256640844, 1.2494432580963992, 1.2579968527768657, 1.2667570005601332, 1.2757050359650828, 1.2848217389353158, 1.2940874384774421, 1.303482117118845, 1.3129855151697858, 1.3225772338760686, 1.332236836677879, 1.3419439479228, 1.3516783484961423, 1.3614200679216013, 1.371149472544191, 1.38084734944111, 1.3904949857173934, 1.4000742428432504, 1.4095676256832887, 1.4189583458648163, 1.428230379136316, 1.437368516384325, 1.4463584080083225, 1.4551866014006571, 1.463840571341501, 1.4723087431950128, 1.4805805088810435, 1.488646235692068, 1.4964972681245334 ], [ 1.1476767149334979, 1.149142916769909, 1.1509387198209575, 1.153070843930222, 1.1555452166375828, 1.1583668652380992, 1.1615398076872907, 1.165066946583752, 1.168949970944943, 1.173189270464051, 1.1777838663361953, 1.1827313616296364, 1.1880279127251259, 1.1936682218062118, 1.1996455490221711, 1.205951741975999, 1.2125772797169312, 1.2195113284247039, 1.2267418063391529, 1.2342554560399677, 1.242037922744876, 1.2500738377424736, 1.2583469063478023, 1.2668399998674178, 1.27553525103112, 1.2844141522521673, 1.2934576559757873, 1.3026462763049478, 1.3119601910722198, 1.3213793435563042, 1.3308835431073167, 1.340452564030397, 1.3500662421642797, 1.3597045686674991, 1.3693477805821648, 1.378976447781411, 1.3885715559240532, 1.3981145850419234, 1.4075875833804286, 1.4169732361059404, 1.4262549284909645, 1.4354168031962513, 1.4444438112894566, 1.4533217566766907, 1.462037333675456, 1.4705781575252792, 1.4789327877136187, 1.4870907440856915, 1.4950425158061615, 1.5027795633417145 ], [ 1.1568548118363506, 1.1583757341602028, 1.1602210643960547, 1.16239738444763, 1.1649104936899695, 1.1677653033271354, 1.1709657299852378, 1.1745145924498899, 1.1784135158623161, 1.1826628476618641, 1.1872615890608555, 1.192207344905198, 1.1974962935461102, 1.2031231770191022, 1.2090813106065803, 1.2153626099241879, 1.221957633118183, 1.2288556355991744, 1.2360446348965821, 1.243511483577305, 1.2512419486026312, 1.2592207958933115, 1.267431879170683, 1.275858232322865, 1.2844821646259066, 1.2932853581640038, 1.3022489667795993, 1.3113537158712392, 1.3205800023632914, 1.3299079942000744, 1.339317728764549, 1.3487892096775915, 1.3583025014894934, 1.3678378218207434, 1.3773756305414742, 1.3868967155944785, 1.3963822750699064, 1.405813995132964, 1.4151741233950121, 1.4244455373098412, 1.4336118071750978, 1.442657253328521, 1.4515669971531573, 1.4603270055462436, 1.4689241285633978, 1.4773461300222246, 1.4855817109347975, 1.4936205257338109, 1.5014531913589564, 1.509071289373609 ], [ 1.1662345492771777, 1.1678123490707744, 1.1697091415377845, 1.171931338901558, 1.1744845801945418, 1.1773736285561873, 1.1806022681952568, 1.1841732046121567, 1.1880879720087973, 1.1923468517824993, 1.196948805574474, 1.2018914255573263, 1.2071709036049258, 1.2127820198432329, 1.218718149997685, 1.2249712900748038, 1.2315320963317127, 1.2383899382215253, 1.245532962015114, 1.2529481630117885, 1.2606214645665819, 1.2685378024949812, 1.276681213706915, 1.2850349281417601, 1.2935814632226268, 1.3023027201359518, 1.311180081293766, 1.320194508370289, 1.329326640336689, 1.338556890953078, 1.3478655452158175, 1.3572328542973375, 1.366639128549164, 1.3760648281626051, 1.3854906510936817, 1.3948976178587889, 1.404267152797762, 1.4135811613859244, 1.4228221031607196, 1.431973059817251, 1.4410177980249408, 1.4499408265291354, 1.4587274471282259, 1.4673637991615778, 1.4758368972044495, 1.4841346617428455, 1.492245942691028, 1.500160535713322, 1.5078691914164943, 1.5153636175843257 ], [ 1.1757986313014397, 1.177435122082679, 1.1793849755262316, 1.181654406835181, 1.184248867432075, 1.187172945702797, 1.1904302678351737, 1.1940234020456026, 1.1979537697540388, 1.2022215672301755, 1.206825700867333, 1.2117637385745224, 1.2170318788926704, 1.2226249384559782, 1.2285363574653094, 1.2347582220331446, 1.2412813016784243, 1.2480950999245648, 1.2551879158682335, 1.262546914687439, 1.2701582052761475, 1.2780069234614369, 1.2860773195246995, 1.2943528489776588, 1.3028162657235163, 1.3114497168671133, 1.3202348385324678, 1.3291528521168017, 1.3381846604638195, 1.3473109434846122, 1.3565122527912017, 1.3657691049376823, 1.3750620728832745, 1.3843718753004242, 1.3936794633481175, 1.4029661045179114, 1.4122134631403205, 1.4214036771163916, 1.4305194304187792, 1.439544020892561, 1.448461422883624, 1.4572563442347963, 1.4659142772193787, 1.474421543029306, 1.4827653295001608, 1.4909337218362644, 1.4989157261924948, 1.5067012860722548, 1.5142812916083248, 1.5216475819009778 ], [ 1.1855292634338745, 1.1872259100411502, 1.1892300842627987, 1.191547781210525, 1.19418424206381, 1.1971438586384542, 1.2004300784556594, 1.2040453133164293, 1.2079908545976275, 1.2122667984412032, 1.2168719836909128, 1.2218039448632088, 1.2270588816859997, 1.2326316458923596, 1.2385157451200675, 1.244703363036192, 1.2511853942484108, 1.2579514922121349, 1.2649901281933789, 1.2722886593669178, 1.2798334042699893, 1.2876097240398405, 1.2956021080941138, 1.3037942631329555, 1.312169204533138, 1.3207093493602962, 1.3293966103484205, 1.3382124902891788, 1.3471381763463763, 1.3561546338643098, 1.3652426992780164, 1.3743831717579895, 1.383556903233636, 1.3927448864378074, 1.401928340601466, 1.4110887944054313, 1.4202081657680106, 1.4292688380187488, 1.43825373198326, 1.447146373488335, 1.4559309557930946, 1.4645923964648229, 1.4731163882504392, 1.4814894435441024, 1.4896989321208056, 1.4977331118901924, 1.505581152522336, 1.5132331519033853, 1.5206801454888574, 1.5279141087323123 ], [ 1.1954082721311612, 1.1971661913988454, 1.1992256101167724, 1.20159228427147, 1.204271226446252, 1.2072666144797215, 1.2105817009898547, 1.214218726496852, 1.218178839041419, 1.2224620231452463, 1.2270670406827218, 1.231991385747822, 1.2372312549574878, 1.242781533905352, 1.2486357997495914, 1.2547863392634668, 1.2612241811539844, 1.267939141097042, 1.2749198777491504, 1.2821539579586132, 1.2896279294774837, 1.2973273996301882, 1.3052371185873641, 1.3133410660934424, 1.3216225406843956, 1.3300642505958802, 1.338648405698131, 1.347356809902787, 1.3561709535707123, 1.3650721055110144, 1.374041404203303, 1.3830599478979722, 1.3921088832561999, 1.4011694921830935, 1.4102232764865748, 1.4192520399659487, 1.4282379674996586, 1.4371637006684175, 1.4460124094212803, 1.4547678592744495, 1.4634144735283305, 1.4719373900026398, 1.48032251182245, 1.488556551841274, 1.4966270703594564, 1.504522505884126, 1.5122321987784861, 1.5197464077571319, 1.5270563192973343, 1.5341540501470456 ], [ 1.2054172194050985, 1.2072371855390922, 1.2093524435376846, 1.2117684949707117, 1.2144901093585012, 1.2175212370866608, 1.2208649235033557, 1.2245232266775485, 1.2284971414217343, 1.2327865321277924, 1.237390076721016, 1.2423052236207321, 1.2475281630467663, 1.253053813385388, 1.2588758226934853, 1.264986584837, 1.2713772692778238, 1.278037863175386, 1.2849572242605904, 1.292123142863678, 1.2995224115083066, 1.3071409005932455, 1.3149636388378108, 1.3229748973431492, 1.3311582762954677, 1.3394967934991515, 1.3479729740667614, 1.3565689407086154, 1.3652665041546062, 1.3740472533073969, 1.3828926447694827, 1.3917840914094837, 1.400703049636874, 1.4096311050421109, 1.4185500560339859, 1.4274419950718604, 1.436289387052276, 1.4450751443721164, 1.4537826981595252, 1.4623960651443157, 1.470899909634994, 1.4792796000847115, 1.4875212597628509, 1.4956118111049592, 1.5035390133889301, 1.511291493476798, 1.5188587694662263, 1.5262312672082128, 1.5334003297628376, 1.5403582199778343 ], [ 1.2155375116117766, 1.2174199652360156, 1.2195913387820374, 1.2220568675251673, 1.224821066935609, 1.2278876499332105, 1.2312594455900907, 1.2349383215237357, 1.2389251123161322, 1.2432195562371529, 1.2478202423353437, 1.2527245696005889, 1.2579287194327349, 1.2634276421121813, 1.2692150574175156, 1.2752834690195507, 1.2816241918441782, 1.2882273912646895, 1.2950821327698259, 1.302176440651372, 1.3094973642518284, 1.3170310503822684, 1.324762820642524, 1.3326772525238928, 1.3407582633316255, 1.3489891961157126, 1.3573529069342816, 1.3658318528894857, 1.374408180467989, 1.3830638137858116, 1.3917805423825198, 1.4005401082315339, 1.4093242916363333, 1.4181149956670664, 1.4268943287642615, 1.43564468509874, 1.4443488222358998, 1.4529899356123974, 1.4615517293009141, 1.4700184825175262, 1.4783751113223536, 1.4866072249791344, 1.4947011764761358, 1.5026441067689698, 1.5104239823836783, 1.5180296261134327, 1.5254507406501587, 1.532677925107143, 1.5397026845072874, 1.546517432425379 ], [ 1.2257505017730295, 1.2276955617800365, 1.229923021465582, 1.232437841005492, 1.2352442739129887, 1.238345788649049, 1.2417449918956263, 1.24544355551649, 1.2494421492987862, 1.2537403815089998, 1.2583367491075113, 1.263228599155647, 1.2684121025454955, 1.2738822407203687, 1.279632805575326, 1.2856564122740108, 1.2919445243240901, 1.2984874899448284, 1.305274588547264, 1.3122940860308696, 1.3195332975710152, 1.326978656611477, 1.3346157888672943, 1.3424295902658858, 1.3504043078908108, 1.3585236231300912, 1.3667707363579582, 1.3751284525903602, 1.3835792676440741, 1.3921054543970524, 1.4006891487915147, 1.409312435243108, 1.4179574311206604, 1.4266063699447327, 1.4352416829230155, 1.443846078401194, 1.452402618764943, 1.4608947942871657, 1.46930659338066, 1.4776225686952946, 1.4858278984944897, 1.4939084427620124, 1.5018507935283967, 1.5096423189664268, 1.5172712008858378, 1.5247264653553487, 1.5319980062905372, 1.5390766019643358, 1.5459539245167107, 1.552622542656021 ], [ 1.236037585079176, 1.238045062569848, 1.2403282879054909, 1.2428919400929344, 1.245740005481763, 1.2488757036919216, 1.2523014153710361, 1.25601861360764, 1.2600278008737225, 1.2643284533115016, 1.2689189740105409, 1.2737966566538061, 1.2789576605630746, 1.2843969977771466, 1.2901085323807953, 1.2960849919057573, 1.3023179902724018, 1.308798061456794, 1.3155147028628986, 1.322456427255636, 1.3296108220634462, 1.3369646148749397, 1.3445037440197147, 1.3522134332216067, 1.3600782694288223, 1.3680822830465251, 1.376209029913263, 1.3844416744658408, 1.3927630736220775, 1.4011558609755386, 1.4096025309382323, 1.4180855224875621, 1.4265873021740785, 1.4350904460285347, 1.4435777199756472, 1.4520321583212974, 1.4604371398356488, 1.4687764609123062, 1.4770344052492188, 1.4851958094757516, 1.4932461241463253, 1.5011714695385603, 1.5089586857333215, 1.5165953765164868, 1.5240699467253498, 1.531371632763067, 1.538490526117804, 1.5454175898435258, 1.552144668081393, 1.5586644888175991 ], [ 1.2463802874321621, 1.2484497011654716, 1.2507880963875242, 1.2533998672789142, 1.2562887301665346, 1.259457653687546, 1.2629087909067551, 1.266643415032147, 1.270661860405112, 1.274963470383797, 1.2795465535892647, 1.2844083497510508, 1.2895450060897287, 1.2949515648314993, 1.3006219620904975, 1.3065490380068, 1.3127245577153963, 1.3191392424624335, 1.3257828099913656, 1.332644023196607, 1.339710745983048, 1.346970005267856, 1.354408058104982, 1.3620104629894374, 1.3697621544946055, 1.3776475205006335, 1.385650481374371, 1.3937545705545398, 1.4019430160739481, 1.410198822609945, 1.418504853693194, 1.4268439137227853, 1.435198829434229, 1.4435525304479415, 1.4518881284935974, 1.460188994864335, 1.4684388356100377, 1.4766217639363362, 1.4847223692413387, 1.492725782200952, 1.5006177353107655, 1.5083846183104144, 1.516013527957771, 1.5234923116844632, 1.53080960474931, 1.5379548606093838, 1.5449183743435653, 1.5516912990860967, 1.5582656555508407, 1.5646343348451683 ], [ 1.2567603470376374, 1.2588909399273178, 1.2612836506006746, 1.263942586864419, 1.2668711941895325, 1.270072189998723, 1.2735474999926735, 1.2772981979949138, 1.2813244508154142, 1.2856254695764062, 1.290199468812086, 1.2950436344514198, 1.3001541015352536, 1.3055259422236656, 1.3111531643381789, 1.317028720380055, 1.3231445266888295, 1.3294914921714331, 1.3360595558520354, 1.3428377323700262, 1.3498141644873323, 1.356976181650823, 1.3643103636823553, 1.3718026087263742, 1.3794382046638165, 1.387201903288333, 1.3950779966305755, 1.4030503948977704, 1.4111027055658183, 1.4192183132143206, 1.427380459729279, 1.4355723245132812, 1.4437771043394636, 1.4519780924652446, 1.4601587565888379, 1.4683028151899578, 1.4763943117508345, 1.4844176863115077, 1.4923578437790121, 1.500200218389288, 1.507930833718889, 1.5155363576622234, 1.5230041518334454, 1.5303223149172756, 1.5374797195806562, 1.54446604266157, 1.551271788468758, 1.5578883051501897, 1.564307794212342, 1.5705233133914338 ], [ 1.267159789157185, 1.2693505454501335, 1.271796475543547, 1.2745014011540556, 1.2774684977999242, 1.2807002330761446, 1.2841983070198257, 1.287963595897442, 1.2919961007554224, 1.2962949020226815, 1.300858121335506, 1.3056828915801835, 1.3107653359251517, 1.3161005563599597, 1.3216826319888788, 1.3275046270618758, 1.3335586084819198, 1.3398356723170288, 1.3463259786801727, 1.3530187942217353, 1.3599025414101835, 1.366964853751107, 1.3741926361078753, 1.3815721293286134, 1.389088978446152, 1.3967283037903448, 1.4044747744273178, 1.4123126834108042, 1.4202260243913942, 1.4281985691755754, 1.4362139458556533, 1.4442557171429846, 1.4523074585311488, 1.4603528358937998, 1.4683756820882858, 1.4763600720941603, 1.4842903961709866, 1.4921514304775594, 1.4999284045613426, 1.5076070651068867, 1.5151737353309958, 1.5226153694326645, 1.5299196015499255, 1.537074788742758, 1.5440700476101696, 1.5508952842554875, 1.5575412174326266, 1.5639993948313617, 1.5702622025846402, 1.5763228682001906 ], [ 1.2775609941992632, 1.2798106570498995, 1.2823084862371195, 1.2850580192500496, 1.2880621640366405, 1.2913231411139219, 1.2948424277918897, 1.298620705708378, 1.3026578128752968, 1.3069527013865367, 1.311503401833294, 1.3163069953197966, 1.3213595937794196, 1.326656329070862, 1.3321913511012848, 1.33795783499202, 1.3439479970876813, 1.3501531194220655, 1.3565635821026643, 1.3631689029643095, 1.3699577837721346, 1.3769181622225193, 1.3840372689921632, 1.391301689114218, 1.3986974270074035, 1.406209974543178, 1.413824381597384, 1.4215253285930716, 1.4292972005914348, 1.4371241625268283, 1.4449902352052673, 1.4528793716929964, 1.4607755337131896, 1.4686627676452422, 1.4765252796869592, 1.4843475096976715, 1.4921142031959114, 1.4998104809440589, 1.5074219055193412, 1.5149345442522861, 1.5223350279131171, 1.5296106045484141, 1.536749187915542, 1.54373940003034, 1.5505706074338637, 1.5572329508907676, 1.563717368351405, 1.570015611135763, 1.5761202534223209, 1.5820246952444603 ], [ 1.2879467593681861, 1.2902538485872734, 1.2928020495868184, 1.2955946188433813, 1.2986342003689642, 1.3019227714937476, 1.305461590761912, 1.3092511490170604, 1.3132911247520627, 1.317580344750776, 1.322116750956793, 1.3268973743708763, 1.3319183166121507, 1.3371747395870923, 1.3426608635093489, 1.348369973311522, 1.3542944333017828, 1.360425709751008, 1.3667544009592165, 1.3732702742455378, 1.3799623092374662, 1.3868187467986015, 1.3938271429279052, 1.4009744269806446, 1.4082469635963963, 1.4156306177650138, 1.423110822511952, 1.430672648732316, 1.4383008767449186, 1.4459800691685556, 1.4536946447401935, 1.4614289526976125, 1.46916734733765, 1.4768942623357497, 1.4845942843777438, 1.4922522256122899, 1.499853194388829, 1.507382663705299, 1.514826536758261, 1.522171208970596, 1.5294036258728372, 1.536511336236948, 1.5434825399073946, 1.5503061298437069, 1.556971727978876, 1.5634697146059178, 1.5697912511244216, 1.5759282961048209, 1.5818736147530101, 1.5876207819768084 ], [ 1.2983003541129607, 1.3006631839196332, 1.3032600397323237, 1.3060939013804802, 1.3091671536277432, 1.3124815354582986, 1.3160380914563974, 1.3198371262469317, 1.3238781629596739, 1.3281599066361327, 1.3326802134157139, 1.3374360662221147, 1.3424235575257777, 1.3476378795938395, 1.3530733224642475, 1.3587232797051996, 1.3645802618561007, 1.3706359172976705, 1.3768810601755554, 1.3833057049050554, 1.389899106718373, 1.3966498076769243, 1.4035456875586931, 1.4105740190388998, 1.4177215266066203, 1.42497444869465, 1.4323186025388803, 1.4397394513215536, 1.4472221731856851, 1.454751731730813, 1.4623129476124928, 1.46989057086586, 1.4774693535589931, 1.4850341223553698, 1.4925698505281215, 1.5000617289274003, 1.5074952353585227, 1.5148562017896088, 1.522130878776535, 1.5293059964774618, 1.5363688216307672, 1.5433072098943446, 1.5501096529908907, 1.5567653201735392, 1.5632640936170055, 1.5695965974466088, 1.5757542202374513, 1.581729130940699, 1.5875142883183968, 1.593103444085827 ], [ 1.308605569627518, 1.3110222662726445, 1.3136658872103533, 1.3165391409609069, 1.3196441586068555, 1.322982446412106, 1.326554840498345, 1.330361464449489, 1.334401690706628, 1.3386741065762873, 1.3431764856015895, 1.3479057649452582, 1.3528580293072443, 1.3580285017579774, 1.3634115417163502, 1.3690006501491694, 1.3747884819241158, 1.3807668651170222, 1.3869268269630801, 1.3932586260535471, 1.399751790315573, 1.406395160273621, 1.4131769370733027, 1.4200847347496772, 1.4271056362375347, 1.434226252645975, 1.441432785348453, 1.4487110904686071, 1.456046745366066, 1.4634251167426766, 1.4708314299954628, 1.478250839436586, 1.4856684989827622, 1.4930696328883695, 1.5004396060595138, 1.5077639934446518, 1.5150286479550648, 1.5222197663303805, 1.5293239523350977, 1.5363282766578181, 1.5432203328876695, 1.549988288967506, 1.5566209335706858, 1.5631077169182062, 1.5694387856431784, 1.5756050114167734, 1.5815980131680956, 1.5874101728541141, 1.5930346448593125, 1.5984653592199005 ], [ 1.318846762655324, 1.32131528181409, 1.3240036222393703, 1.326914227295769, 1.330048980681324, 1.3334091622088255, 1.3369954055962647, 1.3408076590497908, 1.3448451494129205, 1.3491063506189473, 1.3535889571196926, 1.3582898628748294, 1.3632051463777062, 1.3683300620700216, 1.373659038366394, 1.3791856823775575, 1.3849027912938139, 1.3908023702748307, 1.3968756565922744, 1.4031131496912042, 1.4095046467762469, 1.416039283488854, 1.422705579221561, 1.4294914866101758, 1.4363844447532779, 1.443371435724065, 1.4504390439605022, 1.4575735181395622, 1.464760835157982, 1.4719867658510726, 1.4792369420817366, 1.486496924821503, 1.4937522728246715, 1.5009886114668811, 1.5081917012817476, 1.5153475056882169, 1.52244225735953, 1.5294625226482053, 1.5363952634538265, 1.5432278959074401, 1.5499483452504736, 1.5565450963121432, 1.5630072390365923, 1.5693245085809704, 1.5754873195949743, 1.5814867943985984, 1.5873147848911118, 1.5929638881467072, 1.5984274557730813, 1.6036995972233175 ], [ 1.3290088938479028, 1.3315270377022697, 1.334257912417011, 1.3372037030329005, 1.3403660527591954, 1.3437460217491601, 1.347344047827288, 1.3511599098727942, 1.3551926945544734, 1.3594407670778872, 1.3639017465497036, 1.3685724864867015, 1.3734490609025733, 1.3785267562991905, 1.3838000697746637, 1.3892627133459095, 1.3949076244719132, 1.4007269826624036, 1.4067122319672651, 1.4128541090691864, 1.4191426766457538, 1.425567361628367, 1.432116997962439, 1.4387798734641908, 1.4455437803712483, 1.452396069192997, 1.4593237054794292, 1.466313329140006, 1.4733513159530114, 1.4804238409094157, 1.4875169430301667, 1.494616591282034, 1.5017087511936285, 1.5087794517417743, 1.5158148520408934, 1.522801307326762, 1.5297254336861172, 1.53657417094817, 1.5433348431283354, 1.5499952158027435, 1.5565435497979079, 1.5629686506061025, 1.569259912984804, 1.5754073602676377, 1.5814016780027735, 1.5872342416384968, 1.5928971380906025, 1.5983831811456422, 1.6036859207725753, 1.6087996465270331 ], [ 1.3390775609210388, 1.3416429948693562, 1.344414095104189, 1.3473927957327816, 1.3505805068579577, 1.3539780761842537, 1.3575857525108368, 1.3614031517460645, 1.3654292260680194, 1.3696622368248628, 1.3740997317193657, 1.3787385267544658, 1.3835746933350002, 1.388603550828289, 1.393819664787511, 1.3992168509418608, 1.4047881849601693, 1.410526017905224, 1.4164219972163294, 1.4224670929918604, 1.428651629290938, 1.4349653201359274, 1.4413973098729191, 1.4479362175349175, 1.4545701848489112, 1.4612869275309377, 1.4680737895192348, 1.4749177998014962, 1.4818057314951154, 1.4887241628372156, 1.495659539731444, 1.5025982394811401, 1.5095266353129193, 1.5164311612617696, 1.5232983769510255, 1.5301150317602261, 1.536868127834871, 1.54354498135866, 1.5501332814844497, 1.55662114631034, 1.5629971752938694, 1.5692504975244852, 1.5753708153215829, 1.5813484426940916, 1.5871743382840164, 1.592840132518091, 1.5983381488037613, 1.6036614187222433, 1.6088036912866779, 1.6137594364424932 ], [ 1.3490390268453614, 1.3516492957888189, 1.3544582047545506, 1.357467444760448, 1.3606782005750315, 1.3640911149955248, 1.3677062549431696, 1.3715230799476186, 1.3755404135821028, 1.3797564183836206, 1.3841685747487078, 1.3887736642366377, 1.3935677576411865, 1.3985462081117843, 1.4037036495194926, 1.409034000176139, 1.4145304719302292, 1.42018558458428, 1.4259911855074323, 1.4319384742576156, 1.4380180319790656, 1.4442198553045895, 1.4505333944671885, 1.4569475953098816, 1.463450944875448, 1.4700315202551466, 1.4766770403759089, 1.4833749204055564, 1.4901123284529645, 1.496876244232844, 1.5036535193511944, 1.5104309388468737, 1.5171952835969111, 1.5239333931599162, 1.5306322285933427, 1.5372789347417555, 1.5438609014549387, 1.5503658231634143, 1.556781756216219, 1.5630971733776082, 1.5693010148870132, 1.5753827355140075, 1.5813323470871339, 1.587140456042409, 1.5927982956220252, 1.5982977524528186, 1.6036313873423422, 1.6087924502442177, 1.6137748894555752, 1.6185733552154145 ], [ 1.3588802433016738, 1.3615327874662324, 1.3643769954349332, 1.3674143233434557, 1.3706457387041577, 1.3740716872036292, 1.37769206124464, 1.3815061707480196, 1.3855127167203027, 1.389709768068359, 1.3940947421039775, 1.398664389130137, 1.4034147814395403, 1.4083413069862238, 1.4134386679174167, 1.4187008840768334, 1.424121301516581, 1.4296926059855801, 1.43540684129936, 1.441255432442267, 1.4472292132084117, 1.4533184581530814, 1.4595129186007971, 1.4658018624388927, 1.4721741174146317, 1.4786181176471047, 1.485121953060564, 1.491673421440999, 1.498260082810332, 1.5048693158009168, 1.5114883756959445, 1.5181044537781636, 1.5247047375998164, 1.531276471752444, 1.5378070186776496, 1.544283919021327, 1.5506949509978714, 1.5570281882010264, 1.5632720552773796, 1.5694153808717395, 1.575447447262334, 1.581358036131499, 1.5871374699638856, 1.5927766486299193, 1.598267080793971, 1.6036009098830666, 1.6087709344564736, 1.613770622926014, 1.6185941226846863, 1.6232362638033013 ], [ 1.368588869625591, 1.3712810398845026, 1.3741579587725836, 1.37722085603407, 1.3804704902371494, 1.3839071179449953, 1.3875304645564621, 1.391339697281769, 1.3953334007091054, 1.3995095553963177, 1.4038655198880625, 1.4083980165148795, 1.4131031212767684, 1.4179762580543827, 1.4230121973265089, 1.4282050595065692, 1.4335483229466246, 1.4390348365958492, 1.4446568372450284, 1.4504059712393924, 1.4562733205017118, 1.4622494326739963, 1.4683243551609317, 1.4744876728394734, 1.4807285491850535, 1.4870357705550168, 1.493397793360847, 1.4998027938519467, 1.506238720221635, 1.5126933467315025, 1.5191543295294458, 1.5256092638115477, 1.532045741947465, 1.5384514121539898, 1.5448140372645471, 1.5511215531049598, 1.557362125951629, 1.563524208520061, 1.569596593913086, 1.5755684669527117, 1.5814294523294277, 1.5871696590301285, 1.5927797205519845, 1.5982508304727294, 1.6035747730275998, 1.6087439484351693, 1.6137513928154568, 1.6185907926484486, 1.6232564938248943, 1.627743505439387 ], [ 1.3781532874615785, 1.3808823601285227, 1.3837893375571153, 1.3868752318054924, 1.3901406009810822, 1.3935855206457486, 1.3972095568153589, 1.4010117409740255, 1.404990547514493, 1.4091438739968742, 1.4134690245884642, 1.417962697009076, 1.4226209732599933, 1.4274393143629296, 1.432412559279473, 1.437534928124633, 1.4428000297314638, 1.448200873569998, 1.4537298859741394, 1.4593789305863467, 1.4651393328918645, 1.4710019086834745, 1.476956996271822, 1.4829944922373066, 1.4891038905030496, 1.4952743244957587, 1.5014946121490602, 1.5077533034910213, 1.5140387305428549, 1.5203390592371677, 1.526642343041778, 1.532936577947658, 1.5392097584483744, 1.5454499341032917, 1.5516452662406643, 1.5577840843206485, 1.5638549414457268, 1.5698466684799706, 1.5757484262216166, 1.5815497550698057, 1.5872406216363555, 1.5928114617817706, 1.5982532195986718, 1.6035573819277915, 1.608716008067841, 1.6137217544290916, 1.6185678939770765, 1.623248330413043, 1.627757607137084, 1.6320909111336086 ] ], "zauto": true, "zmax": 1.6320909111336086, "zmin": -1.6320909111336086 }, { "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.03524053183939114, 0.033130670928425754, 0.031119314944461105, 0.02921339872099643, 0.02742088844622808, 0.0257510055982641, 0.02421439731623433, 0.022823178498342415, 0.021590743700368755, 0.020531232876869965, 0.019658558327832202, 0.018984989372463106, 0.018519455933105573, 0.018265927513238914, 0.01822233781019502, 0.01838043768177131, 0.01872666041128113, 0.019243725761444383, 0.01991250030377672, 0.02071366082661975, 0.021628899170380182, 0.022641619025857845, 0.023737214365957913, 0.024903069304878175, 0.02612840905625809, 0.027404096261872516, 0.02872242949117603, 0.030076971353494287, 0.03146241437520855, 0.03287448190359191, 0.034309856245225916, 0.03576612477001999, 0.03724173518314906, 0.03873595255098137, 0.04024881236612823, 0.04178106564442888, 0.043334113623922865, 0.04490993103506652, 0.04651097812345365, 0.04814010263388588, 0.049800433808364256, 0.05149527110544636, 0.05322797080412222, 0.055001833902147045, 0.05681999875169296, 0.05868534169907885, 0.06060038862794361, 0.06256723977775204, 0.06458750956454024, 0.06666228241952595 ], [ 0.03383786603888817, 0.03170523773421892, 0.029671411428935753, 0.027743167952644438, 0.025928358313685795, 0.0242361854552629, 0.0226774488489729, 0.02126466852819573, 0.0200119656666207, 0.018934546839182255, 0.018047650591924345, 0.01736491326314212, 0.016896324640226966, 0.01664622452504757, 0.016611975379588837, 0.016783838014519353, 0.017146148352960307, 0.01767938470977707, 0.018362450481396373, 0.01917459026592819, 0.02009665762097995, 0.021111739480932784, 0.02220529992795987, 0.023365039168850747, 0.024580627485356298, 0.025843418096046237, 0.027146193766034048, 0.02848296787860166, 0.029848840614807942, 0.031239901020495047, 0.032653162241947885, 0.03408651721852759, 0.035538703784818625, 0.03700927039297158, 0.038498535969166504, 0.04000753952979512, 0.04153797702686978, 0.04309212447211369, 0.04467274772907413, 0.0462830004868577, 0.04792631284793757, 0.04960627367300242, 0.05132651031644963, 0.05309056964196235, 0.05490180422186964, 0.05676326739921575, 0.058677620448656626, 0.06064705444811389, 0.0626732287185402, 0.06475722686575675 ], [ 0.03258599827552214, 0.03043404698297684, 0.028381336591542582, 0.026434474618044275, 0.024601162161677924, 0.022890533862523932, 0.021313481145114083, 0.01988286840221733, 0.018613498468798936, 0.01752163344938978, 0.01662386943010308, 0.015935265918545556, 0.01546690118920814, 0.015223417786194723, 0.015201406785479973, 0.015389344340088366, 0.015769181675669628, 0.0163189789233898, 0.017015657464479486, 0.01783714993980873, 0.018763674899404708, 0.019778230134536046, 0.020866559902473592, 0.02201685155328651, 0.023219346696318033, 0.0244659740170457, 0.025750051444590347, 0.02706606845272222, 0.028409540021013684, 0.029776915951759172, 0.03116552784033285, 0.0325735577299573, 0.03400001541208667, 0.03544471445503009, 0.036908239907403204, 0.038391903087099596, 0.03989768093278588, 0.041428139120467215, 0.042986339592820805, 0.044575734356641195, 0.0462000483924413, 0.04786315528639701, 0.04956894972157711, 0.05132122123279791, 0.05312353362354467, 0.05497911416676729, 0.05689075618569066, 0.05886073787998093, 0.06089075938724385, 0.06298189912332397 ], [ 0.03148732497080942, 0.029319512711137977, 0.027251551280729716, 0.025289870410015566, 0.02344200224490911, 0.02171697750043138, 0.020125728174595858, 0.018681401552850092, 0.017399422329754773, 0.01629706542111562, 0.01539226816970093, 0.014701510231881492, 0.014236922810597057, 0.014003323985499255, 0.013996294480726394, 0.014202234591276557, 0.014600481167757728, 0.015166599430033364, 0.015875620691610665, 0.016704375727407215, 0.01763270373805216, 0.01864375604697423, 0.019723754703444087, 0.020861517248329815, 0.02204794912881069, 0.02327560628649448, 0.02453836368827455, 0.025831188350586492, 0.02714999851409679, 0.028491585616336624, 0.029853576727425897, 0.03123441863906404, 0.03263336894891438, 0.034050483385769895, 0.03548659196168338, 0.036943259283126105, 0.038422726588434354, 0.039927834913162666, 0.041461930312996935, 0.043028753354860165, 0.044632316142829524, 0.04627677097080433, 0.04796627526260834, 0.049704857743718564, 0.05149629076629022, 0.05334397337930818, 0.05525082912265698, 0.05721922167829674, 0.059250890505905415, 0.061346907510322936 ], [ 0.03054380877038221, 0.028363562917218275, 0.026283968467762854, 0.02431128960759324, 0.022452889622074666, 0.020717678782961987, 0.019116593001624767, 0.01766300487035024, 0.0163728862928633, 0.015264441566140765, 0.014356863841388194, 0.01366795835806721, 0.013210776955511289, 0.012990111944274078, 0.01300027594904303, 0.013225360803896613, 0.013641987185452245, 0.014223305222342865, 0.014942683613087137, 0.015776144429410336, 0.016703429420380934, 0.017708069173703496, 0.018776919816587908, 0.01989952219733005, 0.02106748976837576, 0.022274015918802886, 0.023513521367292792, 0.02478142710998007, 0.02607402501368262, 0.02738841633505944, 0.028722491894341125, 0.030074932828242546, 0.03144521606753944, 0.032833613232426596, 0.034241175347753366, 0.03566969872873858, 0.037121669736895395, 0.03860018801577445, 0.04010886940896831, 0.04165173111017324, 0.04323306272134646, 0.044857287786418794, 0.04652882098860586, 0.048251926508760874, 0.05003058300978673, 0.051868360332402795, 0.05376831228589002, 0.05573288895197347, 0.057763870775843836, 0.05986232549624761 ], [ 0.029757058360395234, 0.02756772677906121, 0.025480045427728772, 0.02350014221732566, 0.02163523240673513, 0.01989411139592174, 0.018287700958289046, 0.0168295484728546, 0.015536082717893543, 0.014426303513220055, 0.013520482570703, 0.012837531326446692, 0.012391163627298547, 0.012185868554504925, 0.01221445639971886, 0.01245861349866434, 0.01289234756198614, 0.013486673951562793, 0.014213662928173708, 0.01504887530502929, 0.015972224017288886, 0.016967791487227185, 0.018023155977932345, 0.019128607778556534, 0.02027645502536956, 0.021460493462561986, 0.02267564479470132, 0.02391773694076675, 0.025183390018635073, 0.026469973169580507, 0.027775602934048467, 0.02909916047452856, 0.030440311001005065, 0.03179951377706931, 0.03317801504400001, 0.0345778192742767, 0.036001636580977714, 0.037452806067690705, 0.03893519654815583, 0.040453087478089386, 0.042011034143471106, 0.043613722118575615, 0.04526581669372149, 0.04697181332138436, 0.0487358950994505, 0.050561802888620215, 0.052452722874334494, 0.05441119529739703, 0.05643904679031778, 0.05853734738573627 ], [ 0.029128401397302512, 0.0269332173931069, 0.02484087423364118, 0.022857407986904825, 0.02098992615991517, 0.019247136378292166, 0.017639946865176604, 0.01618203606441717, 0.014890180861389844, 0.013783983639709198, 0.012884508471742597, 0.012211406984789603, 0.011778659314067488, 0.01159012028021047, 0.011636950584784048, 0.01189854956967603, 0.012346675617187074, 0.012950698020941278, 0.0136818582863367, 0.014515611290037514, 0.015432254515513706, 0.01641651239770731, 0.017456688854746036, 0.01854377607284726, 0.019670705323200272, 0.0208317967187901, 0.022022398389288298, 0.023238678553946134, 0.024477528101913157, 0.02573653512047751, 0.027014000065971534, 0.02830896785801849, 0.029621259806171352, 0.03095149359601145, 0.03230108365993314, 0.03367221738937907, 0.035067805088394736, 0.036491403554630035, 0.037947114864588426, 0.0394394634200189, 0.040973255599331584, 0.04255342741847463, 0.04418488637484333, 0.045872354054765724, 0.04762021607411288, 0.04943238547230281, 0.051312184817745576, 0.05326225108041293, 0.05528446589701424, 0.0573799123314096 ], [ 0.028658939151965095, 0.02646099742593343, 0.024367257058444038, 0.022383717451310726, 0.020517433109181294, 0.018777067142428116, 0.0171735279183321, 0.01572058256079254, 0.01443522363645344, 0.013337399351719665, 0.012448568682011382, 0.011788617106138745, 0.011371284526937324, 0.011199460784125748, 0.011262665013217224, 0.01153839166944905, 0.011996774140525317, 0.012606189890433429, 0.013337568544775481, 0.014166573512144969, 0.015074015828589757, 0.016045258556814806, 0.017069250836375185, 0.018137572030131367, 0.01924365521159899, 0.020382232184032335, 0.021548980145463068, 0.022740326965633974, 0.023953368885034288, 0.025185860004595138, 0.02643624121572783, 0.02770368437755297, 0.028988134465940466, 0.030290337862512968, 0.03161184908896755, 0.0329550114260051, 0.03432290929863319, 0.035719292311476886, 0.03714847255066726, 0.03861519831985434, 0.04012450885925708, 0.04168157576254304, 0.04329153767697594, 0.04495933535807653, 0.046689554180359395, 0.048486280748821824, 0.050352979334950414, 0.05229239255378922, 0.054306469131194385, 0.05639631993567172 ], [ 0.028349573157103163, 0.026151816604624067, 0.02405975428506033, 0.02207940806321349, 0.020217840101719023, 0.01848371818345596, 0.016887966387985596, 0.015444388965092322, 0.014170031738241337, 0.013084871825655507, 0.012210275905183138, 0.011565763350906628, 0.011164287317487668, 0.011007517364459804, 0.011083536932400126, 0.01136856315079759, 0.011831918793342854, 0.012441723869884017, 0.013169094980742403, 0.013990145416344663, 0.014886239794050333, 0.015843294480200026, 0.016850757488147468, 0.017900631833158008, 0.018986697078850655, 0.02010396167389985, 0.021248320701986775, 0.022416373169963106, 0.02360535131721209, 0.02481312078046927, 0.026038219103073416, 0.027279908379403837, 0.028538224768940877, 0.02981401302890469, 0.031108938304830202, 0.032425470510932385, 0.03376683905177337, 0.035136957645079424, 0.03654032077787161, 0.03798187495187796, 0.03946686935612452, 0.04100069188808725, 0.04258869743337608, 0.0442360359016016, 0.045947487612449864, 0.047727313188304525, 0.04957912415394182, 0.05150577905130478, 0.05350930818564627, 0.05559086829875796 ], [ 0.028200997387888643, 0.026006213145449007, 0.023918696475823203, 0.02194454650433958, 0.020090888706094163, 0.01836643728819458, 0.01678213494727479, 0.015351749999446634, 0.0140921857378447, 0.013023087504872854, 0.012165200974015347, 0.011537069559887704, 0.01115037238868771, 0.011005446137456203, 0.011089331076475402, 0.01137774877889745, 0.011840093177355352, 0.0124449430152271, 0.013164033761654178, 0.013974091449472837, 0.014857005630482298, 0.015799108719438206, 0.016790165290742308, 0.017822415078238563, 0.01888981440233812, 0.019987504985963443, 0.021111484260311317, 0.02225843197444873, 0.02342564656150851, 0.024611050955078245, 0.025813235967847313, 0.027031517400061773, 0.028265989777252348, 0.029517564865974635, 0.030787987085564763, 0.03207982094721776, 0.03339640803020832, 0.03474179300979942, 0.0361206200575868, 0.03753800262908672, 0.03899937123618741, 0.04051030520935523, 0.04207635557442782, 0.043702866877830135, 0.045394805984251344, 0.04715660548241757, 0.0489920283751555, 0.050904059279931545, 0.052894825571450435, 0.05496554994435256 ], [ 0.02821365397377809, 0.026024475773283255, 0.023944155610930894, 0.02197891204009091, 0.020135973505652383, 0.01842412180438317, 0.016854295237052976, 0.015440123053973666, 0.014198141762075924, 0.013147291169592186, 0.012307192450513673, 0.011694890113590766, 0.011320451701473833, 0.011182938345934909, 0.011268858602883534, 0.011554242062579686, 0.012009373394106706, 0.0126039095625408, 0.013310548801955651, 0.014106732017457413, 0.014974811380639856, 0.015901383878223648, 0.016876345593485602, 0.017891988947444315, 0.018942282251235024, 0.020022362259632585, 0.02112821764666816, 0.022256521966177317, 0.023404572511889137, 0.02457029684734891, 0.025752296432652533, 0.026949904247063103, 0.028163239620097463, 0.029393248447731408, 0.030641720753151924, 0.031911280450071994, 0.0332053444852426, 0.034528050524888845, 0.03588415417967536, 0.03727889851681978, 0.03871786028526468, 0.040206778807992234, 0.04175137475298781, 0.043357166839803785, 0.04502929484740406, 0.04677235698234702, 0.04859026873958621, 0.05048614891612582, 0.05246223657014369, 0.05451984065350043 ], [ 0.028387655610368795, 0.02620656853459167, 0.024135876532775186, 0.022181940473345364, 0.02035210697375838, 0.01865521683764835, 0.017102147946173728, 0.015706257589442767, 0.014483478660678865, 0.013451698868098962, 0.012629003097843974, 0.012030576738447542, 0.011664733492553854, 0.011529461505758525, 0.011611271473735814, 0.011887203846118577, 0.01232909726590656, 0.012908168013626993, 0.013598335922525538, 0.014377825951542201, 0.015229392795880127, 0.01613976666680118, 0.01709881611214493, 0.018098727332404807, 0.01913333704075753, 0.02019765514041292, 0.021287562241390154, 0.022399646736576954, 0.023531142438329475, 0.024679931651101595, 0.025844585034235736, 0.027024416221655984, 0.02821953488749025, 0.029430886521223006, 0.03066027071225951, 0.03191033249366956, 0.033184523531540985, 0.03448703190145558, 0.03582268103034094, 0.037196800179381234, 0.038615070599394424, 0.04008335312770436, 0.04160750438612705, 0.04319318972901922, 0.04484570153623522, 0.04656979125163071, 0.04836952271161077, 0.05024815285507543, 0.052208044003704594, 0.05425060975580241 ], [ 0.02872268297238717, 0.02655202648732659, 0.02449317583608575, 0.022552634126305284, 0.02073785296537565, 0.019057691276115604, 0.017522879292998755, 0.016146350304502143, 0.014943208363807614, 0.01393000879306954, 0.013123025788802135, 0.012535418606149285, 0.01217378909345112, 0.012035339550070263, 0.01210705229687931, 0.012367505321470114, 0.012790556801974265, 0.013349317748419826, 0.014019118260166706, 0.014779028390367937, 0.015612173987526446, 0.01650533123522257, 0.017448227909168834, 0.018432825624711068, 0.0194527185568455, 0.020502692418461702, 0.021578437842448065, 0.022676390713249527, 0.023793666259934503, 0.024928055724710577, 0.026078059422846293, 0.027242935554581564, 0.02842274912125329, 0.029618409394789536, 0.030831687625248544, 0.03206520923770645, 0.033322416900518334, 0.034607502748546876, 0.03592530986739817, 0.03728120496263639, 0.038680925948719, 0.04013040991850626, 0.041635608463791385, 0.0432022984468096, 0.044835896916011204, 0.04654128880143538, 0.048322675275355206, 0.05018344927241853, 0.05212610276989289, 0.05415216824036551 ], [ 0.02921786961316327, 0.02705983552255807, 0.02501482150026039, 0.023089449720966302, 0.02129123648469431, 0.019628990082866418, 0.01811318465858279, 0.01675617599124556, 0.015572050789103078, 0.014575844364641679, 0.013781896587977556, 0.013201350049339434, 0.012839269442622146, 0.012692375785146669, 0.012748476155232953, 0.012988015756788193, 0.013387144031282942, 0.01392107086935162, 0.014566671181013265, 0.015303927805375636, 0.016116348257779328, 0.016990723059473963, 0.017916581617154252, 0.01888559126109146, 0.019891031827861998, 0.02092739707761919, 0.02199012693821725, 0.0230754518446462, 0.024180322599119192, 0.025302399129373838, 0.0264400748743276, 0.027592517861929556, 0.028759713702351954, 0.029942499267298937, 0.031142578712341763, 0.03236251584940062, 0.033605698875746846, 0.03487627529122582, 0.036179056619514614, 0.03751939436167179, 0.038903030446765165, 0.040335927231634115, 0.04182408370603246, 0.04337334581532188, 0.0449892195521541, 0.0466766955610539, 0.048440093385684654, 0.05028293219877758, 0.05220783301543141, 0.05421645520383976 ], [ 0.029871689182535348, 0.027728312811583073, 0.02569891081960892, 0.023790181323400043, 0.022009643613143993, 0.020365968378597266, 0.018869258593068743, 0.017531156334457648, 0.0163645974742704, 0.015383009875259543, 0.014598809622431099, 0.014021261660963742, 0.013654136943742632, 0.013493946462311562, 0.013529544857169515, 0.013743396453339501, 0.014114050166934941, 0.014618910950312992, 0.015236490667499417, 0.015947763180142883, 0.01673667087574427, 0.01759004308283101, 0.018497209986382535, 0.019449525339668615, 0.02043992410118778, 0.021462572124907934, 0.02251262124847952, 0.023586059899734054, 0.02467963962594665, 0.025790855886256403, 0.02691796310156824, 0.02806000701308248, 0.029216860660047195, 0.03038925323263925, 0.03157878355148521, 0.032787912028127794, 0.03401992680349391, 0.03527888148706339, 0.03656950364144264, 0.03789707493606229, 0.03926728572625423, 0.04068606862916723, 0.042159417337352845, 0.04369319826864065, 0.045292963523714945, 0.04696377386822633, 0.04871003999574667, 0.050535389172902, 0.05244256262567051, 0.05443334688668367 ], [ 0.030681859723724808, 0.028555004734304577, 0.0265427652225059, 0.024651857650991135, 0.02288972957790475, 0.021264820737924427, 0.019786755894472076, 0.018466358927552096, 0.017315343597865903, 0.01634553317527086, 0.015567530106283848, 0.014988935252606405, 0.014612483669048593, 0.014434687961234156, 0.014445555927522405, 0.014629583951249863, 0.014967704702423706, 0.0154395303862777, 0.016025266157330957, 0.01670696137338481, 0.017469081056372526, 0.01829856627755303, 0.01918459841425595, 0.020118245585761387, 0.02109210727384458, 0.02210001725620926, 0.02313682602392492, 0.024198261061998474, 0.025280852297359692, 0.02638190617130918, 0.027499511825840477, 0.02863256467548779, 0.029780794971772277, 0.030944791277052602, 0.03212601083917019, 0.0333267706861724, 0.03455021492345536, 0.03580025531991741, 0.037081483906634814, 0.03839905803187334, 0.03975856011472342, 0.0411658361502551, 0.04262681871974279, 0.044147341688652086, 0.04573295475928972, 0.04738874643347041, 0.049119183640406475, 0.050927975286342804, 0.05281796537318217, 0.05479105928482096 ], [ 0.03164527729118744, 0.029536616416461953, 0.027542857862040453, 0.02567067093293495, 0.02392735272393759, 0.022321023351983525, 0.020860741602905204, 0.01955644750792115, 0.018418620155452002, 0.01745755067730454, 0.01668219870334768, 0.01609874208558081, 0.015709117111436022, 0.015509984597456611, 0.01549252009846874, 0.01564316850626921, 0.0159451447615585, 0.016380217657072326, 0.016930309268706582, 0.017578626475165293, 0.01831026608695458, 0.019112389669223438, 0.019974121601002013, 0.020886312886871868, 0.021841272996668878, 0.022832529461310588, 0.023854641951833847, 0.024903076260958824, 0.025974131881053995, 0.02706491164092871, 0.02817332047066532, 0.02929808094896925, 0.0304387547175929, 0.031595760512846946, 0.03277038119847128, 0.03396475371682884, 0.03518183733855618, 0.03642535705439295, 0.03769972048516525, 0.039009908324847825, 0.04036134006976898, 0.04175971856248228, 0.04321085857679184, 0.04472050613784502, 0.04629415633762445, 0.047936877918478046, 0.04965315275120651, 0.05144673750254179, 0.05332055333496458, 0.05527660756112236 ], [ 0.032757986759051165, 0.030668981881891797, 0.0286947841426458, 0.02684194871881819, 0.025117547430780755, 0.023529305116739806, 0.022085652283206064, 0.020795618345445067, 0.019668483134768197, 0.0187131237265447, 0.01793705472548593, 0.017345267192932213, 0.016939098328448476, 0.01671544618384121, 0.0166666063074513, 0.016780829481044136, 0.01704345771181897, 0.01743832046060389, 0.01794904946679684, 0.01856007916044999, 0.0192572539913142, 0.020028085704462562, 0.020861762540611506, 0.021749018542312048, 0.022681948950817613, 0.023653827693970803, 0.024658956599284895, 0.025692557109334428, 0.0267507036865757, 0.027830291996501347, 0.02892903243438912, 0.030045459100559314, 0.03117894491712531, 0.032329714619941746, 0.03349884854978741, 0.034688271392223094, 0.03590072126398028, 0.037139695851356146, 0.038409373717318895, 0.03971451043357846, 0.04106031084965004, 0.042452280524802107, 0.043896061013637654, 0.04539725516819047, 0.04696124973661301, 0.048593043148201974, 0.05029708636672234, 0.05207714402746766, 0.05393618179225065, 0.05587628409045764 ], [ 0.034015192487743214, 0.03194707765333993, 0.02999327829010439, 0.028160172433731954, 0.02645454156597943, 0.024883657372145943, 0.023455286586671485, 0.022177555052561203, 0.021058613012675288, 0.020106065494141064, 0.01932618248173306, 0.018722981564055705, 0.018297359408750574, 0.01804649570595624, 0.017963720986768416, 0.018038919372637092, 0.018259375834575865, 0.01861085383616773, 0.01907865888365569, 0.019648503157989425, 0.020307087798469202, 0.021042410552262053, 0.021843860264672752, 0.02270217559624381, 0.02360933659591017, 0.02455843869697356, 0.025543579047208786, 0.026559769378917606, 0.027602878909656327, 0.028669604361435768, 0.0297574608994316, 0.030864786496696002, 0.03199075208787071, 0.03313537033952706, 0.03429949662703011, 0.03548481672515317, 0.03669381674524911, 0.037929731993265665, 0.03919647270091848, 0.040498526008699784, 0.041840835136285864, 0.04322865830656572, 0.04466741159530721, 0.04616250132568946, 0.047719152762710715, 0.049342242540577834, 0.051036142364227384, 0.05280458101260729, 0.05465053056310946, 0.05657612116082867 ], [ 0.035411306604025715, 0.03336507688246613, 0.03143227253286472, 0.029619039309879802, 0.027931816459655014, 0.026377383934455635, 0.02496283376250828, 0.023695421411756023, 0.022582258107901824, 0.021629826056141416, 0.020843338688715244, 0.020226023232289943, 0.0197784568899128, 0.019498114254284365, 0.01937925790112683, 0.01941322354727399, 0.019589044276966918, 0.019894272106216238, 0.02031582528375734, 0.020840719383741556, 0.0214566039914023, 0.022152091877506004, 0.02291691254615025, 0.023741941756296032, 0.02461915878791082, 0.02554157285911833, 0.02650314663151518, 0.027498732512630544, 0.02852402819774639, 0.02957555171791546, 0.030650632602558642, 0.031747413890847266, 0.03286485900084077, 0.03400275743224782, 0.03516172365021741, 0.036343184119289315, 0.037549348261150625, 0.03878316008004047, 0.0400482283381476, 0.041348734466929715, 0.042689318846507146, 0.04407494761709509, 0.045510763712688876, 0.047001927203807345, 0.04855345116237276, 0.05017003997859764, 0.051855937257658136, 0.053614790045133455, 0.05544953518710637, 0.05736231221062961 ], [ 0.03694002889592702, 0.03491643685109311, 0.033004990779669785, 0.031211559210597106, 0.029542201671356506, 0.028003186138848273, 0.02660093927213037, 0.025341897385885957, 0.02423223309746418, 0.023277450989129582, 0.022481876173847413, 0.021848097802288968, 0.021376463814027732, 0.02106473732452152, 0.020908005516341338, 0.020898878335704366, 0.02102794393262428, 0.02128438837964789, 0.021656661285334135, 0.022133081394100446, 0.022702314549660086, 0.023353700854116477, 0.024077443003134802, 0.02486468728009816, 0.025707533912795646, 0.02659900940752995, 0.027533025206862818, 0.028504338193196012, 0.02950852107794125, 0.03054194519318375, 0.03160177454092629, 0.03268596776972418, 0.033793283616732964, 0.03492328492715, 0.03607633640123014, 0.03725359157336331, 0.03845696512285414, 0.03968908741814892, 0.040953239193166104, 0.042253265431562555, 0.04359346886274601, 0.04497848489628181, 0.04641314125287284, 0.047902306876552565, 0.04945073580488114, 0.05106291240288001, 0.05274290462770855, 0.054494231724583196, 0.05631975196223406, 0.058221574767491895 ], [ 0.03859445014514771, 0.036594010419289995, 0.034704066349111516, 0.03293017538652148, 0.03127799386543812, 0.0297532734264687, 0.028361799981151, 0.027109252679122765, 0.026000967642063492, 0.025041606435833263, 0.024234751808640775, 0.023582479137193076, 0.023084973453362405, 0.022740269053295972, 0.022544174237592526, 0.022490408218147816, 0.02257093105483895, 0.02277640699758294, 0.02309672078172334, 0.023521469844757722, 0.02404037733277637, 0.024643599878550904, 0.025321930056951554, 0.02606691043933026, 0.02687088350061439, 0.027727001558656723, 0.028629216625841957, 0.029572264229586216, 0.03055164963517544, 0.03156364030466462, 0.03260526505843133, 0.0336743181593259, 0.03476936518288929, 0.03588974683971318, 0.037035576694491056, 0.038207728856701616, 0.039407812125843156, 0.040638127719846845, 0.04190160857502498, 0.043201739257375325, 0.04454245673266191, 0.04592803355091411, 0.047362946328164346, 0.048851733650467466, 0.05039884856412836, 0.05200851153429149, 0.0536845700540045, 0.055430370908451536, 0.057248650439086335, 0.05914144706448078 ], [ 0.04036717008497267, 0.03839017156738138, 0.03652167308442419, 0.03476689805708755, 0.03313108869242045, 0.03161948869866929, 0.03023727837274864, 0.028989446677737098, 0.0278805916961982, 0.026914652885794886, 0.026094594849794314, 0.02542207968650789, 0.024897178204527387, 0.024518173557541278, 0.02428150031177439, 0.024181838409065997, 0.02421235123249453, 0.0243650296421925, 0.024631087983085727, 0.025001357262863046, 0.025466632574968156, 0.026017950185924302, 0.02664678790769871, 0.027345195991571546, 0.0281058732804436, 0.028922205443042397, 0.029788280532345817, 0.03069889367482729, 0.03164954878285688, 0.032636461605829344, 0.03365656555916401, 0.03470751966365988, 0.03578771651414238, 0.03689628735077059, 0.03803310091004778, 0.0391987526924637, 0.04039454153793722, 0.041622430908789324, 0.042884993013820025, 0.04418533483860079, 0.045527006236783865, 0.04691389142992366, 0.04835008648145241, 0.04983976645953722, 0.0513870469752453, 0.05299584547195723, 0.054669747959023095, 0.05641188677210949, 0.05822483439478696, 0.06011051743366045 ], [ 0.04225042173675476, 0.040296946091968065, 0.03844966041764676, 0.03671344111822025, 0.035093115878133616, 0.03359343846793199, 0.03221902514302786, 0.030974242454668684, 0.02986304212738494, 0.0288887478982743, 0.028053810762128328, 0.02735956054487423, 0.026805989763155236, 0.02639160691287076, 0.02611338869169368, 0.025966844996203404, 0.02594619070306845, 0.026044599932125663, 0.026254506882220287, 0.026567914978186058, 0.026976682137072654, 0.02747276113491388, 0.028048386314931523, 0.02869620807833146, 0.029409383193857677, 0.030181631872678243, 0.031007272595019633, 0.0318812439471218, 0.03279912021461548, 0.03375712487419182, 0.03475214382318686, 0.0357817383528145, 0.03684415653336482, 0.037938340797670264, 0.03906392902195953, 0.04022124625284948, 0.041411284369822096, 0.04263566737046904, 0.04389660059118676, 0.04519680299852944, 0.0465394226654239, 0.04792793662665171, 0.04936603741754052, 0.05085750965099852, 0.05240610088439736, 0.05401539167471106, 0.05568867003732609, 0.05742881546031861, 0.05923819717004374, 0.06111859053012412 ], [ 0.04423619518137073, 0.04230614017300477, 0.04047968490696373, 0.03876135441656023, 0.03715556985539661, 0.03566661976932752, 0.03429860118909751, 0.03305532402869349, 0.03194017706771614, 0.030955960717185156, 0.030104699837970723, 0.02938745738678921, 0.028804174452507735, 0.02835356235110898, 0.02803306691441698, 0.027838914629708167, 0.027766237266352377, 0.027809259445710832, 0.027961525394159987, 0.028216138566774827, 0.02856599073916052, 0.029003963800373275, 0.029523095470138577, 0.03011670742322184, 0.0307784995674707, 0.03150261712068405, 0.032283697951745766, 0.03311690699758671, 0.03399796308289516, 0.03492316167872863, 0.03588939539062767, 0.036894172464345155, 0.03793563242159876, 0.03901255710625652, 0.040124374917746994, 0.04127115580561307, 0.04245359466986214, 0.043672981129828696, 0.044931154163487905, 0.04623044084862844, 0.04757357931625499, 0.048963627002407785, 0.05040385628890998, 0.051897640577503505, 0.05344833465853231, 0.05505915383077249, 0.05673305653287391, 0.058472635213246325, 0.060280019782913495, 0.062156797292648495 ], [ 0.04631635543329717, 0.04440946142185835, 0.04260333288781795, 0.04090214627752363, 0.03930993054955343, 0.03783053805319281, 0.03646759230658561, 0.03522440866993435, 0.034103887709945845, 0.03310838613475251, 0.03223957574327747, 0.031498305680230376, 0.030884486057455193, 0.030397010583685487, 0.030033731816403012, 0.029791495584280528, 0.029666232550340073, 0.029653096832675366, 0.029746635947665027, 0.029940974172417475, 0.03022999274881326, 0.03060749425535043, 0.031067343577335944, 0.03160358288132664, 0.03221052192089473, 0.03288280746391953, 0.0336154766690708, 0.03440399915046818, 0.035244311646917964, 0.036132848021227494, 0.03706656603710621, 0.038042971180335304, 0.039060136812478184, 0.04011671921628392, 0.041211965626813306, 0.04234571313649975, 0.04351837640366182, 0.04473092236450504, 0.04598483062660366, 0.04728203887693104, 0.048624873431888295, 0.050015965938308204, 0.05145815814194169, 0.0529543975002921, 0.05450762715360522, 0.05612067430752052, 0.05779614136208344, 0.05953630410504294, 0.06134302096250365, 0.06321765669039302 ], [ 0.04848275068860895, 0.04659862880761344, 0.04481223079648924, 0.0431273929638409, 0.04154777095379041, 0.04007681236418024, 0.03871771218628078, 0.03747334873241297, 0.03634620065019904, 0.035338249292363975, 0.034450874499309496, 0.03368475493282156, 0.033039785625356005, 0.03251502476483021, 0.032108678777362086, 0.031818129955636286, 0.031640005199883914, 0.03157027914047461, 0.03160440112529463, 0.03173743394837165, 0.03196419281646898, 0.032279375395131524, 0.032677677034762286, 0.0331538886168477, 0.03370297724602579, 0.03432015190581767, 0.03500091713535774, 0.035741117905993366, 0.036536978412136996, 0.03738513668382521, 0.03828267598955192, 0.0392271530817771, 0.04021662254583612, 0.041249655904806705, 0.04232535373665546, 0.04344334888565532, 0.044603798894483654, 0.045807366035680065, 0.04705518376201625, 0.048348808997221784, 0.0496901604143626, 0.051081443651082435, 0.05252506523162289, 0.05402353774002795, 0.05557937944953643, 0.057195012096264534, 0.058872660738414136, 0.060614259632364206, 0.06242136777646483, 0.0642950972417358 ], [ 0.050727308628442276, 0.04886546936412206, 0.04709814128549765, 0.04542883332733175, 0.043860849743145636, 0.042397265811455996, 0.041040891207407545, 0.0397942197852584, 0.038659366727586464, 0.03763799662646004, 0.03673124860358391, 0.03593966649267115, 0.03526314287312192, 0.03470088503267412, 0.03425140873827708, 0.03391256237156543, 0.033681580195768265, 0.033555160049093806, 0.033529558290991524, 0.03360069376297784, 0.03376425289524621, 0.03401578959365544, 0.03435081568271643, 0.03476487992944014, 0.035253635604390314, 0.03581289789615159, 0.03643869320771799, 0.03712730248806891, 0.03787530042919629, 0.03867959175394914, 0.03953744508761894, 0.04044652417186162, 0.041404915532612725, 0.04241115121298333, 0.043464224860451255, 0.044563599330325054, 0.045709204035841236, 0.04690142053086555, 0.048141055236305276, 0.04942929878936725, 0.05076767216993909, 0.052157960495697056, 0.05360213612454045, 0.05510227340126631, 0.05666045797638988, 0.058278694053742884, 0.05995881314660638, 0.06170238791266387, 0.06351065439109185, 0.06538444549885651 ], [ 0.05304211959900794, 0.05120200075008647, 0.04945304442527126, 0.04779844808870177, 0.04624118836747177, 0.04478400060657082, 0.04342934997836963, 0.042179393562883194, 0.04103593444885449, 0.04000037072983881, 0.039073643945742635, 0.038256192671723026, 0.03754791726461527, 0.03694816107658643, 0.03645571178931792, 0.036068824192514115, 0.03578526317860668, 0.035602363455700656, 0.03551710091764873, 0.035526169989683436, 0.035626061596194136, 0.035813137472341675, 0.03608369803932252, 0.03643404263244689, 0.03686052222125231, 0.03735958570727172, 0.037927821361942116, 0.03856199500498902, 0.039259086215891824, 0.04001632333841396, 0.04083121740129677, 0.04170159443997766, 0.042625625144307, 0.04360185032904813, 0.044629200461054085, 0.04570700739373119, 0.04683500655791873, 0.048013328129009, 0.04924247611411307, 0.0505232948533004, 0.05185692306932388, 0.05324473628850523, 0.05468827914241586, 0.05618918969408804, 0.05774911846243368, 0.05936964519816121, 0.061052196658405125, 0.06279796861480182, 0.06460785510875323, 0.0664823875558222 ], [ 0.05541950634982479, 0.05360049958628977, 0.051869204117904966, 0.05022852399553626, 0.0486811328917155, 0.04722945784150269, 0.045875657608966655, 0.04462159549344207, 0.04346880757241354, 0.04241846863044, 0.04147135910209368, 0.040627837010354884, 0.039887818919993774, 0.039250773272795345, 0.03871572820369302, 0.03828129427518178, 0.037945700826849504, 0.03770684315415399, 0.037562336773714664, 0.037509574742201804, 0.03754578435862025, 0.03766808044833431, 0.03787351357174345, 0.038159112672990485, 0.038521922674368506, 0.03895903819221522, 0.03946763484624488, 0.040044999574496, 0.04068856102165668, 0.041395920535828384, 0.04216488369066456, 0.04299349163806608, 0.04388005106488191, 0.044823161127984415, 0.04582173550673058, 0.04687501765498908, 0.047982587455462265, 0.049144357764844854, 0.050360559767427746, 0.051631716597003316, 0.05295860530527192, 0.05434220790764276, 0.05578365287787567, 0.05728414904534593, 0.058844914327758666, 0.060467102069871916, 0.062151727926877405, 0.06389960021465414, 0.0657112564494559, 0.06758690843390872 ], [ 0.05785208062656614, 0.056053556080343764, 0.054339220404018417, 0.05271170364450959, 0.05117340139695442, 0.049726462774173655, 0.04837277539005613, 0.04711394738967773, 0.0459512873963915, 0.04488578408704675, 0.04391808777484987, 0.043048496712330325, 0.04227695071014774, 0.04160303407698795, 0.04102598890012333, 0.040544738476818346, 0.04015791950169568, 0.03986392064397551, 0.039660924588237535, 0.03954695054786454, 0.039519894669632856, 0.03957756651633268, 0.03971772076954374, 0.03993808424863564, 0.04023637913186242, 0.040610343779963864, 0.04105775275279858, 0.04157643748571952, 0.04216430871070767, 0.042819381150830234, 0.04353980037890844, 0.04432387110083306, 0.045170085575046086, 0.046077150466593685, 0.04704401019118857, 0.048069864745965876, 0.049154180147202214, 0.050296689885414074, 0.051497386238678486, 0.05275650082206436, 0.054074474354444686, 0.055451916251193535, 0.05688955525731969, 0.05838818287787226, 0.059948591801430945, 0.06157151181684926, 0.0632575458706702, 0.0650071088940075, 0.06682037184681781, 0.06869721310226448 ], [ 0.06033278732821229, 0.05855411582798345, 0.0568560686909099, 0.055241022083651434, 0.05371111809086784, 0.05226825676050219, 0.05091408699167642, 0.0496499964020575, 0.048477100890214626, 0.04739623515379641, 0.046407945815668566, 0.045512488937675656, 0.04470983350258976, 0.043999671919153056, 0.04338143782611996, 0.04285433057297688, 0.042417344904589295, 0.042069303736908564, 0.04180889160287173, 0.04163468642503364, 0.041545187711691765, 0.041538839985590166, 0.041614051104046264, 0.04176920596682834, 0.042002676799711175, 0.04231283164901677, 0.042698042876364535, 0.04315669730352833, 0.04368720926681509, 0.04428803727043911, 0.04495770426632286, 0.04569482092091595, 0.04649811063707999, 0.04736643464064763, 0.048298815157576856, 0.04929445461654189, 0.050352748912458084, 0.05147329304145812, 0.052655877837516275, 0.05390047706705402, 0.055207224727059995, 0.05657638299921576, 0.058008301892537056, 0.05950337211925661, 0.0610619731579705, 0.06268441873746317, 0.06437090210794168, 0.06612144344849932, 0.06793584159740756, 0.0698136320036546 ], [ 0.06285493719779982, 0.06109550990552233, 0.059413127128224975, 0.057809931493242206, 0.05628783546336716, 0.05484851718263944, 0.05349341654114714, 0.05222373162989363, 0.051040416142344294, 0.04994417861684677, 0.048935484617663394, 0.048014562952786534, 0.04718141678815012, 0.04643584005450567, 0.045777438918189625, 0.04520565740568758, 0.04471980565821196, 0.044319088866198245, 0.04400263478026125, 0.04376951785284854, 0.04361877851284549, 0.04354943674375412, 0.043560499917094896, 0.043650965605616446, 0.04381982075019998, 0.0440660389905435, 0.04438857813883119, 0.0447863796663924, 0.04525837171202061, 0.04580347656668691, 0.04642062292081056, 0.04710876246394148, 0.047866889784762404, 0.04869406400026931, 0.04958943019554247, 0.05055223860521104, 0.05158185951853552, 0.052677792125833504, 0.05383966591383117, 0.05506723372029956, 0.05636035612682257, 0.057718977454737495, 0.05914309418736974, 0.060632717130828614, 0.06218782901345608, 0.06380833948708602, 0.06549403961921851, 0.06724455795241127, 0.0690593200653677, 0.0709375133172005 ], [ 0.06541222916159117, 0.06367147448424175, 0.06200419345038572, 0.06041231532576053, 0.058897545906636074, 0.057461366820860324, 0.056105036063221723, 0.054829589929065, 0.053635846754395665, 0.05252441306243918, 0.05149569279601753, 0.05054990023843051, 0.04968707697430919, 0.04890711283542922, 0.04820977026830306, 0.04759471103226319, 0.047061523683819044, 0.046609750013198656, 0.04623890853751103, 0.04594851334902463, 0.04573808705261301, 0.04560716714838896, 0.045555305940781325, 0.045582064783364726, 0.04568700410107851, 0.04586967108369175, 0.046129587159331804, 0.04646623731016562, 0.04687906299571058, 0.0473674599449275, 0.04793078143423975, 0.048568346965700136, 0.0492794555813117, 0.05006340247111923, 0.05091949711212942, 0.051847080947882394, 0.05284554259651778, 0.05391432874754438, 0.05505294924535719, 0.05626097531873164, 0.05753803045108156, 0.058883773945216406, 0.06029787777113333, 0.061779997754650026, 0.06332974053669796, 0.06494662798646038, 0.0666300608765206, 0.06837928362560378, 0.0701933517951973, 0.07207110380912979 ], [ 0.06799876349646511, 0.0662761612376033, 0.06462349262723568, 0.06304249329778625, 0.06153468423132321, 0.060101374137581806, 0.05874366379595705, 0.05746245249599002, 0.05625844685300426, 0.05513217236616829, 0.05408398808532833, 0.05311410463174169, 0.052222605569890994, 0.051409471771955526, 0.05067460799809534, 0.05001787049883986, 0.049439094102428555, 0.04893811704830374, 0.04851480181691909, 0.048169050408825693, 0.04790081293281958, 0.04771008893376092, 0.04759692156001769, 0.04756138535787247, 0.04760356910040999, 0.04772355553424908, 0.047921400199266384, 0.04819711151005156, 0.0485506340796505, 0.048981836842151585, 0.04949050694383335, 0.05007634969454213, 0.05073899418212415, 0.051478003530902226, 0.052292888296526376, 0.053183121179327976, 0.0541481511290447, 0.05518741500257791, 0.056300345200385786, 0.05748637210623959, 0.05874492064089092, 0.06007540076021351, 0.061477192233676786, 0.06294962448675484, 0.0644919526492368, 0.06610333119949487, 0.06778278672374667, 0.06952919132149528, 0.07134123809489293, 0.07321741997917257 ], [ 0.07060904701330978, 0.06890413980048067, 0.06726567663832377, 0.06569521859336284, 0.06419412247601734, 0.06276354590937785, 0.06140445486763444, 0.060117633778952906, 0.058903698356628065, 0.05776311134455854, 0.05669620131091174, 0.055703184480321244, 0.05478418935842358, 0.05393928359231963, 0.05316850216244315, 0.05247187566611175, 0.05184945718665673, 0.05130134609644025, 0.05082770715686198, 0.05042878347236897, 0.05010490222419552, 0.049856472624068, 0.04968397613889285, 0.04958794968001463, 0.04956896305379516, 0.049627592464299985, 0.049764392184740935, 0.04997986663157145, 0.050274444966825996, 0.05064846003111496, 0.051102132908273194, 0.05163556380156727, 0.05224872923320509, 0.05294148493975363, 0.05371357329635916, 0.05456463371588505, 0.05549421426834621, 0.05650178275888357, 0.057586735674633786, 0.05874840372811037, 0.059986053142214474, 0.06129888228776469, 0.062686013749364, 0.06414648231577964, 0.0656792197338147, 0.06728303730867533, 0.068956607569884, 0.07069844625214881, 0.07250689577581894, 0.07438011126931382 ], [ 0.07323799141432959, 0.0715503934939288, 0.06992581762907786, 0.06836566857419198, 0.06687115834005894, 0.06544331357570805, 0.06408298575149841, 0.06279086419543216, 0.06156749205236391, 0.060413285212646085, 0.05932855417372567, 0.0583135286458034, 0.05736838449273566, 0.05649327232844109, 0.055688346797252354, 0.054953795293057876, 0.05428986466035141, 0.05369688431144086, 0.05317528421914959, 0.052725606420236874, 0.052348508990655775, 0.052044761909556245, 0.051815234778280116, 0.05166087695281231, 0.05158269122505091, 0.0515817026888394, 0.05165892479549679, 0.0518153247966047, 0.05205179076340136, 0.05236910215903392, 0.05276790554302001, 0.05324869645026441, 0.05381180787053604, 0.054457405128647184, 0.05518548639986469, 0.05599588764890344, 0.05688829049507217, 0.057862231400174866, 0.058917110644692565, 0.06005219977771662, 0.06126664655703174, 0.0625594767908213, 0.06392959290313889, 0.06537576942841247, 0.06689664596187703, 0.06849071833051164, 0.0701563288926911, 0.07189165692480244, 0.07369471001913995, 0.07556331731492812 ], [ 0.07588090592667722, 0.07421030946075954, 0.07259939562960768, 0.07104943020861389, 0.06956149848267987, 0.06813651458271526, 0.06677523382046467, 0.06547826803231724, 0.06424610392501295, 0.06307912436371681, 0.06197763244306414, 0.06094187802920174, 0.0599720862591497, 0.059068487247877464, 0.05823134600662658, 0.05746099135008744, 0.05675784239833252, 0.05612243119456175, 0.055555419986633284, 0.055057611874122385, 0.054629953804745744, 0.05427353130152593, 0.05398955478873256, 0.05377933792212268, 0.0536442688701734, 0.053585775986893264, 0.05360528971300057, 0.05370420279686679, 0.05388383100893124, 0.054145376419050296, 0.05448989502289276, 0.05491827006907466, 0.05543119190033648, 0.05602914453960234, 0.05671239868938978, 0.05748101033117243, 0.05833482375671076, 0.0592734776645641, 0.06029641291869109, 0.06140288067825146, 0.06259194983850454, 0.06386251303076988, 0.06521329077120964, 0.06664283368157657, 0.06814952299662891, 0.06973156979881143, 0.07138701356927424, 0.0731137207136501, 0.07490938371820886, 0.07677152153010046 ], [ 0.0785334852432676, 0.0768796642753633, 0.07528228192727637, 0.07374248133566508, 0.07226123783112649, 0.07083936989571661, 0.06947755321354064, 0.06817633778704174, 0.06693616805058637, 0.0657574058426953, 0.06464035599050265, 0.06358529411277794, 0.06259249606489967, 0.0616622682434607, 0.06079497775851203, 0.0599910812927631, 0.05925115132545861, 0.05857589832997858, 0.057966187578552875, 0.057423049318241555, 0.05694768132233847, 0.05654144316323405, 0.05620584197802847, 0.0559425099782147, 0.05575317445320348, 0.05563962149224952, 0.05560365505678132, 0.05564705333443674, 0.05577152446388356, 0.05597866371521138, 0.05626991403994224, 0.0566465315822503, 0.05710955730093237, 0.057659795337700284, 0.05829779823674652, 0.05902385863027263, 0.05983800660343979, 0.06074001167544032, 0.061729388197486044, 0.0628054029711522, 0.06396708401210441, 0.06521322959316109, 0.06654241695928488, 0.06795301037771209, 0.06944316843668494, 0.07101085071222496, 0.07265382407017688, 0.07436966895627864, 0.07615578605389475, 0.07800940366706971 ], [ 0.08119179372044202, 0.07955460600145763, 0.07797071908720675, 0.07644116877834051, 0.07496683593318808, 0.07354845874102875, 0.07218664810564727, 0.07088190607862584, 0.06963464722597504, 0.06844522273139886, 0.06731394693037067, 0.06624112582990836, 0.06522708700443586, 0.06427221007881596, 0.06337695683068706, 0.06254189978530522, 0.061767748057798874, 0.061055369140240116, 0.06040580535089737, 0.05982028377158475, 0.059300218700569646, 0.05884720593872038, 0.058463008593387676, 0.0581495345072356, 0.057908805870287364, 0.057742922019362555, 0.05765401683351039, 0.057644212460524785, 0.05771557132553826, 0.05787004845364827, 0.058109446072497156, 0.0584353722501714, 0.058849204987984946, 0.05935206276029172, 0.059944782018935557, 0.06062790170790479, 0.06140165441127699, 0.06226596342323106, 0.06322044480683388, 0.06426441340680467, 0.06539689179206723, 0.06661662120614817, 0.06792207376792539, 0.06931146536081222, 0.07078276884567875, 0.0723337274086173, 0.07396186799413848, 0.07566451487030522, 0.07743880342536504, 0.07928169431076058 ], [ 0.0838522466956658, 0.08223163357775766, 0.08066129851552294, 0.07914218421481399, 0.07767509127887959, 0.07626069152125439, 0.07489954434859519, 0.07359211612472376, 0.0723388023627305, 0.07113995250730813, 0.06999589696255878, 0.06890697589105868, 0.0678735691629338, 0.06689612667712115, 0.06597519812397903, 0.06511146112353124, 0.06430574657375275, 0.06355905999396144, 0.06287259766323967, 0.06224775644254413, 0.06168613633604599, 0.06118953509109285, 0.06075993444892741, 0.060399478025748896, 0.060110441205463536, 0.05989519383593101, 0.059756156910312004, 0.05969575475319193, 0.059716364487466984, 0.059820264707443865, 0.06000958530854372, 0.06028626031879566, 0.06065198534899704, 0.06110818094779561, 0.06165596274732243, 0.06229611885443437, 0.06302909452384635, 0.06385498378092994, 0.06477352737260296, 0.0657841162311461, 0.06688579954065736, 0.0680772964898121, 0.06935701085843773, 0.07072304769632602, 0.07217323148574724, 0.07370512531438064, 0.07531605070689387, 0.07700310786222779, 0.07876319611683605, 0.08059303450269807 ], [ 0.08651158970037318, 0.08490757431719315, 0.08335093635977595, 0.08184253861130271, 0.08038311440529189, 0.07897328173108162, 0.07761356032666025, 0.07630439164730268, 0.07504616152924294, 0.07383922528270159, 0.07268393484606683, 0.07158066751427533, 0.0705298556231674, 0.06953201643525746, 0.06858778134085333, 0.06769792337351517, 0.06686338195374607, 0.06608528373170999, 0.06536495840983428, 0.06470394849726428, 0.06410401208519213, 0.06356711793467885, 0.06309543243268642, 0.06269129828775258, 0.06235720518972147, 0.06209575302930461, 0.061909608640012465, 0.06180145736180278, 0.0617739510065538, 0.06182965400580128, 0.06197098962138314, 0.06220018808771927, 0.06251923842821219, 0.06292984545706143, 0.06343339316175148, 0.0640309152899169, 0.06472307357127148, 0.06551014362614571, 0.06639200827698719, 0.06736815771092179, 0.06843769575172874, 0.069599351389977, 0.07085149468238348, 0.0721921561515763, 0.07361904887821921, 0.07512959256172826, 0.07672093891970568, 0.07838999788886561, 0.08013346417587687, 0.08194784378209664 ], [ 0.08916687625511077, 0.0875795602119149, 0.0860368484428939, 0.08453953591672464, 0.0830883004899583, 0.08168371758581712, 0.0803262777479779, 0.07901640693938608, 0.0777544893857937, 0.076540892680509, 0.07537599477052927, 0.07426021233587268, 0.07319402995733187, 0.072178029348967, 0.07121291781835347, 0.07029955501928983, 0.06943897698863064, 0.06863241642080736, 0.06788131813932306, 0.06718734878081202, 0.06655239981845333, 0.06597858321861134, 0.06546821924547594, 0.06502381619709549, 0.0646480421626833, 0.06434368922224325, 0.0641136308479246, 0.0639607735924211, 0.0638880044412957, 0.06389813544121627, 0.06399384737487794, 0.06417763431996132, 0.0644517508950666, 0.06481816385989017, 0.06527850950917549, 0.06583405799857063, 0.06648568539075468, 0.06723385384125787, 0.06807859998464408, 0.06901953125868496, 0.07005582963580487, 0.07118626202811441, 0.07240919649751348, 0.07372262333081399, 0.07512418002290093, 0.07661117923653443, 0.07818063886413337, 0.079829313393949, 0.08155372587225664, 0.08335019984797962 ], [ 0.09181544484855093, 0.09024500364599858, 0.08871652483186655, 0.08723074661981951, 0.08578830203325234, 0.08438973396446738, 0.08303551297603773, 0.08172605770028815, 0.08046175762338345, 0.079242997960631, 0.07807018624020559, 0.07694378011414131, 0.07586431581223144, 0.07483243655052221, 0.07384892010844339, 0.07291470470406215, 0.07203091223402715, 0.07119886791066311, 0.07042011533091681, 0.06969642605555888, 0.0690298028666071, 0.06842247600751776, 0.06787689189413472, 0.06739569401083807, 0.06698169597008286, 0.06663784700507477, 0.0663671904728567, 0.06617281625327118, 0.06605780822088417, 0.06602518822303044, 0.0660778581984246, 0.0662185422003612, 0.06644973013249421, 0.06677362495643824, 0.06719209498875744, 0.06770663267858176, 0.06831832096215354, 0.06902780794921255, 0.06983529033391504, 0.07074050556601141, 0.07174273248957197, 0.0728407998750478, 0.0740331020474847, 0.07531762065466255, 0.07669195152296078, 0.07815333551067581, 0.07969869228042843, 0.08132465596469192, 0.083027611781992, 0.08480373276661245 ], [ 0.09445489561950808, 0.09290157303127011, 0.09138770455190243, 0.08991398167435363, 0.08848100213087987, 0.0870892851641102, 0.08573928939437003, 0.08443143312901216, 0.0831661168919917, 0.08194374787676549, 0.08076476594286194, 0.07962967068801512, 0.07853904903614682, 0.07749360269080872, 0.07649417471914999, 0.07554177445863632, 0.0746375998841759, 0.07378305654273956, 0.07297977216176621, 0.07222960607115941, 0.07153465264997695, 0.07089723811999056, 0.07031991015929955, 0.06980541999908993, 0.06935669689147556, 0.06897681509087802, 0.06866895376733068, 0.06843635055654751, 0.06828224973549649, 0.06820984627763886, 0.0682222272719679, 0.06832231236698279, 0.06851279500874206, 0.06879608626857797, 0.06917426299356964, 0.06964902186107448, 0.0702216406846603, 0.07089294801721675, 0.07166330174842847, 0.07253257702237048, 0.0735001634320498, 0.0745649711047605, 0.07572544499445409, 0.07697958645873022, 0.07832498102626706, 0.07975883115706646, 0.0812779927598432, 0.08287901425090644, 0.08455817700772914, 0.08631153617716629 ], [ 0.09708306718316666, 0.09554716879996694, 0.09404835087152505, 0.09258726720926523, 0.09116448874438089, 0.0897805188647161, 0.08843581119461881, 0.08713078965649748, 0.08586587058840522, 0.08464148662162316, 0.08345811194657622, 0.08231628851575593, 0.08121665265125969, 0.08015996144534825, 0.07914711826896988, 0.07817919664039727, 0.0772574616583839, 0.07638338817686552, 0.07555867489494561, 0.07478525356116748, 0.07406529254726804, 0.07340119413624228, 0.07279558499340479, 0.0722512994471599, 0.07177135539701096, 0.07135892288677552, 0.07101728562632616, 0.07074979600798621, 0.07055982443442532, 0.07045070404104152, 0.0704256721424119, 0.07048780994309253, 0.07063998221048304, 0.07088477869607208, 0.07122445909815316, 0.07166090327704706, 0.0721955682619489, 0.07282945333436021, 0.0735630741508659, 0.07439644649921004, 0.07532907989074158, 0.07635998080625518, 0.07748766505537884, 0.07871017840336429, 0.08002512437817141, 0.08142969800410804, 0.08292072411775998, 0.08449469890423231, 0.08614783333804348, 0.0878760973123093 ], [ 0.09969801396941017, 0.09817990011190272, 0.09669662750491312, 0.09524882035799892, 0.09383703029148507, 0.09246175161349085, 0.09112343888368607, 0.08982252659817205, 0.08855945076919704, 0.08733467210817279, 0.08614870045146836, 0.08500211999698898, 0.08389561484783435, 0.0828299942898996, 0.08180621716652299, 0.08082541465866638, 0.0798889107374804, 0.07899823953114984, 0.07815515884299266, 0.077361659076131, 0.07661996686406536, 0.07593254277827469, 0.07530207258510918, 0.07473145165522534, 0.07422376229003479, 0.07378224391968857, 0.07341025634382248, 0.07311123642513134, 0.07288864890017435, 0.07274593223212013, 0.07268644068401338, 0.07271338402336097, 0.07282976646235188, 0.07303832657543355, 0.07334148000053826, 0.07374126671012454, 0.07423930452556567, 0.07483675034452963, 0.07553427026402813, 0.07633201942888372, 0.07722963203938446, 0.07822622154014214, 0.07932039061313709, 0.08051025023746203, 0.08179344677828757, 0.08316719584273617, 0.08462832149842794, 0.08617329939150452, 0.0877983023191028, 0.08949924689510834 ], [ 0.10229798437348554, 0.10079806256348384, 0.09933087600499389, 0.09789702646599932, 0.09649705280004807, 0.09513144605637612, 0.09380066672072546, 0.09250516391929886, 0.0912453963615752, 0.09002185473752287, 0.08883508522205902, 0.0876857136756148, 0.08657447006610673, 0.08550221257672952, 0.08446995080842211, 0.08347886743824282, 0.0825303376583064, 0.08162594569724223, 0.08076749771985546, 0.07995703041356572, 0.07919681460426688, 0.07848935330147057, 0.07783737365483699, 0.07724381241258643, 0.07671179460813196, 0.07624460536474563, 0.07584565489871463, 0.07551843701706015, 0.07526648164225731, 0.07509330214651193, 0.07500233853190416, 0.07499689773658245, 0.07508009256496169, 0.07525478091326594, 0.07552350707266575, 0.0758884469240844, 0.0763513587801122, 0.07691354147495355, 0.07757580105642964, 0.07833842710669665, 0.07920117933085795, 0.08016328463144436, 0.08122344446159444, 0.0823798518503222, 0.08363021714579304, 0.0849718012476474, 0.08640145490936146, 0.08791566259131484, 0.08951058933101284, 0.0911821291593037 ], [ 0.10488139995710563, 0.10340011712196526, 0.10194959455498694, 0.1005304178672901, 0.09914311879892533, 0.09778819007170333, 0.09646610221938454, 0.09517732222767183, 0.09392233376375686, 0.09270165871993467, 0.09151587973894028, 0.09036566333142841, 0.08925178313961646, 0.08817514284765823, 0.08713679819064417, 0.08613797747252437, 0.08518009997093033, 0.0842647915860777, 0.08339389708380515, 0.08256948829126429, 0.08179386762984416, 0.08106956641537816, 0.08039933742229773, 0.07978614129813395, 0.07923312652917484, 0.0787436027986574, 0.07832100774632618, 0.07796886733207799, 0.0776907502243812, 0.07749021687134519, 0.07737076416058852, 0.07733576682171213, 0.07738841695709713, 0.07753166328507356, 0.07776815182485841, 0.07810016982686709, 0.07852959473955441, 0.07905784989567578, 0.07968586839517053, 0.08041406636631787, 0.08124232641833175, 0.0821699916813528, 0.0831958703936239, 0.0843182505718274, 0.08553492391862381, 0.08684321780587816, 0.08824003394008478, 0.08972189217653109, 0.09128497790068041, 0.09292519143175093 ], [ 0.10744683588176458, 0.1059846704506478, 0.10455141830682822, 0.10314765436055297, 0.10177390805717862, 0.10043067789728984, 0.09911844778533091, 0.09783770504081905, 0.09658895985742176, 0.09537276594473192, 0.09418974203607731, 0.09304059389443248, 0.09192613639850775, 0.0908473152439424, 0.08980522775180515, 0.08880114224005514, 0.08783651538493746, 0.08691300698018085, 0.0860324914941276, 0.08519706582992863, 0.08440905271364875, 0.08367099917103585, 0.08298566960776073, 0.08235603308227789, 0.08178524445698479, 0.08127661923451948, 0.0808336020331404, 0.08045972882922629, 0.08015858329488551, 0.07993374778141353, 0.07978874973845, 0.07972700460400346, 0.07975175643856866, 0.07986601778990697, 0.08007251044475235, 0.08037360883009854, 0.08077128785249958, 0.08126707689654514, 0.08186202153786057, 0.08255665426545314, 0.08335097516579636, 0.08424444311866627, 0.08523597762044988, 0.08632397091605644, 0.08750630971684206, 0.08878040543656718, 0.09014323161074266, 0.09159136698925797, 0.09312104271088005, 0.09472819197630615 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.02343 (SEM: 0)
x1: 0.39217
x2: 0.341914
x3: 0.159259
x4: 0.437701
x5: 0.745598
x6: 0.0620148", "Arm 1_0
l2norm: 1.2112 (SEM: 0)
x1: 0.663238
x2: 0.714569
x3: 0.588652
x4: 0.27768
x5: 0.139057
x6: 0.271218", "Arm 2_0
l2norm: 1.3651 (SEM: 0)
x1: 0.846448
x2: 0.217095
x3: 0.348404
x4: 0.671583
x5: 0.339592
x6: 0.642009", "Arm 3_0
l2norm: 1.29086 (SEM: 0)
x1: 0.916066
x2: 0.321183
x3: 0.137546
x4: 0.505969
x5: 0.415414
x6: 0.525829", "Arm 4_0
l2norm: 1.25553 (SEM: 0)
x1: 0.0616007
x2: 0.364805
x3: 0.217203
x4: 0.273991
x5: 0.599507
x6: 0.978689", "Arm 5_0
l2norm: 1.17931 (SEM: 0)
x1: 0.0702075
x2: 0.223758
x3: 0.719703
x4: 0.460041
x5: 0.11914
x6: 0.769392", "Arm 6_0
l2norm: 1.42514 (SEM: 0)
x1: 0.617574
x2: 0.465144
x3: 0.645355
x4: 0.766496
x5: 0.14884
x6: 0.638048", "Arm 7_0
l2norm: 1.94417 (SEM: 0)
x1: 0.224609
x2: 0.968628
x3: 0.492947
x4: 0.925068
x5: 0.883348
x6: 0.955021", "Arm 8_0
l2norm: 1.62403 (SEM: 0)
x1: 0.579061
x2: 0.691852
x3: 0.901277
x4: 0.752974
x5: 0.323338
x6: 0.582829", "Arm 9_0
l2norm: 1.29629 (SEM: 0)
x1: 0.891122
x2: 0.601659
x3: 0.468342
x4: 0.305274
x5: 0.460138
x6: 0.0038387", "Arm 10_0
l2norm: 1.71018 (SEM: 0)
x1: 0.872585
x2: 0.845563
x3: 0.760308
x4: 0.638518
x5: 0.535373
x6: 0.419434", "Arm 11_0
l2norm: 1.43139 (SEM: 0)
x1: 0.989513
x2: 0.317229
x3: 0.648857
x4: 0.558124
x5: 0.306877
x6: 0.377394", "Arm 12_0
l2norm: 1.15894 (SEM: 0)
x1: 0.00618232
x2: 0.168376
x3: 0.728567
x4: 0.439569
x5: 0.0717724
x6: 0.765224", "Arm 13_0
l2norm: 1.20414 (SEM: 0)
x1: 0.109789
x2: 0.262375
x3: 0.725919
x4: 0.471402
x5: 0.143763
x6: 0.774094", "Arm 14_0
l2norm: 1.22127 (SEM: 0)
x1: 0.155198
x2: 0.294492
x3: 0.71667
x4: 0.48058
x5: 0.167834
x6: 0.779717", "Arm 15_0
l2norm: 1.19665 (SEM: 0)
x1: 0.205499
x2: 0.291081
x3: 0.654117
x4: 0.467266
x5: 0.181966
x6: 0.791011", "Arm 16_0
l2norm: 1.21453 (SEM: 0)
x1: 0.249338
x2: 0.277159
x3: 0.634864
x4: 0.426423
x5: 0.185014
x6: 0.846738", "Arm 17_0
l2norm: 1.16279 (SEM: 0)
x1: 0.265776
x2: 0.231359
x3: 0.645915
x4: 0.379026
x5: 0.210914
x6: 0.789028", "Arm 18_0
l2norm: 1.15714 (SEM: 0)
x1: 0.300595
x2: 0.203987
x3: 0.685256
x4: 0.334825
x5: 0.246681
x6: 0.751305", "Arm 19_0
l2norm: 1.14451 (SEM: 0)
x1: 0.323006
x2: 0.16023
x3: 0.71443
x4: 0.285792
x5: 0.268074
x6: 0.718299", "Arm 20_0
l2norm: 1.14263 (SEM: 0)
x1: 0.305742
x2: 0.258394
x3: 0.711848
x4: 0.24972
x5: 0.261953
x6: 0.71249", "Arm 21_0
l2norm: 1.16889 (SEM: 0)
x1: 0.275908
x2: 0.191027
x3: 0.726008
x4: 0.279843
x5: 0.320087
x6: 0.7388", "Arm 22_0
l2norm: 1.15892 (SEM: 0)
x1: 0.332058
x2: 0.200396
x3: 0.670185
x4: 0.272081
x5: 0.345044
x6: 0.741917", "Arm 23_0
l2norm: 1.2238 (SEM: 0)
x1: 0.345553
x2: 0.203027
x3: 0.755474
x4: 0.263989
x5: 0.333498
x6: 0.765127", "Arm 24_0
l2norm: 1.09016 (SEM: 0)
x1: 0.268276
x2: 0.164962
x3: 0.655735
x4: 0.26826
x5: 0.329887
x6: 0.691725", "Arm 25_0
l2norm: 1.00848 (SEM: 0)
x1: 0.230964
x2: 0.137343
x3: 0.609254
x4: 0.258392
x5: 0.333731
x6: 0.628885", "Arm 26_0
l2norm: 0.969477 (SEM: 0)
x1: 0.2008
x2: 0.114854
x3: 0.569471
x4: 0.213204
x5: 0.318605
x6: 0.644291", "Arm 27_0
l2norm: 0.954064 (SEM: 0)
x1: 0.171268
x2: 0.170045
x3: 0.585367
x4: 0.200932
x5: 0.317134
x6: 0.606951", "Arm 28_0
l2norm: 0.967865 (SEM: 0)
x1: 0.226376
x2: 0.0754811
x3: 0.546211
x4: 0.247571
x5: 0.319985
x6: 0.646369" ], "type": "scatter", "x": [ 0.39216968417167664, 0.6632378920912743, 0.8464481560513377, 0.9160656044259667, 0.061600666493177414, 0.07020752225071192, 0.61757408734411, 0.22460891027003527, 0.5790610406547785, 0.8911219742149115, 0.8725849883630872, 0.9895133329555392, 0.006182318552444443, 0.10978948563041614, 0.15519788358769881, 0.2054992151547574, 0.249337684813159, 0.26577561120760934, 0.30059519475995394, 0.3230059141383427, 0.30574201731657313, 0.27590838019432495, 0.33205810010510606, 0.34555251984478, 0.26827590593283096, 0.23096434474891306, 0.20079968422726097, 0.1712678132364324, 0.22637613467008277 ], "xaxis": "x", "y": [ 0.3419135510921478, 0.7145686745643616, 0.21709479205310345, 0.32118295691907406, 0.364805075339973, 0.22375822626054287, 0.46514361817389727, 0.9686278151348233, 0.6918518720194697, 0.6016591601073742, 0.8455629972741008, 0.31722911540418863, 0.16837593492784814, 0.26237503606642254, 0.2944922227690307, 0.29108145196918866, 0.2771591352268353, 0.2313589707615443, 0.20398743573653666, 0.16023020585164255, 0.2583940762674886, 0.1910274303620144, 0.20039627819255287, 0.2030267269264587, 0.16496220432066894, 0.13734335657368027, 0.11485365301291779, 0.17004535308313098, 0.07548106422379 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.02343 (SEM: 0)
x1: 0.39217
x2: 0.341914
x3: 0.159259
x4: 0.437701
x5: 0.745598
x6: 0.0620148", "Arm 1_0
l2norm: 1.2112 (SEM: 0)
x1: 0.663238
x2: 0.714569
x3: 0.588652
x4: 0.27768
x5: 0.139057
x6: 0.271218", "Arm 2_0
l2norm: 1.3651 (SEM: 0)
x1: 0.846448
x2: 0.217095
x3: 0.348404
x4: 0.671583
x5: 0.339592
x6: 0.642009", "Arm 3_0
l2norm: 1.29086 (SEM: 0)
x1: 0.916066
x2: 0.321183
x3: 0.137546
x4: 0.505969
x5: 0.415414
x6: 0.525829", "Arm 4_0
l2norm: 1.25553 (SEM: 0)
x1: 0.0616007
x2: 0.364805
x3: 0.217203
x4: 0.273991
x5: 0.599507
x6: 0.978689", "Arm 5_0
l2norm: 1.17931 (SEM: 0)
x1: 0.0702075
x2: 0.223758
x3: 0.719703
x4: 0.460041
x5: 0.11914
x6: 0.769392", "Arm 6_0
l2norm: 1.42514 (SEM: 0)
x1: 0.617574
x2: 0.465144
x3: 0.645355
x4: 0.766496
x5: 0.14884
x6: 0.638048", "Arm 7_0
l2norm: 1.94417 (SEM: 0)
x1: 0.224609
x2: 0.968628
x3: 0.492947
x4: 0.925068
x5: 0.883348
x6: 0.955021", "Arm 8_0
l2norm: 1.62403 (SEM: 0)
x1: 0.579061
x2: 0.691852
x3: 0.901277
x4: 0.752974
x5: 0.323338
x6: 0.582829", "Arm 9_0
l2norm: 1.29629 (SEM: 0)
x1: 0.891122
x2: 0.601659
x3: 0.468342
x4: 0.305274
x5: 0.460138
x6: 0.0038387", "Arm 10_0
l2norm: 1.71018 (SEM: 0)
x1: 0.872585
x2: 0.845563
x3: 0.760308
x4: 0.638518
x5: 0.535373
x6: 0.419434", "Arm 11_0
l2norm: 1.43139 (SEM: 0)
x1: 0.989513
x2: 0.317229
x3: 0.648857
x4: 0.558124
x5: 0.306877
x6: 0.377394", "Arm 12_0
l2norm: 1.15894 (SEM: 0)
x1: 0.00618232
x2: 0.168376
x3: 0.728567
x4: 0.439569
x5: 0.0717724
x6: 0.765224", "Arm 13_0
l2norm: 1.20414 (SEM: 0)
x1: 0.109789
x2: 0.262375
x3: 0.725919
x4: 0.471402
x5: 0.143763
x6: 0.774094", "Arm 14_0
l2norm: 1.22127 (SEM: 0)
x1: 0.155198
x2: 0.294492
x3: 0.71667
x4: 0.48058
x5: 0.167834
x6: 0.779717", "Arm 15_0
l2norm: 1.19665 (SEM: 0)
x1: 0.205499
x2: 0.291081
x3: 0.654117
x4: 0.467266
x5: 0.181966
x6: 0.791011", "Arm 16_0
l2norm: 1.21453 (SEM: 0)
x1: 0.249338
x2: 0.277159
x3: 0.634864
x4: 0.426423
x5: 0.185014
x6: 0.846738", "Arm 17_0
l2norm: 1.16279 (SEM: 0)
x1: 0.265776
x2: 0.231359
x3: 0.645915
x4: 0.379026
x5: 0.210914
x6: 0.789028", "Arm 18_0
l2norm: 1.15714 (SEM: 0)
x1: 0.300595
x2: 0.203987
x3: 0.685256
x4: 0.334825
x5: 0.246681
x6: 0.751305", "Arm 19_0
l2norm: 1.14451 (SEM: 0)
x1: 0.323006
x2: 0.16023
x3: 0.71443
x4: 0.285792
x5: 0.268074
x6: 0.718299", "Arm 20_0
l2norm: 1.14263 (SEM: 0)
x1: 0.305742
x2: 0.258394
x3: 0.711848
x4: 0.24972
x5: 0.261953
x6: 0.71249", "Arm 21_0
l2norm: 1.16889 (SEM: 0)
x1: 0.275908
x2: 0.191027
x3: 0.726008
x4: 0.279843
x5: 0.320087
x6: 0.7388", "Arm 22_0
l2norm: 1.15892 (SEM: 0)
x1: 0.332058
x2: 0.200396
x3: 0.670185
x4: 0.272081
x5: 0.345044
x6: 0.741917", "Arm 23_0
l2norm: 1.2238 (SEM: 0)
x1: 0.345553
x2: 0.203027
x3: 0.755474
x4: 0.263989
x5: 0.333498
x6: 0.765127", "Arm 24_0
l2norm: 1.09016 (SEM: 0)
x1: 0.268276
x2: 0.164962
x3: 0.655735
x4: 0.26826
x5: 0.329887
x6: 0.691725", "Arm 25_0
l2norm: 1.00848 (SEM: 0)
x1: 0.230964
x2: 0.137343
x3: 0.609254
x4: 0.258392
x5: 0.333731
x6: 0.628885", "Arm 26_0
l2norm: 0.969477 (SEM: 0)
x1: 0.2008
x2: 0.114854
x3: 0.569471
x4: 0.213204
x5: 0.318605
x6: 0.644291", "Arm 27_0
l2norm: 0.954064 (SEM: 0)
x1: 0.171268
x2: 0.170045
x3: 0.585367
x4: 0.200932
x5: 0.317134
x6: 0.606951", "Arm 28_0
l2norm: 0.967865 (SEM: 0)
x1: 0.226376
x2: 0.0754811
x3: 0.546211
x4: 0.247571
x5: 0.319985
x6: 0.646369" ], "type": "scatter", "x": [ 0.39216968417167664, 0.6632378920912743, 0.8464481560513377, 0.9160656044259667, 0.061600666493177414, 0.07020752225071192, 0.61757408734411, 0.22460891027003527, 0.5790610406547785, 0.8911219742149115, 0.8725849883630872, 0.9895133329555392, 0.006182318552444443, 0.10978948563041614, 0.15519788358769881, 0.2054992151547574, 0.249337684813159, 0.26577561120760934, 0.30059519475995394, 0.3230059141383427, 0.30574201731657313, 0.27590838019432495, 0.33205810010510606, 0.34555251984478, 0.26827590593283096, 0.23096434474891306, 0.20079968422726097, 0.1712678132364324, 0.22637613467008277 ], "xaxis": "x2", "y": [ 0.3419135510921478, 0.7145686745643616, 0.21709479205310345, 0.32118295691907406, 0.364805075339973, 0.22375822626054287, 0.46514361817389727, 0.9686278151348233, 0.6918518720194697, 0.6016591601073742, 0.8455629972741008, 0.31722911540418863, 0.16837593492784814, 0.26237503606642254, 0.2944922227690307, 0.29108145196918866, 0.2771591352268353, 0.2313589707615443, 0.20398743573653666, 0.16023020585164255, 0.2583940762674886, 0.1910274303620144, 0.20039627819255287, 0.2030267269264587, 0.16496220432066894, 0.13734335657368027, 0.11485365301291779, 0.17004535308313098, 0.07548106422379 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "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.24224477649274742, -0.25354417870410056, -0.25354417870410056, -0.26787811561428543, -0.26787811561428543, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.381992387802273, -1.4937712798401677, -1.623650192699462, -1.699433337098283, -2.1714498066635053, -2.480916020598678, -2.5504645763389937, -2.5504645763389937, -2.594619590722146, -2.6040681988307592, -2.6040681988307592, -2.9043055623656753, -3.0687573173967855, -3.1129785231083424, -3.1129785231083424, -3.1728768370185643, -3.1728768370185643 ] }, { "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.24224477649274742, -0.25354417870410056, -0.25354417870410056, -0.26787811561428543, -0.26787811561428543, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.381992387802273, -1.4937712798401677, -1.623650192699462, -1.699433337098283, -2.1714498066635053, -2.480916020598678, -2.5504645763389937, -2.5504645763389937, -2.594619590722146, -2.6040681988307592, -2.6040681988307592, -2.9043055623656753, -3.0687573173967855, -3.1129785231083424, -3.1129785231083424, -3.1728768370185643, -3.1728768370185643 ] }, { "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.24224477649274742, -0.25354417870410056, -0.25354417870410056, -0.26787811561428543, -0.26787811561428543, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.2392140281613393, -1.381992387802273, -1.4937712798401677, -1.623650192699462, -1.699433337098283, -2.1714498066635053, -2.480916020598678, -2.5504645763389937, -2.5504645763389937, -2.594619590722146, -2.6040681988307592, -2.6040681988307592, -2.9043055623656753, -3.0687573173967855, -3.1129785231083424, -3.1129785231083424, -3.1728768370185643, -3.1728768370185643 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.12" } }, "nbformat": 4, "nbformat_minor": 2 }