{ "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 07-17 16:16:28] ipy_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 07-17 16:16:29] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:34] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:38] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:42] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:46] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:49] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:53] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:56] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:59] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:03] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:07] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:09] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:13] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:16] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:19] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:23] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:26] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:28] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:32] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:35] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:40] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:44] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:47] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:49] 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.2403674503513192,\n", " 'x2': 0.10916491767214283,\n", " 'x3': 0.40270476416006157,\n", " 'x4': 0.2877790755838589,\n", " 'x5': 0.30654770184123803,\n", " 'x6': 0.675540406880727}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9300578758959749, 'hartmann6': -3.240279406772178}" ] }, "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.4196083348683786, -2.4781513006184297, -2.5337584521407956, -2.585977785485453, -2.634362963192865, -2.6784820849361166, -2.7179269009773352, -2.7523220935720314, -2.781334203625522, -2.8046797626365114, -2.8221322088717447, -2.833527223874415, -2.838766217955297, -2.837817812633945, -2.8307173005979216, -2.8175641939941425, -2.7985180852334386, -2.77379312981177, -2.7436515111570987, -2.7083962613930943, -2.6683637925859793, -2.62391644840349, -2.5754353265096532, -2.52331355765895, -2.467950166393024, -2.4097445855099173, -2.3490918542457475, -2.2863784984520477, -2.221979068794302, -2.156253298425437, -2.089543832919939, -2.022174480894764, -1.9544489323885463, -1.8866498927194502, -1.8190385814644545, -1.75185454888691, -1.6853157652418955, -1.6196189416866098, -1.5549400448773474, -1.4914349706613155, -1.4292403455214784, -1.3684744275758154, -1.309238081951337, -1.2516158082336581, -1.1956768004252147, -1.1414760224193232, -1.089055284405138, -1.0384443078529806, -0.9896617687855288, -0.9427163109150007 ], [ -2.4369634873771506, -2.4967986479620365, -2.5536618825072255, -2.6070806178004546, -2.6565871612190515, -2.701728184371153, -2.7420747360269857, -2.777232357101383, -2.806850814910267, -2.8306329555029572, -2.848342197202076, -2.859808257102883, -2.864930811400776, -2.863680929796714, -2.8561002778536535, -2.8422982303636766, -2.822447166275626, -2.7967763085377593, -2.7655645228740906, -2.729132496830008, -2.68783468970412, -2.642051385871814, -2.592181111570622, -2.538633600576454, -2.4818234261905188, -2.4221643604505023, -2.360064477968182, -2.2959219905218053, -2.2301217775842908, -2.1630325650887383, -2.095004697787945, -2.026368447765406, -1.9574328016125908, -1.8884846704855527, -1.8197884699831575, -1.751586020077781, -1.6840967188768343, -1.6175179476182064, -1.5520256679005966, -1.4877751756649351, -1.424901979846696, -1.3635227768952116, -1.30373649549576, -1.2456253888244473, -1.1892561545057303, -1.1346810651185013, -1.081939094598948, -1.0310570282091251, -0.9820505458718616, -0.9349252706122947 ], [ -2.450715523035461, -2.5117365173060784, -2.569754268363108, -2.6242758730298847, -2.6748124401103497, -2.7208893343313987, -2.76205704416161, -2.7979021833401827, -2.828058072990907, -2.8522143345205464, -2.8701249575319974, -2.8816143912267096, -2.8865813365509227, -2.8850000776615436, -2.8769193668900415, -2.862459045748241, -2.841804725595405, -2.8152009504156794, -2.7829433126575926, -2.745369991074045, -2.702853134853761, -2.655790445052906, -2.604597218472265, -2.549699034568323, -2.4915251919831385, -2.430502942148469, -2.367052523688159, -2.3015829712777234, -2.23448865354235, -2.1661464837105804, -2.0969137416625094, -2.027126444792476, -1.9570982063221563, -1.8871195223532493, -1.81745743237718, -1.7483555017443553, -1.680034078490336, -1.6126907807846222, -1.5465011750431152, -1.481619608398336, -1.418180162743272, -1.3562977009508992, -1.2960689791186863, -1.2375738017897833, -1.180876200049491, -1.1260256151762746, -1.0730580731279982, -1.0219973375554552, -0.9728560312474119, -0.9256367179193373 ], [ -2.460684358856252, -2.5227693732049605, -2.58182462448858, -2.6373373039542343, -2.6887976750879883, -2.7357101308943212, -2.7776049779921634, -2.814050379719233, -2.844663820847842, -2.869122446759957, -2.8871716810335677, -2.8986316319017833, -2.9034009504339906, -2.901457987606386, -2.8928592941927245, -2.877735693308705, -2.856286308037359, -2.828771028869055, -2.7955019490661877, -2.756834281820863, -2.713157212361619, -2.6648850488059797, -2.61244893658028, -2.5562893079006797, -2.4968491592787627, -2.4345681896468503, -2.3698777888284743, -2.3031968379469134, -2.2349282665623513, -2.1654563026462506, -2.095144348296952, -2.024333414376354, -1.953341049589107, -1.882460702986644, -1.811961462860945, -1.7420881191447724, -1.6730615005672138, -1.6050790418370522, -1.538315540011854, -1.472924062954178, -1.409036976384819, -1.3467670595213546, -1.2862086826381078, -1.2274390230935601, -1.1705192994300166, -1.1154960060424912, -1.062402133621914, -1.0112583630873164, -0.9620742230204232, -0.9148492026970085 ], [ -2.4667082692822833, -2.529719983429388, -2.589680133741858, -2.646056630328796, -2.6983194573562415, -2.7459526040222766, -2.788466834986844, -2.8254126341640875, -2.8563925806974355, -2.881072421542854, -2.8991901853764266, -2.910562821818437, -2.915090031148151, -2.912755156544579, -2.903623224957563, -2.8878364214072447, -2.8656074412468087, -2.8372112668517477, -2.802975950117866, -2.763272953243497, -2.7185075224240522, -2.669109464048816, -2.6155245823829927, -2.5582069375584084, -2.497612001484857, -2.4341907291244214, -2.3683845215065893, -2.300621031169004, -2.231310746367373, -2.160844283877471, -2.0895903187464966, -2.0178940809339605, -1.946076352048995, -1.874432899468119, -1.8032342894839233, -1.7327260255101289, -1.6631289616216574, -1.5946399457990856, -1.5274326511784668, -1.4616585573991419, -1.3974480478133593, -1.3349115918814656, -1.274140985524218, -1.2152106255275226, -1.158178797275362, -1.1030889581015382, -1.0499710013767454, -0.998842489065019, -0.9497098428765832, -0.902569486303757 ], [ -2.468646952093981, -2.532432775389911, -2.593149802518568, -2.6502475041511717, -2.7031763804652016, -2.7514008343400063, -2.7944130097113713, -2.8317468019715157, -2.862991167717456, -2.8878018950970885, -2.905911124627125, -2.917134098575744, -2.921372833673116, -2.918616638196093, -2.908939617233765, -2.8924955121260028, -2.86951037951626, -2.8402737118871975, -2.80512862486393, -2.764461691930517, -2.71869291300401, -2.6682661847313884, -2.6136405208548377, -2.5552821665667476, -2.4936576688597762, -2.4292279061715494, -2.362443042009432, -2.293738344189056, -2.22353079936883, -2.1522164479929993, -2.0801683647626397, -2.0077352123724723, -1.9352403001913177, -1.8629810840363077, -1.7912290477561454, -1.7202299117865965, -1.6502041181003473, -1.581347545046496, -1.5138324094955626, -1.4478083175118561, -1.3834034284927266, -1.3207257013538136, -1.259864194894282, -1.200890397926394, -1.1438595680710368, -1.0888120612739414, -1.035774637055113, -0.9847617272407783, -0.9357766584237426, -0.8888128206419385 ], [ -2.4663843428929417, -2.5307769596422274, -2.5920879051973875, -2.64974929212283, -2.703193181623898, -2.751865474709613, -2.795240913772598, -2.8328382351818315, -2.86423442928452, -2.889077145688458, -2.907094488107731, -2.918101704301712, -2.9220045365880734, -2.918799236107464, -2.9085694599137435, -2.8914804606133613, -2.867771126798694, -2.837744517660495, -2.8017575453403483, -2.76021039952942, -2.7135362015403777, -2.662191247003247, -2.6066460716734507, -2.5473774690195756, -2.484861507436007, -2.4195675385611226, -2.3519531522516393, -2.282460013208806, -2.2115105043696257, -2.139505099179147, -2.0668203859716403, -1.9938076710117383, -1.920792091075975, -1.8480721710864276, -1.7759197668806954, -1.7045803375742092, -1.6342734961241716, -1.5651937906826243, -1.497511673187549, -1.431374615436379, -1.3669083366445194, -1.3042181102172816, -1.2433901211409901, -1.1844928489949704, -1.1275784550611272, -1.0726841553178597, -1.019833564211543, -0.9690379969679737, -0.9202977208153483, -0.8736031478251383 ], [ -2.4598310558884395, -2.5246492843372557, -2.5863770631400818, -2.6444304982500277, -2.698224535289217, -2.7471879474562786, -2.7907796093052513, -2.828504878652735, -2.859930816815047, -2.884699133774182, -2.902536073687266, -2.9132588252308187, -2.9167783512196115, -2.913098763791889, -2.9023135555083153, -2.8845991552509593, -2.8602064029483505, -2.829450606011452, -2.7927008379987717, -2.7503690709102866, -2.7028996180518057, -2.6507592325150044, -2.594428080890798, -2.5343917073761637, -2.471134025048654, -2.4051313174155298, -2.336847199886541, -2.2667284722987775, -2.1952017852808186, -2.122671041323014, -2.049515453204901, -1.9760881860973387, -1.9027155140779597, -1.8296964263480775, -1.757302622828857, -1.6857788429649676, -1.6153434755074814, -1.5461894008620767, -1.4784850213527378, -1.4123754385215896, -1.347983740388293, -1.2854123654204814, -1.224744513789148, -1.1660455802505103, -1.1093645866530455, -1.0547355955581335, -1.0021790897355483, -0.9517033053107875, -0.9033055090721677, -0.8569732128765948 ], [ -2.4489263492229796, -2.5139763091957543, -2.5759308313880753, -2.634191677204025, -2.6881583207033355, -2.7372441057491987, -2.7808939097308976, -2.8186018523100973, -2.8499274773931513, -2.874509104790464, -2.8920735664670825, -2.9024420687101413, -2.905532281391441, -2.9013569469533085, -2.890019417624713, -2.871706633001967, -2.846680141519767, -2.8152658199193183, -2.7778429336604784, -2.7348331091280533, -2.6866896746669955, -2.633887698315779, -2.576914928305691, -2.5162637415898854, -2.4524241304624415, -2.385877706187772, -2.317092666990053, -2.2465196605703177, -2.1745884638674595, -2.1017054013798018, -2.0282514253653057, -1.9545807848788952, -1.881020214819666, -1.8078685803896428, -1.7353969163855354, -1.6638488045342381, -1.5934410357193738, -1.5243645075371772, -1.4567853112581735, -1.3908459660132164, -1.326666761883406, -1.2643471775284647, -1.2039673419860544, -1.1455895142447212, -1.089259558060925, -1.0350083931846101, -0.9828534076158653, -0.9327998186908947, -0.8848419736569484, -0.8389645829272069 ], [ -2.43363954859342, -2.498716133590457, -2.5606957237633052, -2.6189677569886034, -2.672918260713544, -2.72194722816037, -2.765487783987459, -2.803025319758363, -2.8341146263052845, -2.8583934735391456, -2.8755918973541212, -2.8855372081071495, -2.888155125630769, -2.8834675319784413, -2.8715873345417107, -2.85271096449749, -2.8271090911374985, -2.7951161678401353, -2.7571194116097315, -2.7135477512676127, -2.664861174411163, -2.6115407831581194, -2.5540797543363887, -2.492975304266401, -2.428721686456701, -2.3618042013762883, -2.2926941669856387, -2.2218447820753955, -2.149687807219698, -2.0766309867198536, -2.003056136687523, -1.9293178276706449, -1.855742593939477, -1.7826286052215874, -1.7102457401397757, -1.6388360038991376, -1.5686142360079223, -1.499769057133227, -1.432464007686237, -1.366838834452063, -1.3030108855211573, -1.2410765778949508, -1.1811129063475871, -1.1231789663337666, -1.0673174678426345, -1.0135562210204299, -0.9619095780470898, -0.9123798190998025, -0.8649584732354436, -0.8196275676580548 ], [ -2.4139709068938786, -2.4788595722926505, -2.540652686897051, -2.598729792722306, -2.652465955419421, -2.70125036276919, -2.744507066630712, -2.7817156244142334, -2.812429149951325, -2.836287894216542, -2.853027726307955, -2.8624839732276843, -2.8645914351614348, -2.8593812635374123, -2.8469752316716903, -2.827577893205282, -2.801467154882677, -2.768983817350314, -2.7305206272947777, -2.68651132959526, -2.637420118744159, -2.5837317827793402, -2.5259427288964473, -2.464552990698372, -2.4000592484584535, -2.3329488459416825, -2.2636947571467707, -2.1927514395196046, -2.1205515025471375, -2.0475031186797756, -1.9739881046664094, -1.900360603909453, -1.8269463033721387, -1.754042121446318, -1.681916305913047, -1.6108088837882792, -1.540932407599715, -1.4724729456386836, -1.4055912670705992, -1.3404241765019196, -1.277085956656409, -1.215669882129281, -1.1562497716499336, -1.098881550767878, -1.0436048012605026, -0.9904442777376149, -0.9394113758015084, -0.8905055396516252, -0.8437156001638608, -0.7990210372118305 ], [ -2.389951920257872, -2.4544308276110263, -2.5158181148267786, -2.5734862908675953, -2.626802491928837, -2.675148232861198, -2.717941704833513, -2.7546599289338314, -2.784857658245261, -2.8081806893120556, -2.8243731480064223, -2.8332798910528254, -2.834845341028954, -2.8291095704481775, -2.816202122801938, -2.7963339943229872, -2.7697882296039467, -2.736909610637899, -2.6980939153390326, -2.6537771827973278, -2.6044253524482603, -2.5505245553861196, -2.4925722439463676, -2.431069263336334, -2.366512903604608, -2.299390923251824, -2.230176505345953, -2.159324089491999, -2.0872660145076876, -2.0144099037637737, -1.941136725283964, -1.867799460164593, -1.7947223147199243, -1.7222004135943147, -1.650499912873665, -1.5798584741191959, -1.5104860424322009, -1.4425658743001755, -1.3762557641597208, -1.3116894223436462, -1.248977961287379, -1.188211451430298, -1.129460513006662, -1.0727779147198064, -1.0182001549819972, -0.9657490058548653, -0.915433003944581, -0.8672488762259857, -0.8211828920542276, -0.7772121354608094 ], [ -2.361645159238873, -2.4254877415476805, -2.486244548800331, -2.5432843390996016, -2.5959699646424275, -2.6436791216917603, -2.6858280131810925, -2.7218948491725277, -2.751439457926785, -2.774116040946555, -2.78967891662053, -2.797983354483306, -2.798983322897816, -2.792726954101558, -2.779350094372149, -2.759068270955005, -2.7321674527250184, -2.6989940100398693, -2.659944282585625, -2.6154541412121484, -2.56598887960439, -2.512033700452261, -2.454084981218691, -2.392642429427781, -2.3282021750661848, -2.2612508014621264, -2.1922602851425923, -2.121683796740492, -2.0499523054170545, -1.9774719251546942, -1.9046219401038018, -1.8317534462607157, -1.7591885472248463, -1.6872200423232582, -1.6161115460481223, -1.546097978734982, -1.4773863699465937, -1.410156918281914, -1.3445642543672527, -1.2807388575680614, -1.21878858136494, -1.1588002471905265, -1.100841271625268, -1.0449612970010307, -0.9911938004831946, -0.9395576614492219, -0.8900586713462898, -0.8426909741233802, -0.7974384287592581, -0.7542758883411766 ], [ -2.329143730658629, -2.3921217356251008, -2.4520212154487786, -2.508210807967886, -2.560053330352029, -2.606927303804067, -2.648251577387221, -2.683509716416119, -2.712269996688341, -2.7341973502834156, -2.749057438430756, -2.756716045086278, -2.757135971975635, -2.7503720984794837, -2.7365648327319665, -2.7159321997358967, -2.6887608741942755, -2.655396496068246, -2.6162336163534965, -2.571705611852691, -2.52227487543192, -2.4684235335230227, -2.410644875170608, -2.349435609048223, -2.285289006072642, -2.2186889401620578, -2.1501048086756804, -2.0799872948573936, -2.008764923864077, -1.936841358471887, -1.8645933778204107, -1.7923694809761506, -1.720489055892148, -1.6492420533199919, -1.5788891045475681, -1.5096620217711376, -1.4417646207226928, -1.3753738070190291, -1.310640870603611, -1.2476929365211333, -1.186634524915308, -1.1275491783346492, -1.0705011199173562, -1.0155369115624109, -0.9626870865718904, -0.911967736304256, -0.8633820349932622, -0.8169216909907999, -0.772568316253734, -0.730294708915046 ], [ -2.2925706118241496, -2.354457622473288, -2.413274555727307, -2.4683938166970236, -2.519182915450172, -2.5650264934747806, -2.605351342058316, -2.6396509045406584, -2.6675049835245193, -2.688590722069545, -2.70268533653152, -2.709664479112754, -2.7094985608600743, -2.7022475901223784, -2.6880546588722734, -2.6671382516306874, -2.63978362113541, -2.6063335093923694, -2.567178509308825, -2.5227473649155607, -2.473497490046915, -2.419905944286593, -2.3624610483633672, -2.301654760564728, -2.237975881077749, -2.1719041080085115, -2.1039049383522856, -2.034425387625102, -1.9638904901708103, -1.8927005352520472, -1.8212289895384772, -1.749821053071771, -1.678792792605069, -1.6084307933657307, -1.5389922680617953, -1.4707055607074007, -1.4037709828651466, -1.3383619213268663, -1.2746261590486645, -1.2126873551560724, -1.1526466347787592, -1.0945842450569812, -1.038561239569386, -0.9846211593804746, -0.9327916846549071, -0.8830862361542122, -0.8355055107947094, -0.7900389397331841, -0.7466660611340196, -0.7053578028675169 ], [ -2.252078281948126, -2.3126536462110963, -2.3701689477472963, -2.4240044471424236, -2.473537334180035, -2.5181639165278904, -2.5573243840576536, -2.59052651697177, -2.617364220645696, -2.6375275135713454, -2.650804635794485, -2.65707994318609, -2.6563299251774453, -2.6486179641526726, -2.634087952757139, -2.6129568887862695, -2.585506633240453, -2.5520750591223984, -2.5130468437369347, -2.468844168982714, -2.4199175858855577, -2.3667372687431483, -2.3097848366943845, -2.2495458669266086, -2.1865031738838256, -2.12113088860494, -2.0538893433005554, -1.9852207470308763, -1.9155456260403054, -1.8452599940385328, -1.7747332113151004, -1.7043064858247574, -1.6342919639333837, -1.5649723535779116, -1.496601018628003, -1.4294024806946921, -1.3635732638145082, -1.299283018439326, -1.2366758638788569, -1.1758718925175324, -1.1169687844123122, -1.060043486887369, -1.0051539201004362, -0.9523406759329063, -0.9016286836827224, -0.8530288217179751, -0.8065394593523512, -0.7621479176627087, -0.719831841768003, -0.6795604802465975 ], [ -2.2078490586309156, -2.266902132647751, -2.3229077715841706, -2.3752583245945633, -2.423345617371127, -2.4665828701774344, -2.5044285296799584, -2.5364084073056277, -2.5621324664208402, -2.5813038836649382, -2.593721116931297, -2.59927586586441, -2.597949077138377, -2.5898057681578504, -2.574988850531162, -2.5537120500871553, -2.526252063679381, -2.4929401393751696, -2.4541532996422495, -2.4103054451005628, -2.3618385741751866, -2.309214329921705, -2.252906044914429, -2.193391408097043, -2.131145833042697, -2.0666365707758714, -2.000317583760074, -1.9326251794942872, -1.8639743896833356, -1.7947560714534425, -1.7253346986753646, -1.6560468032661695, -1.5872000183630421, -1.5190726680078939, -1.4519138421131232, -1.3859438915494395, -1.3213552765133039, -1.2583137019287136, -1.196959476315036, -1.1374090349485217, -1.0797565738110175, -1.0240757472853574, -0.9704213893846196, -0.9188312251134702, -0.8693275450599374, -0.8219188222942724, -0.7766012559782226, -0.7333602307015944, -0.69217168445623, -0.6530033813615526 ], [ -2.1600959767671544, -2.217430516911537, -2.2717343743267664, -2.3224161903424525, -2.368886994749346, -2.4105813609320736, -2.446979718633794, -2.477628483519849, -2.5021550057335884, -2.5202758228894218, -2.5317989207310174, -2.536622106703757, -2.5347292949870717, -2.5261855605198904, -2.51113124474409, -2.489775228846619, -2.462387493838648, -2.4292911268902566, -2.390853969252838, -2.347480121876206, -2.2996015253169, -2.2476698104973716, -2.1921485819642776, -2.1335062544107304, -2.07220952457694, -2.0087175291559527, -1.9434767161924553, -1.8769164411444323, -1.809445286594126, -1.741448094043887, -1.673283685761758, -1.605283243822084, -1.5377493027572064, -1.4709553024743032, -1.4051456401979483, -1.340536154830092, -1.2773149745714627, -1.215643658873958, -1.15565856847638, -1.0974724019339108, -1.0411758431289007, -0.9868392711900561, -0.9345144915453155, -0.8842364540707118, -0.8360249311544836, -0.7898861347520326, -0.7458142570354775, -0.7037929239872014, -0.6637965552546152, -0.6257916268174528 ], [ -2.1090631906226993, -2.164501523537213, -2.2169316103169465, -2.265782255230565, -2.310487533426441, -2.3505067340790307, -2.3853447870798967, -2.4145702835160403, -2.4378287548638746, -2.4548502533497847, -2.4654518444193947, -2.46953652907495, -2.4670900108940828, -2.458176134594483, -2.4429313542062188, -2.4215583891578554, -2.3943191919781097, -2.3615273757179067, -2.323540280966789, -2.2807508817723012, -2.233579730130619, -2.1824671205481847, -2.1278656253397426, -2.0702331160140535, -2.0100263534335383, -1.9476952033702226, -1.883677515101324, -1.8183946868648682, -1.7522479305366072, -1.6856152364606478, -1.6188490268109796, -1.552274472273165, -1.4861884331874422, -1.4208589738936825, -1.356525389032322, -1.2933986737404313, -1.2316623663032051, -1.1714736917248048, -1.112964937417542, -1.0562449971620287, -1.0014010259950268, -0.948500156093864, -0.8975912314811382, -0.8487065270133884, -0.8018634243027617, -0.7570660237259564, -0.7143066773756496, -0.6735674326621546, -0.6348213802946319, -0.5980339036182392 ], [ -2.0550246439319744, -2.1084110869707664, -2.158818628502689, -2.205699476122261, -2.248513666467992, -2.2867474828718803, -2.31993186207252, -2.347658410919486, -2.369591250187545, -2.3854740456013555, -2.3951327116095875, -2.3984748884307865, -2.39548727795924, -2.386231568109048, -2.370839330936565, -2.349506092873823, -2.322484719451416, -2.2900782640919153, -2.252632453087897, -2.210527993242576, -2.164172886541384, -2.1139949183291376, -2.060434457641935, -2.0039376780654807, -1.9449502807840764, -1.8839117811826496, -1.8212504060536352, -1.7573786376266134, -1.6926894302573046, -1.6275531134721368, -1.5623149804278773, -1.4972935444022364, -1.4327794292625577, -1.3690348447567762, -1.3062935853879574, -1.244761483413533, -1.1846172423642896, -1.1260135771203967, -1.0690785894125936, -1.0139173128848353, -0.9606133687833793, -0.9092306812010303, -0.8598152089856584, -0.8123966594265983, -0.76699015630763, -0.7235978416322406, -0.6822103961677853, -0.6428084688876678, -0.6053640094442112, -0.5698415010496636 ], [ -1.9982804424606124, -2.0494835571666816, -2.0977447120723953, -2.142541956537125, -2.18336325319256, -2.2197232187381912, -2.251179546179798, -2.2773472076790644, -2.2979090768653743, -2.31262250251558, -2.32132218655848, -2.323920164088247, -2.3204037114161498, -2.310831796432695, -2.2953304470874842, -2.274087261124704, -2.247345220066873, -2.215395964874736, -2.1785727026259933, -2.137242920746763, -2.0918010792545454, -2.042661432823834, -1.9902511089116008, -1.9350035424431784, -1.8773523466123276, -1.8177256848923464, -1.7565411999797718, -1.6942015478703303, -1.6310905762265553, -1.5675701734894476, -1.5039777985013156, -1.4406246810800505, -1.3777946642690433, -1.3157436411968249, -1.2546995253615074, -1.1948626836179752, -1.1364067563193498, -1.079479788510132, -1.0242055990264807, -0.9706853199431533, -0.918999046133775, -0.8692075429864469, -0.8213539688717977, -0.7754655772792983, -0.7315553712535661, -0.6896236896484531, -0.6496597106625239, -0.6116428631039637, -0.57554413989841, -0.5413273115817037 ], [ -1.9391513041334205, -1.9880648647702994, -2.0340811465922144, -2.076705653631472, -2.1154553842032158, -2.149873879499169, -2.1795457937280402, -2.2041094898379416, -2.22326661111579, -2.236788254017468, -2.2445179736951806, -2.246372192996165, -2.2423386396696, -2.232473316714694, -2.2168963526725873, -2.1957869641806598, -2.16937770922005, -2.1379481968507332, -2.101818421820451, -2.0613418921493643, -2.0168987072444677, -1.9688887242274309, -1.917724926365037, -1.8638270858516208, -1.8076157976893243, -1.7495069526736424, -1.689906713108388, -1.6292070508286123, -1.5677818995905626, -1.5059839607454952, -1.4441421824542553, -1.3825599105361952, -1.321513686344539, -1.2612526466795757, -1.2019984647203137, -1.1439457602270615, -1.0872629018605682, -1.032093123770975, -0.9785558817092325, -0.9267483797891606, -0.8767472067064958, -0.8286100288449901, -0.7823772965644619, -0.7380739285352714, -0.695710946884983, -0.6552870429319646, -0.6167900592949997, -0.580198379177584, -0.5454822176846177, -0.512604813230066 ], [ -1.8779719829259083, -1.9245148166782429, -1.9682124902515392, -2.0085988311394494, -2.045220282657334, -2.077649336089193, -2.1054974239807605, -2.1284261029117637, -2.146155704618995, -2.1584711355123756, -2.165224955312683, -2.1663381331611156, -2.161798949143906, -2.1516604503319976, -2.136036771454214, -2.1150985501087693, -2.089067623088132, -2.058211175074629, -2.0228355065363237, -1.9832795807935752, -1.9399084955068404, -1.893107002735535, -1.843273179455245, -1.7908123324809893, -1.7361312112764695, -1.6796325988184604, -1.621710351174394, -1.5627449559099469, -1.5030996735558695, -1.4431173129215593, -1.3831176705432184, -1.3233956396975977, -1.2642199688876803, -1.2058326269181934, -1.1484487139162816, -1.0922568458846476, -1.0374199344864459, -0.9840762829712053, -0.9323409223801352, -0.8823071182863981, -0.8340479862827103, -0.7876181633197747, -0.7430554910943883, -0.7003826764345087, -0.6596089016553897, -0.620731364944997, -0.5837367368841193, -0.5486025242166441, -0.5152983360226477, -0.48378705061137084 ], [ -1.8150845672683773, -1.8591995589930892, -1.9005283442435765, -1.93863332935401, -1.973090274103568, -2.003500232935005, -2.0295009562071695, -2.0507768320257473, -2.067066716491499, -2.078169369032693, -2.0839465462629057, -2.084324022415236, -2.0792908819541474, -2.0688974120667956, -2.053251866890332, -2.032516323354447, -2.0069018164843384, -1.9766629267314186, -1.942091982735936, -1.9035130309242352, -1.8612757052275435, -1.8157491081661212, -1.7673157937072688, -1.716365927690229, -1.6632916956959596, -1.6084820299271692, -1.5523177317501562, -1.4951670694191526, -1.4373819263043883, -1.3792945613618486, -1.3212150214653902, -1.2634292179318405, -1.2061976515000232, -1.1497547450950378, -1.0943087244415128, -1.0400419739415094, -0.9871117889480668, -0.935651444691504, -0.8857715054329875, -0.8375613037028014, -0.7910905276220399, -0.7464108633694048, -0.7035576490901553, -0.6625515053952356, -0.6233999156881145, -0.5860987366689394, -0.5506336254120179, -0.5169813744015557, -0.48511114991271187, -0.4549856322482655 ], [ -1.7508322813890689, -1.7924848447064383, -1.8314162202549453, -1.8672171737808285, -1.8994922589644698, -1.927870413128852, -1.9520150429342455, -1.9716328740404874, -1.9864810391614212, -1.996372149655163, -2.001177348644652, -2.0008275170186263, -1.9953128831387534, -1.9846812960565563, -1.969035397154201, -1.948528895346243, -1.923362129341416, -1.8937770867161163, -1.8600520375657383, -1.8224959248802697, -1.7814426332447764, -1.737245234907238, -1.690270292810339, -1.6408922885131687, -1.5894882410116744, -1.5364325885942998, -1.4820924151302086, -1.4268231082508982, -1.3709645343801746, -1.3148378020365525, -1.258742661425989, -1.202955559016524, -1.1477283355726384, -1.0932875294047357, -1.0398342260751279, -0.9875443824290017, -0.9365695461951526, -0.8870378914248722, -0.8390554933717334, -0.7927077727634207, -0.7480610476326073, -0.7051641400007227, -0.664049993988858, -0.6247372708033232, -0.5872318941335333, -0.5515285265944114, -0.5176119638602013, -0.485458438085403, -0.4550368261664455, -0.4263097614762559 ], [ -1.685554107780831, -1.724730365568535, -1.761255684168099, -1.7947486185893513, -1.824841715541757, -1.8511909104373196, -1.8734844576098386, -1.8914508154830802, -1.9048650574814623, -1.9135535785373414, -1.9173970579958752, -1.9163317802492854, -1.9103494915383656, -1.8994959969967287, -1.8838686986483222, -1.8636132620715138, -1.8389195866523118, -1.810017242855445, -1.7771705266257989, -1.740673263201426, -1.7008434706207398, -1.6580179705958256, -1.6125470163539328, -1.5647889979316714, -1.5151052868677455, -1.46385529213121, -1.411391811985078, -1.3580567754007449, -1.3041774657749592, -1.25006330645513, -1.1960032633244273, -1.1422638888747003, -1.0890880003590466, -1.036693956521076, -0.9852754759163662, -0.9350019258828495, -0.8860190042805915, -0.8384497349899076, -0.7923957014109789, -0.7479384485034393, -0.7051409920731215, -0.6640493830911194, -0.6246942840574827, -0.5870925232378379, -0.5512486006320321, -0.5171561265670945, -0.48479917976266185, -0.4541535766092628, -0.42518804730675974, -0.3978653175437563 ], [ -1.619580318190791, -1.6562851605628504, -1.690413710234182, -1.7216114919392396, -1.7495380542002075, -1.7738753058044021, -1.7943354317612619, -1.8106679235868066, -1.822665369332888, -1.830167795907045, -1.833065501495944, -1.8313004301554376, -1.824866212685599, -1.8138070328642395, -1.798215488996924, -1.778229619878518, -1.754029258586794, -1.725831868531657, -1.693888002648675, -1.6584765077854953, -1.6198995737742405, -1.5784777044695475, -1.5345446713322515, -1.4884425031815716, -1.4405165699136355, -1.3911108308591116, -1.3405633342049776, -1.2892020652021574, -1.2373412415448022, -1.185278141603184, -1.1332905266296842, -1.08163468640015, -1.0305441049202124, -0.9802287138365068, -0.930874679033414, -0.8826446514716506, -0.8356784060720805, -0.7900937910829346, -0.7459879134252857, -0.7034384916249622, -0.6625053159339409, -0.6232317641590979, -0.5856463307935569, -0.5497641357272292, -0.5155883867264897, -0.48311177680548867, -0.4523178034824673, -0.42318200173717835, -0.3956730863362503, -0.3697540021825316 ], [ -1.553228868941043, -1.5874839924839408, -1.6192410785081441, -1.6481716308684502, -1.6739610830212543, -1.696316199045396, -1.7149720981177297, -1.7296985244604315, -1.7403050669497693, -1.7466451421855165, -1.7486186663320697, -1.7461734342454538, -1.739305290005789, -1.7280572121467723, -1.7125174565242731, -1.6928169072117552, -1.6691257855646298, -1.6416498610371948, -1.6106262943625287, -1.5763192248267053, -1.5390151910326946, -1.4990184531456072, -1.4566462692875812, -1.4122241735787207, -1.3660813095293731, -1.31854588749829, -1.2699408527505764, -1.2205798637433776, -1.17076368227749, -1.1207770652512083, -1.070886223481371, -1.0213368813127532, -0.9723529376037506, -0.9241356993070811, -0.8768636363227115, -0.8306925915162678, -0.7857563722042761, -0.7421676477130668, -0.700019080352074, -0.6593846229405229, -0.6203209237227836, -0.5828687881481769, -0.5470546558252396, -0.5128920594344155, -0.4803830401241136, -0.44951950070967306, -0.4202844837577131, -0.39265336637942405, -0.3665949673469162, -0.3420725650934904 ], [ -1.4868025604994344, -1.5186445469381264, -1.5480696322939482, -1.5747741964464035, -1.598468362012464, -1.6188825706278887, -1.635773822035288, -1.6489312658026516, -1.6581808969034655, -1.6633891888823367, -1.6644655848169745, -1.6613638426431154, -1.6540822900653795, -1.642663084280957, -1.6271905961656121, -1.6077890513016948, -1.5846195638908167, -1.5578766952336214, -1.527784656546823, -1.4945932577087633, -1.4585736820472595, -1.4200141470547116, -1.3792154969880341, -1.3364867695839875, -1.2921407867028836, -1.24648983498971, -1.1998415216470404, -1.1524949046492972, -1.104736999842228, -1.0568397565024743, -1.0090575695549964, -0.9616253655835717, -0.9147572670545658, -0.8686458099546731, -0.8234616674191398, -0.7793538168878584, -0.7364500803696217, -0.6948579652755725, -0.6546657355704715, -0.6159436483463623, -0.5787452982022654, -0.5431090200750539, -0.5090593096711558, -0.47660822884614484, -0.44575677079720943, -0.41649616655483834, -0.3888091198935315, -0.36267096242920327, -0.33805072439780126, -0.3149121195154425 ], [ -1.4205868502967158, -1.4500653143968358, -1.4772102352155982, -1.5017416960714405, -1.5233932677414408, -1.541917856853182, -1.5570932511668032, -1.5687271049018998, -1.5766611535527986, -1.5807745104674598, -1.5809859652988791, -1.5772552672966562, -1.569583428186565, -1.5580121180996274, -1.5426222544128982, -1.5235318990847755, -1.5008935863526949, -1.4748912001612122, -1.4457365101159756, -1.4136654578045973, -1.3789342652052532, -1.341815418156615, -1.3025935653574772, -1.261561370786827, -1.2190153657826797, -1.1752518637324918, -1.1305630196513985, -1.0852331316268127, -1.0395352850419557, -0.993728430827805, -0.9480549670526547, -0.9027388634942437, -0.8579843372296042, -0.8139750587243176, -0.7708738454989538, -0.7288227852723154, -0.6879437221484321, -0.6483390367899369, -0.6100926532524698, -0.5732712099546673, -0.5379253390119612, -0.5040910059506722, -0.47179086991377184, -0.44103563232726084, -0.4118253492435582, -0.3841506889931623, -0.35799412225850213, -0.333331036227444, -0.3101307681424763, -0.2883575564269554 ], [ -1.354848218137973, -1.3820240389493366, -1.4069513014935306, -1.4293725817736609, -1.4490436368694388, -1.465738609705877, -1.4792549597547635, -1.4894179052692238, -1.4960841979416417, -1.4991450993725055, -1.4985284825619778, -1.4942000336543415, -1.4861635744690558, -1.4744605625462546, -1.4591688519458341, -1.440400815083407, -1.4183009337580472, -1.3930429665215005, -1.3648267904182196, -1.3338749997365746, -1.3004293260084543, -1.2647469264659923, -1.2270965770996447, -1.187754804781723, -1.1470020015040638, -1.105118580197543, -1.0623812504592287, -1.0190595070533988, -0.9754124285042322, -0.9316858747354703, -0.8881101526345068, -0.8448981907540891, -0.8022442344612348, -0.760323045432661, -0.7192895675134097, -0.6792790057779041, -0.6404072569438186, -0.602771626110685, -0.566451765887126, -0.531510778120323, -0.4979964245781783, -0.4659424001665362, -0.43536962987828165, -0.40628755813181483, -0.3786954060889369, -0.35258337871902246, -0.327933808687326, -0.3047222285718232, -0.2829183664979318, -0.2624870631043863 ], [ -1.2898330007369243, -1.314776642681538, -1.3375578046301468, -1.3579403291652106, -1.375700894816202, -1.3906336504389374, -1.4025546001469555, -1.4113055585806193, -1.4167575235726977, -1.4188133512323953, -1.4174096616760354, -1.4125179469057367, -1.404144891727233, -1.3923319516499109, -1.3771542571528794, -1.35871893091194, -1.337162913247669, -1.3126503911942795, -1.285369918920502, -1.2555313035995892, -1.223362314370232, -1.18910525687434, -1.1530134462312467, -1.1153476103117597, -1.076372263565371, -1.0363521071825912, -0.9955485291265384, -0.9542162914133774, -0.9126004966990182, -0.870933919175206, -0.8294347668379218, -0.7883049169648573, -0.7477286389163006, -0.7078717925169352, -0.668881469205661, -0.6308860281277093, -0.5939954703600294, -0.5583020907170226, -0.5238813469868349, -0.4907928898795546, -0.45908170241667623, -0.42877930409846665, -0.39990498225947313, -0.3724670200351745, -0.3464638969402727, -0.32188544396761043, -0.298713940234586, -0.2769251425003194, -0.2564892423802809, -0.23737174886504797 ], [ -1.2257666285962252, -1.2485565558884857, -1.2692706941505825, -1.2876929278118463, -1.3036196023143982, -1.3168636518484906, -1.3272584985690214, -1.3346615709275207, -1.3389573101546064, -1.3400595640747859, -1.337913302507119, -1.3324956246852788, -1.3238160632282967, -1.3119162188750124, -1.2968687838770814, -1.2787760285626115, -1.257767834463599, -1.23399935837877, -1.2076484054546037, -1.1789125775593439, -1.1480062488281406, -1.1151574070429278, -1.0806043912849075, -1.044592555804345, -1.007370897922578, -0.9691887019857429, -0.9302922675713581, -0.8909218028970817, -0.851308569025074, -0.8116723546389568, -0.7722193454837145, -0.7331404300253924, -0.6946099576716539, -0.6567849419123066, -0.6198046807468083, -0.5837907521010954, -0.5488473327588617, -0.5150617850583783, -0.48250545530860967, -0.45123463055439506, -0.42129160503103047, -0.39270581357950385, -0.36549499577791456, -0.33966636106612036, -0.31521773132722775, -0.29213864300083814, -0.27041139570673, -0.25001203850857867, -0.23091128836026042, -0.2130753780077841 ], [ -1.1628532117828905, -1.1835743988845109, -1.2023066667987776, -1.218852730823549, -1.2330273691916234, -1.244661099824529, -1.2536036465163292, -1.2597270651074643, -1.2629284172759636, -1.2631319038535047, -1.2602903983403064, -1.254386351683997, -1.2454320688123734, -1.2334693837408883, -1.2185687816502422, -1.2008280318887832, -1.1803704045546293, -1.1573425448772883, -1.1319120745987878, -1.1042649795510022, -1.0746028302963841, -1.043139871410541, -1.0101000080842795, -0.9757137185820343, -0.9402149282222394, -0.9038378931576587, -0.866814156562708, -0.8293696512219698, -0.7917220269140339, -0.7540782762755157, -0.7166327193681238, -0.6795653874114689, -0.643040823604166, -0.607207297069507, -0.5721964072722634, -0.5381230421254868, -0.505085643768626, -0.47316673126976694, -0.4424336285361017, -0.41293934763441054, -0.38472358167300946, -0.3578137666195902, -0.33222617728863035, -0.3079670287281906, -0.28503356000066726, -0.26341508263992863, -0.2430939807357586, -0.22404665358599152, -0.20624439516794046, -0.18965420735422178 ], [ -1.1012754305915569, -1.1200179714245666, -1.1368582489460513, -1.1516166213755268, -1.164125093817471, -1.1742305928347672, -1.1817980460428712, -1.186713156335627, -1.1888847741908537, -1.1882467913232522, -1.1847595027715636, -1.1784104101424628, -1.1692144640692583, -1.157213767088701, -1.1424767774855507, -1.1250970689077482, -1.1051917088202594, -1.0828993208208586, -1.0583778919593465, -1.0318023779145595, -1.0033621485446735, -0.9732583068745944, -0.9417009088996429, -0.908906111672401, -0.8750932834017793, -0.8404821201942223, -0.8052898264262419, -0.7697284256317951, -0.7340022727876964, -0.6983058351114596, -0.6628217971090027, -0.627719528553925, -0.5931539342432852, -0.5592646847001423, -0.5261758097738194, -0.49399562367598926, -0.46281694084370284, -0.4327175369465801, -0.4037608077804131, -0.37599657997761415, -0.3494620306584175, -0.32418267764971365, -0.3001734071126161, -0.2774395108665264, -0.2559777110159156, -0.23577715442725777, -0.2168203640169557, -0.19908413762238464, -0.182540388424711, -0.16715692349961486 ], [ -1.0411946932044, -1.0580525119034965, -1.0730941527129367, -1.0861564588920944, -1.097087490779848, -1.1057494411608237, -1.1120213693994203, -1.1158016599124778, -1.1170101219511346, -1.1155896640419065, -1.1115074963264595, -1.1047558357424958, -1.0953521107677546, -1.0833386826524403, -1.06878211720979, -1.0517720540830995, -1.0324197280934404, -1.0108561994705085, -0.9872303468871955, -0.9617066705117978, -0.9344629438024085, -0.9056877450087983, -0.8755778947455635, -0.844335826219906, -0.8121669200472647, -0.779276844781883, -0.7458689546938279, -0.7121418047041884, -0.6782868458883622, -0.6444863619495909, -0.6109116975608713, -0.5777218149426868, -0.5450621978219559, -0.5130641044717397, -0.4818441558875448, -0.45150423260706907, -0.422131644777723, -0.3937995347852965, -0.36656746966953824, -0.34048218106924, -0.31557841290699673, -0.2918798408158785, -0.2694000318754528, -0.24814341810936202, -0.22810626205113937, -0.2092775972619323, -0.19164013082289544, -0.1751710984427548, -0.15984306588858122, -0.14562467297852422 ], [ -0.9827515261486389, -0.9978211918835024, -1.011159871109186, -1.0226197696884527, -1.0320638706105152, -1.0393685281561198, -1.0444258931414585, -1.0471460882749883, -1.0474590621936566, -1.0453160644325017, -1.0406907003102095, -1.0335795431449188, -1.0240022999140739, -1.0120015440142667, -0.9976420438347013, -0.9810097273047721, -0.962210329616972, -0.9413677736604392, -0.9186223306803952, -0.8941286033870857, -0.8680533669133155, -0.8405732967712313, -0.8118726092966027, -0.7821406403464277, -0.7515693924727327, -0.7203510883735892, -0.6886757769861356, -0.6567290455120385, -0.6246898936116925, -0.5927288235845767, -0.5610061924723562, -0.5296708597684474, -0.4988591496343391, -0.46869413124134707, -0.4392852068277502, -0.41072798548712286, -0.3831044121850482, -0.3564831161290394, -0.3309199401270744, -0.30645861249714335, -0.2831315248841111, -0.260960582451218, -0.2399580968413355, -0.22012769662540466, -0.20146523433813246, -0.18395967339977748, -0.16759394207363565, -0.15234574501705334, -0.13818832590901642, -0.12509117707915607 ], [ -0.926066165513836, -0.9394458132616033, -0.9511784787073166, -0.9611306474545689, -0.9691791353452901, -0.9752133951735, -0.9791376656662408, -0.9808728931879965, -0.9803583647021977, -0.9775530020723505, -0.9724362819424515, -0.965008761130662, -0.9552922035116653, -0.9433293195325402, -0.9291831426446197, -0.9129360770446094, -0.8946886575016757, -0.8745580644406279, -0.8526764361593933, -0.8291890160015477, -0.8042521669370514, -0.778031281067615, -0.7506986087033914, -0.72243103194388, -0.6934078113207208, -0.6638083401730976, -0.6338099483244666, -0.6035858022156799, -0.5733029510335512, -0.5431205663910887, -0.5131884166027887, -0.48364560634125, -0.4546195998873639, -0.4262255329401079, -0.39856580551874554, -0.3717299379576411, -0.34579466397419156, -0.3208242294652568, -0.296870862914679, -0.27397538272751043, -0.25216790799715905, -0.23146864168820036, -0.21188869853514536, -0.19343095372884034, -0.17609089237387865, -0.15985744351437936, -0.14471378607670737, -0.1306381172638007, -0.11760437670543866, -0.10558292200959518 ], [ -0.871239318256171, -0.8830276764021466, -0.8932516049560089, -0.9017908291218492, -0.9085349534585204, -0.9133855112208451, -0.9162578662683981, -0.917082907732716, -0.9158084845577149, -0.9124005368519095, -0.9068438930339423, -0.8991427151455885, -0.8893205884594737, -0.8774202645870625, -0.8635030786994984, -0.847648070351254, -0.8299508431442779, -0.8105222008683244, -0.7894865970632866, -0.766980431942118, -0.7431502264882905, -0.7181506997148563, -0.692142772857748, -0.6652915245378679, -0.6377641238074505, -0.6097277728246036, -0.5813476963376556, -0.5527852195562943, -0.5241959778297391, -0.4957282998799313, -0.4675218009511162, -0.43970621368943164, -0.4124004739454401, -0.3857120673099417, -0.35973663128826927, -0.3345577985496837, -0.3102472592517995, -0.2868650152748182, -0.26445979625951477, -0.24306960638425346, -0.22272237148558927, -0.20343665802910293, -0.18522243818426998, -0.1680818785010163, -0.15201013313599532, -0.13699612600629862, -0.12302330949395834, -0.11007039027869503, -0.09811201547900006, -0.08711941450997407 ], [ -0.8183530640183118, -0.8286485884228227, -0.8374605478462822, -0.8446809120266429, -0.8502110779062817, -0.8539636884909229, -0.8558643138588806, -0.8558529428384221, -0.8538852398626452, -0.8499335299242425, -0.8439874848405702, -0.836054495488819, -0.826159726458501, -0.8143458608204684, -0.8006725525828555, -0.7852156121682773, -0.7680659553992668, -0.7493283488422059, -0.7291199841556958, -0.707568911954983, -0.6848123626148621, -0.6609949785250802, -0.6362669806280976, -0.6107822922893877, -0.5846966457870035, -0.5581657004404368, -0.5313432055910186, -0.504379245011134, -0.47741860066614383, -0.4505992722929584, -0.42405118478463355, -0.3978951082596969, -0.3722418067667781, -0.3471914218618972, -0.32283308781440967, -0.29924476677782463, -0.27649328545944907, -0.25463454990763523, -0.2337139120315963, -0.21376666021944635, -0.19481860665510586, -0.17688674533152526, -0.1599799569841185, -0.14409973991783076, -0.12924094870862146, -0.11539252581300663, -0.10253821405859331, -0.09065724070455583, -0.0797249661876962, -0.0697134927751979 ], [ -0.7674718690729475, -0.7763719818955936, -0.7838674966246448, -0.789861679218556, -0.7942667719657441, -0.7970056059610053, -0.7980130847187572, -0.7972374945836158, -0.7946416028225826, -0.7902035115280919, -0.7839172442799028, -0.7757930523178372, -0.7658574370794772, -0.7541528956250747, -0.7407374039963505, -0.7256836603302097, -0.7090781141561714, -0.69101981060515, -0.6716190784343175, -0.65099608934666, -0.6292793138387567, -0.6066038966463876, -0.5831099735953245, -0.5589409518355297, -0.5342417771309835, -0.5091572146987495, -0.48383017324495325, -0.45840010434102285, -0.43300151019019717, -0.4077625915157894, -0.38280406355729646, -0.35823816224127936, -0.3341678551089644, -0.31068626333679594, -0.2878762930018479, -0.26581046632707017, -0.2445509374939634, -0.2241496730114012, -0.20464877365105028, -0.1860809135136936, -0.16846987167861127, -0.15183113285214733, -0.13617253519455286, -0.12149494579936926, -0.107792946890229, -0.09505551848973415, -0.08326670595269903, -0.07240626323216448, -0.06245026499126283, -0.05337168264809056 ], [ -0.7186436854406648, -0.7262441156814455, -0.7325168337536531, -0.7373755013721491, -0.7407423093423033, -0.7425494052941444, -0.7427402010279328, -0.7412705212708502, -0.7381095602258789, -0.7332406185601879, -0.7266616010614191, -0.7183852635971809, -0.7084392066729275, -0.6968656211858085, -0.6837207993257515, -0.669074429479952, -0.6530086981115433, -0.6356172237967705, -0.6170038490701095, -0.5972813148630247, -0.5765698407501734, -0.5549956326454895, -0.5326893386584031, -0.5097844739411446, -0.48641583660577004, -0.4627179388671292, -0.4388234798741102, -0.414861888469674, -0.3909579646501318, -0.36723064726806154, -0.3437919323577254, -0.3207459615196342, -0.2981882935318729, -0.27620536537914164, -0.25487414186666757, -0.23426194650315302, -0.2144264608397577, -0.19541587521112302, -0.17726917094262817, -0.16001651252723859, -0.1436797278977282, -0.12827285552413104, -0.11380273842571609, -0.10026964707295827, -0.08766791536061724, -0.07598657617934856, -0.0652099854589614, -0.05531842579509427, -0.04628868283066656, -0.03809458940048316 ], [ -0.6719011100020786, -0.6782953315008109, -0.6834364883586689, -0.6872477860111501, -0.6896605175467264, -0.6906153261570966, -0.6900633552183619, -0.6879672530874129, -0.6843020037335017, -0.679055559763644, -0.6722292609329554, -0.6638380284496965, -0.6539103328124838, -0.6424879400466317, -0.6296254475494933, -0.615389625900705, -0.5998585866660202, -0.5831207983345696, -0.5652739732040732, -0.5464238475989909, -0.5266828767617617, -0.506168864648755, -0.4850035481848529, -0.46331115560473624, -0.44121695939651717, -0.4188458458459041, -0.39632092480494685, -0.37376220450761544, -0.35128535647158565, -0.3290005943616927, -0.30701168798459033, -0.28541512943874947, -0.26429946318825315, -0.24374478593765048, -0.22382241618173326, -0.20459472767393327, -0.18611513618445552, -0.16842822505725885, -0.1515699923408913, -0.13556820066221986, -0.12044281044167748, -0.10620647736278621, -0.09286509602393811, -0.08041837322631262, -0.06886041620749661, -0.05818032315777555, -0.04836276542364448, -0.039388552810814215, -0.031235175273996107, -0.02387731597721654 ], [ -0.627262580505271, -0.6325413421032269, -0.6366393158865045, -0.6394884475199856, -0.6410283366487195, -0.6412073515756187, -0.639983639172208, -0.6373260016604327, -0.6332146154697522, -0.6276415721072905, -0.6206112266192043, -0.6121403454278376, -0.6022580517058156, -0.591005572573333, -0.5784357978791819, -0.5646126648127605, -0.549610385872392, -0.5335125397124019, -0.5164110452086079, -0.498405038979308, -0.47959967595789554, -0.4601048718600014, -0.44003400590393693, -0.41950260217625046, -0.3986270086371999, -0.3775230937745213, -0.3563049820046509, -0.33508384965833726, -0.31396680335322724, -0.29305586143722717, -0.2724470568463093, -0.25222967622234393, -0.23248564572037012, -0.21328906896197064, -0.1947059174745709, -0.17679386909082417, -0.15960228549505762, -0.14317231662332164, -0.12753711707282722, -0.11272215807888375, -0.09874561791816094, -0.08561883368394163, -0.07334679810793521, -0.0619286863166042, -0.0513583989540678, -0.041625109838479224, -0.03271380812693203, -0.024605826749759085, -0.017279350569775476, -0.010709899276690305 ], [ -0.5847335876960982, -0.5889845294472771, -0.5921244815090165, -0.5940933745313743, -0.5948383689838521, -0.594314837826081, -0.5924872516213844, -0.5893299416572895, -0.584827719796303, -0.5789763379090547, -0.5717827746204629, -0.5632653424438658, -0.5534536138572694, -0.542388170144124, -0.5301201815496488, -0.5167108312201614, -0.5022305983175217, -0.48675841757703964, -0.4703807334813157, -0.45319046735892976, -0.43528591537831574, -0.4167695949222252, -0.39774705648894515, -0.37832567826518226, -0.35861346089666024, -0.3387178406339364, -0.3187445397063109, -0.2987964731575692, -0.2789727311471917, -0.2593676546386061, -0.2400700203501811, -0.22116234787237388, -0.202720338130308, -0.18481244817045162, -0.16749960289473398, -0.15083504017594063, -0.1348642820378383, -0.11962522147473709, -0.10514831213698583, -0.09145684656128861, -0.07856730784781596, -0.06648977960195013, -0.05522839945375102, -0.04478184241590255, -0.03514382161111218, -0.026303595371943933, -0.018246471284100174, -0.010954299321616956, -0.004405947742692318, 0.0014222431702699545 ], [ -0.5443078852830252, -0.5476152340194873, -0.5498788277905666, -0.5510458745696598, -0.5510703990251862, -0.5499141073789959, -0.5475471615411263, -0.5439488414721512, -0.5391080775270356, -0.5330238381423278, -0.5257053624553831, -0.5171722320525778, -0.5074542807580829, -0.49659134591193177, -0.4846328686761967, -0.47163735433060716, -0.45767170612858177, -0.4428104480343784, -0.42713485261051787, -0.41073199062760435, -0.3936937188518801, -0.37611562217937466, -0.3580959260532015, -0.33973439507140446, -0.3211312339046508, -0.30238600701844276, -0.28359659405436455, -0.2648581978340694, -0.246262421573332, -0.22789643084598166, -0.2098422140315097, -0.19217595243561814, -0.17496750811907025, -0.15828003391432466, -0.1421697064040892, -0.1266855790363799, -0.1118695492852364, -0.0977564310086918, -0.08437412101862418, -0.07174384740721429, -0.059880486362747565, -0.048792933998914156, -0.03848452003115588, -0.028953450858920204, -0.020193270646179373, -0.012193330230852117, -0.0049392550439919525, 0.0015865953968650093, 0.007404682501110038, 0.012537862927093801 ], [ -0.5059686819950242, -0.5084130191964533, -0.5098782101678558, -0.5103180791408028, -0.5096928662524189, -0.5079699873681918, -0.5051247096501545, -0.5011407247443518, -0.49601060395055674, -0.48973612289486024, -0.4823284468939675, -0.4738081721791787, -0.464205222211562, -0.45355860223294253, -0.44191601874091235, -0.4293333735707776, -0.41587414459526495, -0.40160866667450623, -0.3866133274471788, -0.3709696929674411, -0.3547635782325531, -0.33808407750358627, -0.32102256916727434, -0.30367170983545244, -0.28612443246400376, -0.2684729634419303, -0.25080787372542024, -0.2332171790004176, -0.21578550337527846, -0.19859332009487196, -0.18171628115900829, -0.1652246455344375, -0.14918281296446612, -0.1336489673624648, -0.11867483062004558, -0.10430552457256903, -0.09057953603014579, -0.0775287773505291, -0.0651787331028344, -0.053548681997627856, -0.04265198244312396, -0.032496409793595804, -0.023084533520618677, -0.014414123080290553, -0.006478572080987233, 0.0007326686100095348, 0.007233657028117735, 0.013041532542502843, 0.018176100358137104, 0.022659432741428454 ], [ -0.469689802514476, -0.47134789728602744, -0.4720887867495156, -0.4718722956654662, -0.4706642773206884, -0.4684372798099763, -0.46517113417708966, -0.46085344881079515, -0.45547999670457107, -0.44905498495569374, -0.44159119906761735, -0.4331100180612819, -0.4236412999087782, -0.4132231401838151, -0.40190150989853834, -0.38972978111987144, -0.37676815103450756, -0.36308297662569644, -0.3487460330681076, -0.333833709427539, -0.3184261554000638, -0.30260639278453616, -0.2864594052832059, -0.27007122015714113, -0.2535279952551557, -0.23691512495268174, -0.22031637848938868, -0.20381308395873732, -0.18748337065057274, -0.17140148147762946, -0.15563716577503683, -0.1402551608571443, -0.12531476841804468, -0.11086952929153893, -0.09696699739532866, -0.08364861103514354, -0.07094965728957536, -0.058899323061121445, -0.04752082465321461, -0.03683160646607364, -0.026843598607882102, -0.017563522870145176, -0.00899323657094353, -0.0011301041639473208, 0.006032612827187922, 0.01250535613310122, 0.018301868924276432, 0.02343879841556329, 0.0279353083910987, 0.031812706124680235 ], [ -0.4354368064935543, -0.4363815064908896, -0.4364682517426359, -0.43566229565465364, -0.4339345470486955, -0.43126215323713835, -0.42762901072364246, -0.42302619010224474, -0.41745226369540145, -0.41091352689974747, -0.40342410698317255, -0.39500595605884836, -0.38568872799518505, -0.3755095419471859, -0.36451263786768684, -0.3527489316583865, -0.3402754794704079, -0.32715486203360267, -0.3134545008028715, -0.29924591822424906, -0.2846039546410324, -0.2696059543886855, -0.25433093356724656, -0.23885874189931533, -0.22326923100710916, -0.20764144135166696, -0.1920528199082321, -0.17657848031653423, -0.1612905166508607, -0.14625738102810426, -0.131543333973146, -0.11720797479644585, -0.10330585726111985, -0.08988619361874917, -0.07699264779281623, -0.06466321621502225, -0.052930192695938905, -0.04182021184247975, -0.031354363998375545, -0.021548373527238596, -0.012412831496538379, -0.003953473443861988, 0.0038285071193282505, 0.010936118535340489, 0.01737621270748524, 0.023159116530628632, 0.02829826005907221, 0.03280980752521545, 0.03671229639691176, 0.04002628874971159 ], [ -0.4031680571360432, -0.4034682304597361, -0.40296700439041566, -0.4016345312649747, -0.39944626064805355, -0.39638344848282925, -0.39243359929548105, -0.38759082990467086, -0.38185614483831043, -0.375237615793121, -0.36775045989149735, -0.359417014078002, -0.35026660562576595, -0.3403353212606215, -0.32966567973837013, -0.31830621473094034, -0.30631097652494743, -0.2937389622848865, -0.28065348549557534, -0.2671214957230512, -0.2532128600910435, -0.23899961794478175, -0.22455522013939966, -0.20995376430150836, -0.19526923729151013, -0.1805747759291616, -0.16594195679300383, -0.15144012550447106, -0.13713577529414644, -0.12309198376786679, -0.10936791561597947, -0.09601839754643415, -0.08309357001121831, -0.07063861840837693, -0.05869358446975048, -0.047293256590765775, -0.03646713602164353, -0.026239474207175206, -0.016629375200495122, -0.0076509560288327005, 0.0006864428264252709, 0.00837800506127051, 0.015423152601791612, 0.021825234204551958, 0.027591196326427925, 0.03273124340979883, 0.03725849403117598, 0.04118863858853605, 0.044539603395555405, 0.04733122524454525 ] ], "zauto": true, "zmax": 2.9220045365880734, "zmin": -2.9220045365880734 }, { "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.24846017519358524, 0.23871551459339946, 0.22920593794155233, 0.21998223218098167, 0.21113642414979794, 0.20280961041574072, 0.19519680062642744, 0.18854623533732026, 0.1831499057614711, 0.17932213562064614, 0.17736529506093926, 0.17752673716364245, 0.17995736550791894, 0.1846854058477909, 0.19161476544434836, 0.20054715254488395, 0.2112178955831777, 0.22333297389282675, 0.23659864449355686, 0.25074073642189965, 0.2655146878341089, 0.2807089711342746, 0.29614451359999117, 0.31167205733226866, 0.32716869437066226, 0.3425342739796393, 0.3576880303289611, 0.3725655755156033, 0.38711629419942717, 0.4013011232594101, 0.41509067765812363, 0.42846367722175627, 0.44140563000842703, 0.45390773197808565, 0.4659659476220296, 0.4775802410688709, 0.4887539315718513, 0.49949315110901177, 0.5098063851315321, 0.5197040803612749, 0.5291983060566567, 0.5383024574139789, 0.5470309918078107, 0.5553991904364269, 0.5634229396460958, 0.5711185277647107, 0.5785024546736447, 0.5855912525723436, 0.5924013174264549, 0.598948751421968 ], [ 0.23381233664005976, 0.22423767397367458, 0.2149038032094102, 0.20584838058379615, 0.1971532731609177, 0.18895419814256267, 0.18144733233893381, 0.17488997410112422, 0.16959125997007488, 0.16588878134477353, 0.164109420939826, 0.16451910308493034, 0.1672745600753299, 0.1723943552157524, 0.17976032345834575, 0.18914675696167113, 0.20026340750130245, 0.21279697945335557, 0.22644201079112247, 0.24091926449439077, 0.2559839967170428, 0.2714276059758967, 0.2870756419982816, 0.3027841823855751, 0.3184357444700014, 0.3339353296611832, 0.34920686052042127, 0.36419009056306806, 0.37883797944953224, 0.39311448937954435, 0.4069927471336419, 0.42045351662127123, 0.4334839319496621, 0.4460764475203903, 0.4582279679922207, 0.46993912656571435, 0.48121368483488414, 0.49205803148779503, 0.5024807605566501, 0.5124923128586827, 0.5221046668519185, 0.5313310674473878, 0.5401857834352443, 0.5486838861346646, 0.5568410436821198, 0.5646733270282732, 0.5721970252067847, 0.5794284687480702, 0.5863838612150248, 0.5930791197159515 ], [ 0.21928872375135164, 0.20994054707135304, 0.20084561850528712, 0.19202651303202764, 0.18355301131800744, 0.17555370330777756, 0.1682244798154802, 0.16183060367592528, 0.15669757723131536, 0.15318550416217283, 0.151644417373798, 0.15235609236263295, 0.1554788258540914, 0.16101669589304352, 0.168825888834582, 0.17865235673814972, 0.19018214094872316, 0.20308640299760547, 0.2170523506744763, 0.2317998155861482, 0.2470872944937389, 0.2627117131910784, 0.27850510231507813, 0.29433013742219016, 0.3100755767212728, 0.32565206739405406, 0.34098848707647694, 0.35602883886194586, 0.37072965481509423, 0.38505784199310267, 0.3989889033360491, 0.4125054718643739, 0.42559610491330363, 0.4382542932782822, 0.45047764729270173, 0.46226722784453317, 0.4736269952739938, 0.48456335317916877, 0.49508476759275927, 0.5052014449543181, 0.5149250549234684, 0.5242684864574982, 0.5332456277741308, 0.5418711628705899, 0.5501603791827766, 0.5581289827348093, 0.5657929187278975, 0.5731681969204979, 0.5802707223296618, 0.5871161327113262 ], [ 0.20486585518624653, 0.19579187397520614, 0.1869911969085555, 0.17846935896694957, 0.1702822314113357, 0.16254979175065193, 0.1554666059017489, 0.1493052906172921, 0.1444073115457061, 0.1411545394726412, 0.13991816860326384, 0.1409917785779841, 0.14452932756982834, 0.15051438944405954, 0.15877373835486375, 0.16902480039175383, 0.18093287169740435, 0.19415822536882535, 0.20838564571979332, 0.22333831604880497, 0.23878131347633477, 0.25451950883272023, 0.2703930732395499, 0.2862723704102768, 0.3020530832146201, 0.3176519057940284, 0.33300287724081856, 0.3480543216600724, 0.36276632006859816, 0.3771086328452715, 0.39105899773333885, 0.4046017386085857, 0.4177266305207841, 0.43042797552102113, 0.442703851224465, 0.45455550007564083, 0.46598683215861847, 0.4770040184080858, 0.4876151544680452, 0.4978299783987258, 0.5076596280851865, 0.5171164266452581, 0.526213686425501, 0.5349655243370264, 0.543386683319125, 0.5514923566101729, 0.5592980132219006, 0.5668192245185943, 0.5740714930606292, 0.5810700858511328 ], [ 0.19051663890240061, 0.18175228879879757, 0.17328970761235618, 0.1651153703490679, 0.1572694954985666, 0.14986228071339217, 0.1430865152846367, 0.1372223397627214, 0.13262752640601294, 0.1297052841668447, 0.12884542594639042, 0.1303477403055079, 0.1343539627571964, 0.14081975255227383, 0.14953853377506873, 0.16019980314206458, 0.1724520923298385, 0.18595015826367473, 0.20038155896467236, 0.2154770891191188, 0.2310115712929848, 0.24680003159223607, 0.26269226181426564, 0.27856727314372437, 0.2943282733284166, 0.30989835867991505, 0.32521691640811484, 0.3402366596904585, 0.35492120045670766, 0.3692430698175914, 0.3831821081048779, 0.39672415924499116, 0.40986001539239214, 0.42258456690315094, 0.434896120009982, 0.4467958503430839, 0.4582873651064986, 0.4693763505873646, 0.4800702849914538, 0.4903781995425834, 0.5003104734799818, 0.5098786511165619, 0.519095271526078, 0.5279737037229459, 0.5365279823758509, 0.5447726411278249, 0.5527225424418353, 0.5603927045070174, 0.5677981270825349, 0.5749536191872366 ], [ 0.1762148246821488, 0.16777974056225528, 0.15968426173586311, 0.15189366311729707, 0.1444307950647421, 0.13739525039865647, 0.13097833596232344, 0.12546897470342175, 0.12124272073285053, 0.1187242821141224, 0.11831892164865913, 0.12032503848828478, 0.12486176159078928, 0.13184782993960906, 0.14103931774970738, 0.15209930735723765, 0.16466453608596707, 0.17839018543601584, 0.19297191598842056, 0.2081522696696428, 0.22371877160067555, 0.2394986201137735, 0.25535256692163577, 0.27116914464555375, 0.2868596454766426, 0.3023539131100693, 0.3175968777712804, 0.3325457268653545, 0.34716760477505604, 0.36143774889689945, 0.37533798454735984, 0.38885551514900735, 0.4019819552450726, 0.4147125625912759, 0.4270456323426478, 0.43898202170548767, 0.45052477778559236, 0.46167884505275697, 0.4724508320859436, 0.4828488202190952, 0.4928821994761225, 0.5025615198261675, 0.5118983483358446, 0.5209051252459697, 0.5295950143369634, 0.537981745132538, 0.5460794464769693, 0.5539024727534785, 0.5614652254386249, 0.5687819737678974 ], [ 0.16194107438643618, 0.15383548724666035, 0.14611814080948224, 0.13873081681167182, 0.13167724851647028, 0.1250459481122927, 0.11902793743977344, 0.11392359187237794, 0.11012921583306919, 0.10809186095773683, 0.10822795570568057, 0.11082394046973514, 0.1159626676914165, 0.12351528925488695, 0.13319692244399606, 0.14464710369966088, 0.15749690374587638, 0.17140841742324686, 0.18609080144622897, 0.20130231637078277, 0.21684593490156234, 0.23256286976927149, 0.2483260569465781, 0.2640343633182163, 0.2796077027194474, 0.29498301301669105, 0.31011097621606154, 0.32495335719877017, 0.33948085161599545, 0.3536713523876339, 0.36750856112133884, 0.3809808841917344, 0.3940805634513071, 0.40680299929593056, 0.41914622979233424, 0.43111053436525854, 0.4426981345548459, 0.45391296787247765, 0.4647605139902309, 0.47524765551015646, 0.4853825584441914, 0.495174560330255, 0.504634056626811, 0.5137723786571735, 0.5226016588869337, 0.5311346816677565, 0.5393847197115578, 0.5473653584089393, 0.5550903116163382, 0.5625732336595778 ], [ 0.14769125248250803, 0.13989206638475865, 0.1325428589429933, 0.12555952193368222, 0.1189248489440371, 0.1127161592510777, 0.107126481597622, 0.10247209215095254, 0.09917479108007901, 0.09770516124963714, 0.09848403408052314, 0.10177049860351967, 0.10759317686871613, 0.11576378671982494, 0.12595447350812447, 0.13778639679242485, 0.1508926690953874, 0.16494942706728183, 0.17968475810947646, 0.19487641104857376, 0.2103453128266331, 0.22594834000819303, 0.24157170653553328, 0.25712534833332035, 0.27253829684047925, 0.28775491214129195, 0.30273182981466823, 0.31743549304035684, 0.3318401652625365, 0.3459263396528524, 0.3596794777644043, 0.3730890216035264, 0.38614763194784685, 0.3988506121388936, 0.4111954815769338, 0.4231816673022512, 0.4348102857180519, 0.4460839899066303, 0.4570068612275622, 0.46758432702244573, 0.4778230893115855, 0.48773105236196446, 0.49731723992725285, 0.5065916957890678, 0.515565363928406, 0.5242499471755432, 0.5326577454625556, 0.5408014767663765, 0.5486940854167367, 0.5563485435995378 ], [ 0.13348824094144715, 0.12594428537348168, 0.11892879283576042, 0.11232950807388067, 0.10610643673094422, 0.10032603043825833, 0.09518700644252943, 0.09102823735951913, 0.08830362873743741, 0.08750753512502413, 0.08905292906266898, 0.09314825482052812, 0.09974501030298367, 0.10858436100953717, 0.11929748866404971, 0.13149614153862033, 0.14482529152860796, 0.15898292550759696, 0.1737214296521366, 0.18884148814977053, 0.20418414733107534, 0.21962331837546462, 0.23505938261652928, 0.2504139370896659, 0.2656255283243112, 0.28064619735664365, 0.29543868372008625, 0.3099741684762447, 0.3242304633795098, 0.338190572937363, 0.35184156963053315, 0.3651737316946735, 0.3781798992130123, 0.39085500899354747, 0.403195772586001, 0.4152004653062867, 0.42686879752907503, 0.4382018428840016, 0.44920200136715516, 0.45987297873848204, 0.4702197668915466, 0.4802486131309105, 0.48996696945265933, 0.4993834159689951, 0.5085075555101668, 0.5173498791232284, 0.5259216046004662, 0.534234492237241, 0.5423006436685511, 0.5501322908079902 ], [ 0.11939997451674744, 0.11202567987799307, 0.1052804452062914, 0.09902243977927037, 0.09318731356809576, 0.08783167670776719, 0.08316554542421038, 0.0795599618474569, 0.07750889492551587, 0.07752629664173633, 0.07999351544623574, 0.08503309042884463, 0.09249307124723011, 0.10203850257385663, 0.11326951032882936, 0.12580277872576706, 0.13930721606093344, 0.1535108216994839, 0.16819522023097136, 0.1831868691908525, 0.19834854495375762, 0.2135721242751479, 0.2287727145705383, 0.2438839211527891, 0.25885402050647754, 0.2736428540310354, 0.28821930558811126, 0.3025592632239836, 0.31664399002392124, 0.3304588442832779, 0.34399229827292027, 0.3572352103352625, 0.37018030861423556, 0.38282184752745246, 0.39515540079631684, 0.4071777577839505, 0.41888689314155136, 0.4302819832818016, 0.44136344687290374, 0.45213299026369175, 0.46259364242020184, 0.47274976752078546, 0.48260704678849786, 0.49217242441118847, 0.5014540154795899, 0.5104609767131277, 0.5192033432765538, 0.5276918371417124, 0.5359376541421514, 0.5439522380416187 ], [ 0.10556900941394702, 0.09823583173010544, 0.09166142130390371, 0.08567548697926257, 0.08018906873279355, 0.07525147733596987, 0.07109263581405142, 0.06812887414185272, 0.06690092921464587, 0.06792507107223991, 0.07150514473207563, 0.07762835389141444, 0.08601754761475391, 0.0962707822463229, 0.10797919076135798, 0.12078443439261592, 0.13439265397440314, 0.14856932869993378, 0.1631290927764501, 0.17792593006731217, 0.19284509537773642, 0.2077967132889363, 0.22271069498243543, 0.23753264264316193, 0.2522205057364873, 0.2667418342625763, 0.28107152785514117, 0.2951900112183209, 0.3090817832714771, 0.32273429539572485, 0.3361371173754922, 0.3492813506044205, 0.36215924850601217, 0.3747640048628148, 0.3870896723235256, 0.39913117587819663, 0.4108843894322492, 0.42234624751836986, 0.43351486838305814, 0.4443896689357463, 0.4549714561924321, 0.46526248379793483, 0.47526646593895006, 0.48498854445465317, 0.49443520819839454, 0.5036141666687117, 0.5125341825515247, 0.5212048700224436, 0.52963646736938, 0.5378395936441706 ], [ 0.09226343786443617, 0.08478997530705001, 0.07824107503591399, 0.07242564192049436, 0.06723419096442261, 0.06271518685002447, 0.05913216228897703, 0.05696277822676071, 0.056790018653274675, 0.059081579402585495, 0.06398266683112114, 0.07129219254061701, 0.08061146996018799, 0.09150676950701365, 0.10359507613319795, 0.11656555873143633, 0.1301731380478427, 0.1442256671576425, 0.15857234570706652, 0.17309478329790576, 0.18770028048597479, 0.20231665196470416, 0.21688808461671494, 0.2313717192340906, 0.24573478254866718, 0.2599521768455473, 0.27400447586702875, 0.28787629376183044, 0.301554999077557, 0.31502974465722905, 0.32829078057494937, 0.3413290131898695, 0.35413577034996474, 0.3667027314488257, 0.37902198165348755, 0.39108615202426306, 0.4028886110314805, 0.4144236776227784, 0.425686831013629, 0.4366748973795482, 0.4473861983839951, 0.45782065087769297, 0.467979811139516, 0.47786686072176665, 0.4874865343347635, 0.4968449932487052, 0.5059496503602688, 0.51480895529533, 0.5234321496153859, 0.5318290032915431 ], [ 0.0799644170547108, 0.07211354579719631, 0.06539038870284548, 0.05960561093649647, 0.05464573853837001, 0.05057538640791608, 0.047713522958134594, 0.04660840503807666, 0.04783552010879547, 0.051692259030372195, 0.05805811439395017, 0.0665340222379189, 0.07665882246068444, 0.08802901978235829, 0.10032533622743321, 0.11330136078802303, 0.12676607431449255, 0.1405698767785824, 0.15459492028476937, 0.16874847335986437, 0.1829580897364302, 0.19716779639110554, 0.2113348825503477, 0.22542709889513074, 0.2394201970169524, 0.2532957941762596, 0.2670395670812192, 0.2806397786675074, 0.2940861337356833, 0.3073689482013611, 0.3204786056216844, 0.33340526533373577, 0.346138780012491, 0.358668777203942, 0.37098485937321923, 0.38307687974805327, 0.394935255966883, 0.406551289398718, 0.4179174642204146, 0.42902770635809934, 0.4398775879104384, 0.4504644675708515, 0.4607875618882488, 0.47084794604081215, 0.480648486224141, 0.4901937088066707, 0.49948961405918685, 0.5085434444560676, 0.517363419187967, 0.5259584475397772 ], [ 0.06949969163428046, 0.061015386137989895, 0.053883469088538534, 0.04796646327713987, 0.043193728004721196, 0.03968783945320739, 0.03784684011472365, 0.03823807241254747, 0.04125235987099993, 0.04682750346746871, 0.05455183673368655, 0.06393612540453224, 0.07456595350496098, 0.0861266579333228, 0.09838260582447296, 0.1111535027533619, 0.12429789087256879, 0.137703126162935, 0.1512793523271905, 0.16495554493745918, 0.1786764931516265, 0.1924001625940083, 0.20609522458831722, 0.21973871291951338, 0.23331384537602037, 0.2468080690094771, 0.2602113828487861, 0.27351497488436627, 0.28671018933564973, 0.299787819531984, 0.3127377034011951, 0.3255485839972057, 0.3382081876136939, 0.3507034671667548, 0.36302095839198495, 0.3751472001203527, 0.38706917623982773, 0.3987747446122886, 0.410253026086916, 0.42149473407393073, 0.4324924315403705, 0.44324070769905255, 0.4537362712092908, 0.4639779605856045, 0.47396667588527513, 0.4837052387085693, 0.4931981901044749, 0.5024515380719933, 0.5114724678914354, 0.5202690294217716 ], [ 0.06215894346000624, 0.052919921299288915, 0.04524915180307266, 0.03913845302568418, 0.034650161864346135, 0.03202444058702198, 0.03167762838063307, 0.0339409258267016, 0.03874509763257499, 0.04566742137962564, 0.05421155720038992, 0.06397090951756577, 0.07464793362666351, 0.08602574233788428, 0.09794011572262105, 0.11026145795313229, 0.12288480192166928, 0.1357245891331507, 0.1487117995660064, 0.1617919853764283, 0.17492347857370194, 0.18807549038328658, 0.20122606681832794, 0.2143599803743487, 0.22746667560571385, 0.24053838297033184, 0.2535684926726574, 0.2665502502832822, 0.27947580476573425, 0.2923356103764341, 0.30511815873013637, 0.3178099976839001, 0.3303959806766851, 0.34285968413862045, 0.3551839310199347, 0.36735136402877355, 0.3793450209688521, 0.39114887475305987, 0.40274831070495765, 0.41413052266937145, 0.425284816827542, 0.4362028179825338, 0.4468785777248875, 0.45730858765306276, 0.4674917039952733, 0.4774289927272137, 0.48712350664737236, 0.4965800078065616, 0.5058046500895467, 0.5148046375077774 ], [ 0.05949284634565082, 0.04978568186379041, 0.0418714101180866, 0.035915397318605206, 0.03213992968282776, 0.030800696754443628, 0.03203851734533912, 0.035711834987092225, 0.04143296274298311, 0.04875517591633365, 0.05730170588080813, 0.06679128969735763, 0.07701795759099406, 0.08782606082642387, 0.09909256206604079, 0.11071679542181762, 0.12261527874035932, 0.1347192904151742, 0.14697360732088086, 0.15933545767169674, 0.17177323936269387, 0.184264880117678, 0.1967959000084689, 0.20935732029362852, 0.22194358259078706, 0.23455062738102603, 0.24717424899135287, 0.25980880593469974, 0.27244632637686367, 0.28507601180634534, 0.29768411019688035, 0.31025410527346725, 0.3227671525595844, 0.3352026862603839, 0.34753912292839073, 0.3597545962682354, 0.37182766971608433, 0.3837379869566156, 0.3954668332729893, 0.4069975913636909, 0.41831608361993106, 0.42941079904614793, 0.4402730075343257, 0.4508967676305294, 0.46127883670407577, 0.47141849480732645, 0.4813172955781242, 0.49097875923652595, 0.500408023942059, 0.5096114723762986 ], [ 0.06245017518948681, 0.052928991556953915, 0.04544298814196897, 0.040226445448155686, 0.03745688323722105, 0.03715957483758855, 0.0391557822446779, 0.04312168250211287, 0.04869796698778626, 0.055562620758394195, 0.06345475911857461, 0.07217130505830681, 0.08155414453890245, 0.0914772481524807, 0.10183732010922242, 0.11254825147896809, 0.12353835633487634, 0.1347491446403003, 0.14613462221184503, 0.1576604770856437, 0.16930285335524295, 0.1810466649057808, 0.1928835538061231, 0.20480966911281454, 0.21682345672427367, 0.22892363218751374, 0.24110747200184376, 0.25336951481890196, 0.265700717778023, 0.2780880689874629, 0.2905146183822547, 0.30295985918255863, 0.3154003734531614, 0.3278106486975748, 0.3401639768489266, 0.35243335956437216, 0.36459236065953127, 0.376615864268405, 0.3884807132442609, 0.4001662150301857, 0.4116545114565319, 0.42293081516418296, 0.4339835194491873, 0.4448041911176828, 0.4553874580685943, 0.46573080514943466, 0.4758342934717247, 0.48570021976498723, 0.4953327333393943, 0.5047374286501933 ], [ 0.07059731386941458, 0.06172197441215606, 0.05499239879156375, 0.05056274325832524, 0.04845485679236998, 0.04852526452555258, 0.05050747062735567, 0.05409778177665823, 0.059018332558463255, 0.06503721496645709, 0.07196581019882023, 0.07965073734505193, 0.08796597064674207, 0.09680640238024632, 0.10608335715272495, 0.11572203512459092, 0.12566037553090634, 0.135848626787294, 0.14624897901239745, 0.1568348310398822, 0.16758950693520036, 0.17850443567635532, 0.1895769364681331, 0.20080781439038853, 0.21219898261328912, 0.22375130581556643, 0.23546281869412614, 0.24732742292538845, 0.2593341117651844, 0.2714667185332367, 0.2837041383922457, 0.29602093689720493, 0.30838823737920773, 0.32077477353963796, 0.3331480019277913, 0.3454751871418111, 0.35772439547068885, 0.36986535554633654, 0.38187016410137453, 0.39371382960293955, 0.40537465634293346, 0.4168344774457289, 0.42807874849332184, 0.43909651525883653, 0.44988027024285937, 0.4604257137914774, 0.47073143667357303, 0.48079854201609534, 0.49063022523819133, 0.5002313308717031 ], [ 0.08259908398202828, 0.0744108465719262, 0.0683061808462863, 0.0643425089954045, 0.062450623420716986, 0.062442281836645276, 0.06406191690995049, 0.06704896674492976, 0.07117642731148441, 0.0762601178698893, 0.08215251074458106, 0.08873353110649031, 0.09590315033076616, 0.10357648586303367, 0.11168105364116356, 0.12015562151137513, 0.12895002148596196, 0.1380252730279555, 0.14735348520266864, 0.15691720369171275, 0.16670808272557597, 0.17672494059433114, 0.1869713767620893, 0.19745318749704838, 0.20817582651751906, 0.21914213218175943, 0.2303504961604156, 0.24179358975719253, 0.2534576999012146, 0.2653226633954533, 0.27736233179062075, 0.2895454568261989, 0.3018368626371696, 0.31419876730921575, 0.32659213022627, 0.33897792718359476, 0.35131828545017146, 0.3635774397284124, 0.3757224933060772, 0.3877239851024941, 0.39955627321432763, 0.411197750515002, 0.4226309097138243, 0.43384227564495453, 0.44482222253132436, 0.4555646941149673, 0.4660668449916338, 0.4763286220875178, 0.4863523056979883, 0.49614202959099446 ], [ 0.097149939079531, 0.08949192624115784, 0.0837664063147129, 0.07997326590530111, 0.07801302224606119, 0.07770345170375628, 0.0788195352580549, 0.08113642456296742, 0.08445730361198005, 0.0886222365263729, 0.09350477763755677, 0.0990044247590337, 0.10503959915901986, 0.11154274980275404, 0.11845764077106304, 0.1257382967027124, 0.1333489009644691, 0.1412639583981114, 0.14946817738991253, 0.15795573658868317, 0.16672882168684283, 0.1757955029968582, 0.18516715205292958, 0.19485566122617254, 0.2048707428571092, 0.21521755733724754, 0.22589486630030492, 0.23689383825991606, 0.24819755794170997, 0.25978121498120565, 0.27161288113332344, 0.2836547362549975, 0.2958645783194285, 0.30819745306500435, 0.32060726054296135, 0.33304823076252826, 0.34547619961626075, 0.35784965162288956, 0.3701305231840932, 0.3822847777173587, 0.3942827733321242, 0.40609944702517026, 0.4177143392318647, 0.42911148105417546, 0.4402791649298892, 0.4512096185357444, 0.4618986014204706, 0.4723449440105921, 0.48255004885775654, 0.49251737393973316 ], [ 0.11332328970284135, 0.10601883396760463, 0.10047205044515681, 0.09665635301725557, 0.09446981842028003, 0.09375026266456449, 0.09430359178821417, 0.09593404764780823, 0.09846596751995379, 0.10175344965684777, 0.10568052652851116, 0.11015659884837005, 0.11511092014376928, 0.1204881193369405, 0.1262453580946932, 0.1323509300142523, 0.138783754113459, 0.14553313800328607, 0.15259828197010278, 0.1599871841327273, 0.16771482271853122, 0.17580068477801336, 0.1842658515708249, 0.1931299285574992, 0.20240812613762038, 0.21210876813639068, 0.22223144311362894, 0.2327659318993443, 0.24369195416732223, 0.25497968751527117, 0.26659093533038625, 0.2784807653865228, 0.2905994170405263, 0.3028942820918432, 0.31531179678164, 0.3277991291491556, 0.3403055952041934, 0.3527837798381124, 0.3651903691220502, 0.3774867188718969, 0.3896391922209569, 0.4016192998207441, 0.41340367353180846, 0.42497390063004997, 0.436316242190031, 0.4474212570658834, 0.4582833517841278, 0.4689002763422809, 0.4792725858927015, 0.4894030881269059 ], [ 0.13051987191544073, 0.12342823630512444, 0.11792359042017193, 0.11396960924997929, 0.1114721926044911, 0.11029108037328086, 0.11025976051446548, 0.11120724483426658, 0.11297541535748362, 0.1154288533197151, 0.11845768929129034, 0.1219759995931173, 0.12591841064149456, 0.13023673296904195, 0.13489746347652654, 0.1398802546368472, 0.14517702367966154, 0.15079121428316816, 0.15673675350129093, 0.1630363937919788, 0.16971932787431213, 0.17681815851341703, 0.18436545768633525, 0.19239023908014183, 0.2009146906870499, 0.20995147962713673, 0.21950186525137783, 0.22955475591154884, 0.240086734480711, 0.25106297144123363, 0.26243885580310283, 0.2741621158954454, 0.2861751821039334, 0.2984175615755907, 0.3108280417567877, 0.3233466009376343, 0.3359159650096478, 0.3484827996157206, 0.3609985607649064, 0.3734200449751336, 0.38570968553827306, 0.39783563918068804, 0.40977170143815583, 0.42149708252575446, 0.43299607008867547, 0.44425760159765215, 0.4552747671944382, 0.4660442630034024, 0.4765658146906314, 0.4868415908117541 ], [ 0.14835056472171979, 0.14137115648237567, 0.13582113316958436, 0.13166246991383154, 0.1288118872359694, 0.12714938616586643, 0.12653234164391036, 0.12681144084917564, 0.12784452398256357, 0.12950588812523303, 0.13169071220496173, 0.1343157807751004, 0.13731818741342958, 0.14065342545833673, 0.14429368002756793, 0.14822656039779622, 0.15245411152741242, 0.15699174880564068, 0.16186674261891323, 0.16711598836919436, 0.17278297689384833, 0.17891407588042352, 0.18555439897996867, 0.19274364380528586, 0.2005123088430212, 0.2088786566932119, 0.21784669416849753, 0.2274053110159997, 0.23752858009326755, 0.24817709218373335, 0.2593000958647417, 0.27083815138349554, 0.28272599478437216, 0.2948953414751965, 0.3072774237182737, 0.31980513534652655, 0.3324147314083006, 0.34504708832066905, 0.3576485667986699, 0.370171536862823, 0.3825746266801645, 0.3948227508560595, 0.4068869642095779, 0.41874417755518745, 0.4303767644400705, 0.4417720827130473, 0.4529219319671903, 0.46382196664070185, 0.47447108411994304, 0.4848708068941758 ], [ 0.1665527422636366, 0.1596170457421686, 0.1539678997668358, 0.14956923312711334, 0.14634880768172898, 0.144204417726168, 0.14301399284020985, 0.1426474094885702, 0.1429775021333992, 0.1438884481053876, 0.14528089607424888, 0.14707426531231932, 0.14920717747747966, 0.15163698704872075, 0.1543390624816878, 0.15730607102257277, 0.16054719119412109, 0.16408698665394175, 0.1679636323640406, 0.17222626512571396, 0.17693139532451901, 0.18213851682959342, 0.18790523743293983, 0.19428237989991595, 0.20130954687753405, 0.20901159704160074, 0.21739636093931367, 0.22645376121856736, 0.23615632452956212, 0.24646091004750753, 0.25731135640291525, 0.2686416819784965, 0.2803794693127021, 0.2924491153668859, 0.3047747165306399, 0.31728245617932527, 0.3299024518733834, 0.3425700855937025, 0.3552268797947996, 0.3678209977780277, 0.3803074458767227, 0.3926480446897005, 0.4048112231905206, 0.41677167694888745, 0.4285099218929024, 0.4400117684895916, 0.4512677374976153, 0.4622724367128955, 0.4730239174784861, 0.48352302938445396 ], [ 0.18494116630769353, 0.1780042568227971, 0.17222513429789582, 0.16757123030143423, 0.16398059294660064, 0.16136639624409058, 0.15962427733534718, 0.1586411825889157, 0.1583041124288286, 0.15850744572717881, 0.15915819377997642, 0.1601792273004923, 0.16151096229016818, 0.1631121008507549, 0.16495987971616077, 0.16705002206791797, 0.1693963393419013, 0.17202976430890765, 0.17499654533952277, 0.1783553933668851, 0.18217352496586509, 0.18652174854341938, 0.19146894648638388, 0.19707646311485036, 0.20339297658492822, 0.21045039565133497, 0.21826118953757737, 0.22681736212972364, 0.23609106119468204, 0.24603661013122585, 0.25659359806086335, 0.26769058619860486, 0.27924899020667154, 0.29118676726354364, 0.3034216466859783, 0.31587376338985396, 0.3284676587066033, 0.3411336884919667, 0.3538089209527318, 0.36643762127881985, 0.37897141589128003, 0.39136921491148174, 0.40359695435994375, 0.415627204017986, 0.4274386748974083, 0.43901565225070527, 0.45034737543132153, 0.46142738368075303, 0.4722528460341207, 0.4828238931166738 ], [ 0.20338020278461866, 0.19641421814703489, 0.19049000491760004, 0.18557905184885756, 0.18162867192369986, 0.17856530441040583, 0.17629991200250184, 0.17473467257855466, 0.17376992917175213, 0.17331046736948225, 0.17327055463173235, 0.1735776109335581, 0.17417470482536732, 0.17502219722238785, 0.17609880275902398, 0.17740218037285038, 0.17894898603938128, 0.1807741872927851, 0.18292939006319173, 0.1854799771644679, 0.18850099674333418, 0.19207194073057493, 0.19627077327503803, 0.20116775324623162, 0.20681969351543603, 0.21326528327343075, 0.22052196815819558, 0.2285846648535681, 0.2374263288550516, 0.2470001487168461, 0.2572429538154489, 0.2680793262011461, 0.27942590822125435, 0.2911954800256738, 0.30330051158492155, 0.31565603480761445, 0.32818180256816315, 0.34080378663302247, 0.3534551129972038, 0.3660765477449483, 0.37861663991845296, 0.39103161046350166, 0.4032850560710509, 0.41534751851513996, 0.4271959561014315, 0.4388131444349514, 0.4501870281901142, 0.46131004279415877, 0.4721784237622255, 0.48279152088091326 ], [ 0.22176781233044118, 0.21475731351946747, 0.20868396874137246, 0.2035234151170183, 0.1992312148409244, 0.19574529571311752, 0.19298997181860267, 0.19088105755822227, 0.1893314083292325, 0.18825624209061845, 0.18757778778104559, 0.1872290682333168, 0.18715684505618244, 0.18732386150038868, 0.18771050747547624, 0.18831593507473068, 0.1891585282247427, 0.19027552840699044, 0.19172157800310122, 0.19356598470029468, 0.19588863705731852, 0.19877469521091545, 0.2023084042250821, 0.20656657867283407, 0.21161243188835804, 0.21749043306550905, 0.22422275923297022, 0.23180768804754712, 0.24021999768518779, 0.24941316131640665, 0.2593229033884796, 0.26987156411637003, 0.28097271019202374, 0.292535516653116, 0.3044685888241244, 0.3166830504268113, 0.32909485941063643, 0.34162640809498324, 0.3542075159749337, 0.3667759397165473, 0.3792775174842535, 0.3916660454369682, 0.4039029617802188, 0.41595689350739073, 0.4278031053112272, 0.43942287948657766, 0.4508028492365646, 0.4619343044390657, 0.4728124874017176, 0.48343589540123694 ], [ 0.2400259305522175, 0.23296466010634018, 0.22674612269839398, 0.22134998731088104, 0.21673915022685805, 0.2128615592873982, 0.2096532483530938, 0.20704228782340953, 0.20495322403485075, 0.20331156516683438, 0.20204796516220594, 0.2011019070797598, 0.20042482590545665, 0.19998268848161965, 0.19975804920541407, 0.19975154034622258, 0.19998266943815063, 0.2004897218933375, 0.20132853831201125, 0.20256997573712585, 0.20429597824926524, 0.2065943642016811, 0.2095526542899636, 0.2132514694129491, 0.2177581673392642, 0.22312141999539378, 0.22936734005557738, 0.2364975582995861, 0.2444893722819155, 0.25329779182477646, 0.262859061576356, 0.2730950952676356, 0.2839182307782595, 0.29523579567795444, 0.30695411993776034, 0.3189817983378907, 0.3312321507159015, 0.3436249320539607, 0.3560874023343687, 0.3685548857148735, 0.38097094248390206, 0.3932872578284849, 0.4054633281190033, 0.4174660039932606, 0.42926893270254474, 0.4408519305014694, 0.4522003086374056, 0.4633041725306755, 0.47415771178528116, 0.4847584976707236 ], [ 0.2580943716198886, 0.25098297114158735, 0.2446290551312786, 0.23901612328876604, 0.23411361381201864, 0.22987828547876252, 0.22625653931445197, 0.22318750506025706, 0.22060662072256257, 0.21844940517989164, 0.21665516342940258, 0.21517044391673848, 0.21395214781217117, 0.2129702378604134, 0.2122099949800933, 0.2116737302047532, 0.21138179902179027, 0.2113727128205879, 0.211702125737119, 0.21244051602354694, 0.21366948882994133, 0.21547679524372382, 0.21795036522875905, 0.22117184857837818, 0.22521030039518955, 0.2301166948769813, 0.23591988132619773, 0.24262441364980744, 0.25021042083200873, 0.2586353946456142, 0.2678375156788206, 0.277739974324472, 0.2882556973783846, 0.2992919555224211, 0.3107544656462445, 0.3225507667498242, 0.33459279774793954, 0.3467987155472888, 0.35909405592372795, 0.3714123643532834, 0.383695421220072, 0.3958931682310755, 0.4079634202066286, 0.41987142490008805, 0.43158931617074214, 0.4430954934796092, 0.4543739527749045, 0.4654135892783966, 0.4762074902669146, 0.4867522346120832 ], [ 0.27592673071656704, 0.26877110006397054, 0.26229601440873346, 0.256488576568179, 0.2513240907909404, 0.2467671265870405, 0.24277332084967937, 0.2392918175454573, 0.23626817397692762, 0.2336475317063469, 0.23137786048148365, 0.22941312061564842, 0.22771623021815002, 0.22626174727402615, 0.2250381718071, 0.22404974241619824, 0.22331755797560765, 0.2228798198147196, 0.22279098443583414, 0.22311966014077952, 0.223945181826844, 0.22535295154458124, 0.22742881665835854, 0.2302529372401242, 0.2338937283811739, 0.23840251522024042, 0.24380948743242048, 0.25012138557066266, 0.2573211171309218, 0.26536922996456935, 0.2742069220394387, 0.28376009375495104, 0.2939438844442548, 0.30466717783365804, 0.31583668199645165, 0.32736034332930003, 0.33915000025561187, 0.3511232945166547, 0.3632049270911891, 0.37532737611699124, 0.38743119643013507, 0.39946500636889726, 0.41138524705308793, 0.42315577890782863, 0.4347473631387889, 0.4461370632958965, 0.45730759371334295, 0.4682466365523819, 0.4789461462938827, 0.48940165882836656 ], [ 0.2934874594287972, 0.2862975409217672, 0.27971880476970623, 0.2737417285907812, 0.2683469058576254, 0.2635058797277542, 0.25918256290302755, 0.25533518842716607, 0.25191868529810707, 0.24888734368982385, 0.2461976296147257, 0.2438110206666058, 0.24169674990742002, 0.23983435104680487, 0.2382158874875204, 0.23684772171259427, 0.23575164933611115, 0.23496519931473017, 0.23454090580666, 0.2345444028474517, 0.2350512875576936, 0.23614283607297298, 0.23790081995458093, 0.24040182933618717, 0.24371162798641513, 0.24788011489654743, 0.25293742896658494, 0.2588916060906015, 0.26572799785233864, 0.27341042273133515, 0.2818837921776933, 0.291077784244478, 0.3009110601918383, 0.31129554038006424, 0.32214035290945636, 0.3333552039200946, 0.34485305416394796, 0.35655209583899156, 0.3683770954729072, 0.3802602042584028, 0.392141345238118, 0.403968277679772, 0.41569642209131774, 0.42728851106471133, 0.4387141151552705, 0.4499490807537333, 0.46097490842791006, 0.47177809480433164, 0.48234945778078925, 0.4926834628004947 ], [ 0.31074965682063804, 0.30353849920417403, 0.2968761069504133, 0.2907561127919933, 0.28516390176328543, 0.2800772776485672, 0.27546759826717904, 0.27130135211215756, 0.26754211154490687, 0.26415277207746446, 0.2610979750465494, 0.25834660846004187, 0.25587428059392536, 0.2536656554707111, 0.25171652439124687, 0.25003546448364006, 0.24864491098986188, 0.2475814565668761, 0.24689520187804495, 0.24664802870754562, 0.24691075469511573, 0.2477592522503405, 0.2492697565084415, 0.25151372280778933, 0.2545526949644183, 0.2584336879925911, 0.26318555903962476, 0.2688167365579708, 0.27531451193571466, 0.282645895893027, 0.29075984179539555, 0.29959048098387914, 0.30906093265635326, 0.31908725262674337, 0.3295821574139065, 0.3404582725781211, 0.3516307740110043, 0.3630193927729356, 0.37454982536394255, 0.3861546307476345, 0.3977737090095393, 0.4093544529525652, 0.4208516514611902, 0.43222720826985855, 0.44344972561218454, 0.45449399084859937, 0.4653403959290588, 0.4759743140215503, 0.48638545408041894, 0.49656721176377205 ], [ 0.32769331910718275, 0.32047632493570344, 0.313752068361413, 0.30751712739896164, 0.3017612412294334, 0.29646785331240333, 0.29161503151400203, 0.287176753904687, 0.2831245213026385, 0.2794292356693082, 0.27606326839390205, 0.27300263245580836, 0.2702291634042293, 0.2677326019042562, 0.2655124532441884, 0.2635794783868026, 0.261956652807781, 0.2606794228153433, 0.25979510483245627, 0.25936131978260407, 0.2594434351003887, 0.260111095260619, 0.2614340431961637, 0.26347754820213604, 0.266297838406251, 0.2699379696354187, 0.27442453762535135, 0.2797655563027885, 0.28594969017870764, 0.29294686286429494, 0.3007100950361065, 0.30917828671522274, 0.31827957761853787, 0.3279349071726373, 0.3380614449724496, 0.34857565092943127, 0.35939582518795044, 0.37044409863215233, 0.3816478824357978, 0.3929408362491609, 0.4042634327190543, 0.4155631977504473, 0.4267946981860542, 0.43791933698945235, 0.4489050042482341, 0.45972562229628017, 0.47036061562853965, 0.48079433089962487, 0.4910154286332778, 0.5010162657009715 ], [ 0.3443039027933229, 0.3370981965675742, 0.3303350862266515, 0.3240138926293959, 0.3181283155323887, 0.31266688392506964, 0.30761371016068706, 0.30294954540731095, 0.29865311328902266, 0.2947026800879393, 0.2910778043830308, 0.2877611956000364, 0.2847405975597439, 0.2820105977286768, 0.27957424498273087, 0.2774443403841126, 0.27564425181966334, 0.27420810177837535, 0.27318019610718774, 0.27261360632430764, 0.27256789011581656, 0.27310602808418494, 0.2742907566245272, 0.2761805693907802, 0.2788257255124057, 0.2822646281569181, 0.28652091550884223, 0.2916015380107957, 0.2974959877548855, 0.3041767123287716, 0.3116006073729974, 0.3197113646557283, 0.3284423776808477, 0.3377198861424935, 0.3474660708853941, 0.3576018771858932, 0.36804942541906055, 0.37873394565855084, 0.3895852341480553, 0.400538670182096, 0.4115358530309617, 0.4225249247445647, 0.4334606414570172, 0.4443042479745093, 0.4550232013710944, 0.465590781023596, 0.475985615834954, 0.48619115441959837, 0.496195100444992, 0.5059888326816626 ], [ 0.3605711199761438, 0.3533949978094927, 0.34661674945402254, 0.3402382398938231, 0.3342567664569727, 0.3286654371906565, 0.3234537936812849, 0.31860868018294375, 0.31411534522976453, 0.3099587464821187, 0.30612501492077077, 0.3026030202540876, 0.29938596458455385, 0.2964729152625252, 0.2938701708543684, 0.2915923385605752, 0.28966299161471026, 0.28811477708789374, 0.2869888641542545, 0.28633366431081964, 0.28620281816791554, 0.28665252246556144, 0.287738354776226, 0.28951182770991973, 0.2920169556948777, 0.2952871357907247, 0.2993426251686742, 0.3041888428090139, 0.3098156372731402, 0.3161975565829246, 0.32329504569416745, 0.3310564003286906, 0.3394202401651351, 0.3483182397325694, 0.35767787154800135, 0.3674249631945628, 0.37748593296829436, 0.3877896323843396, 0.3982687773407704, 0.40886098784494973, 0.41950947860833254, 0.4301634523290406, 0.44077824814843264, 0.4513152934636212, 0.4617419009858436, 0.4720309465584614, 0.4821604577467836, 0.4921131388671399, 0.5018758548144195, 0.5114390934744354 ], [ 0.3764879208502741, 0.369360358793333, 0.3625909267196435, 0.35618383522656427, 0.35013963675314325, 0.34445554587860255, 0.3391259552803068, 0.3341431508178302, 0.32949821714213, 0.32518211246847434, 0.32118687801731144, 0.3175069339869356, 0.3141403994591834, 0.3110903583602923, 0.3083659784270005, 0.30598337735416253, 0.30396612365394127, 0.3023452638950294, 0.30115878734552703, 0.30045047619008125, 0.3002681435125671, 0.3006613267941336, 0.3016785724765833, 0.303364505916377, 0.30575692041861413, 0.3088841319296753, 0.312762829665042, 0.31739660874449666, 0.3227753034294294, 0.32887515666176304, 0.3356597744632429, 0.3430817358382499, 0.3510846730068582, 0.35960561148782244, 0.368577365947288, 0.37793081977435317, 0.3875969633742455, 0.397508616710399, 0.4076018065878182, 0.4178168033976318, 0.4280988442223555, 0.43839858074548393, 0.44867229407261844, 0.4588819173133633, 0.46899490306552544, 0.4789839685008566, 0.48882674655156394, 0.4985053681411712, 0.5080059975218303, 0.5173183404089997 ], [ 0.39204963845056695, 0.384989847792396, 0.37825299767099985, 0.37184544337918035, 0.3657706636238159, 0.3600295318252035, 0.3546207425485941, 0.3495413965835754, 0.34478773881838376, 0.34035603259624875, 0.3362435428822115, 0.33244958832767835, 0.3289766092314113, 0.32583118485446816, 0.32302492068722055, 0.3205751162246087, 0.31850511968474415, 0.3168442815107022, 0.3156274365990962, 0.31489387750233944, 0.31468582602262357, 0.3150464639497249, 0.3160176376450373, 0.3176373969838742, 0.3199375590387275, 0.322941495746284, 0.3266623309729514, 0.33110169723356186, 0.33624914958514257, 0.3420822698398202, 0.3485674263249433, 0.355661092652774, 0.36331158280690284, 0.37146103595432023, 0.38004748452115905, 0.38900685975054633, 0.39827482297163724, 0.4077883497242794, 0.4174870304629054, 0.42731408115569747, 0.4372170778816554, 0.4471484419227456, 0.45706570755693077, 0.46693160590416505, 0.47671399669993014, 0.48638567722685055, 0.49592409474082416, 0.5053109860407798, 0.5145319654835125, 0.5235760806826715 ], [ 0.40725328074050854, 0.4002803058940204, 0.3935992262684059, 0.38721833713770903, 0.38114372408972785, 0.375379491207612, 0.36992811049755636, 0.36479089534310943, 0.35996859346590404, 0.3554620864002019, 0.35127317296692506, 0.34740540375611667, 0.34386492240798305, 0.3406612580865662, 0.3378080031210727, 0.33532330222789103, 0.3332300775343538, 0.33155591953437624, 0.3303325903283771, 0.32959511280798215, 0.3293804563792798, 0.3297258724003411, 0.33066697476761603, 0.3322356963397316, 0.334458274348941, 0.33735342398575574, 0.3409308479089951, 0.34519020177386733, 0.35012059498160536, 0.3557006562144151, 0.36189914082837943, 0.36867600877737833, 0.3759838642920176, 0.3837696271279727, 0.39197630167774516, 0.40054472276557723, 0.4094151807833692, 0.41852885798278017, 0.4278290366676666, 0.4372620647898503, 0.4467780830883858, 0.4563315302078408, 0.4658814491020646, 0.47539162089839426, 0.48483055270083425, 0.4941713447202059, 0.5033914604372135, 0.5124724216868743, 0.5213994487911799, 0.5301610641849829 ], [ 0.42209695926814933, 0.4152293181552079, 0.40862627334023094, 0.40229785144849606, 0.3962524331763889, 0.3904969422417849, 0.385037127187858, 0.3798779377908344, 0.3750239921508676, 0.37048012379178624, 0.36625199034552286, 0.3623467167797201, 0.3587735369283092, 0.3555443879048052, 0.3526744038778836, 0.3501822502466319, 0.3480902384456034, 0.3464241674607175, 0.34521285214667574, 0.3444873209185796, 0.3442796949438223, 0.3446217943480834, 0.3455435495577171, 0.34707132271690677, 0.3492262608898379, 0.35202280687658233, 0.355467484266986, 0.3595580518669985, 0.3642830911891308, 0.3696220526735987, 0.37554574600260415, 0.3820172222633236, 0.38899296574591447, 0.39642429465032225, 0.40425886460756116, 0.4124421758363213, 0.4209190009428226, 0.42963467168138003, 0.43853618530996663, 0.447573111314313, 0.45669829538887424, 0.4658683690871078, 0.4750440808567011, 0.48419046813101235, 0.49327689176037187, 0.5022769542259361, 0.5111683224453741, 0.5199324749693706, 0.5285543921927112, 0.5370222069356668 ], [ 0.4365794443375063, 0.4298348132549765, 0.4233308416409595, 0.4170790759457979, 0.4110898877884525, 0.40537262643921407, 0.39993584041964025, 0.39478756894148254, 0.3899356995499176, 0.38538838306642503, 0.38115449080801556, 0.3772440922292389, 0.3736689238863058, 0.3704428135179577, 0.3675820169848212, 0.36510542208020225, 0.36303457333245115, 0.36139347732853916, 0.36020815979242493, 0.35950596370051185, 0.35931460087667344, 0.359660995232568, 0.36056998061949624, 0.36206293643265264, 0.3641564565589851, 0.36686115010463166, 0.37018066511936454, 0.3741110100591155, 0.378640223762681, 0.3837484157792793, 0.3894081681105909, 0.3955852603980378, 0.402239656844876, 0.40932667754762053, 0.41679827085841786, 0.4246043066097483, 0.43269382064666667, 0.441016156324494, 0.4495219654694289, 0.4581640472886729, 0.46689801723801866, 0.47568280820031184, 0.4844810135188806, 0.4932590859381575, 0.5019874089838211, 0.5106402584054123, 0.5191956715186301, 0.5276352419739689, 0.5359438568474993, 0.5441093920935696 ], [ 0.45069983569288324, 0.44409478109631384, 0.4377094425650373, 0.4315566738691867, 0.4256485422157046, 0.41999644650846313, 0.4146112850090405, 0.4095036722547409, 0.4046842018131374, 0.40016374745348804, 0.39595379064528086, 0.39206675708033883, 0.38851633942461977, 0.38531777821788893, 0.3824880684931127, 0.3800460572708676, 0.37801239772423323, 0.3764093305476205, 0.37526027254165234, 0.374589206565241, 0.3744198847872834, 0.37477487664813536, 0.3756745115356634, 0.3771357811953562, 0.3791712760863859, 0.3817882319006838, 0.3849877569412654, 0.3887642985954111, 0.3931053890434814, 0.3979916884674008, 0.4033973206516465, 0.40929047357532, 0.41563421893273955, 0.42238749158446115, 0.42950616390659063, 0.4369441508762758, 0.4446544883986844, 0.45259033799009674, 0.4607058833857333, 0.46895709707042005, 0.4773023657940063, 0.48570297311096094, 0.4941234436974976, 0.5025317588479696, 0.510899455523821, 0.5192016230525798, 0.5274168124260764, 0.5355268734045713, 0.5435167344756979, 0.5513741402433027 ], [ 0.4644573362084941, 0.45800709523949373, 0.45175827011990904, 0.4457248109762992, 0.43992019618486594, 0.4343575185266754, 0.4290496045339039, 0.4240091662543049, 0.4192489822762657, 0.414782101933607, 0.41062206318541244, 0.40678311084836355, 0.4032803978688801, 0.4001301485440474, 0.3973497596076101, 0.39495781363289695, 0.39297398008833495, 0.39141878334042524, 0.39031322434522475, 0.38967825357626257, 0.38953410610726263, 0.3898995242587577, 0.39079090695728386, 0.39222143600612297, 0.39420023621421746, 0.396731627777856, 0.3998145251873067, 0.40344202763740694, 0.4076012323926035, 0.41227328613740205, 0.4174336716894976, 0.42305271041716297, 0.4290962461283314, 0.4355264656295451, 0.4423028055301295, 0.449382894342748, 0.4567234828780689, 0.4642813231486747, 0.4720139650356829, 0.47988044945614405, 0.4878418856318794, 0.4958619076408622, 0.5039070114591465, 0.5119467781986923, 0.5199539924126396, 0.5279046664404097, 0.5357779830561755, 0.5435561693717734, 0.5512243151732608, 0.5587701487296504 ], [ 0.47785111471034303, 0.47156942507262195, 0.46547316529923705, 0.4595771752764501, 0.4538960734751286, 0.4484443132162464, 0.4432362589874757, 0.4382862816580449, 0.43360886979101715, 0.42921875222428263, 0.4251310247079986, 0.4213612707277284, 0.4179256638785283, 0.4148410365765351, 0.41212489792813417, 0.40979538276359073, 0.40787111476622195, 0.4063709697922246, 0.40531373114448505, 0.4047176366126116, 0.4045998269264084, 0.4049757158505026, 0.4058583121429017, 0.40725753163406925, 0.40917954260148975, 0.41162618868399153, 0.4145945305721492, 0.4180765408773974, 0.4220589765720824, 0.4265234411635051, 0.4314466355077721, 0.43680078321611554, 0.44255420529000694, 0.44867201008104407, 0.4551168596520743, 0.4618497723318205, 0.4688309233776178, 0.47602041043275134, 0.4833789569043217, 0.49086853350489684, 0.49845288517284453, 0.5060979568452175, 0.5137722168053594, 0.5214468804880585, 0.5290960407689742, 0.5366967130361607, 0.5442288048999997, 0.5516750213845462, 0.5590207169658736, 0.5662537059559412 ], [ 0.49088024320976625, 0.4847792215289892, 0.47884965279323394, 0.47310706727332547, 0.46756696823999266, 0.4622448607534166, 0.4571562900429477, 0.45231688817130583, 0.44774242663222236, 0.44344887123201165, 0.4394524340651059, 0.4357696156635174, 0.43241722859973697, 0.4294123921589867, 0.4267724864743457, 0.4245150541200939, 0.4226576379935292, 0.4212175467293162, 0.420211543057935, 0.4196554563441905, 0.41956372760042693, 0.41994890283453595, 0.4208210977368542, 0.4221874624688973, 0.4240516788687157, 0.42641352318966447, 0.4292685253432898, 0.432607750663746, 0.4364177228840928, 0.44068049798229497, 0.44537388866288236, 0.45047182944377484, 0.4559448635810216, 0.4617607262294284, 0.4678849938890328, 0.47428176855585746, 0.48091436593319314, 0.48774598010512094, 0.49474030157512755, 0.5018620708320681, 0.5090775550040594, 0.5163549402337688, 0.5236646368698205, 0.5309794982920679, 0.5382749571638837, 0.545529085191544, 0.5527225841563099, 0.5598387171559375, 0.5668631897220938, 0.5737839908243554 ], [ 0.5035436936481638, 0.497633759999105, 0.49188303196998817, 0.48630754072257504, 0.48092343698807216, 0.4757469950077888, 0.4707946179223159, 0.46608284333725597, 0.4616283472324122, 0.4574479436628068, 0.4535585768212591, 0.44997730101995526, 0.4467212430767367, 0.44380754059857846, 0.4412532489471407, 0.43907520951326795, 0.4372898726009825, 0.43591306996689666, 0.4349597350003439, 0.4344435726010829, 0.4343766857312996, 0.4347691708948637, 0.43562869979648994, 0.43696010849054173, 0.43876501786159205, 0.4410415098830988, 0.4437838826027229, 0.44698250326526284, 0.450623773682756, 0.4546902153503217, 0.45916067447834685, 0.4640106397468066, 0.4692126588826639, 0.47473683473989925, 0.4805513778808436, 0.48662319093711276, 0.4929184602288274, 0.4994032319732914, 0.5060439534964822, 0.5128079636906759, 0.5196639210843731, 0.5265821619386847, 0.5335349845034212, 0.540496858812809, 0.5474445641197961, 0.5543572582630021, 0.5612164849659078, 0.568006126328842, 0.5747123086340162, 0.5813232700796227 ], [ 0.5158403797356095, 0.5101302247636853, 0.5045685050620855, 0.4991715753697867, 0.49395601623138574, 0.4889386158885705, 0.4841363474628319, 0.4795663403298844, 0.4752458444052135, 0.47119218578902694, 0.46742271184246076, 0.46395472328900356, 0.4608053903931469, 0.4579916497452795, 0.4555300778119698, 0.4534367373705508, 0.45172699343022227, 0.4504152964178211, 0.44951493236863627, 0.449037742583041, 0.4489938185115223, 0.44939118119472465, 0.45023545799100717, 0.4515295721183718, 0.453273462310741, 0.4554638503396135, 0.45809407312891226, 0.4611539937032411, 0.4646300014212432, 0.4685051071555208, 0.4727591336958144, 0.4773689961530241, 0.4823090620298786, 0.48755157636123353, 0.49306713426851295, 0.49882518161780776, 0.5047945242397361, 0.510943827217028, 0.5172420878074531, 0.5236590683193263, 0.5301656783672156, 0.536734299123563, 0.5433390452334541, 0.5499559628337926, 0.5565631645376315, 0.5631409042792237, 0.5696715965644731, 0.5761397859489222, 0.5825320734906893, 0.5888370075198062 ], [ 0.5277692305123288, 0.5222658206152322, 0.5169013272331907, 0.5116922653793902, 0.5066554486567482, 0.5018079520016815, 0.4971670652348276, 0.492750236583411, 0.4885750054479178, 0.48465892374764186, 0.48101946516946364, 0.4776739215478173, 0.47463928542989553, 0.4719321176711339, 0.4695683987429025, 0.4675633624321429, 0.4659313109049387, 0.46468541081547965, 0.46383747134699727, 0.46339770677235986, 0.46337448822168803, 0.4637740916468672, 0.46460045120825855, 0.4658549291742341, 0.46753611463320666, 0.4696396636457409, 0.47215819277957355, 0.47508123624940496, 0.4783952742126277, 0.4820838363399057, 0.4861276808591663, 0.4905050451975572, 0.4951919604775639, 0.500162618801413, 0.5053897797577465, 0.5108452010793352, 0.516500077921712, 0.5223254757534685, 0.5282927431899256, 0.5343738930481234, 0.5405419422222094, 0.5467712034615907, 0.5530375246056154, 0.5593184731603129, 0.5655934662111677, 0.5718438475029239, 0.5780529150598379, 0.5842059039602417, 0.5902899298195347, 0.5962938991830926 ], [ 0.5393292837249272, 0.5340378991310145, 0.5288769654044739, 0.5238630098530372, 0.5190129039062196, 0.5143438096323174, 0.509873113964744, 0.5056183501167232, 0.5015971059822912, 0.49782691962018194, 0.49432516216131384, 0.4911089086424447, 0.48819479733655013, 0.4855988781380183, 0.48333645051205976, 0.4814218915059241, 0.4798684744375616, 0.47868817921830786, 0.4778914959000292, 0.47748722398642257, 0.4774822712712898, 0.4778814573544535, 0.4786873283727299, 0.47989999067166345, 0.4815169719351355, 0.4835331185169191, 0.4859405372678777, 0.4887285889827782, 0.49188393873634684, 0.4953906659502576, 0.4992304342088358, 0.5033827178504913, 0.5078250794591607, 0.5125334898157555, 0.5174826798561242, 0.5226465128661278, 0.5279983645904992, 0.533511499121073, 0.5391594292720826, 0.544916251508289, 0.5507569472072141, 0.5566576439534227, 0.5625958325432808, 0.568550537312942, 0.5745024392095135, 0.5804339526498652, 0.5863292586179324, 0.5921742976186958, 0.5979567270245999, 0.6036658480150252 ], [ 0.550519788829522, 0.5454440891048126, 0.5404912551410752, 0.5356776946745329, 0.5310201833361059, 0.5265357978014652, 0.5222418346802807, 0.5181557149540782, 0.5142948742364363, 0.5106766395859479, 0.5073180940113632, 0.5042359301328578, 0.501446294678156, 0.4989646255916963, 0.49680548353874227, 0.494982379540228, 0.49350760044399244, 0.4923920339981402, 0.4916449955072771, 0.49127405846033023, 0.49128489211606097, 0.4916811097685446, 0.4924641321953209, 0.493633071491031, 0.4951846409734933, 0.4971130969924505, 0.4994102181782895, 0.5020653268879269, 0.5050653563399211, 0.5083949652386187, 0.5120366996784923, 0.5159711999476636, 0.520177447692821, 0.5246330469488762, 0.5293145309385306, 0.5341976854311389, 0.5392578788839378, 0.544470389580089, 0.5498107204826688, 0.5552548934579173, 0.5607797157785512, 0.566363013286384, 0.5719838261672493, 0.5776225648790226, 0.5832611253021008, 0.5888829635948631, 0.5944731324936321, 0.6000182818688846, 0.6055066272183061, 0.6109278904323999 ], [ 0.5613403112633489, 0.5564824227607151, 0.5517405473295601, 0.5471308576813045, 0.5426699012207243, 0.5383745225573384, 0.5342617706829159, 0.5303487909452084, 0.5266527025040753, 0.5231904625083648, 0.519978718736668, 0.5170336528605383, 0.5143708167813821, 0.5120049646450914, 0.5099498831556786, 0.5082182227191745, 0.5068213318003961, 0.5057690967292863, 0.5050697891115301, 0.5047299230273891, 0.5047541243644209, 0.5051450149112758, 0.5059031141944756, 0.5070267623929078, 0.5085120679247221, 0.5103528833754146, 0.5125408132448509, 0.5150652564813837, 0.517913485925573, 0.5210707656274702, 0.5245205055939182, 0.5282444519649353, 0.5322229090341198, 0.5364349880491182, 0.5408588764781386, 0.5454721205065273, 0.5502519129972098, 0.5551753790331743, 0.5602198514430629, 0.5653631293446398, 0.5705837136566589, 0.5758610146485018, 0.5811755278394687, 0.5865089758522556, 0.5918444151043954, 0.5971663074347056, 0.6024605578674468, 0.6077145206830599, 0.6129169767679963, 0.6180580858421496 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.22894177865236998, 0.8351952414959669, 0.6286329319700599, 0.9020092906430364, 0.9781260751187801, 0.404045470058918, 0.5364496181489722, 0.46092377103684723, 0.3564612233747839, 0.38581222624914924, 0.3637572688539819, 0.3795241229526584, 0.3504642174956397, 0.4432742548877423, 0.31990722638455565, 0.2555778424579234, 0.2524846530481682, 0.15042602842974614, 0.08663391399541778, 5.268409700002741e-18, 0.03776396710448248, 0.13208293037862412, 0.04644337013155005, 0.18954795281295386, 0.17151422657958837, 0.2261281977423107, 0.23553925391670305, 0.22092623657947988, 0.2403674503513192 ], "xaxis": "x", "y": [ 0.31197850685566664, 0.3588504381477833, 0.5328390896320343, 0.1488186875358224, 0.4709978858008981, 0.18112339731305838, 0.54902475786202, 0.5640297948813812, 0.5882010887611782, 0.503635360389681, 0.43702289092926067, 0.47355585981026754, 0.4671665380998372, 0.523437612961531, 0.41810604105608795, 0.3635570587844399, 0.29760472981852915, 0.3500091762572107, 0.32915274377129267, 0.27665397953931775, 0.3472503846046461, 0.28763398543069946, 0.2898221088337568, 0.2740484775593605, 0.2892618858374601, 0.22864414719651402, 0.16643794738063455, 0.2112673156125695, 0.10916491767214283 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.22894177865236998, 0.8351952414959669, 0.6286329319700599, 0.9020092906430364, 0.9781260751187801, 0.404045470058918, 0.5364496181489722, 0.46092377103684723, 0.3564612233747839, 0.38581222624914924, 0.3637572688539819, 0.3795241229526584, 0.3504642174956397, 0.4432742548877423, 0.31990722638455565, 0.2555778424579234, 0.2524846530481682, 0.15042602842974614, 0.08663391399541778, 5.268409700002741e-18, 0.03776396710448248, 0.13208293037862412, 0.04644337013155005, 0.18954795281295386, 0.17151422657958837, 0.2261281977423107, 0.23553925391670305, 0.22092623657947988, 0.2403674503513192 ], "xaxis": "x2", "y": [ 0.31197850685566664, 0.3588504381477833, 0.5328390896320343, 0.1488186875358224, 0.4709978858008981, 0.18112339731305838, 0.54902475786202, 0.5640297948813812, 0.5882010887611782, 0.503635360389681, 0.43702289092926067, 0.47355585981026754, 0.4671665380998372, 0.523437612961531, 0.41810604105608795, 0.3635570587844399, 0.29760472981852915, 0.3500091762572107, 0.32915274377129267, 0.27665397953931775, 0.3472503846046461, 0.28763398543069946, 0.2898221088337568, 0.2740484775593605, 0.2892618858374601, 0.22864414719651402, 0.16643794738063455, 0.2112673156125695, 0.10916491767214283 ], "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "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": [ "