{ "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 09-24 14:38:50] 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 09-24 14:38:50] ax.service.utils.dispatch: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 arms, GPEI for subsequent arms], generated 0 arm(s) so far). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:50] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:50] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:50] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:01] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:11] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:20] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:31] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:44] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:55] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:06] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:21] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:38] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:55] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:41:11] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:41:28] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:41:44] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:00] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:13] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:17] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:32] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:43] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n", "[INFO 09-24 14:43:16] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n", "[INFO 09-24 14:43:51] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:44:28] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:45:09] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:45:46] ax.service.managed_loop: Running optimization trial 30...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\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.4189901873064764,\n", " 'x2': 0.8864858582276492,\n", " 'x3': 7.598012711675545e-17,\n", " 'x4': 0.5809428513029617,\n", " 'x5': 0.49750333110320993,\n", " 'x6': 0.05501258768377206}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2447663379566005, 'hartmann6': -3.0136142558043515}" ] }, "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": [ [ -0.14783224703445064, -0.14384391872524005, -0.13988567455470124, -0.1359763895229824, -0.13213505944817117, -0.12838061134079415, -0.12473174097633932, -0.1212067907886587, -0.11782367833336971, -0.11459988004252764, -0.11155246683363029, -0.10869817795591663, -0.10605350854424578, -0.10363477662166187, -0.10145812905768214, -0.09953944553805694, -0.09789410665254561, -0.09653660734803649, -0.09548001923838267, -0.0947353318810924, -0.0943107298696837, -0.09421088432182478, -0.09443634909109733, -0.0949831501721925, -0.09584264010715837, -0.09700165954909856, -0.0984430101654028, -0.100146203331821, -0.10208841453564577, -0.10424554980372691, -0.10659332108722919, -0.10910823272189107, -0.11176839854411624, -0.11455413490294863, -0.11744830390544214, -0.12043640932711619, -0.12350647127969872, -0.12664872285262674, -0.12985518175462585, -0.13311915279681474, -0.1364347139713722, -0.13979623141386144, -0.1431979383494426, -0.14663360177765572, -0.15009628946521025, -0.15357823978580099, -0.15707082871485611, -0.16056462217538825, -0.16404949798135826, -0.16751481967226756 ], [ -0.14721677955181223, -0.14329278581984362, -0.1394126196210388, -0.1355956001152001, -0.13186088636772686, -0.12822723056689234, -0.12471276339543036, -0.12133482992840561, -0.11810989198910704, -0.11505350711743279, -0.11218038503332894, -0.10950451026269614, -0.10703930585462729, -0.10479780011251183, -0.10279274882249978, -0.10103666249690368, -0.09954169395998225, -0.09831935717249096, -0.09738007262004622, -0.0967325648546884, -0.09638316897207644, -0.09633512889788265, -0.0965879854141205, -0.09713715148704205, -0.09797375510278328, -0.09908479746882937, -0.10045363246084738, -0.10206072918203302, -0.10388464148052523, -0.10590308277688121, -0.10809399521855334, -0.11043650918919523, -0.11291170970712172, -0.11550315542937217, -0.1181971283577068, -0.12098262293854067, -0.1238511083373719, -0.12679611510089117, -0.12981270655767663, -0.13289689672705585, -0.1360450715958701, -0.1392534611942995, -0.14251769784971047, -0.14583248305791452, -0.14919137300634766, -0.1525866819470525, -0.156009493982751, -0.15944976766690644, -0.1628965140996803, -0.16633802767944417 ], [ -0.14698392524774784, -0.14316056356122053, -0.1393973185760662, -0.13571395077226156, -0.13212972822602453, -0.12866311013897813, -0.12533146713785004, -0.12215086304627798, -0.11913592112683591, -0.11629979195095852, -0.11365422965482441, -0.11120976882032596, -0.10897597711748985, -0.10696174180571516, -0.10517553468557672, -0.10362559380092407, -0.10231996415543088, -0.10126635543351759, -0.10047180143911105, -0.09994214033966387, -0.09968137115473574, -0.0996909731649196, -0.09996929397618048, -0.10051111355492126, -0.10130747366015602, -0.10234582693819005, -0.10361051367809115, -0.10508352563232126, -0.10674547462143646, -0.10857665629146251, -0.11055809034836273, -0.11267242780639064, -0.11490463973796361, -0.11724243502970744, -0.11967639045841794, -0.12219980945333164, -0.12480835220919984, -0.1274994972116239, -0.13027190229588625, -0.1331247329759826, -0.13605701868878106, -0.13906708592712103, -0.14215210313365745, -0.14530775760277925, -0.1485280710068999, -0.1518053485814146, -0.15513024807307985, -0.15849194847981263, -0.16187839526824366, -0.1652765978060038 ], [ -0.1471783528720929, -0.1434963729189067, -0.13989367412715503, -0.13639046025516666, -0.13300605345457162, -0.12975849357992564, -0.12666417821986964, -0.12373757570786648, -0.1209910428069767, -0.11843477313147921, -0.11607689087891226, -0.11392368734146019, -0.11197997657264591, -0.11024952459814252, -0.10873548792231946, -0.1074407864443907, -0.10636833725067008, -0.10552109127140064, -0.10490184392326407, -0.10451282988600163, -0.1043551545108532, -0.104428151675936, -0.10472878179144796, -0.1052511877389366, -0.10598650831066658, -0.10692301062860587, -0.10804655216976866, -0.10934132954553633, -0.11079082568204268, -0.11237883792856973, -0.11409046117926502, -0.11591291194832509, -0.11783610716963766, -0.11985294865007123, -0.12195930344393147, -0.12415370579845764, -0.12643683350938328, -0.12881082844076674, -0.1312785374505987, -0.13384274730212709, -0.13650547746761266, -0.1392673805240665, -0.14212728351115267, -0.14508188724645166, -0.14812562576382993, -0.15125067581382434, -0.1544470972873464, -0.1577030796039205, -0.1610052663165955, -0.1643391299733865 ], [ -0.14784678803692608, -0.14435168800864262, -0.14095826892701302, -0.13768718606499464, -0.13455776122214513, -0.1315874810668909, -0.12879153906734975, -0.12618246220469143, -0.12376986476469942, -0.12156036646974, -0.11955769974585762, -0.11776301094563468, -0.116175334538136, -0.11479219123176887, -0.11361023590622477, -0.1126258649684484, -0.11183569051585751, -0.11123680354302379, -0.11082678009077762, -0.11060342856731098, -0.1105643258246014, -0.11070623409337887, -0.11102452058513013, -0.11151270881524966, -0.1121622724037572, -0.11296274098363424, -0.11390213208904965, -0.11496766421685978, -0.11614665681629632, -0.11742749222393867, -0.11880050711973356, -0.12025869609461748, -0.12179814210767392, -0.123418130204068, -0.12512094376721872, -0.12691138006021818, -0.1287960494478131, -0.13078253855640765, -0.13287852194630534, -0.1350909013844046, -0.1374250391119951, -0.13988413445655334, -0.14246877441999373, -0.1451766707190021, -0.14800257979897036, -0.1509383896194345, -0.15397334797574858, -0.15709440176929523, -0.16028661460828864, -0.16353363083349381 ], [ -0.14903782513064012, -0.14578014368059367, -0.14265017028858695, -0.1396690279626771, -0.13685598570010948, -0.13422783667912475, -0.13179832129238545, -0.12957764668228822, -0.12757215788485343, -0.12578421179567334, -0.1242122919448354, -0.12285137895476028, -0.12169356019012723, -0.12072882665772311, -0.11994597203173663, -0.11933348518915099, -0.11888032059622233, -0.11857644447850046, -0.11841308903668413, -0.1183826973929556, -0.11847859952787121, -0.11869451254411967, -0.11902399530472874, -0.11945999869889201, -0.11999463471454952, -0.12061924320374762, -0.12132477420367827, -0.12210243946518595, -0.12294453336778721, -0.123845291278742, -0.12480164747696176, -0.125813773550417, -0.12688531524173152, -0.1280232920196085, -0.12923767006867215, -0.1305406586068425, -0.1319458069277526, -0.13346699366856463, -0.1351174012330032, -0.13690855936251878, -0.13884952565698283, -0.1409462506594128, -0.1432011538845026, -0.14561291724910563, -0.14817648541461903, -0.1508832495371537, -0.15372138217889497, -0.15667628650398302, -0.15973112185203298, -0.1628673696293439 ], [ -0.15080168684046424, -0.14783728579974387, -0.14503067248418033, -0.14240346379277113, -0.13997482721144405, -0.1377607170223103, -0.13577315433182124, -0.1340196147153352, -0.13250259393590458, -0.1312194201845176, -0.13016236767584743, -0.12931909995148816, -0.1286734333609394, -0.1282063666956954, -0.12789727963446107, -0.1277251699166333, -0.12766978575866683, -0.12771252161387214, -0.12783698254086828, -0.12802917992530838, -0.12827738857768622, -0.12857175849912283, -0.12890381975950893, -0.1292660350568362, -0.1296515370396969, -0.1300541398615307, -0.13046864772420697, -0.13089141305145802, -0.13132103935914352, -0.1317590907147388, -0.13221066588715824, -0.13268471857908293, -0.1331940476576854, -0.133754932554629, -0.13438643877082446, -0.13510945884128067, -0.13594558067251072, -0.1369158866168143, -0.13803978433787, -0.13933395742237975, -0.1408115034918913, -0.14248130394972458, -0.14434764565717662, -0.146410093227197, -0.14866359288390885, -0.15109877580744446, -0.15370242073937024, -0.1564580320209923, -0.15934648948295438, -0.1623467298209309 ], [ -0.15318992562308908, -0.15058025760098537, -0.14816296896335324, -0.1459602088018621, -0.14399100021116018, -0.14227030983559374, -0.14080815712210892, -0.13960884100120752, -0.13867037269257287, -0.13798420420686752, -0.1375353287028298, -0.13730279885733077, -0.13726066391557, -0.13737927055900334, -0.1376268167264163, -0.13797100298577125, -0.1383806043500846, -0.13882679408930287, -0.13928409131198127, -0.1397308698173907, -0.1401494445024314, -0.14052582704797212, -0.14084929793974887, -0.14111196408484905, -0.141308454824161, -0.1414358580107311, -0.14149392490567414, -0.1414854961792209, -0.14141703958560403, -0.1412991561051553, -0.14114691051176376, -0.14097987099929465, -0.1408217911249905, -0.14069992373429696, -0.14064400933362875, -0.1406850222587981, -0.14085378259829473, -0.14117954953929623, -0.14168870474923279, -0.14240361634316012, -0.1433417492420146, -0.14451506040973006, -0.14592969098612252, -0.14758594420534799, -0.14947851974735515, -0.15159696248504884, -0.15392627642076318, -0.15644765238808622, -0.1591392599323347, -0.1619770586250795 ], [ -0.15625506142376389, -0.15406741534557122, -0.15211174652726744, -0.1504107891780293, -0.14898338738259653, -0.14784337028838168, -0.14699845880844498, -0.1464492973463838, -0.14618872071790046, -0.14620137154064272, -0.14646377103939567, -0.14694491268279442, -0.14760739374640242, -0.14840903091212465, -0.14930483413141693, -0.15024915343104595, -0.15119778089670666, -0.15210979468405195, -0.1529489754968758, -0.15368470142383717, -0.15429231949511246, -0.1547530823130563, -0.1550538057195805, -0.1551864331743753, -0.15514767762369108, -0.15493885673686192, -0.15456595760032887, -0.15403988359855658, -0.15337677031572716, -0.15259822351711194, -0.15173133541727712, -0.15080837057182128, -0.14986606817713244, -0.14894456925089306, -0.14808603250348407, -0.14733304304120565, -0.1467269394156656, -0.14630618716420352, -0.14610491401102266, -0.1461516979857862, -0.14646866987871143, -0.1470709602197402, -0.14796649192988776, -0.14915609541192865, -0.15063390449937408, -0.15238797979526741, -0.1544011001942076, -0.1566516629645569, -0.15911463654882474, -0.16176251698482558 ], [ -0.160050150052635, -0.15835786649800254, -0.1569426933479139, -0.15582802021515474, -0.15503248860152952, -0.15456864188810515, -0.15444159339525076, -0.1546478236666058, -0.15517424220055642, -0.15599765993389103, -0.15708480884464837, -0.15839300819990165, -0.15987151248638276, -0.16146349067496146, -0.16310849469309185, -0.16474519634686247, -0.16631412571049542, -0.16776014324758215, -0.16903442535114377, -0.17009582999856643, -0.17091161798436483, -0.1714576125670917, -0.17171796278752005, -0.17168471469765167, -0.17135738210139184, -0.17074264940978834, -0.16985425169531276, -0.16871298605807494, -0.1673467383130336, -0.1657903760146322, -0.16408536727392886, -0.16227902771270175, -0.16042336098104726, -0.1585735252686018, -0.15678601535589598, -0.15511668818554458, -0.15361877643541, -0.15234103051408976, -0.15132610914492606, -0.15060930797195082, -0.1502176801530628, -0.15016956761908307, -0.150474530247106, -0.15113363496052235, -0.1521400488362048, -0.15347986977304973, -0.1551331245094305, -0.15707486563879458, -0.15927630538606685, -0.16170593284862522 ], [ -0.16462827692507775, -0.16351092383392496, -0.16272191277531278, -0.16228537939063248, -0.16221975319365023, -0.1625361483308847, -0.16323675233105495, -0.16431334341087744, -0.16574610045803562, -0.16750288917283784, -0.16953920215877982, -0.17179889118339653, -0.17421575376193177, -0.17671593084829862, -0.1792209556754194, -0.1816511908957983, -0.18392932738542056, -0.1859836104473258, -0.18775051112911822, -0.18917666120659926, -0.19021999850787674, -0.19085019729552344, -0.1910485586924704, -0.19080758661443808, -0.19013046521855492, -0.1890305903941616, -0.187531211440348, -0.1856651395325848, -0.18347440521321268, -0.1810097159407893, -0.17832958012207145, -0.17549901629972586, -0.17258783779033515, -0.16966857527523116, -0.1668141576508848, -0.16409550621314462, -0.16157920683929472, -0.1593254121465575, -0.15738609651852853, -0.1558037483041559, -0.15461054189629886, -0.15382799302656913, -0.15346706712090707, -0.15352868502819006, -0.15400455358938814, -0.15487824003610995, -0.15612640804551914, -0.15772013795624762, -0.15962626251800804, -0.16180866099092772 ], [ -0.1700419714106458, -0.16958546933684016, -0.16951523520225198, -0.16985626481437266, -0.17062678387936492, -0.17183634233903122, -0.17348387840424206, -0.1755559037865031, -0.1780250071684737, -0.1808489035452887, -0.18397025823747293, -0.18731747321931258, -0.19080653434311845, -0.19434388834958538, -0.19783017040804052, -0.20116446916524056, -0.20424873024795498, -0.20699188305314697, -0.20931333336158953, -0.2111455817822352, -0.2124358789758345, -0.21314698100369145, -0.2132571898606732, -0.21275992907804864, -0.21166309934560457, -0.20998839070524267, -0.20777062113138856, -0.20505706189122797, -0.20190663133471598, -0.1983888106545173, -0.1945821596043047, -0.19057237373158564, -0.18644990583656118, -0.18230725145285298, -0.1782360551088804, -0.17432422293462668, -0.17065322733228272, -0.16729576583138184, -0.16431389658381268, -0.16175772543825295, -0.15966467138910057, -0.15805929387035023, -0.15695363033149956, -0.1563479674568189, -0.15623195447274818, -0.1565859613799676, -0.1573825871194745, -0.15858823077257544, -0.16016465096869803, -0.16207045292941102 ], [ -0.17634253786718412, -0.17663922251113018, -0.17738742093213333, -0.17861313005414736, -0.18033440117382815, -0.1825590976714535, -0.18528258415830146, -0.188485520583056, -0.1921319952816114, -0.19616827651492352, -0.20052247368290654, -0.20510535863095702, -0.20981249414332925, -0.21452765746129931, -0.21912735888474955, -0.2234860823587348, -0.22748176089120964, -0.23100097352451776, -0.2339434159412339, -0.23622533434583337, -0.2377817897195802, -0.23856780017645596, -0.23855855649822444, -0.23774898886327933, -0.23615296437024202, -0.2338023212591409, -0.23074582667182675, -0.2270480236822221, -0.22278784999764478, -0.21805688737433138, -0.21295713697551677, -0.20759829317219491, -0.2020945800349574, -0.19656129607693296, -0.19111126682301016, -0.18585142468044014, -0.1808797232149828, -0.17628255575366114, -0.1721327960667245, -0.16848852136566417, -0.1653924228822401, -0.1628718623571812, -0.16093949695435628, -0.15959437147645783, -0.15882336480575687, -0.1586028757234219, -0.15890063959710088, -0.15967757958189166, -0.16088961173007021, -0.16248934077446608 ], [ -0.18357930062266958, -0.18472790890414403, -0.18640124810994396, -0.18862648737248766, -0.19142155791629034, -0.1947925312193095, -0.19873087850115811, -0.2032108074871275, -0.20818695113909813, -0.213592748225663, -0.21933988263670057, -0.22531911116479986, -0.23140269103802735, -0.23744842338231464, -0.24330509079031093, -0.24881884353305583, -0.25383993976457075, -0.25822920785069114, -0.26186367522015086, -0.2646409700305452, -0.26648230944805107, -0.26733410082236175, -0.2671683598059271, -0.26598225561471467, -0.26379710487825747, -0.26065705632440817, -0.2566275745569664, -0.25179369586771627, -0.24625794074063556, -0.2401377512306513, -0.23356237271482239, -0.226669193369464, -0.21959965813203897, -0.21249495832648368, -0.20549174633925915, -0.19871813198975374, -0.19229018861005098, -0.18630914300716195, -0.18085935673878284, -0.17600713761338294, -0.1718003584544301, -0.16826881024318396, -0.16542518121638805, -0.16326653253710033, -0.16177613341584873, -0.16092552175046704, -0.16067666777564038, -0.1609841351319159, -0.1617971536687275, -0.16306153906613674 ], [ -0.19179876177086919, -0.19390432627002707, -0.19661648142612442, -0.1999637730432564, -0.203964095186016, -0.20862164358733337, -0.21392368650264548, -0.21983737081618027, -0.22630688192849502, -0.23325136641324296, -0.2405640754190823, -0.24811315817783663, -0.2557444014128385, -0.2632859720743619, -0.2705549188777274, -0.27736489935415, -0.2835344060291447, -0.28889471704912073, -0.2932968892737633, -0.29661730329554614, -0.2987615099959655, -0.2996663750759696, -0.2993007314873801, -0.2976648862026343, -0.29478935370737247, -0.2907331041098775, -0.2855814613811545, -0.27944363419233076, -0.27244976798199394, -0.2647474000379264, -0.25649727011400114, -0.24786855296853605, -0.23903369523559825, -0.23016312476899237, -0.22142013917109815, -0.21295627014306273, -0.20490737095567702, -0.19739060037212441, -0.1905023928827061, -0.18431742473684043, -0.1788885167125951, -0.17424736263061624, -0.1704059387599508, -0.16735843253264537, -0.16508352693305506, -0.16354688635764614, -0.16270370726145478, -0.16250121932039852, -0.16288104736874565, -0.1637813687938574 ], [ -0.20104367273074164, -0.20421730800491078, -0.2080887195920944, -0.2126880707782064, -0.21803333328046315, -0.22412676900857176, -0.2309511497959269, -0.23846595289277328, -0.2466038965929671, -0.25526830278054935, -0.26433185271204507, -0.27363728978422097, -0.28300047589198574, -0.2922159178476602, -0.3010644965448974, -0.309322757998592, -0.3167728774234779, -0.32321235037970664, -0.32846258353730473, -0.33237578503794585, -0.33483982744327934, -0.3357810372632064, -0.335165119978039, -0.33299660670805475, -0.3293172574400327, -0.324203766917037, -0.31776494382069775, -0.3101383581423185, -0.30148635134716373, -0.29199131028442693, -0.2818502013533213, -0.27126849931094, -0.2604537744290374, -0.24960928597995213, -0.23892795390335442, -0.22858704728974177, -0.21874385304919097, -0.2095324902162774, -0.2010619329981529, -0.1934152128592348, -0.18664969535060116, -0.18079827487399247, -0.1758713002036465, -0.17185903296553384, -0.16873444663190562, -0.16645619068606932, -0.16497156931541768, -0.16421941264179374, -0.16413274809808054, -0.1646412078352133 ], [ -0.21135202314286183, -0.21571058631783613, -0.22086812261851585, -0.22685669251821117, -0.233694494850621, -0.24138182905774697, -0.24989669879703857, -0.25919031118800784, -0.2691828821805704, -0.2797603204679049, -0.2907724833746863, -0.3020337125381891, -0.31332620071961226, -0.3244063899118925, -0.33501411194380437, -0.3448836975451808, -0.3537559629615983, -0.3613899234743321, -0.36757324346984155, -0.3721307041272879, -0.3749302710341156, -0.3758866538266321, -0.3749625522929154, -0.3721680168373138, -0.36755843577765446, -0.3612315709746017, -0.35332385817727596, -0.34400598306232855, -0.3334776359157161, -0.32196137214251985, -0.3096956329349634, -0.2969271468541581, -0.2839030758037775, -0.2708633475879627, -0.2580336198090145, -0.2456192564117181, -0.23380059097046235, -0.22272962485288095, -0.21252818517899863, -0.20328746207294013, -0.19506876524238725, -0.18790528878104418, -0.1818046484953293, -0.17675195378003172, -0.17271319079826908, -0.16963872005147929, -0.16746672444650024, -0.1661264795892765, -0.1655413530965235, -0.16563147197325145 ], [ -0.22275595388975034, -0.22842156114870704, -0.23499802380436852, -0.2425196200596984, -0.2510049618721679, -0.26045238962753614, -0.270834893411809, -0.28209482626675686, -0.294138863860812, -0.30683387459344, -0.32000454008470913, -0.33343362274151134, -0.3468656199005671, -0.360014122704271, -0.3725725734195704, -0.38422748054754274, -0.39467274658396967, -0.40362371394724117, -0.41082976347368794, -0.4160846254390307, -0.41923387890269037, -0.42017943905772803, -0.4188811883178769, -0.41535622027232333, -0.4096763065534641, -0.40196410722362863, -0.3923884011613912, -0.38115836802830194, -0.368516835992007, -0.3547324577607358, -0.3400909446238829, -0.32488568811866037, -0.3094082541733565, -0.29393930181062067, -0.27874045125607827, -0.2640475240943505, -0.2500654321870399, -0.23696483383267108, -0.22488052989411456, -0.21391145500688924, -0.2041220364843359, -0.19554464636827884, -0.18818285605604435, -0.18201521162091305, -0.1769992742462767, -0.17307570743611822, -0.17017223516096602, -0.16820733838280488, -0.16709359823906533, -0.16674063043760534 ], [ -0.23528060486146307, -0.24237998516162995, -0.2505134361530641, -0.25971781631144353, -0.27001237403124834, -0.281393527206961, -0.293829036277486, -0.3072518398482018, -0.3215540460106334, -0.33658183771936834, -0.35213229722296413, -0.3679532745946108, -0.38374728288751836, -0.39917990383002167, -0.4138923893626467, -0.42751730799859367, -0.4396955666018185, -0.45009312290628967, -0.45841604621570786, -0.4644229764616499, -0.4679343328921337, -0.4688379315399216, -0.46709108751151396, -0.46271970827455955, -0.4558151129926866, -0.4465292304281656, -0.43506853102359466, -0.42168675075314566, -0.40667633573944406, -0.3903586176020686, -0.3730729469620333, -0.3551652510186778, -0.3369766463502757, -0.3188327855168187, -0.30103454826089315, -0.2838505371003188, -0.2675116450287254, -0.2522077683830941, -0.23808656853582022, -0.22525405748116523, -0.21377669952028033, -0.203684681380093, -0.19497599902606155, -0.18762103207712455, -0.18156731701827744, -0.17674428031964262, -0.1730677456786176, -0.1704440811579142, -0.16877389880607097, -0.1679552595479632 ], [ -0.24894291254908407, -0.25760658026138117, -0.2674394687332766, -0.27848142150163, -0.2907525834383482, -0.30424751880743783, -0.31892857209920744, -0.3347187352782859, -0.35149454440147476, -0.36907985632690576, -0.3872416909081058, -0.40568953465044433, -0.42407939911965276, -0.4420233499845725, -0.45910420201946023, -0.4748939622117938, -0.48897393172947035, -0.5009544359956248, -0.5104926805318619, -0.517307707176416, -0.5211916561100918, -0.52201677679372, -0.5197381184471692, -0.5143924347757514, -0.5060942015846845, -0.49502957676319137, -0.4814487619332186, -0.46565685545129165, -0.44800314524420015, -0.42886891502468627, -0.4086541176433207, -0.3877635510301187, -0.3665933424724872, -0.34551856317605867, -0.32488267339455357, -0.3049892870229096, -0.2860964984263761, -0.2684137794097552, -0.2521012609224613, -0.23727107677275328, -0.22399036704444564, -0.2122855104827146, -0.20214716694074908, -0.19353575095772912, -0.18638701439751748, -0.1806174804478864, -0.1761295360675963, -0.1728160502814653, -0.17056443857049963, -0.16926013750405655 ], [ -0.263750377599824, -0.274111606993108, -0.2857896753192781, -0.298827857431486, -0.31324748942721103, -0.3290413800044443, -0.3461662984025671, -0.3645347865924977, -0.3840068359966562, -0.4043823636985482, -0.4253958630655952, -0.446714938108685, -0.4679444062680165, -0.48863700786020314, -0.5083104623946204, -0.5264691165253264, -0.5426275431660927, -0.5563336456442969, -0.5671896525345774, -0.5748699721762709, -0.5791349390843814, -0.5798395624483692, -0.5769369618872784, -0.5704770415337621, -0.5606015197254834, -0.5475363813733716, -0.5315823462895475, -0.513103481558072, -0.4925139323565031, -0.4702629304558763, -0.44681859710714766, -0.4226513852197722, -0.3982181726034846, -0.3739479877368477, -0.350230157771803, -0.32740538366778016, -0.3057599391346639, -0.2855229119277771, -0.2668661897415354, -0.24990675040782606, -0.2347107446077381, -0.2212988473504658, -0.20965238676039188, -0.1997198197224852, -0.19142320007420732, -0.1846643656118423, -0.17933064758470474, -0.17529997573266365, -0.1724453106747379, -0.1706383826557285 ], [ -0.27969982801677107, -0.2918934148224772, -0.30556436543905874, -0.32075987188941824, -0.33750278754902996, -0.35578428749166413, -0.3755554269911152, -0.3967178190881109, -0.41911397328812305, -0.4425182994739465, -0.46663034096127487, -0.4910722962489087, -0.5153929961822994, -0.5390798169081694, -0.5615783756790012, -0.58231783409933, -0.6007384376116782, -0.6163183409920271, -0.6285980869958858, -0.6372018232017508, -0.6418540765619148, -0.6423906863224333, -0.6387631909954278, -0.6310372243491403, -0.6193863344694733, -0.6040826093037447, -0.58548487105671, -0.5640246117464822, -0.5401896798999795, -0.5145059939699583, -0.4875180089362994, -0.4597690377865402, -0.4317826796112474, -0.40404650930642516, -0.3769989027625613, -0.35101949895374895, -0.3264234222719491, -0.30345906517554955, -0.28230899440678314, -0.26309340132118053, -0.24587545953685086, -0.23066796359542074, -0.21744068021679386, -0.206127929745356, -0.19663601355135296, -0.18885020157939136, -0.18264108500288478, -0.17787017747837242, -0.17439471280418206, -0.17207163669498504 ], [ -0.2967762095695978, -0.31093700850514217, -0.3267489166072457, -0.3442635655042494, -0.3635056786490065, -0.3844649361484289, -0.4070865513283899, -0.43126074353707433, -0.456811634023502, -0.4834866163661038, -0.5109479412376778, -0.538768949290759, -0.5664376939216158, -0.5933700274578062, -0.6189322077161948, -0.6424703427098915, -0.6633423324642718, -0.6809487373126593, -0.694761077934663, -0.7043469576076625, -0.7093905503261795, -0.7097062883164569, -0.7052444609925378, -0.696089278676128, -0.682451219716472, -0.6646554576074531, -0.6431273366792809, -0.6183751177835441, -0.5909700551088308, -0.5615242390682713, -0.5306672009728137, -0.49902269318648673, -0.4671871717535092, -0.4357113199994447, -0.4050855588502451, -0.3757300145241427, -0.3479889594322687, -0.3221293735500437, -0.2983430206048334, -0.27675129737007675, -0.2574120786594629, -0.24032782045527679, -0.225454272769104, -0.21270926901762288, -0.20198118158292222, -0.19313675093988336, -0.1860281003315749, -0.18049883546525813, -0.17638919796639052, -0.17354029314131214 ], [ -0.31495144094521943, -0.33121267328660386, -0.3493121357847313, -0.36930645441826204, -0.3912225969134193, -0.41504889564067016, -0.44072459250032536, -0.46812804703029554, -0.4970641033535177, -0.5272516886853087, -0.5583135322148607, -0.5897708154761043, -0.6210461527789417, -0.6514777442980608, -0.680345126722462, -0.7069032611021692, -0.7304193448708934, -0.7502080050452916, -0.7656637506499683, -0.7762906460494459, -0.7817273667435592, -0.7817643472133529, -0.7763509082180027, -0.7655929279811265, -0.7497434211210623, -0.7291883448657909, -0.7044288415946942, -0.6760601928379631, -0.6447476234372972, -0.6111996106309995, -0.5761400379176438, -0.5402809824036121, -0.5042979726639032, -0.46880924267301527, -0.43435997793715564, -0.40141195720090894, -0.37033845621798034, -0.34142386834542204, -0.3148672344689616, -0.2907887541937959, -0.26923834512931344, -0.25020539413314524, -0.23362897092769486, -0.21940792308910284, -0.2074104215325172, -0.19748266374536305, -0.18945656056884408, -0.18315632824266026, -0.17840398075764252, -0.17502377025256388 ], [ -0.33418337685076316, -0.3526747091383913, -0.37320472760085055, -0.39583563383734477, -0.4205970296639727, -0.4474760476292867, -0.4764058147269854, -0.5072523447265669, -0.5398003116592136, -0.5737387721459382, -0.6086488363428061, -0.6439964522966032, -0.6791344108726416, -0.7133173632539513, -0.7457308623712541, -0.7755305660538264, -0.8018843702943719, -0.8240121683092749, -0.8412228010985076, -0.8529490611909991, -0.8587783528817349, -0.8584741359435971, -0.8519849477405695, -0.8394416229318976, -0.8211457872371771, -0.7975525773828621, -0.7692490617644032, -0.7369286983535507, -0.7013620912935083, -0.6633650052395785, -0.6237654143009783, -0.5833718191940522, -0.5429450112799308, -0.5031749902865224, -0.46466404929830407, -0.4279163159620796, -0.393333417015268, -0.3612154834228578, -0.33176645131957927, -0.30510251986542536, -0.2812626630573296, -0.2602202154586708, -0.2418947221574883, -0.22616342940738776, -0.21287197197086893, -0.20184397243563734, -0.19288939996056875, -0.1858116393262128, -0.18041329735791622, -0.17650082610407192 ], [ -0.35441492721619294, -0.37526033109762413, -0.3983579360209173, -0.423776119198112, -0.4515475159339446, -0.4816582012551285, -0.5140350199130097, -0.5485311171054703, -0.5849100746294824, -0.622829694477856, -0.6618274981937952, -0.7013114103214207, -0.7405604444121313, -0.7787402801686695, -0.8149355907530238, -0.8481947208008579, -0.8775775348871261, -0.9021999649508778, -0.921275875859263, -0.9341583454012786, -0.9403771316724869, -0.9396653444902585, -0.9319707701900597, -0.917452604095795, -0.896467551307142, -0.8695489677214066, -0.8373807913249666, -0.8007666805771473, -0.7605948196694121, -0.717799770214035, -0.6733236960210917, -0.6280797142249271, -0.5829199179104592, -0.5386099397506432, -0.49581104096088424, -0.4550698411440808, -0.4168150982598269, -0.3813604686494483, -0.34891192768068735, -0.3195784772645036, -0.2933848553752849, -0.2702851409044882, -0.2501763678784319, -0.23291149066773964, -0.21831125255970774, -0.20617469061017646, -0.19628815469228122, -0.18843282823417784, -0.18239081566776405, -0.17794991206872313 ], [ -0.3755733842547835, -0.3988887983350531, -0.4246824341453055, -0.4530294525506975, -0.483965924720301, -0.5174770010868368, -0.5534830489011773, -0.5918237756848888, -0.6322406997478145, -0.674358974842227, -0.7176706694101535, -0.7615232049983914, -0.805118426671005, -0.8475283551502353, -0.887730575716392, -0.9246585107543024, -0.9572552548879226, -0.9845231740823661, -1.0055712730987045, -1.0196638817865982, -1.0262662309841155, -1.0250773157396007, -1.0160439694361063, -0.9993571418034152, -0.9754353567861574, -0.9448997769764366, -0.9085428933861472, -0.867291382403119, -0.8221639094466645, -0.7742258354541683, -0.7245438361737692, -0.6741437833255658, -0.6239748128341771, -0.5748815774326665, -0.5275855759340238, -0.4826754297631184, -0.44060519128892617, -0.4016992724306343, -0.3661623612352376, -0.3340926951907781, -0.305497215104777, -0.28030736676836576, -0.2583945951425879, -0.2395848482893137, -0.22367165129319533, -0.210427511778299, -0.1996135750371033, -0.19098756071732348, -0.18431009002763954, -0.17934955933836516 ], [ -0.397570010773713, -0.42346083798932455, -0.452067542658529, -0.4834726706374255, -0.5177161261382579, -0.5547822572926822, -0.594584734562746, -0.6369492165711564, -0.6815941343677869, -0.7281105719952234, -0.7759433561744731, -0.8243772285247769, -0.8725341173116283, -0.9193886584786555, -0.9638061602986218, -1.00459819876378, -1.0405825003026687, -1.0706379904923007, -1.0937585425855678, -1.1091103580374364, -1.1160869248200318, -1.1143489873789219, -1.1038418738158087, -1.0847914949310367, -1.0576850324503635, -1.023241449354965, -0.9823740921914947, -0.9361461442737357, -0.8857202140843039, -0.8323047949980192, -0.7771014427843432, -0.7212566883246405, -0.6658219878499375, -0.611723780748314, -0.5597443746522812, -0.5105131988178147, -0.46450711108230447, -0.42205794813679876, -0.3833653359646614, -0.34851285157032175, -0.31748586274820334, -0.2901896913978328, -0.26646708633720073, -0.24611431168963027, -0.22889543252146782, -0.21455460033149643, -0.20282630678781466, -0.1934436901176637, -0.1861450528980666, -0.18067879150457844 ], [ -0.42029994210539123, -0.44885843013357607, -0.4803808598755879, -0.5149577365508602, -0.5526331778928313, -0.5933908410755515, -0.6371374681927242, -0.6836840369580283, -0.7327248381376165, -0.7838154490744822, -0.8363517316061748, -0.8895538470968104, -0.9424617096477189, -0.9939499281529822, -1.0427676164520128, -1.087598539240245, -1.1271268128343674, -1.1600980269580448, -1.1853806243878584, -1.202033323051679, -1.2093705413602924, -1.2070102742658688, -1.1948952864611686, -1.1732892487530455, -1.1427547252452708, -1.104118694079192, -1.0584281092771552, -1.0068966452317345, -0.9508446797119093, -0.891636287606, -0.8306180977977533, -0.7690647614762856, -0.7081346860822636, -0.6488380991180984, -0.5920178893740891, -0.5383423397745148, -0.48830795673432137, -0.44225012797671126, -0.40035923846161636, -0.36270004139881973, -0.32923241272390125, -0.2998320216513495, -0.2743098587670323, -0.2524299327033286, -0.23392475394813128, -0.21850846273000735, -0.20588763040211622, -0.1957698791142395, -0.1878705338006934, -0.18191755462455794 ], [ -0.4436424497287128, -0.4749450165500053, -0.5094683840198051, -0.5473115369790842, -0.5885231533292505, -0.6330862971776641, -0.6809005546364065, -0.731761606434709, -0.785338574043074, -0.8411501320143717, -0.8985415551301946, -0.9566667901354614, -1.0144822356687944, -1.0707608760223677, -1.1241330525851128, -1.1731499220759887, -1.2163544488267022, -1.2523494567986064, -1.2798681913666665, -1.2978530188608217, -1.305532077476598, -1.3024757312773454, -1.2886224368113743, -1.2642757765487955, -1.2300800712214313, -1.186980529773672, -1.1361706946994974, -1.0790289722937643, -1.0170474388171526, -0.9517580416424024, -0.8846622334716379, -0.8171695634392467, -0.7505491780413828, -0.6858961856438752, -0.6241129413214078, -0.5659038308662605, -0.5117811924927209, -0.46207959133974286, -0.4169756559970017, -0.37651096818899554, -0.34061593962533565, -0.30913310943074057, -0.28183877732596563, -0.25846230742249476, -0.23870277511730342, -0.22224288241411538, -0.20876024280756011, -0.19793624845001423, -0.18946279381237918, -0.18304715470896138 ], [ -0.4674616066049271, -0.5015661874887096, -0.5391552000421356, -0.5803365399687543, -0.6251637331331316, -0.6736193261666391, -0.7255955399780675, -0.7808722021440353, -0.8390923352452633, -0.8997364538658789, -0.9620978171925545, -1.0252628248474591, -1.08810337730818, -1.1492900924084857, -1.207333140773278, -1.2606475537084245, -1.3076288053692284, -1.3467287376758474, -1.3765368718517432, -1.3958713099030005, -1.403866998868088, -1.4000413688739743, -1.384325971914723, -1.3570655929261997, -1.3189921057222969, -1.271178924175149, -1.2149791176285454, -1.1519500137675887, -1.0837690844844547, -1.0121479433299694, -0.9387518595883759, -0.8651311065439077, -0.7926683096332233, -0.7225435060513776, -0.6557164455406288, -0.5929240583371322, -0.5346900740286247, -0.4813434325054067, -0.43304224727875607, -0.389800500709923, -0.3515152207590313, -0.3179924922974391, -0.2889712139073748, -0.26414398014985596, -0.24317483399313677, -0.2257138974212991, -0.21140906340181287, -0.1999150367088336, -0.1909000620698842, -0.1840506912615909 ], [ -0.4916073822769713, -0.5285508868140489, -0.5692467880212975, -0.6138121921651565, -0.6623056676885252, -0.7147092779057215, -0.7709076925786222, -0.8306644283342238, -0.8935956578748772, -0.9591427352614592, -1.026545801628239, -1.0948227661973955, -1.1627605174161222, -1.2289271817082372, -1.2917122601834619, -1.3493924750012534, -1.4002112770698596, -1.4424633932904563, -1.474588045943951, -1.4952725039696306, -1.5035520421404152, -1.4988854176773985, -1.4811937444210612, -1.4508633072948791, -1.4087185673569311, -1.355970625304184, -1.2941446496775746, -1.2249906430475832, -1.1503845219407671, -1.0722284545147516, -0.9923593988911276, -0.9124729366582667, -0.8340666582174157, -0.7584044121121608, -0.6865002707431639, -0.619119362742857, -0.5567918130430201, -0.49983580494529445, -0.4483860531804238, -0.40242455705030133, -0.36181121528051174, -0.32631259927839906, -0.29562781708261165, -0.26941091637163095, -0.24728966235968586, -0.22888079534047812, -0.21380204262727887, -0.2016812529715324, -0.19216305919297194, -0.1849134744629004 ], [ -0.5159171800637081, -0.5557131569310767, -0.5995309876602792, -0.6474971086340093, -0.6996751889217919, -0.7560467696493594, -0.8164887957776658, -0.8807481336639564, -0.9484135947169554, -1.018886733505178, -1.0913539308046993, -1.1647641666640913, -1.2378192873042915, -1.3089852797554093, -1.3765311981118757, -1.4385947049009422, -1.4932650436831272, -1.5386764977961604, -1.5731139017068072, -1.5951287292890348, -1.603650646652857, -1.5980736416583137, -1.5783039777046333, -1.5447687398060834, -1.4983891336074608, -1.4405226869757914, -1.3728784970444334, -1.2974120913138198, -1.216209730286342, -1.1313736436641153, -1.044918826361623, -0.9586892062974313, -0.8742973744334972, -0.7930886119810208, -0.7161272313357774, -0.6442014818763445, -0.5778424346655462, -0.5173521867145094, -0.4628371876441395, -0.4142432561394591, -0.3713897229163772, -0.33400096953945924, -0.3017343453884933, -0.2742040040889919, -0.25100060527019363, -0.23170709633415232, -0.21591094880787853, -0.20321330238462187, -0.193235491388849, -0.18562341290574547 ], [ -0.5402178098527897, -0.5828544213087468, -0.6297806242094611, -0.6811320728662132, -0.736977408442222, -0.797297494723791, -0.8619613613162911, -0.9306989974938892, -1.0030716083426865, -1.078440737384035, -1.1559389239702824, -1.2344464004061326, -1.31258052146165, -1.388706030845636, -1.460972571020482, -1.5273796370920614, -1.5858627696440444, -1.6343956349008117, -1.6711073148613647, -1.6944102765014724, -1.7031233444384464, -1.6965695103838352, -1.6746351354664355, -1.6377865521373896, -1.587044955728758, -1.5239220526324662, -1.4503215201800344, -1.3684158032520792, -1.280511670263022, -1.1889190012566424, -1.0958352193558056, -1.0032537878411323, -0.9129007099040891, -0.8261989996910699, -0.7442581469226268, -0.6678838085843862, -0.597602237322092, -0.5336940746921661, -0.4762328195178447, -0.42512425379909313, -0.38014414761087223, -0.34097251840626663, -0.307223507932469, -0.2784705359977613, -0.2542668050464525, -0.23416149180958934, -0.21771210693445986, -0.20449356348923087, -0.194104498378588, -0.18617135854779687 ], [ -0.5643278691309805, -0.6097662756218034, -0.6597567669211954, -0.7144438212130937, -0.7739006845797841, -0.8381072213307855, -0.9069242938251485, -0.9800648684006378, -1.0570625544552665, -1.1372391188235937, -1.2196737958409452, -1.3031789772111722, -1.3862888346765132, -1.4672685828700094, -1.5441506454815277, -1.6147991650320253, -1.6769992651534094, -1.7285669313264573, -1.7674768075741665, -1.7920009616807373, -1.8008430927341197, -1.7932492303000904, -1.7690805546269015, -1.7288405190171585, -1.6736526706775723, -1.60518939918286, -1.5255579354528879, -1.4371569362062886, -1.3425214466359545, -1.2441740889612274, -1.1444967105152697, -1.0456313692350396, -0.9494141348625291, -0.8573407216287776, -0.7705598322612858, -0.6898883213664403, -0.6158417155697584, -0.5486739763556145, -0.4884213258054433, -0.43494615752260013, -0.3879782746049074, -0.3471517731781084, -0.3120367476884447, -0.28216561944825536, -0.25705430680266916, -0.23621870424001923, -0.21918706200371885, -0.20550889574308306, -0.19476103829781666, -0.18655139581273894 ], [ -0.5880604834246372, -0.6362337304522321, -0.6892125544531938, -0.7471495381783739, -0.8101218788100663, -0.8781079007682491, -0.9509599337919996, -1.0283738073454103, -1.1098557617924698, -1.1946884479002589, -1.2818989686820825, -1.3702336033318336, -1.4581456298056417, -1.543803644536202, -1.6251266383768492, -1.6998483871379628, -1.7656095702449441, -1.8200742460887382, -1.8610664095519827, -1.886718215998933, -1.8956152466803533, -1.8869213923232182, -1.8604676890882512, -1.8167923789334754, -1.75712289739819, -1.6832972819345633, -1.5976330364289335, -1.502761507191876, -1.4014506794412596, -1.2964379226649023, -1.1902886951746248, -1.0852903471144202, -0.9833838374782156, -0.8861312617650375, -0.7947138007563428, -0.7099529809625934, -0.632347755432925, -0.5621205287141418, -0.4992664677280485, -0.4436018931893486, -0.3948089548229623, -0.35247499138866467, -0.3161258966414642, -0.28525345746366715, -0.25933704058835216, -0.2378602329383086, -0.22032313956899152, -0.20625105616862216, -0.19520019346180284, -0.18676106260978598 ], [ -0.6112263369092977, -0.662038821432376, -0.7178974857229772, -0.77896194125661, -0.8453123584932754, -0.9169247194741351, -0.9936422924749745, -1.0751436335759772, -1.16090800269235, -1.2501799795644595, -1.3419363423994022, -1.434859883648388, -1.5273264663764654, -1.617412519590194, -1.7029293317716185, -1.7814876037743146, -1.8505920407072733, -1.9077629966069383, -1.950679870437099, -1.9773373825389287, -1.9862017259357718, -1.9763508832936125, -1.9475817092955228, -1.9004650927741826, -1.8363331000809766, -1.7571924778994419, -1.6655748099695575, -1.5643470165459903, -1.4565108581119197, -1.3450168139152707, -1.2326099820808114, -1.121717187261377, -1.0143772721751625, -0.9122112240325674, -0.8164253813196526, -0.7278393211115342, -0.6469298625618796, -0.5738835380228211, -0.5086514156284456, -0.4510018798305826, -0.40056857956597924, -0.3568920677921361, -0.3194546287024891, -0.2877084429535022, -0.2610976354292891, -0.23907495155083347, -0.22111387753011869, -0.20671700558647554, -0.19542138241390106, -0.18680149248142386 ], [ -0.6336369062555569, -0.6869644790513038, -0.7455620429879748, -0.8095947913248288, -0.8791445451882784, -0.9541838509284081, -1.0345461847833062, -1.1198926222200134, -1.2096759382033584, -1.30310401940315, -1.3991057333315942, -1.4963039456914395, -1.5930019016322805, -1.6871900532533182, -1.7765798273387223, -1.858668442852462, -1.9308353902390405, -1.99046774255324, -2.0351085162322997, -2.062619667666595, -2.0713489512670846, -2.060286739388442, -2.0291932109073008, -1.9786703064779685, -1.9101546175968607, -1.8258222905364545, -1.728419146806755, -1.6210461761553316, -1.506935244194489, -1.3892441939673565, -1.2708903945522867, -1.154431765244101, -1.0419962938272302, -0.9352553858182494, -0.8354328677156906, -0.743339901533462, -0.6594261405409029, -0.5838387046063487, -0.516482429998276, -0.4570768575887243, -0.4052072230293069, -0.3603681345697496, -0.3219996368705693, -0.2895160101765324, -0.26232802314962433, -0.23985952588329185, -0.22155930599971208, -0.20690908751072645, -0.19542846602163344, -0.18667746913529504 ], [ -0.6551077972966216, -0.7107985322126837, -0.7719624894594507, -0.8387686314680428, -0.911298762766442, -0.9895206019072985, -1.0732568815627974, -1.162150885593901, -1.255629459497682, -1.352865452387829, -1.4527427924745528, -1.5538288859879046, -1.6543604792427875, -1.7522499872313453, -1.845118885109234, -1.9303626753421212, -2.005248496986936, -2.0670426270992994, -2.1131621132440377, -2.1413433142114013, -2.149819258348717, -2.1374937308125594, -2.104089849507478, -2.0502398077418045, -1.977483572456149, -1.888164419472244, -1.7852381334050025, -1.672033131000003, -1.5520026482081974, -1.4285017222968532, -1.304609135691607, -1.1830030397897495, -1.065890287531063, -0.9549834997264046, -0.8515162490058199, -0.7562852424477912, -0.6697087051643726, -0.5918917786714608, -0.5226919968772321, -0.46178021141358583, -0.4086943316654372, -0.3628847631253329, -0.3237514661553009, -0.290673192901892, -0.2630297951150464, -0.24021862551255713, -0.2216660563772006, -0.20683506649065153, -0.19522973852456738, -0.18639738723468136 ], [ -0.6754620759494273, -0.7333377086170293, -0.7968656688355124, -0.8662165368472977, -0.9414701119550168, -1.0225876100039915, -1.1093798516956506, -1.2014719016830981, -1.2982652574835563, -1.3988996067869988, -1.50221738833115, -1.6067358233260038, -1.710632472094867, -1.8117512296725606, -1.9076353806622577, -1.9955924213261291, -2.072791940799956, -2.1363939355334125, -2.183702257497655, -2.212337705386315, -2.220425614716614, -2.2067875449552306, -2.171111730456213, -2.1140606917870564, -2.037275205664785, -1.9432597570488626, -1.8351706277706898, -1.716551270895056, -1.5910621340805646, -1.4622407455636526, -1.3333130382961924, -1.2070642612797207, -1.0857685923817324, -0.9711702427339449, -0.8645050187597073, -0.7665498300845105, -0.6776882062731037, -0.5979818896684432, -0.5272412196188634, -0.46508964088806515, -0.4110198492269417, -0.36444068617747005, -0.32471494373467746, -0.29118884780302867, -0.26321428301987604, -0.2401649094656646, -0.22144728648609702, -0.20650801740978886, -0.19483779829427195, -0.18597311643952597 ], [ -0.6945334826406908, -0.754391492035344, -0.8200536299837821, -0.8916896524776425, -0.9693750900431802, -1.053062738627427, -1.1425501504072193, -1.2374436361739387, -1.3371199348339797, -1.44068761433304, -1.5469514498687198, -1.6543843971772578, -1.761113102271075, -1.8649237259427531, -1.9632946269387261, -2.05346064445863, -2.1325103824401825, -2.1975141132406164, -2.245677836629522, -2.2745200968301864, -2.282069414716273, -2.2670733302697856, -2.229190202612366, -2.16911368369665, -2.0885808413084392, -1.990247090191069, -1.8774539395190435, -1.753941382290809, -1.6235574127222374, -1.4900029425031538, -1.3566336480933252, -1.2263267967697247, -1.1014114387523881, -0.9836536660992968, -0.8742845399477379, -0.7740567797305992, -0.6833171376196108, -0.6020838075877122, -0.5301212881405595, -0.46700804644638416, -0.41219468531415093, -0.36505197604851625, -0.3249091628148921, -0.29108351433563384, -0.2629023454066348, -0.23971877488840865, -0.22092241561066417, -0.2059460628389651, -0.1942692975027056, -0.18541976919130132 ], [ -0.7121694233935597, -0.7737857016692166, -0.841327906731529, -0.9149623045985414, -0.9947576860497003, -1.0806563309553225, -1.1724410306072819, -1.269698732484572, -1.3717820144943635, -1.4777704857591165, -1.586435349061376, -1.696211664049248, -1.8051840989776415, -1.9110927503923119, -2.0113653963328955, -2.1031808366659526, -2.1835647930041366, -2.249516381418028, -2.298161831458974, -2.326934339368236, -2.3337807406978683, -2.3173869131433147, -2.2773891833640296, -2.21451348749057, -2.130586093015344, -2.0283981320787747, -1.9114549594173333, -1.7836685135047146, -1.6490494083569416, -1.5114387988538585, -1.374301967784103, -1.240591585898339, -1.112678591616975, -0.992341500870117, -0.8808004628497246, -0.7787807745594245, -0.6865916522778654, -0.6042089326276096, -0.5313538829451472, -0.46756353486017366, -0.4122504635493256, -0.3647516389072043, -0.3243669963322535, -0.2903888983022185, -0.26212385437133734, -0.23890786773653905, -0.22011667121318523, -0.2051719617439558, -0.19354457471613107, -0.18475537646659812 ], [ -0.7282336403393729, -0.7913656714785159, -0.8605132994475451, -0.9358364933243435, -1.0173947105061214, -1.1051175219987508, -1.1987714030364756, -1.2979233072915561, -1.401902278748702, -1.5097612193337318, -1.6202420164591185, -1.7317484609669351, -1.8423325460264197, -1.9497004622391891, -2.0512443870525683, -2.1441045524071076, -2.2252631352470003, -2.2916685319079924, -2.340388047034195, -2.3687901840172296, -2.374759626759476, -2.356937077643765, -2.3149471815897518, -2.249549095806101, -2.1626480879140146, -2.0571506280073075, -1.936698580407796, -1.8053455882610738, -1.6672352774141326, -1.5263224533742092, -1.3861596572212072, -1.2497572574914615, -1.1195149382149316, -0.9972147371318287, -0.8840607646199159, -0.7807489707955564, -0.6875516695654007, -0.6044048712972078, -0.5309904245761237, -0.46680849171052285, -0.4112385222831163, -0.3635886143319724, -0.3231341401271146, -0.28914698472854194, -0.2609168912299895, -0.23776636558226194, -0.21906045760911486, -0.20421255935005744, -0.1926871793917404, -0.18400047949951248 ], [ -0.7426084789240895, -0.8069989264525617, -0.8774610301834711, -0.9541456070974764, -1.0371001617647262, -1.1262393631675198, -1.2213118414860076, -1.32186397736858, -1.4272019802621059, -1.5363543839549323, -1.6480381140290246, -1.7606324215564804, -1.872166036795454, -1.980323538397379, -2.082476701174282, -2.17574508665328, -2.2570875187419093, -2.3234236834919644, -2.371785359640487, -2.3995005817207655, -2.4044155487797285, -2.385145920645265, -2.3413168468368313, -2.2737208136466442, -2.1843285520286813, -2.0761366290566676, -1.952890858730473, -1.8187516119018456, -1.6779621119063481, -1.5345614995529946, -1.3921655823609362, -1.2538240621111056, -1.1219523948995302, -0.9983280313582363, -0.8841351073556717, -0.7800396751034091, -0.686279159392268, -0.6027535409521585, -0.5291101478421885, -0.4648177235717954, -0.40922818405862915, -0.36162620322802086, -0.32126771111548424, -0.28740880544345493, -0.25932667492239725, -0.2363340539642338, -0.21778856541724112, -0.20309811438420744, -0.19172330207030241, -0.18317764908210554 ], [ -0.7551966873670217, -0.8205772767525993, -0.8920511744357227, -0.9697572401882818, -1.053728483408054, -1.1438625812332457, -1.2398889147416303, -1.3413328493990062, -1.447478593782632, -1.5573327643534984, -1.66959174507504, -1.7826169770071756, -1.8944232638481315, -2.0026857295704246, -2.1047708142390738, -2.197795332164062, -2.2787153703761334, -2.3444450361831874, -2.392006034157956, -2.418713094528777, -2.4224008901688, -2.4016827908314693, -2.3561975185485355, -2.2867696922375877, -2.1954189054637316, -2.0852026713791014, -1.9599342732248597, -1.8238424025191282, -1.6812337512664643, -1.5362005703350825, -1.3923968644806561, -1.252893029873613, -1.1201077449281356, -0.9958067087451583, -0.8811513958697084, -0.776778755213339, -0.6828946169582065, -0.5993678463007479, -0.5258170597242, -0.4616857340023497, -0.4063043567946809, -0.3589399823836841, -0.31883445238908603, -0.28523290643098953, -0.25740426154181417, -0.23465522853526632, -0.21633924860963116, -0.20186152583327988, -0.1906811284288612, -0.1823109472786517 ], [ -0.7659227046950945, -0.8320182776871511, -0.9041943076915526, -0.9825750398897113, -1.067176625739993, -1.1578778681206843, -1.2543877209750018, -1.356210321342478, -1.4626089194510086, -1.5725708242046548, -1.6847763728308112, -1.7975758829522497, -1.9089793847458716, -2.0166643883096445, -2.1180066793320163, -2.2101379327307544, -2.2900320994388017, -2.3546213830104916, -2.4009441216063276, -2.426330734208684, -2.4286331845690214, -2.4064864117666525, -2.359555569200955, -2.288694723288859, -2.1959535009280593, -2.084418838072187, -1.9579328366303947, -1.8207522486466814, -1.677209612153837, -1.5314180000980304, -1.3870440105042232, -1.2471601452192735, -1.114176350250375, -0.9898404069473535, -0.8752896460824928, -0.771133928834676, -0.6775518847933767, -0.5943870819935417, -0.5212359233840025, -0.45752325971323904, -0.4025645756578391, -0.3556152977145077, -0.3159086218366993, -0.28268357798584476, -0.2552050664383836, -0.2327774647474885, -0.21475320287390898, -0.2005374863573346, -0.18959013898714439, -0.18142534902389507 ], [ -0.7747334155474438, -0.8412660317523696, -0.9138323413835528, -0.9925395569305396, -1.077384884353819, -1.1682266743900156, -1.264752597008438, -1.366445665333018, -1.4725494997510942, -1.5820349293856169, -1.6935708478145153, -1.8055030922118895, -1.9158458450407445, -2.0222904276920417, -2.122236092932936, -2.212846396323407, -2.291133312598957, -2.354070691727575, -2.398740432843774, -2.422517967801859, -2.4233013708392783, -2.3997703425001515, -2.3516280774920593, -2.2797540600419772, -2.1862081499048034, -2.0740746965539674, -1.947185769982485, -1.8097857616445074, -1.6661952115014975, -1.520515524109172, -1.3764002761911478, -1.2369058115545837, -1.1044220777073004, -0.9806737280139837, -0.8667735268832691, -0.7633072693395105, -0.6704316245569232, -0.5879713228474417, -0.5155074890045563, -0.452453249796845, -0.3981156350896504, -0.35174445713049285, -0.31256966142861486, -0.2798289252979336, -0.25278727070313467, -0.23075030416594866, -0.2130724842165348, -0.19916159319758564, -0.18848037888598812, -0.1805461429347428 ], [ -0.781598371587198, -0.848291336709397, -0.9209385583668124, -0.9996281179409932, -1.084336546491481, -1.1749005526472158, -1.2709860680225336, -1.372055480324518, -1.4773344625917335, -1.5857804662075796, -1.6960556929638395, -1.8065081189215744, -1.915164769437534, -2.0197417383743286, -2.117675195903157, -2.2061767898730937, -2.2823158295868273, -2.34313051890936, -2.385772300482916, -2.4076896157501846, -2.406853527441888, -2.382009324191039, -2.3329077818012864, -2.2604488025402993, -2.1666830895706353, -2.0546618037372477, -1.9281698540222911, -1.7914003401698637, -1.6486250014387487, -1.50390175214559, -1.3608460508408993, -1.2224803946505605, -1.0911641895662667, -0.9685945822295016, -0.8558601771994545, -0.7535264424547197, -0.6617338676779271, -0.5802951530768545, -0.5087832551138511, -0.4466065145998408, -0.3930699906303978, -0.34742376471626923, -0.3088997585438238, -0.27673886684175186, -0.2502101805050585, -0.22862391105007052, -0.21133940983146093, -0.19776944951787767, -0.1873817235716182, -0.17969833161207283 ], [ -0.7865094995661502, -0.8530912092984753, -0.9255168904865195, -1.0038537798561893, -1.0880564278173606, -1.1779391628229252, -1.273146186705762, -1.3731202093066894, -1.4770710406349528, -1.5839461696641017, -1.6924060355720594, -1.8008073645010652, -1.9071984773093025, -2.009330704341762, -2.1046898223797053, -2.1905507754218614, -2.2640582698299894, -2.322336006852809, -2.3626288648172014, -2.3824834249117264, -2.379967013681133, -2.353907663813845, -2.304110696807926, -2.231490902536784, -2.138072035725025, -2.0268444474584095, -1.9015121095577836, -1.7661808599877855, -1.625039072701119, -1.4820708946638512, -1.3408296379673632, -1.204287089974205, -1.0747622951649047, -0.9539211634584657, -0.842829083139636, -0.7420353156789093, -0.6516701606146693, -0.5715411437475244, -0.5012200820503032, -0.44011729547255074, -0.3875421259762113, -0.34275054791220594, -0.30498141695587466, -0.2734831517612202, -0.2475326100228672, -0.22644775413406593, -0.20959548394004934, -0.19639578942512292, -0.18632316630202306, -0.17890605166262108 ], [ -0.7894803338581682, -0.8556878364039169, -0.9276005085342875, -1.0052634607369513, -1.088608425422028, -1.1774271053580159, -1.2713424790347085, -1.369779002769586, -1.4719331292587667, -1.5767461245333292, -1.6828817734137145, -1.7887121468350726, -1.8923150534357223, -1.991486979358208, -2.083775136785322, -2.1665317585656814, -2.2369933726445805, -2.2923880905783482, -2.3300750509616543, -2.3477200585083984, -2.3435052627445194, -2.3163541909400527, -2.2661309231997877, -2.1937594425692413, -2.1012211430960503, -1.9914219756682716, -1.8679557310618446, -1.7348091568941424, -1.5960560000640054, -1.4555787587711997, -1.3168462077612513, -1.1827636510613089, -1.0556006650246754, -0.9369886324897287, -0.8279708870616405, -0.7290846343336986, -0.640455849740716, -0.5618935025109486, -0.4929749854937564, -0.4331190080620675, -0.3816450796139468, -0.3378203271241582, -0.3008951524352177, -0.27012948479453236, -0.24481135627929151, -0.22426936639656714, -0.2078803894762309, -0.1950736583753212, -0.1853321521147442, -0.1781920326205031 ] ], "zauto": true, "zmax": 2.4286331845690214, "zmin": -2.4286331845690214 }, { "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.6414429903186597, 0.6388495675978075, 0.6360900720836029, 0.6331699745196496, 0.6300980397869691, 0.6268867156991109, 0.6235525112725057, 0.6201163613864225, 0.6166039746577209, 0.6130461573102711, 0.6094790956227656, 0.6059445616912421, 0.6024899819872507, 0.5991682786051504, 0.5960373657922972, 0.5931591693164063, 0.5905980452120023, 0.5884185179372565, 0.5866823409237986, 0.5854450001006896, 0.5847519160500901, 0.5846347244571404, 0.5851080932172252, 0.5861675378841611, 0.5877886102702605, 0.5899276662195101, 0.5925241995958672, 0.5955045071459885, 0.5987862706793136, 0.6022835430276821, 0.6059116145317052, 0.609591307185959, 0.613252368518783, 0.6168357856708401, 0.6202949839535423, 0.6235959936352208, 0.6267167535965441, 0.6296457687668935, 0.6323803534537458, 0.6349246813978423, 0.6372878332960223, 0.6394819911385274, 0.6415208826807578, 0.6434185342140436, 0.6451883496882221, 0.646842501944217, 0.6483915987294577, 0.649844572422695, 0.6512087370833519, 0.6524899579404715 ], [ 0.6390171126563033, 0.6361529074920051, 0.6331061142981202, 0.6298837724303858, 0.6264967578082998, 0.6229601812676143, 0.619293751861982, 0.6155221007841236, 0.6116750646720682, 0.6077879265240826, 0.6039016052271347, 0.6000627682349957, 0.5963238154354467, 0.5927426482457999, 0.5893821034536825, 0.5863089078066619, 0.5835920112859287, 0.581300198045173, 0.5794989617877238, 0.5782467629804929, 0.577590939746018, 0.5775636892228477, 0.5781786307617501, 0.5794284700960648, 0.5812841863097137, 0.5836959705855842, 0.5865958951313897, 0.5899020378764663, 0.5935235892180658, 0.5973663599741441, 0.6013381067606802, 0.605353178210665, 0.609336131614494, 0.6132241383312539, 0.6169681561747236, 0.6205329766851291, 0.6238963447113872, 0.6270473960963246, 0.6299846714197443, 0.6327139475828034, 0.6352460931973483, 0.637595106531297, 0.6397764433637376, 0.6418056924016413, 0.6436976123229132, 0.6454655099311717, 0.6471209147178021, 0.6486734913228697, 0.6501311268332887, 0.6515001326445443 ], [ 0.6364029301812882, 0.6332421766866386, 0.6298804147247643, 0.6263265070636849, 0.6225938047605096, 0.6187005597643477, 0.6146702701686123, 0.610531950673968, 0.6063203279587432, 0.6020759649791141, 0.5978453157017091, 0.5936806984275481, 0.5896401494278821, 0.585787080570447, 0.582189622010929, 0.57891949700654, 0.5760502680752771, 0.5736548297647565, 0.5718021143910155, 0.5705531208192522, 0.5699565517897378, 0.5700445136678715, 0.5708288451600717, 0.5722986546107949, 0.5744195367322006, 0.5771347202279374, 0.5803681126831669, 0.5840289238511674, 0.5880173277529757, 0.5922305111965097, 0.5965684626907942, 0.6009389623945145, 0.6052614030976946, 0.6094692623310883, 0.6135112215651303, 0.6173510677325207, 0.620966605487602, 0.6243478561365302, 0.6274948275212375, 0.630415117515976, 0.6331215718778519, 0.635630163939555, 0.6379582067450278, 0.640122953939258, 0.6421405986854696, 0.6440256431034611, 0.6457905855640895, 0.6474458594841604, 0.6489999536552012, 0.6504596483885877 ], [ 0.6335931100406528, 0.6301080250544662, 0.6264012988136811, 0.6224838802104073, 0.6183719870526985, 0.6140875416662651, 0.6096584978519954, 0.6051190458823695, 0.6005096942872407, 0.5958772380022599, 0.5912746268740728, 0.5867607407575798, 0.5824000531099004, 0.5782621238359549, 0.5744208107615306, 0.5709530422234573, 0.5679369722030514, 0.5654493669618129, 0.5635621641809166, 0.5623383019820869, 0.5618271131533672, 0.5620597743391926, 0.563045433088544, 0.5647686549331274, 0.5671887113792796, 0.5702409812343242, 0.5738404154069945, 0.5778866961440201, 0.5822704799707202, 0.586879997235377, 0.5916072997693301, 0.5963535769722166, 0.6010331548512382, 0.6055760044141733, 0.609928777165569, 0.61405453322218, 0.6179314232182873, 0.6215506308157732, 0.6249138864177909, 0.628030835132277, 0.630916493755665, 0.6335889721352672, 0.6360675718620589, 0.6383713163982551, 0.6405179163336605, 0.6425231346075859, 0.6444004905656903, 0.6461612283274147, 0.6478144724578501, 0.6493674998142592 ], [ 0.6305814246145566, 0.6267421841363628, 0.6226581018834305, 0.6183424741151803, 0.6138147969697237, 0.6091012394130905, 0.6042349561419836, 0.5992562172891435, 0.5942123496185976, 0.5891575030982235, 0.5841522709585598, 0.5792631925725998, 0.5745621493821826, 0.5701256216458204, 0.5660337132867568, 0.5623687896460521, 0.5592135341954914, 0.5566482444890599, 0.5547472770951845, 0.5535747191734456, 0.5531795861923164, 0.5535910686108164, 0.5548145065844295, 0.556828798232916, 0.5595858120898582, 0.5630120943587232, 0.567012799821525, 0.5714774213777054, 0.5762866318443943, 0.5813194346113505, 0.5864598538810826, 0.5916025486905757, 0.5966569551559858, 0.6015497948324408, 0.6062259927932352, 0.6106482038074074, 0.6147952417218846, 0.6186597498486391, 0.622245448691205, 0.6255642635086553, 0.6286335794524768, 0.631473806444676, 0.6341063681104964, 0.6365521657814894, 0.6388305149367405, 0.6409585106765907, 0.6429507522307623, 0.6448193435997145, 0.6465740862594789, 0.6482227875178346 ], [ 0.6273630838798688, 0.623137845253651, 0.6186415907604215, 0.6138902112144343, 0.60890690142713, 0.603722692352766, 0.598376760832766, 0.5929164784756703, 0.5873971854548401, 0.5818817046460155, 0.5764396391150562, 0.5711465107963891, 0.5660827889301631, 0.5613328162198779, 0.5569835713849934, 0.5531231256605077, 0.5498385885936099, 0.5472133327753612, 0.5453233688165285, 0.5442329191981491, 0.5439894864879388, 0.544618966756538, 0.5461215413909637, 0.5484691153803962, 0.5516049205611494, 0.5554455885239272, 0.5598855949007889, 0.5648035884222423, 0.5700698395528244, 0.5755539294863369, 0.5811318534563087, 0.5866918926456417, 0.5921388557101667, 0.5973965449760541, 0.6024085206721161, 0.6071373964428592, 0.611562995614572, 0.6156797363671558, 0.6194936066768723, 0.6230190495744159, 0.626276018039609, 0.6292873872694944, 0.6320768389321921, 0.6346672644602582, 0.637079677745763, 0.639332585110317, 0.6414417334114059, 0.6434201449338818, 0.645278348037076, 0.6470247221023047 ], [ 0.6239351079400635, 0.6192900911261771, 0.6143444541977915, 0.60911689939227, 0.6036347336706601, 0.5979344916836994, 0.592062262700511, 0.5860736603457553, 0.5800334048352923, 0.5740145295675614, 0.5680972691989563, 0.5623677209364918, 0.5569163780594916, 0.5518366011058188, 0.5472230156015254, 0.5431697221372757, 0.5397681114477095, 0.5371040422737119, 0.535254205965991, 0.5342816848228019, 0.5342309838376402, 0.5351231064970979, 0.536951457452772, 0.539679399816144, 0.5432401297800677, 0.5475391818520752, 0.5524594329367177, 0.5578680521876895, 0.5636245513727216, 0.5695889839055389, 0.5756294164530827, 0.5816280058084148, 0.5874852864667995, 0.5931225470766972, 0.5984824023692481, 0.6035278298915706, 0.6082400349157625, 0.6126155405718626, 0.6166628867348872, 0.6203992743752075, 0.6238474245955316, 0.6270328442561955, 0.629981611987186, 0.6327187268391156, 0.6352670023446164, 0.6376464447971867, 0.6398740273490744, 0.6419637602105431, 0.6439269592091742, 0.6457726265697455 ], [ 0.6202967370981556, 0.6151963800646582, 0.6097618636508368, 0.6040148677258715, 0.5979871971429116, 0.5917215395602863, 0.58527184283991, 0.5787032185043448, 0.5720913145553247, 0.5655211574596124, 0.5590855310727458, 0.5528830227301662, 0.5470159001804062, 0.5415879647600411, 0.5367024459809944, 0.532459874396843, 0.5289557357661528, 0.5262776325204791, 0.5245017178043381, 0.5236883500522179, 0.5238772148386704, 0.5250824917237056, 0.5272888906887572, 0.5304494402746015, 0.5344857288477309, 0.5392909142418151, 0.5447353302053325, 0.5506740667037631, 0.5569556002548701, 0.5634304563312962, 0.5699589874632971, 0.5764175885802316, 0.582702968268223, 0.5887343831259664, 0.594453977837199, 0.5998255365649259, 0.6048320414434963, 0.6094724617732028, 0.6137581775738705, 0.6177093880272848, 0.6213517819680241, 0.6247136649490578, 0.6278236547288026, 0.6307089818503133, 0.6333943700282383, 0.6359014258985201, 0.6382484405311677, 0.6404504948824563, 0.6425197651408026, 0.6444659376303045 ], [ 0.6164498742160768, 0.6108570789153762, 0.6048921030091637, 0.5985796948802622, 0.5919564884120434, 0.5850719550334662, 0.5779888820672343, 0.5707832391788417, 0.5635433355469479, 0.556368242214054, 0.5493655501887951, 0.5426486354964422, 0.5363336755435997, 0.5305366710903343, 0.5253706513425432, 0.520943083515796, 0.5173533210110735, 0.5146897868047865, 0.5130265839100954, 0.5124193973866935, 0.5129008766631854, 0.5144760636702427, 0.5171187207612306, 0.5207694867503296, 0.525336594098965, 0.5306994573771674, 0.5367149163010263, 0.5432254396993349, 0.5500682932372463, 0.5570845972565975, 0.5641273310847541, 0.5710676065740247, 0.5777988521832483, 0.5842388492252548, 0.5903298006332255, 0.5960367731034497, 0.6013449381685262, 0.6062560591176234, 0.6107846443549854, 0.6149541287753848, 0.6187933660412215, 0.6223336272669245, 0.6256062148703277, 0.6286407219844085, 0.6314639037682432, 0.6340990809168189, 0.6365659688268355, 0.6388808169449575, 0.6410567485289894, 0.6431042069139571 ], [ 0.6123995508292265, 0.6062760371848704, 0.5997372618283252, 0.5928110282337327, 0.5855390423576652, 0.5779781366526876, 0.5702009220181723, 0.5622956696279044, 0.5543652653175168, 0.5465251657140987, 0.5389004148446329, 0.53162193145827, 0.5248224089690786, 0.5186322278287183, 0.5131757198187292, 0.5085679390200487, 0.5049118373912264, 0.5022955185345628, 0.5007891686840199, 0.5004414108844182, 0.5012751761943068, 0.5032836161597035, 0.5064269213412005, 0.5106310092029462, 0.5157888379884152, 0.5217646453930858, 0.5284008475016264, 0.5355268369418209, 0.542968619784907, 0.5505581767803562, 0.5581415941433869, 0.5655853017265539, 0.5727800918908691, 0.5796428995687225, 0.5861165619016346, 0.5921679311140673, 0.5977847921411342, 0.6029720511126482, 0.6077476284318885, 0.6121384259383652, 0.6161766543585026, 0.6198967158169557, 0.6233327459769182, 0.6265168393372713, 0.6294779154927741, 0.6322411376009223, 0.634827768045651, 0.6372553388420695, 0.6395380220546266, 0.6416871035168891 ], [ 0.608154404542163, 0.6014611900645422, 0.5943039812739602, 0.5867134861673182, 0.5787365973248453, 0.5704379868680266, 0.561901032370117, 0.5532277978690033, 0.5445378276254096, 0.5359656077499906, 0.5276567177622916, 0.5197629113628601, 0.5124365813047783, 0.5058251989540788, 0.5000662979950453, 0.4952833621140491, 0.4915826296615867, 0.48905047933133666, 0.4877508771995812, 0.4877224616456465, 0.48897520988692866, 0.4914871255717468, 0.49520179598092207, 0.5000278028516025, 0.5058407597862444, 0.5124882608598911, 0.5197974305068873, 0.527584255713433, 0.5356635928540108, 0.5438587136252632, 0.5520094430031965, 0.5599782566103503, 0.5676540513052306, 0.5749536111240658, 0.5818210234755405, 0.5882254480342661, 0.5941577108184375, 0.599626203814201, 0.6046525327503179, 0.6092672870075556, 0.6135062186517315, 0.6174070228956513, 0.6210068193227031, 0.6243403500740214, 0.627438844298598, 0.6303294514712446, 0.6330351208104263, 0.6355747982495713, 0.6379638222364421, 0.6402144197622415 ], [ 0.603727150643007, 0.5964251723533642, 0.5886042352138819, 0.5802976284050689, 0.5715573701900339, 0.5624562961954973, 0.553089393021592, 0.5435740035013263, 0.5340485447149367, 0.5246694797125835, 0.5156064886977395, 0.5070360842346311, 0.499134247976236, 0.49206892413661796, 0.4859932615132662, 0.4810402740951414, 0.4773191289652682, 0.4749127420847143, 0.473876009007939, 0.47423400242175034, 0.47597984686453676, 0.47907255980001223, 0.48343565279661127, 0.48895748105016307, 0.49549412729358805, 0.5028750950645606, 0.510911467396457, 0.5194056723076569, 0.5281617235294301, 0.5369948039638446, 0.5457392730018846, 0.5542545084686462, 0.5624283439934494, 0.5701781659348775, 0.5774499575966584, 0.5842157163012675, 0.5904697306868317, 0.5962242072779734, 0.6015046931747896, 0.6063456697674648, 0.6107866026704233, 0.6148686360072338, 0.6186320241875869, 0.6221143097358803, 0.625349188182382, 0.6283659546276813, 0.6311894024046336, 0.6338400403249265, 0.6363345069485213, 0.6386860824615823 ], [ 0.5991350257390328, 0.5911859185588337, 0.5826561205454719, 0.5735809695201808, 0.5640173206551855, 0.5540462746140902, 0.5437750910555874, 0.5333377953777861, 0.5228939656237177, 0.5126252725254932, 0.502729581850807, 0.49341282280263604, 0.4848793183868281, 0.4773217176397681, 0.470911867767982, 0.4657937607290308, 0.4620790860473091, 0.45984513553644235, 0.45913418753654456, 0.45995334544014543, 0.46227418029495543, 0.466032217624068, 0.4711269533745407, 0.47742337525133344, 0.4847557953142032, 0.49293427783466487, 0.5017533101102771, 0.5110018480862333, 0.520473612505714, 0.5299765337927871, 0.5393404753024593, 0.548422700385184, 0.5571108941366456, 0.5653238431230598, 0.5730100875153865, 0.5801449870566908, 0.5867266961309621, 0.5927715396914578, 0.5983092363735795, 0.6033783410463817, 0.6080221876731697, 0.6122855148141082, 0.6162118598791172, 0.6198417228858449, 0.6232114328595586, 0.626352604365025, 0.629292048981051, 0.6320520045981761, 0.634650559507682, 0.6371021722776822 ], [ 0.5944001757428343, 0.58576721688135, 0.576484620914651, 0.5665889984584753, 0.5561414699774183, 0.5452312028201113, 0.5339781185069213, 0.5225341413270504, 0.5110822789149714, 0.49983287081775624, 0.48901658991316205, 0.4788742789430325, 0.46964440468584356, 0.4615496332409104, 0.45478447336483147, 0.44950581307786397, 0.4458274067268623, 0.44381821191420623, 0.44350344360321, 0.44486679236927784, 0.44785259934812277, 0.4523676293497959, 0.45828294412495724, 0.4654368300579816, 0.47363963348496446, 0.4826808398562506, 0.49233808313971006, 0.502387252806217, 0.5126126200832133, 0.5228159411946876, 0.5328237329085187, 0.5424922468237998, 0.5517100014314296, 0.5603980076143746, 0.5685080199990844, 0.57601926279021, 0.5829341257317369, 0.5892733186030813, 0.595070925425123, 0.6003697245775788, 0.6052170490063912, 0.6096613615685044, 0.613749623882115, 0.6175254516257239, 0.6210279821527744, 0.6242913358866238, 0.627344532126004, 0.6302117201280715, 0.632912602538163, 0.635462953955327 ], [ 0.5895499550845765, 0.5801991766779034, 0.5701222966509598, 0.5593561520657104, 0.5479652211719908, 0.5360461555737901, 0.5237315364943461, 0.5111920777226671, 0.49863632733061625, 0.4863068837763834, 0.47447236509256946, 0.46341496021638856, 0.4534143496059682, 0.4447299033094736, 0.4375839183470181, 0.43214874153388333, 0.4285396835136005, 0.42681393780833593, 0.4269740334697447, 0.42897347758971377, 0.4327225148593792, 0.438093019402945, 0.4449227397527998, 0.45301983829588727, 0.46216869249488013, 0.4721374295986199, 0.48268699710978713, 0.4935810337224908, 0.5045955520569838, 0.5155274759961714, 0.526201303498033, 0.5364734806032572, 0.54623438529857, 0.5554080780218771, 0.5639501580420003, 0.5718441719638522, 0.5790970628007419, 0.5857341389706955, 0.5917939950556582, 0.5973237414525479, 0.6023748083068267, 0.6069994901889285, 0.6112483015789804, 0.6151681284306831, 0.6188010951874604, 0.622184023989939, 0.6253483441825585, 0.6283203127912367, 0.631121424914388, 0.6337689201494734 ], [ 0.5846170991355361, 0.5745185609362726, 0.5636098415040149, 0.5519266733418335, 0.5395356051257743, 0.5265397221842469, 0.5130837418322178, 0.49935755910950813, 0.48559702150627254, 0.4720805351254076, 0.4591202345878222, 0.4470470896452307, 0.4361905731618158, 0.42685519307073505, 0.4192977102338664, 0.41370938694947595, 0.4102065395024323, 0.4088302136167515, 0.4095530758505133, 0.4122899747174101, 0.41690874374286313, 0.4232392886309204, 0.4310807757422012, 0.44020790462454185, 0.4503774832370831, 0.4613360583031495, 0.47282863510561807, 0.48460792641303274, 0.4964432740109532, 0.5081283860669835, 0.5194872338200489, 0.5303777396285374, 0.5406931781603207, 0.5503614528189403, 0.5593425804131973, 0.5676248181451318, 0.5752199072093536, 0.5821578984826838, 0.588481979416588, 0.5942436477562312, 0.5994984869670235, 0.6043027001600676, 0.608710463855738, 0.612772079443786, 0.6165328361376097, 0.6200324589116369, 0.6233049988683367, 0.6263790285402833, 0.6292780249087941, 0.6320208512891385 ], [ 0.5796397282628477, 0.5687689281824996, 0.5569964345677214, 0.544355266223286, 0.5309123501531077, 0.5167756141691097, 0.5021007311170849, 0.48709646577805643, 0.4720271140983839, 0.45721013424296825, 0.44300699949741135, 0.4298058952417957, 0.4179964195197873, 0.4079388604184676, 0.3999331899480059, 0.39419429701394615, 0.3908389374032296, 0.3898863516439473, 0.3912700985670351, 0.3948556987300586, 0.4004585151986276, 0.40785841296409703, 0.41681047556910894, 0.4270529543464313, 0.4383141781292596, 0.4503196917869151, 0.4628000506992309, 0.47549897146182946, 0.4881811440898159, 0.5006389444383991, 0.5126974408306096, 0.5242173460603011, 0.5350958346147175, 0.5452653728002754, 0.5546908746957722, 0.5633655968891164, 0.5713062266628445, 0.5785476118603726, 0.5851375365801477, 0.5911318751575528, 0.5965903675322323, 0.6015731622677557, 0.6061381795235051, 0.6103392647629857, 0.6142250424364037, 0.6178383414887687, 0.6212160515125603, 0.624389276102705, 0.6273836721836992, 0.6302198933329739 ], [ 0.5746611406798967, 0.5630005233973454, 0.5503398051792707, 0.5367074396848185, 0.5221686423865811, 0.5068340070398347, 0.49086820189381775, 0.4744976243736519, 0.45801523561373075, 0.4417801071942379, 0.426208793083299, 0.4117559989932264, 0.3988837397210493, 0.38802148373604073, 0.3795239375187645, 0.37363610625321597, 0.37047466462638734, 0.3700296802674152, 0.37218359179333804, 0.3767391049689157, 0.3834469963176298, 0.3920280670144953, 0.4021878830097978, 0.41362601484211586, 0.42604246903894444, 0.4391434504906882, 0.4526474760179035, 0.4662918744492591, 0.4798391382007407, 0.49308242273868075, 0.505849590973354, 0.5180054298687291, 0.52945192433481, 0.5401266997097541, 0.5499999126966331, 0.5590699758609791, 0.5673585476640584, 0.5749052176890602, 0.5817622754664934, 0.5879898814400015, 0.5936518705843437, 0.5988123237542643, 0.6035329497642846, 0.6078712422634114, 0.6118793171383716, 0.615603302360248, 0.6190831426359881, 0.6223526918590941, 0.6254399904358859, 0.6283676543784779 ], [ 0.5697293534814938, 0.5572698566447933, 0.5437059218811077, 0.5290594175920605, 0.5133914136605058, 0.49681241343404414, 0.4794932593492373, 0.46167560699707383, 0.44367999663820523, 0.4259084834651671, 0.40883782925610906, 0.39299908497522806, 0.3789410104775393, 0.36717902140092523, 0.35813778955959225, 0.3521014661964613, 0.349186292938393, 0.34934349226789774, 0.3523886628658203, 0.3580446266828843, 0.3659831291131212, 0.37585615305458625, 0.38731488370843403, 0.4000192900394469, 0.4136427359583307, 0.427875125414879, 0.4424264063895494, 0.4570308309948681, 0.47145153652914334, 0.4854847177070356, 0.49896271356362953, 0.511755554593557, 0.5237707825513788, 0.5349515964759506, 0.5452735619180022, 0.5547402376687142, 0.5633781295762029, 0.5712313837447018, 0.5783565926732472, 0.5848180191369412, 0.590683455348552, 0.596020840730514, 0.6008956716975289, 0.6053691610813959, 0.6094970504551693, 0.6133289490719949, 0.6169080675886878, 0.6202712285271089, 0.6234490613275153, 0.6264663198849144 ], [ 0.5648963582073049, 0.5516389132601791, 0.5371682168126586, 0.5214974812216022, 0.5046809671718205, 0.4868258329326121, 0.46810541159325597, 0.44877295272171863, 0.4291738128247933, 0.4097525853935132, 0.39104996313761825, 0.3736829951410064, 0.3583033498393819, 0.3455330990864316, 0.33588700565300966, 0.32970103264830075, 0.327091035456685, 0.3279566129628863, 0.3320258563308744, 0.33892017541417324, 0.3482153982530012, 0.3594847305658708, 0.37232147800044674, 0.3863471276798372, 0.40121210387756295, 0.4165946776546516, 0.4322008144120733, 0.4477656412377799, 0.46305605156216034, 0.47787355233915524, 0.4920564993731448, 0.5054811169505083, 0.5180610037587537, 0.5297451040790965, 0.5405143342962822, 0.5503771905773371, 0.5593647293699882, 0.5675253197036855, 0.5749195285792806, 0.5816154315141141, 0.5876845526749201, 0.5931985455698061, 0.5982266376336518, 0.6028337900309221, 0.6070794743848704, 0.6110169436686756, 0.6146928735609173, 0.6181472678098866, 0.6214135488452651, 0.6245187847919182 ], [ 0.5602170700920643, 0.5461739527555002, 0.5308062678414082, 0.5141166144400318, 0.49614973715957084, 0.4770058791751156, 0.4568564446881989, 0.4359613023526065, 0.4146858939827053, 0.3935144165113882, 0.37305275768027635, 0.3540122703133708, 0.3371648047772866, 0.3232640696525106, 0.3129413431273218, 0.30660224014194115, 0.30436308200015194, 0.3060549014484649, 0.3112910942431314, 0.3195648004171623, 0.33033686936640017, 0.3430925820648024, 0.35736637152691814, 0.372745259019779, 0.3888629098063025, 0.4053923791791286, 0.42204126307079226, 0.43854996762620563, 0.4546923108239625, 0.4702772045652505, 0.4851502627537906, 0.4991945142903983, 0.5123297819146729, 0.5245106235310719, 0.535722983393538, 0.5459798594549007, 0.5553163696116089, 0.5637846093752374, 0.571448654016516, 0.5783799860387753, 0.5846535391573281, 0.5903444565188178, 0.5955255756417974, 0.6002655849545033, 0.6046277528542932, 0.6086691117035975, 0.6124399835468584, 0.6159837554033587, 0.6193368414825807, 0.6225287991236975 ], [ 0.5557479695517159, 0.5409438769089027, 0.5247038861510794, 0.5070183441134253, 0.48791998834035955, 0.46749856318220706, 0.4459186884413204, 0.42344076588652074, 0.40044355125405734, 0.3774448505291724, 0.3551133175959828, 0.3342598079697099, 0.3157931468533693, 0.3006275887933464, 0.28954505246016854, 0.2830458633961846, 0.28124914692015635, 0.2838949381134342, 0.2904464045187313, 0.30023567611328417, 0.3125884037279901, 0.32689531202266275, 0.34263494385443893, 0.3593676030691109, 0.37671909729791087, 0.39436529467472875, 0.4120217494031627, 0.42943865466744835, 0.4463996664443155, 0.4627227658684167, 0.4782615851543012, 0.492906104318483, 0.5065821231328554, 0.5192493280229792, 0.5308980730141484, 0.5415451774391407, 0.5512291276360002, 0.5600050779220819, 0.5679400005877299, 0.575108256108242, 0.5815877609307183, 0.5874568359117313, 0.592791735757105, 0.5976647973948425, 0.6021431079748144, 0.6062875816640415, 0.6101523448623167, 0.6137843547909151, 0.6172232077322173, 0.6205011218556252 ], [ 0.55154546033959, 0.5360181817063072, 0.5189465998617843, 0.5003077173422166, 0.4801203074312325, 0.45846043614413223, 0.4354811489359206, 0.41143669018767115, 0.3867106393072101, 0.3618451570400352, 0.33756440010746563, 0.3147785429286118, 0.294546878299026, 0.27797529441352553, 0.2660389506909641, 0.25936756775768477, 0.2580879625885892, 0.26181979577443565, 0.2698304425353034, 0.2812528320209171, 0.2952583314684686, 0.31114149106857003, 0.3283334992641616, 0.3463799310718309, 0.3649101453691073, 0.3836119255197282, 0.40221523136604925, 0.4204841353532657, 0.4382143898424336, 0.45523399895924826, 0.4714047078203262, 0.4866230179236202, 0.5008199829065738, 0.5139595485372155, 0.5260355527202586, 0.5370677071293009, 0.5470969691259998, 0.5561807126026226, 0.5643880491676538, 0.571795562098202, 0.5784836151257915, 0.5845333022052102, 0.5900240245645847, 0.5950316251107121, 0.5996269809883176, 0.6038749517142631, 0.6078335977216976, 0.6115536142126209, 0.6150779584326411, 0.6184416760069877 ], [ 0.5476639999120697, 0.5314645520713294, 0.5136185853524541, 0.49408943736340366, 0.4728808358401695, 0.45005289323931724, 0.42574304403889274, 0.4001929366562265, 0.3737816464420964, 0.34706370028916894, 0.32080614210684666, 0.29601056162798384, 0.2738927310511364, 0.25577923964616817, 0.2428883106089732, 0.23602537368005497, 0.23533385469340345, 0.2402756877949843, 0.2498664343413174, 0.2629988227176596, 0.2786760921847552, 0.29610304745686544, 0.3146787195951965, 0.3339498697387382, 0.35356237390255735, 0.37322506177233195, 0.3926879791738717, 0.41173209609654376, 0.43016641942992023, 0.44782894279801067, 0.4645887973717069, 0.4803479247448575, 0.49504140639060124, 0.5086361940338348, 0.5211283874612945, 0.5325394276098924, 0.5429116538485512, 0.5523036579988365, 0.5607857920598062, 0.568436082656533, 0.5753366960652896, 0.5815709996281186, 0.5872211891220472, 0.5923664029736608, 0.5970812243896003, 0.6014344785492909, 0.6054882573172592, 0.6092971392307859, 0.6129076076810193, 0.6163576962548408 ], [ 0.5441540911045146, 0.5273462093707869, 0.5087991742668476, 0.4884632909074612, 0.4663273466697851, 0.4424346374910457, 0.4169044941301817, 0.3899609319653243, 0.36196985528027686, 0.3334850101309248, 0.3052992126355601, 0.2784885141789888, 0.2544187974874745, 0.23465681030460908, 0.22071506129555257, 0.21363200746950678, 0.21358221256781434, 0.21982553128463606, 0.23106262840446154, 0.24590886058113479, 0.26319667212748626, 0.2820581384557321, 0.3018816157026963, 0.32223318646945004, 0.34278789058483516, 0.36328322519272155, 0.38349314228001563, 0.4032167492068903, 0.4222759512253197, 0.4405174954999302, 0.45781626252935637, 0.4740778868624219, 0.48923977342826097, 0.5032702821241578, 0.5161662978080646, 0.5279496292110019, 0.5386627444167672, 0.5483643081070444, 0.5571248845014217, 0.5650230465460788, 0.5721420120748012, 0.5785668276321363, 0.5843820493313467, 0.5896698308037769, 0.5945083197030112, 0.5989702811877953, 0.6031219009784367, 0.6070217615892962, 0.6107200224710075, 0.6142578589983088 ], [ 0.541060255941739, 0.5237191733592593, 0.5045591475219504, 0.4835191321751274, 0.46057447432338683, 0.43575260752489425, 0.40915454088826825, 0.38098425705181227, 0.3515884125897568, 0.32150832676891933, 0.29154382873681756, 0.26282069332769775, 0.2368326189916771, 0.21538577613146592, 0.20032584980488793, 0.19298457815076236, 0.19358821328550135, 0.20114968083186877, 0.21399644477693647, 0.23044532101646245, 0.24917270955220397, 0.269265539841987, 0.29012622497778295, 0.3113571156520995, 0.33267205447929654, 0.3538415100838523, 0.37466420484621016, 0.3949562437672023, 0.41455027714293075, 0.43329927694945003, 0.451081343822316, 0.46780346223178965, 0.4834032655769737, 0.49784866521031795, 0.5111356723873355, 0.5232849605688343, 0.5343377500470456, 0.5443515177318196, 0.5533959005534822, 0.5615490141788194, 0.5688942772733585, 0.5755177306049161, 0.5815057760359051, 0.5869432328571393, 0.5919116136062476, 0.5964875508660853, 0.6007413504834532, 0.6047356937473157, 0.6085245501020627, 0.6121523839035 ], [ 0.538419136844821, 0.5206296437788505, 0.5009571043410642, 0.479331822181317, 0.4557186343417446, 0.4301320581636312, 0.4026572894941785, 0.373479480172575, 0.34292439559000465, 0.3115139505513908, 0.28003925318621126, 0.24964830484848016, 0.2219255362323258, 0.1988856944498341, 0.18271120624017134, 0.17506775709149913, 0.17625612049971898, 0.18501460231697292, 0.19926955362740797, 0.21705062637330474, 0.2369129889598883, 0.2579316374674416, 0.2795449264191331, 0.3014026019342143, 0.3232610431811307, 0.344923062340725, 0.3662092582743059, 0.38694889227295115, 0.40698135698006643, 0.42616211622443473, 0.44436921988991934, 0.46150822953453313, 0.4775146763262719, 0.49235403799953464, 0.5060197136526259, 0.5185296714777583, 0.5299224359260326, 0.5402529541059882, 0.5495887067728968, 0.5580062562484913, 0.5655882809175902, 0.5724210465139966, 0.5785922103889389, 0.5841888420641549, 0.5892955636521169, 0.5939927569625493, 0.5983548385959331, 0.6024486577123837, 0.6063321118948316, 0.610053095680901 ], [ 0.5362578819131787, 0.5181117321861192, 0.4980362468347118, 0.47595662686781365, 0.45183137473467555, 0.4256668712147495, 0.39753769347349727, 0.3676152419655218, 0.33620816579917, 0.30381905943388815, 0.27122237772261715, 0.2395657382664418, 0.21048021675307724, 0.18612591929027283, 0.1689647358893799, 0.16097837264878898, 0.16255577929318285, 0.17218172716743393, 0.18742212302369085, 0.20607732899851747, 0.2266307708421044, 0.2481744617642131, 0.2701942987199634, 0.29238849443637877, 0.3145517294817227, 0.3365127520889687, 0.35810716919043634, 0.3791709532530397, 0.3995446291571787, 0.41908150751552864, 0.43765586446910476, 0.455168894670294, 0.47155167512478025, 0.4867653035806345, 0.5007988713375497, 0.5136660898493668, 0.5254013248145805, 0.5360556064734783, 0.5456929643922726, 0.5543872345347177, 0.5622193347923116, 0.5692749113016808, 0.5756422184374609, 0.5814101007960565, 0.5866659838209345, 0.5914938381830329, 0.5959721485214213, 0.6001719767294494, 0.6041552519651445, 0.6079734353202499 ], [ 0.5345929646196207, 0.516185772590469, 0.49582193129247865, 0.4734256190768383, 0.4489540128876987, 0.42241144348157916, 0.3938691078649263, 0.3634929095088248, 0.3315830126991645, 0.29862995066128395, 0.26539335363950883, 0.2330084665526948, 0.2031125751176803, 0.17792532808114217, 0.16006025860307044, 0.15170291027548655, 0.1533184273736767, 0.16323895581080444, 0.17880953413571327, 0.19770619281001497, 0.21839262801339082, 0.23999292893031282, 0.26203717248208697, 0.2842614476453298, 0.3064863261667461, 0.3285546413686722, 0.3503066840476504, 0.3715766460873919, 0.39219949946233557, 0.4120213206720329, 0.4309088418411021, 0.4487561037888614, 0.46548760991079635, 0.48105835675166203, 0.4954516049522136, 0.508675361993119, 0.5207584110291391, 0.5317464665845673, 0.5416987670410522, 0.5506851869959247, 0.5587837967344226, 0.5660787139180722, 0.5726580733883684, 0.5786119689154992, 0.5840302795749492, 0.5890003681272337, 0.5936047152944078, 0.5979186190847595, 0.6020081308472274, 0.6059284113229628 ], [ 0.5334295618287342, 0.5148574047205453, 0.494320293863682, 0.47174558095046676, 0.44709437395075446, 0.4203755178009439, 0.39166493834337884, 0.36113282481621567, 0.32908209728706966, 0.29600280719421773, 0.2626483641597904, 0.23013895927075065, 0.2000859372948411, 0.17467601353010262, 0.15649965061470608, 0.14775182667481246, 0.1489315010986572, 0.15839074861310787, 0.1734774919153994, 0.19187880673741925, 0.21208467971945405, 0.2332513883238864, 0.2549368175268563, 0.2768950422876994, 0.29895390013275897, 0.32095451458026447, 0.34272923800747734, 0.3641008628257833, 0.38489178917643313, 0.4049359375531772, 0.42408914658636826, 0.44223603049211674, 0.4592928934837067, 0.47520731658348814, 0.4899554986529867, 0.5035384731644601, 0.5159780983916654, 0.5273133868666219, 0.5375974163778583, 0.5468948156514045, 0.5552796655688593, 0.5628335947795957, 0.5696438565971238, 0.5758012291015309, 0.5813976619612266, 0.5865236848353488, 0.5912656791336248, 0.5957031847857136, 0.5999064556490157, 0.6039344836631468 ], [ 0.5327615687206049, 0.514117556886395, 0.49351815921448255, 0.47089775620988805, 0.44622622954889646, 0.41952300983090646, 0.3908762893719073, 0.36046969012343766, 0.3286194776478611, 0.2958262718824423, 0.26284579433802746, 0.23078159272692178, 0.20119024255015225, 0.17613883720783982, 0.15802409956309568, 0.14885037169877985, 0.1490989611306636, 0.15731985485575425, 0.17110017942499814, 0.18827792652783978, 0.2074125174895798, 0.22768746274836982, 0.24866726571662331, 0.2701001816600374, 0.2917998259136439, 0.3135880228432783, 0.335275740005392, 0.3566646997211696, 0.3775581889673603, 0.39777382509256726, 0.4171540851914562, 0.4355727323930517, 0.452936971041654, 0.46918620853031295, 0.4842887308144575, 0.4982375511212512, 0.5110463637755431, 0.5227461157161928, 0.5333823324089475, 0.5430130713968936, 0.5517072393990188, 0.5595429780414914, 0.5666058668298257, 0.5729867788353438, 0.5787793305493449, 0.5840769749294702, 0.588969882500558, 0.593541828144394, 0.5978673411344279, 0.602009376237471 ], [ 0.5325722700055519, 0.5139433643288339, 0.4933842982264102, 0.4708395744377176, 0.44629166536473625, 0.41977526667995835, 0.39139646513913084, 0.36135881423533023, 0.32999882246614887, 0.2978336402936733, 0.26562320893300373, 0.23444571225770938, 0.20577140418261675, 0.1814763246507273, 0.16364539002429992, 0.1539687027297785, 0.15287860698958128, 0.15923413903315176, 0.17102996533620168, 0.18637353040290794, 0.20394076117988488, 0.22294478314947422, 0.24293990599545714, 0.26364644696624534, 0.2848427556958301, 0.3063140315122944, 0.3278369762117518, 0.34918351575983697, 0.3701324905668241, 0.3904823754170211, 0.4100610789729715, 0.42873119553784544, 0.44639081661595476, 0.4629710641853378, 0.47843187929994097, 0.49275744073731537, 0.5059521371844928, 0.5180375011388206, 0.5290500887192096, 0.5390400246640052, 0.5480698251539304, 0.5562131252039507, 0.5635530256454394, 0.5701798978627342, 0.576188615483254, 0.5816753044126828, 0.5867338048620936, 0.5914521122185588, 0.5959090995471107, 0.6001718173113342 ], [ 0.5328356219352718, 0.5142999575638498, 0.49387193911875843, 0.4715082053912455, 0.44720616253586987, 0.42101842396003136, 0.3930717927774008, 0.36359235265601847, 0.33293835892882334, 0.3016421966164801, 0.2704609441375156, 0.2404300948056427, 0.2129014594938214, 0.1895139633011272, 0.17199488322409015, 0.1616942216319693, 0.1589924321802734, 0.16308478835612658, 0.1724426345442143, 0.18552148618319814, 0.20116300356127234, 0.21862442889101213, 0.23744222545213092, 0.2572916113810003, 0.277897160653492, 0.2989917954817412, 0.32030665222905474, 0.34157682244087406, 0.36255310760887893, 0.38301367585566254, 0.40277216094098534, 0.4216809174110537, 0.43962986299977574, 0.4565423787707274, 0.4723700243797929, 0.4870875238268152, 0.5006888783743662, 0.5131848448982496, 0.5246015551941181, 0.5349798045081597, 0.5443744823383219, 0.5528536940479684, 0.5604972646705241, 0.5673944792744489, 0.5736410695399725, 0.5793355899308642, 0.584575431838565, 0.5894527944763241, 0.5940509609256985, 0.5984412117260225 ], [ 0.5335180387469883, 0.5151429604132033, 0.4949222858266939, 0.47282555683697364, 0.44886576981782506, 0.42311382549644055, 0.3957169840557593, 0.3669223460023153, 0.33710608470957965, 0.3068080617515758, 0.27676882924553214, 0.24796050480666285, 0.22159203275116826, 0.19905027479862028, 0.18171951200035866, 0.17064934903173465, 0.1661825088427416, 0.16782280243991887, 0.17450904193717126, 0.18507906143092484, 0.19858267509225105, 0.2143437824575254, 0.23188173745876306, 0.25081479898489817, 0.2707984057261865, 0.2914998744646704, 0.3125956291720083, 0.33377900818068357, 0.3547712051058545, 0.3753307510575555, 0.3952588642901704, 0.4143998327519914, 0.43263724026261857, 0.44988784651762515, 0.46609509633239926, 0.48122374589923533, 0.49525631890020294, 0.5081913791870983, 0.5200431217530697, 0.5308415810126043, 0.5406327778443046, 0.5494782825622208, 0.5574538779731077, 0.5646472114541738, 0.5711545016946414, 0.5770765061810913, 0.5825140583189632, 0.5875635467173812, 0.5923127298465205, 0.5968372531084681 ], [ 0.534580529401627, 0.5164214648206861, 0.49646868584694037, 0.47470415547214245, 0.45115546854893895, 0.425910029062181, 0.39913253583406827, 0.3710861912767536, 0.34215737866262874, 0.31288198623979413, 0.2839685865679146, 0.25630881309623604, 0.23095835884092153, 0.20906471573434396, 0.191718373311215, 0.17973304176988303, 0.17343188871582402, 0.17257868679631508, 0.17652946567244596, 0.18450292455100809, 0.19578549836420772, 0.20979118056724705, 0.22602766641731936, 0.24404831013560077, 0.26342693153407215, 0.283754408624548, 0.3046457064458144, 0.3257497690101829, 0.3467586756122084, 0.36741377115309826, 0.38750717219587344, 0.4068783696086802, 0.42540718631957836, 0.44300528397819766, 0.45960840429798483, 0.47517080020309743, 0.48966232650889024, 0.5030678259828683, 0.515387965676626, 0.5266405565287497, 0.5368615213079692, 0.5461049323091737, 0.5544418196524704, 0.5619576969911865, 0.5687489442037038, 0.5749183270177922, 0.5805700280322381, 0.5858046159307965, 0.5907143886437027, 0.595379488665742 ], [ 0.5359810023100686, 0.5180812098559471, 0.49844103480899626, 0.4770532771219114, 0.4539577418290878, 0.429254830367001, 0.40312164180006765, 0.37583041420204405, 0.347768207709925, 0.3194549716546425, 0.2915543817679924, 0.2648683986044615, 0.24030372676062592, 0.2187992073907789, 0.20121239359578072, 0.1881851735352935, 0.1800366366959325, 0.17674084963897363, 0.17800768725290983, 0.18341265847708538, 0.1924917291860521, 0.2047680926229276, 0.21974446728982217, 0.23690381781188502, 0.25572843478888485, 0.2757245358693514, 0.29644139807022835, 0.317483180372745, 0.33851524605304295, 0.3592657537387537, 0.37952222230934096, 0.3991234374899226, 0.4179484988594447, 0.4359056495595992, 0.45292327511892644, 0.4689444073894397, 0.48392483460201496, 0.4978339847427263, 0.510657311745644, 0.5223989200178026, 0.5330834418280002, 0.5427565596883539, 0.551483923263009, 0.5593484933084175, 0.5664465456203113, 0.5728826995510161, 0.5787644147704908, 0.5841964361087079, 0.5892756608476554, 0.5940868529587112 ], [ 0.5376765499366651, 0.5200676890813417, 0.5007700106684101, 0.47978472167911357, 0.45716044605835043, 0.4330059582791543, 0.4075046153447999, 0.38092983196701874, 0.35365990012130716, 0.32618876619645976, 0.2991272016823835, 0.2731869900859417, 0.24914119373014104, 0.2277588136955125, 0.20972343799319318, 0.1955591017563207, 0.1855920825846232, 0.17996329188416613, 0.17867373848946388, 0.1816193832332882, 0.18858481284941592, 0.19921493973183874, 0.21301362515164196, 0.22938998632395236, 0.24772775469501934, 0.26744325648344236, 0.2880184993403325, 0.30901458186232134, 0.3300741593386087, 0.3509173936606074, 0.37133252666085365, 0.39116218803739383, 0.4102879149983174, 0.42861606889263093, 0.4460677214624764, 0.46257361331786606, 0.4780737610151549, 0.4925202757856809, 0.5058816181865249, 0.5181467056467058, 0.5293277571865881, 0.5394612771474775, 0.5486070161071577, 0.5568450584370527, 0.5642713825349385, 0.5709923521005075, 0.5771186527941664, 0.5827592037954296, 0.588015551508743, 0.5929771899478057 ], [ 0.539625540561704, 0.5223289402730534, 0.5033907877956588, 0.4828177385495886, 0.46066329542506074, 0.43703950455169055, 0.4121296162285836, 0.38620071860419075, 0.3596143257338015, 0.3328314616314731, 0.3064073035489426, 0.2809699955225053, 0.2571806218689419, 0.23567817792433912, 0.21702379032609953, 0.2016663760090311, 0.18994730035670945, 0.18213825299509928, 0.17847372108640622, 0.17912694603906354, 0.18411837977478526, 0.19322005467317557, 0.20594237638370436, 0.2216200449834201, 0.2395352069039872, 0.2590127811430148, 0.2794687512550203, 0.30042479613179374, 0.32150610751997133, 0.3424308036987242, 0.3629935570971585, 0.38304543519548934, 0.40247332111326506, 0.4211827709953022, 0.43908704110305524, 0.4561030038249255, 0.47215281531964065, 0.48716914370126696, 0.501101602335026, 0.5139224823352733, 0.5256305767405703, 0.5362525602757925, 0.545841898343691, 0.5544755844720695, 0.5622491833941532, 0.5692707382952803, 0.5756541257991233, 0.5815124321138927, 0.586951882943227, 0.5920667842585361 ], [ 0.541789376770138, 0.5248178258114405, 0.5062459733128907, 0.48608276543450474, 0.4643825388908423, 0.44125561129668867, 0.41687925191222525, 0.3915078655243663, 0.36548030685145033, 0.3392211238151788, 0.31323167676889196, 0.28806752780781264, 0.2643016826724325, 0.24248005846686563, 0.22308426615337112, 0.20652161040963715, 0.19315452077755935, 0.18335599216385928, 0.17754161859452963, 0.17611387627392405, 0.17930528533039838, 0.1870130450062947, 0.19875951474116862, 0.21380911218358542, 0.23134511343937758, 0.2506041597989279, 0.2709404552815807, 0.29184157458838345, 0.3129213341700454, 0.33390209557510253, 0.35459062495804494, 0.3748506525223191, 0.39457669329816947, 0.41367381775506845, 0.43204621630628465, 0.44959469949792763, 0.4662210605467455, 0.48183619735284167, 0.4963689988707098, 0.5097737864226989, 0.5220350701812441, 0.5331692120062523, 0.5432231551117116, 0.552270701336049, 0.560406958807813, 0.5677416210058923, 0.5743917251563534, 0.5804744990406462, 0.5861008450574372, 0.5913699228007868 ], [ 0.5441338232989393, 0.527493680012389, 0.5092876153780044, 0.4895238124237751, 0.4682536733937172, 0.4455813439016258, 0.42167321921956546, 0.3967662368626291, 0.37117300164173556, 0.34528098129806173, 0.31954261740490886, 0.29445408106904747, 0.2705236121208112, 0.24823632064697276, 0.2280293985892936, 0.21029521196871095, 0.19542253200456275, 0.18386180959857343, 0.1761619049847965, 0.17290211100967545, 0.1744920993453662, 0.1809443311760289, 0.19179928442233082, 0.20626197012723294, 0.22342708062474606, 0.2424516137915717, 0.26263533198026956, 0.28343845028268927, 0.3044699957158067, 0.32546281851853026, 0.3462410113726367, 0.36668445162525015, 0.3866966293398995, 0.406181456739554, 0.42503192708373777, 0.44312994302917075, 0.46035405377382704, 0.4765909321636855, 0.491746922715021, 0.5057571973179176, 0.5185913283733109, 0.5302550733821384, 0.5407887705432411, 0.5502630352505582, 0.5587725347015524, 0.5664286013479103, 0.5733513889942219, 0.5796622057657884, 0.5854765787054503, 0.5908985065160046 ], [ 0.5466298542060417, 0.5303232706521802, 0.5124782386690075, 0.4930994778984501, 0.4722322569535337, 0.44997097478821324, 0.42646751788973813, 0.40193828119872427, 0.3766681480060967, 0.3510091694584369, 0.32537156257758154, 0.3002056118864257, 0.27597583419779576, 0.25313357145972104, 0.23209986625875595, 0.2132736892224845, 0.19707534803285018, 0.18401374257198833, 0.1747273303269037, 0.16991627906076776, 0.1701216742816912, 0.1754526548852969, 0.18547478759615232, 0.19935253235772937, 0.21611105123486843, 0.23484232979586608, 0.2548021205583946, 0.2754312794483503, 0.2963408982960919, 0.3172802463361292, 0.33809524159766824, 0.3586843605634746, 0.3789602390936009, 0.39882383595249477, 0.4181539119580298, 0.43681002789724427, 0.4546443439490208, 0.4715168507203526, 0.4873096923892564, 0.501937949399842, 0.5153558421113993, 0.5275584333452358, 0.5385795168146447, 0.5484866104771862, 0.5573739879049352, 0.5653545999106164, 0.5725516341947591, 0.5790903601531975, 0.585090808591628, 0.5906617292117223 ], [ 0.5492540151278806, 0.5332810873780746, 0.5157909539914203, 0.49678270708531663, 0.47629304507384085, 0.4544040889833988, 0.4312509403628497, 0.4070280248889161, 0.3819928210902288, 0.35646519905698315, 0.33082058824886823, 0.3054760146039248, 0.2808701809115823, 0.2574424028534851, 0.235619742410726, 0.21582492528318475, 0.1985147293012057, 0.18424151877027603, 0.17369412850012833, 0.16763637029178025, 0.16668634947735975, 0.171022673219063, 0.18024269736459714, 0.19349647835282274, 0.2097672211920729, 0.22810241476731521, 0.24772729066262564, 0.26807259677359113, 0.2887585551356437, 0.3095563243128165, 0.33033721615532524, 0.35101954834439364, 0.37152400504423083, 0.3917456897194243, 0.4115453105963755, 0.4307562482326924, 0.449201063418824, 0.4667107771444438, 0.48314196406146, 0.4983889771028135, 0.5123905329352672, 0.5251310996728039, 0.5366381003571478, 0.5469760900258991, 0.5562389885891864, 0.5645412998239273, 0.5720090936702449, 0.578771398781832, 0.5849525392573286, 0.5906658364321601 ], [ 0.5519883362580483, 0.5363490238313988, 0.5192087600525495, 0.500559492686541, 0.4804277743091884, 0.45888201633181663, 0.4360395872641422, 0.4120729908115626, 0.3872140328926944, 0.36175462323986907, 0.3360428584283649, 0.31047359398744234, 0.28547415839945117, 0.26148840872425577, 0.23896581979906414, 0.21836553284686416, 0.20018451433369946, 0.185006474197038, 0.17353644868265475, 0.16654714073627205, 0.16467557491825527, 0.16813593278027195, 0.17656169894935478, 0.18911858821475278, 0.20478161844081674, 0.2225792871007947, 0.24172280457538092, 0.2616435079919924, 0.2819781443391439, 0.3025247569650939, 0.3231826183384436, 0.3438898915743498, 0.3645730240477403, 0.3851174562326477, 0.40536152398094966, 0.42510849406824547, 0.4441483271047444, 0.4622811607286578, 0.4793370396991247, 0.49518930917015075, 0.5097612900888754, 0.5230271110735435, 0.5350080617069731, 0.5457658613982842, 0.5553940604738089, 0.5640085643565806, 0.5717380715160821, 0.5787150590351643, 0.5850678240155638, 0.5909139725030033 ], [ 0.5548198627854908, 0.5395155601077551, 0.5227232038124804, 0.5044267709355179, 0.4846419677120162, 0.46342312477829406, 0.440870134874024, 0.4171348655276284, 0.3924262378451998, 0.3670129547013251, 0.3412228041813329, 0.31543772671230585, 0.2900846296641703, 0.26562350457912, 0.24253692527008683, 0.22132803741858095, 0.20253505672920788, 0.18676227031193782, 0.1747022945712256, 0.16708904925703016, 0.16452397904235475, 0.16722059081833057, 0.17484823676943473, 0.1866165527175779, 0.20152785917506524, 0.2186203034372531, 0.23711036021484722, 0.25644235716754266, 0.2762774981786423, 0.29644531680795094, 0.31687467675858, 0.33752250898437325, 0.3583178464643812, 0.3791321651838027, 0.3997770680073065, 0.4200221035933387, 0.43962217160509476, 0.45834519916266875, 0.4759942531851169, 0.49242176702580365, 0.5075360013370256, 0.5213010971855279, 0.5337324451924285, 0.5448889867829033, 0.554863777679612, 0.5637738453508718, 0.5717501288867041, 0.5789281104643444, 0.5854396127036641, 0.5914061187572675 ], [ 0.5577398905352129, 0.5427745768057757, 0.5263325921955648, 0.5083897901129633, 0.48895114949238516, 0.4680574973758436, 0.44579252740570696, 0.42228972758711353, 0.39773864349035526, 0.37238970994605913, 0.34655673456208014, 0.32061608749758, 0.29500187567330416, 0.2701971067446, 0.24672247077305706, 0.22512702962678183, 0.20598726227725928, 0.18991712767119123, 0.17757402399978822, 0.16961669554614703, 0.16656777905703102, 0.16860738053332952, 0.17543483447396072, 0.18632403583219648, 0.20033605303828703, 0.21654753132596183, 0.23420144518306932, 0.25276918224623846, 0.2719449751640553, 0.29159417472820615, 0.3116761250841869, 0.3321647223241342, 0.3529880396330811, 0.3739994158519074, 0.3949799325026394, 0.4156626534126894, 0.43576584995887985, 0.4550246948693336, 0.47321541243037685, 0.49016998335643513, 0.505782112716397, 0.5200063279244113, 0.5328522786497485, 0.544376052529021, 0.5546699258967609, 0.5638516026466942, 0.5720537137039647, 0.5794141524019149, 0.5860676801988729, 0.5921391209913948 ], [ 0.5607430053216655, 0.5461239420760197, 0.5300399547091726, 0.5124592272661727, 0.4933768401266905, 0.4728214767693178, 0.4508626992790564, 0.4276185571961508, 0.40326313459686963, 0.37803343317533417, 0.35223473323139826, 0.3262432817052728, 0.30050489950001413, 0.275528123882912, 0.2518713358384871, 0.23012556952420257, 0.21089783553014416, 0.19479988626465022, 0.18243705797958476, 0.17437037333744448, 0.17101701468581598, 0.17249983997602064, 0.17853781251385203, 0.18847773986358082, 0.20146162118463787, 0.21662991567620463, 0.23327339757830765, 0.2509054694917345, 0.26926232784346066, 0.2882491959714431, 0.3078563108990243, 0.32807252734608183, 0.34882176088964073, 0.36993595211629265, 0.39116315472063296, 0.41219855724445736, 0.4327234656334143, 0.45244069694580197, 0.47110038432946355, 0.4885148382242368, 0.5045638103839764, 0.519192533431604, 0.5324049293278321, 0.544253968564939, 0.5548306641515189, 0.5642527582268835, 0.57265384746089, 0.5801734826970948, 0.5869486341153984, 0.5931067998545244 ], [ 0.5638260258136824, 0.5495640104548968, 0.5338509467705421, 0.5166483075797937, 0.4979426650656387, 0.4777525015537303, 0.4561358519130639, 0.4331986563586409, 0.4091035482994142, 0.3840785610577262, 0.3584248723610347, 0.33252218401695777, 0.30682968943095185, 0.28188005353503737, 0.25826405078073666, 0.23660545086274332, 0.21752975792111826, 0.20163392152394888, 0.1894604155980937, 0.18146401658849717, 0.1779474871936203, 0.17896424292307106, 0.18424105957774095, 0.19319501980148968, 0.2050593502531147, 0.21905653317850507, 0.23454365680158787, 0.25109022568030875, 0.26848281197383933, 0.28667002397739816, 0.3056731253537717, 0.3254942790934285, 0.3460511725145192, 0.36715281881916817, 0.3885137206834579, 0.4097916712410171, 0.4306321833631286, 0.4507071699825213, 0.4697420443589079, 0.48753050314627117, 0.5039389798053292, 0.5189036157627753, 0.5324224266300024, 0.54454478248137, 0.5553597305945467, 0.5649842114718578, 0.5735518822070816, 0.5812030405399146, 0.5880759972033286, 0.5943001344633307 ], [ 0.5669869428984726, 0.5530961591187155, 0.5377718606782887, 0.5209701440409701, 0.5026708549236087, 0.4828845817845425, 0.46166071100892364, 0.4390964968665903, 0.41534693347854673, 0.39063492856315074, 0.36526080832900004, 0.33960947092744476, 0.31415256733626507, 0.28944217564558344, 0.26609227789951123, 0.2447462210102608, 0.22603324285082405, 0.21052341201714442, 0.1986914702529338, 0.19088927440584005, 0.18731090172859188, 0.18793930088449023, 0.19249915714682667, 0.20046785479043208, 0.21116918466674672, 0.22391673313109592, 0.23814672139773252, 0.2534956021500225, 0.26980674985012726, 0.28707446918172924, 0.3053508624942828, 0.3246504965025456, 0.3448845131114641, 0.3658398635169407, 0.38719950457283125, 0.40858654360557284, 0.42961356595389005, 0.4499241440146094, 0.46922095346550724, 0.487280373781213, 0.5039561534050754, 0.5191754067514721, 0.5329298611589532, 0.5452645827710477, 0.5562657400026308, 0.5660484429451961, 0.5747453400193447, 0.5824964246104569, 0.5894403578066311, 0.5957075072350082 ], [ 0.5702239353968497, 0.5567214661272393, 0.5418078787354762, 0.5254354670647648, 0.5075793469306967, 0.4882446684879394, 0.46747507085042556, 0.445362367007606, 0.422057256774746, 0.3977805243073372, 0.3728336101070258, 0.34760658751496615, 0.3225804402113458, 0.29831941994731326, 0.2754489953194011, 0.25461696793895483, 0.23644107455697538, 0.22145451465300922, 0.21006474477712564, 0.2025321742012188, 0.19895737711532382, 0.19926017015869826, 0.20315739953682774, 0.2101745500713141, 0.21971796597917775, 0.23119265406788697, 0.24411939537546715, 0.25820711958690185, 0.2733588560181983, 0.2896147895090788, 0.30705698145008997, 0.325712260554506, 0.3454868865478286, 0.3661492868335863, 0.3873556297096167, 0.4086994072591539, 0.4297648888464349, 0.45017099089665186, 0.46960024093320174, 0.4878132395373925, 0.5046516953763412, 0.5200336459554613, 0.533943978511793, 0.546422568891773, 0.5575516208647708, 0.5674432329429518, 0.5762278456083408, 0.5840439861388763, 0.5910295802966837, 0.5973149967610284 ], [ 0.5735345245164449, 0.5604396090330896, 0.545961664728045, 0.5300508591456193, 0.512679621565646, 0.4938500691488975, 0.47360279542542744, 0.45202700803679596, 0.4292717797760332, 0.4055577809835381, 0.3811882145960774, 0.35655671644785536, 0.3321487599674337, 0.308531965493884, 0.28633058496588487, 0.2661818881396215, 0.24867856899626348, 0.23431020643880635, 0.22342151662797563, 0.21619703383621025, 0.21266312253418648, 0.21268860339307658, 0.21598141235191037, 0.22210463559834506, 0.23053612035140145, 0.24076617526429184, 0.2523983938756625, 0.265213551597328, 0.2791726053270408, 0.2943588756580016, 0.310882246167442, 0.32878202070516377, 0.3479628991968968, 0.3681807259252618, 0.3890721642549077, 0.41020835012920376, 0.43115148402241754, 0.45150058343030275, 0.47092122853764784, 0.48916006356214276, 0.5060474804173187, 0.5214923521751561, 0.5354720822446136, 0.5480203608140033, 0.5592142352534426, 0.5691615172745997, 0.5779891600135456, 0.5858329947776124, 0.592829066573753, 0.5991067053879807 ] ] }, { "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.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.20609870553016663, 0.2794052116115979, 0.22985134829694645, 0.32873217681013045, 0.3754279743018293, 0.4153017786953136, 0.3584581880401414, 0.3561102640193855, 0.3553857350763942, 0.35371601498178057, 0.3594539177233398, 0.42076154515606695, 0.46139858687040103, 0.4115011777723385, 0.4176857496724101, 0.4189901873064764, 0.5985637656494007, 0.40964725948690556, 0.4271640129234622, 0.9829163243994117, 0.3700665505602956, 0.35016909862729023, 0.4581801062449813, 0.7731048110872507 ], "xaxis": "x", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.8346359729766846, 0.6206008217305327, 0.6137399522352502, 0.6296426968717749, 0.648160893648171, 0.6340173952066974, 0.733639661141008, 0.7875713870165928, 0.840028891644536, 0.8766329688376671, 0.8738109814290237, 0.8818095743380598, 0.8799415009840228, 0.897785093448023, 0.8780137196891163, 0.8864858582276492, 0.9901080221795948, 0.86985802675792, 0.9128737860123103, 0.779970170930028, 0.5119325648993254, 0.9633732058315407, 0.6788636296987534, 0.3790860800072551 ], "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.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.20609870553016663, 0.2794052116115979, 0.22985134829694645, 0.32873217681013045, 0.3754279743018293, 0.4153017786953136, 0.3584581880401414, 0.3561102640193855, 0.3553857350763942, 0.35371601498178057, 0.3594539177233398, 0.42076154515606695, 0.46139858687040103, 0.4115011777723385, 0.4176857496724101, 0.4189901873064764, 0.5985637656494007, 0.40964725948690556, 0.4271640129234622, 0.9829163243994117, 0.3700665505602956, 0.35016909862729023, 0.4581801062449813, 0.7731048110872507 ], "xaxis": "x2", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.8346359729766846, 0.6206008217305327, 0.6137399522352502, 0.6296426968717749, 0.648160893648171, 0.6340173952066974, 0.733639661141008, 0.7875713870165928, 0.840028891644536, 0.8766329688376671, 0.8738109814290237, 0.8818095743380598, 0.8799415009840228, 0.897785093448023, 0.8780137196891163, 0.8864858582276492, 0.9901080221795948, 0.86985802675792, 0.9128737860123103, 0.779970170930028, 0.5119325648993254, 0.9633732058315407, 0.6788636296987534, 0.3790860800072551 ], "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" } ], "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 }, "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": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "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": [ "